* {
    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;
}

.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;
    padding: 32px 20px 0px 20px;
}

.progress {
    background-color: rgba(227, 230, 239, 0.8);    
    border-radius: 1000px;
    height: 32px;
}

.progress__value {
    background-color: #21CE99;
    background-color: var(--primary-color);
    height: inherit;
    border-radius: 1000px;
    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: #E5E5E5;
    }

        .container .card {
            background-color: #E5E5E5;
            box-shadow: none;
        }

    .progress {
        background: rgba(224, 224, 224, 0.8);
    }

    .progress-group {
        background-color: transparent;
        padding: 48px 0px;
    }

    #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;
}

/* Date picker */
.month-item-name,
.month-item-year {
    font-size: 16px; /*fix ios zooming*/
}