/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.call-handler-selector{
    position: relative;
    margin-bottom: 10px;
}

.call-handler-selector p{
    font-size: 16px;
}

.call-handler-wrapper{
    position: relative;
    display: inline-flex;
    align-items: flex-start;
}

.call-handler-time-selects{
    display: grid;
    grid-template-columns: 1fr;
}

.call-handler-time-selects select{
    min-width: 200px;
    line-height: 1.4 !important;
}

.call-handler-time-selects #time-loading {
    display: none;
    position: absolute;
    top: 42px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    border: 4px solid #c6c6c6;
    border-top: 4px solid #eb7640;
    border-radius: 50%;
    -webkit-animation: spin .6s ease-in infinite;
    animation: spin .6s ease-in infinite
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.call-handler-selector .call-handler-message{
    background-color: #3e8ed0;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.call-handler-selector .call-handler-message.visible{
    opacity: 1;
    visibility: visible;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
}

.call-handler-selector .call-handler-message p{
    font-size: 14px !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
}