@import url(https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&display=swap);
@-webkit-keyframes slide-left {
    0% {
        transform: translateX(0)
    }
    to {
        transform: translateX(-.5em)
    }
}

@keyframes slide-left {
    0% {
        transform: translateX(0)
    }
    to {
        transform: translateX(-.5em)
    }
}

@-webkit-keyframes slide-right {
    0% {
        transform: translateX(0)
    }
    to {
        transform: translateX(.5em)
    }
}

@keyframes slide-right {
    0% {
        transform: translateX(0)
    }
    to {
        transform: translateX(.5em)
    }
}

@-webkit-keyframes slide-down {
    0% {
        transform: translate(-50%, min(-400px, -65vh))
    }
    to {
        transform: translate(-50%)
    }
}

@keyframes slide-down {
    0% {
        transform: translate(-50%, min(-400px, -65vh))
    }
    to {
        transform: translate(-50%)
    }
}

@-webkit-keyframes zoom-in {
    0% {
        transform: translate(-50%, -50%) scale(.9)
    }
    to {
        transform: translate(-50%, -50%) scale(1)
    }
}

@keyframes zoom-in {
    0% {
        transform: translate(-50%, -50%) scale(.9)
    }
    to {
        transform: translate(-50%, -50%) scale(1)
    }
}

@-webkit-keyframes stretch {
    0% {
        max-height: 0
    }
    50% {
        max-height: 0
    }
    to {
        max-height: 175px
    }
}

@keyframes stretch {
    0% {
        max-height: 0
    }
    50% {
        max-height: 0
    }
    to {
        max-height: 175px
    }
}

