/**
 * Kreta Insider Booking Notice
 */

.kib-booking-notice-widget {
    width: 100%;
}

.kib-booking-notice {
    display: block;
    width: 100%;
    padding: 7px 14px;
    border-radius: 18px;
    background: #ffff00;
    color: #222222;
    text-align: center;
    text-decoration: none;
    line-height: 1.35;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .28);
    transition: opacity .2s ease, transform .1s ease;
}

.kib-booking-notice:hover,
.kib-booking-notice:focus {
    color: #222222;
    text-decoration: none;
}

.kib-booking-notice:hover {
    opacity: .92;
}

.kib-booking-notice:active {
    transform: translateY(1px);
}

.kib-booking-notice:focus-visible {
    outline: 2px solid #222222;
    outline-offset: 2px;
}

.kib-booking-notice-text {
    display: block;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
}

.kib-booking-notice-editor-preview {
    cursor: default;
}

@media (max-width: 600px) {
    .kib-booking-notice {
        padding: 8px 10px;
        border-radius: 16px;
    }

    .kib-booking-notice-text {
        font-size: 12px;
    }
}
