.sm-noscroll {
    overflow: hidden !important;
}

#sm-form-modal {
    position: fixed;
    z-index: 999999998;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

#sm-form-modal,
#sm-form-modal #sm-form-modal-overlay {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#sm-form-modal #sm-form-modal-overlay {
    background-color: rgba(60, 60, 59, 0.9);
    position: absolute;
}

#sm-form-modal-loading,
#sm-form-modal-loading::after {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-style: solid;
    animation-name: rotation;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#sm-form-modal-loading {

    border-width: 4px 4px 0 0;
    border-top-color: #fff;
    border-right-color: transparent;
    display: inline-block;
    box-sizing: border-box;
    animation-duration: 1s;
}

#sm-form-modal-loading::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    border-width: 0 0 4px 4px;
    border-left-color: var(--awb-color5);
    border-bottom-color: transparent;
    left: 0;
    top: 0;
    animation-duration: 0.5s;
    animation-direction: reverse;
}

#sm-form-modal #sm-form-modal-container {
    position: absolute;
    width: 90%;
    max-height: 90%;
    max-width: 700px;
    margin: auto;
    background-color: var(--awb-color1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    opacity: 0;
    border-radius: 3px;
}

#sm-form-modal #sm-form-modal-header {
    margin-bottom: 20px;
    padding: 20px 50px 20px 20px;
}

#sm-form-modal #sm-form-modal-header h2 {
    margin: 0 !important;
}

#sm-form-modal #sm-form-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 0;
    line-height: 0;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
}

#sm-form-modal #sm-form-modal-close svg {
    width: 16px;
    fill: var(--awb-color5);
    transition: all 2s;
}

#sm-form-modal #sm-form-modal-close:hover svg {
    fill: var(--awb-color8);
}

#sm-form-modal #sm-form-modal-body {
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
}

#sm-form-modal #sm-form-modal-info-wrapper {
    margin-bottom: 50px;
}

#sm-form-modal .sm-form-modal-info {
    margin-bottom: 15px;
}

#sm-form-modal .sm-form-modal-info span {
    display: block;
    line-height: normal;
}

#sm-form-modal span.info-title {
    font-size: 16px;
    padding-bottom: 5px;
}

#sm-form-modal .text-uppercase {
    text-transform: uppercase;
}

#sm-form-modal .text-bold {
    font-size: 20px;
    font-weight: 500;
    color: var(--awb-color6);
}

.flatpickr-calendar.open {
    z-index: 999999999 !important;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 640px) {
    .flatpickr-time .numInputWrapper span {
        width: 30px;
        opacity: 1 !important;
        padding: 0 4px 0 2px;
        text-align: center;
    }


    .flatpickr-time  .numInputWrapper span:after {
        right: 0 !important;
        left: 0 !important;
        margin: auto !important;
        width: 0 !important;
        height: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
}