.modal-body .ctii-contacto-dias-wrapper,
.modal-body .ctii-contacto-horas-inner-wrapper {
    margin-left: -17px;
    margin-right: -17px;
}
.ctii-contacto-dias-inner-wrapper,
.ctii-contacto-horas-inner-wrapper {
    display: flex;
    overflow-x: auto;
    padding:10px;
}
.ctii-dia-btn-custom-text {
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    line-height: 17px;
}
.ctii-dia-btn,
.ctii-hora-btn {
    background: #e5e7fb;
    border-radius: 20px;
    width: 79px;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-right: 10px;
    cursor:pointer;
}
.ctii-dia-btn[data-festivo="1"] {
    opacity:0.3;
    cursor: not-allowed;
}
.ctii-dia-btn.ctii-active,
.ctii-hora-btn.ctii-active {
    background: var(--ctii-color-primary);
    color: #fff;
    animation-name: ctii-shine;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-direction: normal;
}
.ctii-dia-btn input,
.ctii-hora-btn input {
    display:none;
	position:absolute;
	left:-9999999px;
	clip: rect(0,0,0,0);
}
.ctii-dia-btn-diatxt {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}
.ctii-dia-btn-dia,
.ctii-hora-btn-hora {
    font-size: 33px;
    font-weight: bold;
    text-align: center;
    line-height: 26px;
    width: 100%;
}
.ctii-hora-btn-hora {
    font-size: 18px;
}
.ctii-dia-btn-mestxt {
    font-size: 10px;
    text-align: center;
}
.ctii-contacto-horas-wrapper {
    display:none;
}
.loading-message {
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width:100%;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 3px solid #ccc;
    border-top: 3px solid #555;
    border-radius: 50%;
}
.ctii-reunion-wrapper {
    display:none;
    border: 2px dashed var(--ctii-color-primary);
    border-radius: 20px;
    padding: 20px;
}
.ctii-reunion-wrapper .ctii-inputfield {
    margin: 15px 0;
}
.ctii-reunion-exito-wrapper,
.ctii-reunion-error-wrapper  {
    display:none;
    text-align:center;
}
.ctii-reunion-error-wrapper {
    margin-bottom:50px;
}
.ctii-reunion-exito-wrapper svg {
    opacity: 1;
    position: static;
    width: 98px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
}
.ctii-reunion-error-wrapper svg {
    width: 40px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    fill: #b90202;
    transition: all 0.4s ease;
}
.ctii-reunion-wrapper input[type="tel"] {
    text-align:center;
}
.ctii-whatsapp-link img {
    vertical-align:middle;
}
.ctii-reunion-ws-link,
.ctii-reunion-tel-link,
.ctii-reunion-em-link {
    margin-top:10px;
}
.ctii-reunion-ws-link svg,
.ctii-reunion-tel-link svg,
.ctii-reunion-em-link svg {
    width: 20px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}
.ctii-reunion-ws-link:hover svg,
.ctii-reunion-tel-link:hover svg,
.ctii-reunion-em-link:hover svg {
    fill: #fff;
}
.ctii-reunion-ws-link.ctii-disabled svg,
.ctii-reunion-tel-link.ctii-disabled svg,
.ctii-reunion-em-link.ctii-disabled svg {
    animation-name: ctii-move;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.ctii-respuestas-contacto {
    padding-top: 20px;
}
.ctii-respuestas-contacto .ctii-btn {
    font-size: 17px;
    line-height: 17px;
    width: 100%;
    margin: 5px 0;
}

@media (max-width:767px) {
    .ctii-contacto-btns-group .ctii-btn {
        text-align: center;
        font-size: 12px;
        font-weight: bold;
    }
    .ctii-contacto-btns-group .ctii-btn svg {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 19px;
        height:auto;
    }
    .ctii-reunion-wrapper .ctii-inputfield {
        width:100%!important;
    }
}


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

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

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

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

@-moz-keyframes ctii-spin {
    0% {
        -moz-transform: rotate(0deg);
    }

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

@-o-keyframes ctii-spin {
    0% {
        -o-transform: rotate(0deg);
    }

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

@-ms-keyframes ctii-spin {
    0% {
        -ms-transform: rotate(0deg);
    }

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

.ctii-spin {
    animation: ctii-spin 2s linear infinite;
    -webkit-animation: ctii-spin 2s linear infinite;
    -moz-animation: ctii-spin 2s linear infinite;
    -o-animation: ctii-spin 2s linear infinite;
    -ms-animation: ctii-spin 2s linear infinite;
}