/**
 * Estilos para goToCounterModal
 * Modal "Completa tu Check-in en el mostrador"
 */

.go-to-counter-modal-wrapper {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    padding: 24px !important;
    box-sizing: border-box;
}

.go-to-counter-modal-wrapper .modal-dialog {
    width: clamp(600px, 53vw, 650px);
    max-width: 650px;
    margin: 0 !important;
}

.go-to-counter-modal-wrapper .modal {
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.go-to-counter-modal-wrapper .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
}

.go-to-counter-modal {
    background-color: rgb(249, 250, 252);
    border-radius: 10px;
    padding: 48px 48px 44px;
    width: 100%;
    max-width: 650px;
    margin: 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(15, 34, 63, 0.12);
}

.go-to-counter-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgb(15, 34, 63);
    font-size: 26px;
    line-height: 1;
    font-weight: 300;
}

.go-to-counter-modal-close:hover {
    opacity: 0.7;
}

.go-to-counter-modal-content {
    text-align: center;
}

.go-to-counter-modal-title {
    font-size: clamp(34px, 2.8vw, 38px);
    font-weight: 600;
    color: rgb(15, 34, 63);
    margin: 0 0 22px;
    line-height: 1.08;
}

.go-to-counter-modal-body {
    font-size: clamp(16px, 1.45vw, 18px);
    font-weight: 400;
    color: rgb(123, 140, 160);
    margin: 0 0 10px;
    line-height: 1.45;
}

.go-to-counter-modal-body:last-of-type {
    margin-bottom: 34px;
}

.go-to-counter-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: rgb(0, 112, 192);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    min-width: 198px;
    min-height: 56px;
    padding: 16px 34px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: background-color 0.2s ease;
}

.go-to-counter-modal-btn:hover {
    background-color: rgb(0, 95, 165);
}

.go-to-counter-modal-btn:active {
    background-color: rgb(0, 82, 142);
}

.go-to-counter-modal-btn-icon {
    font-size: 1.05em;
}

@media (min-width: 1180px) and (min-height: 1000px) {
    .go-to-counter-modal-wrapper {
        padding: 0;
    }

    .go-to-counter-modal-wrapper .modal-dialog {
        width: 652px;
        max-width: 652px;
    }

    .go-to-counter-modal {
        padding: 52px 54px 46px;
        border-radius: 10px;
    }

    .go-to-counter-modal-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .go-to-counter-modal-body {
        font-size: 18px;
        line-height: 1.4;
    }

    .go-to-counter-modal-body:last-of-type {
        margin-bottom: 36px;
    }

    .go-to-counter-modal-btn {
        min-width: 214px;
        min-height: 56px;
        padding: 16px 36px;
        font-size: 15px;
    }
}
