﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

#app {
    /*height: 100%;
    display: flex;
	flex-direction: column;*/
}

/*main {
	flex: 1 0 auto;
}*/

.container {
    background-color: #ffffff;
    position: relative;
}

.content {
    max-width: 732px;
    margin: 0 auto;
    display: block;
}

.card {
    background-color: #ffffff;
    padding: 32px 30px 0px 30px;
    box-shadow: 0px 0px 20px rgba(33, 37, 41, 0.07);
    border-radius: 10px;
    margin-top: 48px;
}

.card--secondary {
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding-bottom: 20px;
}

.card--tertiary {
    background: rgba(227, 230, 239, 0.8);
    border-radius: 8px;
    padding: 16px 20px;
    box-shadow: none;
}

.progress-group {
    background-color: #ffffff;    
}

.progress {
    background-color: rgba(227, 230, 239, 0.8);    
    height: 8px;
}

.progress__value {
    background-color: #21CE99;
    background-color: var(--primary-color);
    height: inherit;    
    line-height: 32px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    transition: width 1s ease-in-out;
}

#app footer {
    font-size: 14px;
    line-height: 20px;
    color: #828282;
    text-align: center;
    padding: 32px 0px;
    border-top: 1px solid #E0E0E0;
    width: 100%;
    flex-shrink: 0;
}

hr {
    border: 1px solid #DFE2E5;
    border-radius: 10px;
}

@media(min-width: 733px) {
    .container {
        background-color: #ffffff;
    }

    .card {
        background-color: #F4F4F4;
        padding: 48px 34px;
    }

    #app footer {
        border: none;
        background-color: #E5E5E5;
    }
}

/*
    Section
*/

.section {
    margin-bottom: 32px;
}

.section__title {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    color: #212529;
    margin-bottom: 32px;
}

.section__title--secondary {
    font-weight: normal;
    color: #212529;
    margin-bottom: 16px;
}

.section__p {
    font-size: 16px;
    line-height: 26px;
    color: #212529;
}

    .section__p > strong {
        font-weight: bold;
    }

/*
    Pills
*/
.pill {
    background-color: rgba(33, 206, 153, 0.3);
    border-radius: 8px;
    padding: 6px 8px;
}

strong {
    font-weight: bold;
}

.agreement-container {
    display: flex;
    align-items: baseline;    
    flex-direction: row-reverse;
}

.agreement-container__checkbox {
    margin-left: 10px;
}

@media(min-width: 733px) {
    .agreement-container {
        flex-direction: row;
    }

    .agreement-container__checkbox {
        margin-right: 10px;
    }

    .card {
        background-color: #F4F4F4;
        padding: 48px 34px;
    }

    #app footer {
        border: none;
        background-color: #E5E5E5;
    }
}

/* Date picker */
.month-item-name,
.month-item-year {
    font-size: 16px; /*fix ios zooming*/
}