@import "../../styles/abstracts/mixins";
@import "../../styles/abstracts/variables";

.container {
    max-width: 1400px;
    display: flex;
    // padding: 20px 20px 0 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    @include min-width(sm) {
        flex-direction: row;
        max-width: 99%;
    }
    &__nestedList {
        width: 100%;
        height: 100%;
        margin-bottom: 10px;
        @include min-width(sm) {
            max-width: 300px;
        }
    }
    &__calendar {
        width: 100%;
        height: 100%;
        margin-bottom: 10px;
        @include min-width(sm) {
            max-width: 360px;
        }
    }
    &__time {
        background-color: white;
        width: 100%;
        height: 100%;
        margin-bottom: 10px;
        margin-top: 10px;
        @include min-width(sm) {
            margin-top: 0px;
            max-width: 280px;
        }
    }
    &__card {
        width: 100%;
        height: 90%;
        @include min-width(sm) {
            max-width: 330px;
        }
    }
}

.grid {
    &-container {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10px;
        flex-direction: column;
        width: 100%;
        @include min-width(sm) {
            flex-direction: row;
        }
    }
    &--row {
        display: flex;
        flex: 1;
        flex-wrap: nowrap;
        align-self: center;
        justify-content: space-between;
        padding: 15px 0 15px 0;
        width: 100%;
        @include min-width(sm) {
            flex: 40%;
            flex-wrap: wrap;
            justify-content: space-between;
            align-self: center;
            margin: 0 15px 0 0;
        }
    }
    &-label {
        display: flex;
        justify-content: center;
        align-self: center;
        font-weight: 550;
    }
}

.select-menuList {
    min-width: 200px;
    flex: 1;
    padding: 8px;
    outline: none;
}
