/**
 *  @author    Hirooks
 *  @copyright 2022 Hirooks
 *  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

#order-fulfillment-date .date_text,
#order-fulfillment-date .time_text {
    float: left !important;
}

#order-fulfillment-date #preferred_date,
#order-fulfillment-date #preferred_time {
    height: calc(2.5rem - 2px) !important;
}

#order-fulfillment .select-wrapper::before {
    content: '';
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    aspect-ratio: 1;
    width: 1.5rem;
    font-size: 0;
    color: #fff !important;
    border-style: solid;
    border-width: 0.25rem;
    border-top-color: #bbcdd2 !important;
    border-right-color: #25b9d7 !important;
    border-bottom-color: #25b9d7 !important;
    border-left-color: #bbcdd2 !important;
    border-radius: 50%;
    outline: none;
    animation: rotating 2s linear infinite
}

#order-fulfillment .select-wrapper.active::before {
    display: inline-block;
}

@keyframes rotating {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
