@import "../../styles/abstracts/mixins";
@import "../../styles/abstracts/variables";
.tp__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0 1px 11px $colorLight40;
    box-shadow: 0 1px 11px $colorLight40;
    border-radius: 10px;
    margin: 10px;
    width: 40%;
    min-width: 180px;
}

.tp--divider {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid $colorLight20;
    margin-bottom: 1px;
}

.tp__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    border-radius: 15px;
    /* height: calc(100vh - 80px); */
}

.slot__list {
    overflow: hidden;
    overflow-y: scroll;
    height: calc(100vh - 300px);
    list-style: none;
    padding-inline-start: 0;
    @include min-width(sm) {
        height: calc(100vh - 300px);
    }
}

.slot__item {
    min-width: 120px;
    padding: 12px;
    margin: 20px 10px;
    border-radius: 20px;
    background-color: white;
    text-align: center;
    cursor: pointer;
    // box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 1px 11px $colorLight40;
    box-shadow: 0 1px 11px $colorLight40;
}

.slot__selected {
    background-color: $colorCyan;
    color: white;
    font-weight: 500;
}

.slot__unavailable {
    min-width: 120px;
    padding: 12px;
    margin: 20px 10px;
    border-radius: 20px;
    background-color: lightgray;
    text-align: center;
    pointer-events: none;
}

.invisible-scrollbar::-webkit-scrollbar {
    display: none;
}

.btn__down {
    font-size: 20px;
    font-weight: 500;
    min-width: 40px;
    cursor: pointer;
    color: white;
    // background-image: linear-gradient(180deg, #6493c9, #345a99);
    background-image: linear-gradient(180deg, $colorCyan, $colorBlue);
    outline: none;
    border: none;
    padding-bottom: 5px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.5);
}

.btn__up {
    font-size: 20px;
    font-weight: 500;
    min-width: 40px;
    cursor: pointer;
    color: white;
    // background-image: linear-gradient(180deg, #6493c9, #345a99);
    background-image: linear-gradient(180deg, $colorCyan, $colorBlue);
    outline: none;
    border: none;
    padding-top: 5px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.5);
}

.picker__header {
    color: black;
    text-align: center;
    padding: 8px;
}

.fadeOut {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.33s, opacity 0.33s linear;
}
.fadeIn {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0.33s, opacity 0.33s linear;
}