body {
    font-family: Nunito;
    font-style: normal;  
}

.grid {    
    text-align: center;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-areas: "header" "main";
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;    
}

.grid2 {    
    text-align: center;
    min-height: 100%;
    width: 100%;
    display: grid;
    grid-template-areas: "header" "main";
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;    
}

.area {    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.area.header {
    padding: 1.5rem;
    grid-area: header;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.area.main {
    grid-area: main;
}

.area.footer {
    padding: 1.5rem;
    grid-area: footer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-color: #B3B3B3; 
    border-top-style: solid;
    border-top-width: 1px;
}

#actions {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
}

 .bubble {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bubble span {
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    color:  #B03B6F; 
    padding: 1px 0px 0px 0px;
}

p {
    color: var(--neutral-grey-800, #393939);
    font-feature-settings: 'clig' off, 'liga' off;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    font-size: 16px;
    margin: 0;
}

b {
    line-height: 28px;
    font-weight: 700;
    font-size: 20px;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;    
}

.separator {
    width: auto;
    height: 1px;
    background: #E1BBC9;   
}

.margin-medium {
    margin: 40px 0px;
}

.margin-small {
    margin: 20px 0px;
    display: flex;
    flex-shrink: 3;
}

.button {
    width: 100%;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    color: var(--neutral-grey-800, #393939);
    text-decoration: none;
    cursor: pointer;
}

.button:hover {
    color: #B03B6F;
}

.secondary-button {
    border-radius: 12px;
    border: 2px solid var(--primary-purple-medium, #B03B6F);
    display: flex;
    padding: 13px 32px;
    justify-content: center;
    flex-shrink: 0;
    color: #B03B6F;
}


.secondary-button:hover {
    background-color: #B03B6F;
    color: white;
}

.primary-button {
    border-radius: 12px;
    border: 2px solid var(--primary-purple-medium, #B03B6F);
    display: flex;
    padding: 13px 32px;
    justify-content: center;
    flex-shrink: 0;
    background-color: #B03B6F;
    color: white;
}

.primary-button:hover {
    color: #B03B6F;
    background-color: white;
}

#actions {
    display: none;
}

#footer {
    background: white;
}

@media screen and (max-width: 759px) {

    .content {
        max-width: 420px;
        margin: 0 auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;        
    }

     .area.main {
        margin: 0 48px;
        margin: 0;
    }

    #body {
        overflow-y: auto;
        padding-bottom: 100px;
    }
    
    #footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 80px;
        margin: 0 auto;
    }

}

@media screen and (max-width: 300px) {
    .content {
        padding-left: 5px;
        padding-right: 5px; 
    }
}

@media screen and (min-width: 760px) {

    #body {
        border-color: #B3B3B3; 
        border-style: solid;    
        border-width: 1px;
        border-radius: 12px;
    }

    .separator {
        display: none;
    }

    .part2 {
        text-align: left;
    }

    .grid {        
        height: 100%;
        grid-template-areas: "header main " "header footer";
        grid-template-columns: auto 1fr;
        grid-template-rows: calc(100% - 80px) 80px;
    }

    .grid2 {        
        height: 100%;
        grid-template-areas: "header main";
        grid-template-columns: auto 1fr;
        grid-template-rows: 100%;
    }

    .area.header {
        flex-direction: column;
        border-color: #B3B3B3; 
        border-right-style: solid;
        border-right-width: 1px;
    }

    .area.main {
        overflow-y: hidden;
    }

    .text {
        padding: 3rem;
        overflow: scroll;
    }

     .area.footer {      
        border-color: #B3B3B3; 
        border-top-style: solid;
        border-top-width: 1px;
    }

    .button {
        max-width: 400px;
    }
}
