/**
 * Guest styles
 */
.form-container {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
    z-index: 2;
}

/**
 * Auth styles
 */
.container {
    padding-top: 20px;
}

.calendar-container {
    overflow: hidden;
    visibility: hidden;
    position: relative;
}

.calendar-month {
    overflow: hidden;
    position: relative;
}

.calendar-month > div {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swipe-gesture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
    width: 100px;
    height: 100px;
    border-radius: .5rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    box-shadow: 0 .2rem .4rem rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
}

.swipe-gesture {
    margin: auto;
}

.swipe-gesture::before {
    font-size: 3rem;
}

.col {
    width: 14.14%;
}

.bg-day {
    background-color: #e9e9e9;
}

.calendar-day {
    height: 13vh;
}

.calendar-label:nth-child(n+2),
.calendar-day:nth-child(n+2) {
    margin-left: -1px;
}

.progress {
    height: 3vh;
}

.progress-bar {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: .65rem;
}

.bg-color {
    background-color: #fff044;
}

@media (min-width: 992px) {
    .swipe-gesture-container {
        visibility: hidden;
    }

    .calendar-day {
        height: 14.5vh;
    }

    .progress-bar {
        font-size: 1rem;
    }
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #323335;
        color: #cfe0df;
    }

    .bg-day,
    .btn-light {
        background-color: #222!important;
        color: #f8f9fa!important;
    }
}
