/*
Theme Name: Charterbnb
Author: Stylenova
Author URI: https: //freelancehunt.com/freelancer/stylenova.html
Version: 1.0
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
This theme, like WordPress, is licensed under the GPL.
*/

/* Telegram Phone Verification */
.sn-telegram-verify-container {
    display: inline-flex;
}

.sn-telegram-verify-btn {
    position: relative;
    top: 3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sn-telegram-verify-btn .tgme_widget_login_button_icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19-.14.75-.42 1-.68 1.03-.58.05-1.02-.38-1.58-.75-.88-.58-1.38-.94-2.23-1.5-.99-.65-.35-1.01.22-1.59.15-.15 2.71-2.48 2.76-2.69a.2.2 0 00-.05-.18c-.06-.05-.14-.03-.21-.02-.09.02-1.49.95-4.22 2.79-.4.27-.76.41-1.08.4-.36-.01-1.04-.2-1.55-.37-.63-.2-1.12-.31-1.08-.66.02-.18.27-.36.74-.55 2.92-1.27 4.86-2.11 5.83-2.51 2.78-1.16 3.35-1.36 3.73-1.36.08 0 .27.02.39.12.1.08.13.19.14.27-.01.06.01.24 0 .37z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.sn-telegram-verify-btn:hover {
    background: linear-gradient(135deg, #0077b5 0%, #1e8dc8 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.sn-telegram-verify-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.sn-telegram-verify-btn span {
    color: #fff;
    padding: 3px 0 0 0;
}

.sn-phone-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    margin-top: 8px;
}

/* Telegram Modal */
.sn-telegram-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sn-telegram-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.sn-telegram-modal__content {
    position: relative;
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.sn-telegram-modal__content h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #1a1a1a;
}

.sn-telegram-modal__content p {
    margin: 0 0 16px 0;
    color: #666;
    font-size: 14px;
}

.sn-telegram-modal__content p strong {
    display: block;
    font-size: 18px;
    color: #0088cc;
    margin-top: 8px;
}

.sn-telegram-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.sn-telegram-modal__close:hover {
    background: #e0e0e0;
}

#telegram-login-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Verification Success Notification */
.sn-verification-success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s ease;
}

.sn-verification-success-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.sn-verification-success-notification .sn-notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.sn-verification-success-notification svg {
    flex-shrink: 0;
    color: #fff;
}

.tariff-badge.top-tariff {
	left: 15px;
    top: 15px;
    position: absolute;
    padding: 5px 15px;
    background: #FFBA06;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1;
}

.jet-form-builder__fields-group {
    flex-wrap: wrap!important;
    flex-direction: row!important;
}

.jet-form-builder__required {
    color: rgb(252, 54, 54)!important;
    font-size: 25px!important;
}

.share-social .share {
    display: none;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    padding: 10px 4px;
    gap: 4px;
}

.share-social:hover .share {
    display: flex;
}

.sn_radio_form label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sn_radio_form label input[type="radio"] {
    width: 20px;
    height: 20px;
}

.sn_radio_form label .wpcf7-list-item-label {
    font-size: 1rem;
    line-height: 1.3;
    color: #999;  
}

.flatpickr-current-month .numInputWrapper {
    width: 6ch;
    display: inline-block;
    position: absolute;
    top: 7px;
    right: 18px;
}

#more_filter,
#more_filter_2 {
    cursor: pointer;
}