.mc-calendar,
.mc-calendar *,
.mc-calendar:after,
.mc-calendar :after,
.mc-calendar:before,
.mc-calendar :before {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.mc-btn,
.mc-select__nav {
    background: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    outline: none
}

.mc-btn::-moz-focus-inner,
.mc-select__nav::-moz-focus-inner {
    border: 0;
    padding: 0
}

.mc-calendar h1,
.mc-calendar h2,
.mc-calendar h3 {
    font-weight: 500
}

.mc-container {
    position: relative;
    margin: 0 auto;
    width: 90%
}

.mc-calendar {
    display: flex;
    position: absolute;
    top: -100%;
    left: 50%;
    flex-direction: column;
    font-family: Maven Pro, sans-serif;
    font-weight: 500;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    visibility: hidden
}

.mc-calendar--opened {
    visibility: visible
}

.mc-calendar--inline {
    height: 325px;
    width: min(100%, 300px);
    background: none;
    font-size: 1rem;
    box-shadow: none;
    border: 1px solid #c9c7c7;
    border-radius: 10px;
    z-index: 1002
}

@media(min-width:625px) {
    .mc-calendar--inline {
        transform: unset
    }
}

.mc-calendar--modal {
    width: min(100%, 425px);
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 10px 5px rgba(0, 0, 0, .25);
    background-color: #38ada9;
    z-index: 1002;
    transform: translate(-50%, min(-400px, -65vh));
    transition: transform .4s linear .2s, visibility 0s linear .5s, top 0s linear .5s
}

@media(min-width:625px) {
    .mc-calendar--modal {
        flex-direction: row;
        width: auto;
        height: 400px;
        border-radius: 10px;
        background-color: unset;
        box-shadow: 0 0 30px rgba(0, 0, 0, .3);
        opacity: 0;
        transform: translate(-50%, -50%) scale(.9);
        transition: transform .3s, opacity .3s, visibility 0s linear .3s, top 0s linear .3s
    }
}

.mc-calendar--modal.mc-calendar--opened {
    top: 0;
    transform: translate(-50%);
    transition: unset;
    -webkit-animation: slide-down .3s linear;
    animation: slide-down .3s linear
}

@media(min-width:625px) {
    .mc-calendar--modal.mc-calendar--opened {
        top: 50%;
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
        -webkit-animation: zoom-in .1s linear;
        animation: zoom-in .1s linear
    }
}

.mc-calendar--permanent {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.mc-display {
    display: none;
    color: hsla(0, 0%, 100%, .8)
}

.mc-calendar--modal .mc-display {
    display: flex;
    flex-direction: column;
    max-height: 0;
    transition: max-height .2s linear
}

@media(min-width:625px) {
    .mc-calendar--modal .mc-display {
        width: 200px;
        height: 100%;
        max-height: unset;
        background-color: #38ada9
    }
}

.mc-calendar--modal.mc-calendar--opened .mc-display {
    max-height: 175px;
    -webkit-animation: stretch .4s;
    animation: stretch .4s
}

@media(min-width:625px) {
    .mc-calendar--modal.mc-calendar--opened .mc-display {
        transition: unset;
        max-height: unset;
        -webkit-animation: unset;
        animation: unset
    }
}

.mc-display__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5em 0
}

@media(min-width:625px) {
    .mc-display__body {
        flex-direction: column;
        height: 100%;
        padding: 0
    }
}

.mc-display__day {
    text-align: center;
    background-color: rgba(0, 0, 0, .2);
    font-size: clamp(1.2rem, 9vw, 1.375rem);
    line-height: 1;
    padding: .5em 0
}

@media(min-width:625px) {
    .mc-display__day {
        padding: 1em 0
    }
}

.mc-display__data {
    display: flex;
    width: 50%
}

@media(min-width:625px) {
    .mc-display__data {
        width: 100%;
        height: 50%;
        text-align: center
    }
}

.mc-display__data--primary {
    justify-content: flex-end
}

@media(min-width:625px) {
    .mc-display__data--primary {
        justify-content: center;
        align-items: flex-end
    }
}

.mc-display__data--secondary {
    flex-direction: column
}

@media(min-width:625px) {
    .mc-display__data--secondary {
        justify-content: space-between
    }
}

.mc-display__date {
    font-size: clamp(5rem, 40vw, 7rem);
    line-height: 1
}

.mc-display__month {
    font-size: clamp(1.2rem, 9vw, 1.5rem)
}

@media(min-width:625px) {
    .mc-display__month {
        height: auto
    }
}

.mc-display__year {
    font-size: clamp(2.4rem, 18vw, 3rem);
    line-height: .8
}

@media(min-width:625px) {
    .mc-display__year {
        height: auto;
        padding: .5em 0
    }
}

.mc-picker {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #f5f5f6
}

.mc-calendar--modal .mc-picker {
    height: min(65vh, 400px);
    border-radius: 30px 30px 0 0
}

@media(min-width:625px) {
    .mc-calendar--modal .mc-picker {
        justify-content: center;
        align-items: flex-end;
        height: 100%;
        width: 425px;
        border-radius: unset
    }
}

.mc-calendar--inline .mc-picker {
    border-radius: unset
}

.mc-picker__header {
    display: flex;
    font-size: 1.25rem;
    justify-content: center;
    padding: 1em 0;
    color: #818181
}

@media(min-width:625px) {
    .mc-calendar--modal .mc-picker__header {
        justify-content: space-between
    }
}

.mc-calendar--inline .mc-picker__header {
    font-size: 1rem;
    padding: 1em 0 .5em
}

.mc-picker__body {
    height: 100%;
    width: 100%
}

.mc-picker__footer {
    display: flex;
    justify-content: space-between;
    padding: 1em 0 2em
}

.mc-calendar--inline .mc-picker__footer {
    padding: 1em 0
}

.mc-select__month,
.mc-select__year {
    display: flex;
    padding: 0 .2em
}

.mc-select__nav {
    position: absolute;
    text-decoration: none;
    color: #818181;
    padding: 0 1em
}

@media(min-width:625px) {
    .mc-calendar--modal .mc-select__nav {
        position: relative
    }
}

.mc-select__nav--next,
.mc-select__nav--prev {
    transition: transform .2s ease-in-out
}

.mc-select__nav--prev:active {
    transform: translateX(-.5em)
}

.mc-calendar--inline .mc-select__month .mc-select__nav--prev,
.mc-select__nav--prev {
    left: 0
}

.mc-select__nav--next:active {
    transform: translateX(.5em)
}

.mc-calendar--inline .mc-select__month .mc-select__nav--next,
.mc-select__nav--next {
    right: 0
}

.mc-calendar--inline .mc-select__year .mc-select__nav,
.mc-calendar--permanent .mc-select__year .mc-select__nav,
.mc-select__year .mc-select__nav {
    display: none
}

@media(min-width:625px) {
    .mc-select__year .mc-select__nav {
        display: inline-block
    }
}

.mc-select__data {
    font-size: clamp(1rem, 8vw, 1.25rem);
    height: clamp(1rem, 8vw, 1.25rem);
    overflow: hidden;
    position: relative
}

.mc-select__data span {
    text-align: center;
    position: absolute
}

.mc-select__data--month,
.mc-select__data--month span {
    width: clamp(5rem, 40vw, 6.25rem)
}

.mc-calendar--inline .mc-select__data--month,
.mc-calendar--inline .mc-select__data--month span {
    width: 6.4rem
}

.mc-select__data--year,
.mc-select__data--year span {
    width: clamp(3rem, 22vw, 3.5rem)
}

.mc-calendar--inline .mc-select__data--year,
.mc-calendar--inline .mc-select__data--year span {
    width: 3.2rem
}

.mc-date {
    text-align: center;
    border-radius: 5px;
    font-weight: 300
}

.mc-date--active {
    cursor: pointer
}

.mc-date--active.mc-date--today {
    background-color: rgba(0, 0, 0, .2)
}

.mc-date--active.mc-date--picked {
    color: #fff;
    background-color: #38ada9
}

.mc-date--inactive {
    color: #bebebe;
    cursor: default
}

.mc-date--inactive .mc-date--inactive.mc-date--picked,
.mc-date--inactive .mc-date--inactive.mc-date--today {
    color: hsla(0, 0%, 100%, .8);
    box-shadow: none
}

.mc-date--inactive.mc-date--today {
    border: 1px solid #bebebe
}

.mc-date--inactive.mc-date--picked {
    border: 1px solid rgba(14, 131, 125, .5803921568627451);
    color: rgba(14, 131, 125, .5803921568627451)
}

.mc-table {
    height: 100%
}

@media(min-width:625px) {
    .mc-calendar--modal .mc-table {
        border-top: none
    }
}

.mc-calendar--inline .mc-table {
    border-top: none
}

.mc-table__weekday {
    padding: .5em 0;
    color: #38ada9
}

.mc-btn {
    display: inline-block;
    font-weight: 500;
    padding: 0 1em
}

.mc-btn--success {
    color: #38ada9;
    margin-left: .5em
}

.mc-btn--danger {
    color: #e65151;
    margin-right: .5em
}

.mc-btn:active {
    transform: scale3d(.95, .95, .95)
}

@media(min-width:625px) {
    .u-display-none {
        display: none!important
    }
}