/* Drawer Menu Styles */

.drawer-overlay {
    position: fixed;
    top: 97px;
    left: calc((100vw - 1296px) / 2);
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.3s ease;
}

.drawer-overlay.inactive {
    display: none;
    opacity: 0;
}

.drawer-menu {
    position: fixed;
    left: 0;
    top: 97px;
    bottom: 0;
    right: 0;
    width: 445px;
    background: #1a1a1a;
    color: #F1F1F3;
    z-index: 1000;
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-360px);
}

.drawer-menu.inactive {
    transform: translateX(-360px);
    transition: transform 0.3s ease;
}

.drawer-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.drawer-close svg {
    width: 24px;
    height: 24px;
}

.drawer-close:hover svg path {
    stroke: #f3c10a;
}

.drawer-outline{
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 10px;
    background-color: #000;
}
.drawer-inner-block {
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 16px;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-section {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.drawer-social{
	display: flex;
	gap: 32px;
	padding: 24px 32px 24px 64px;
}
.drawer-social a{
	display: flex;
	align-items: center;
	justify-content: center;
}
.drawer-social svg{
	color:#F1F1F3;
	width: 40px;
	height: 40px;
}
.drawer-policy {
	display: flex;
	flex-direction: column;
	gap:16px;
}
.drawer-policy a{
    font-size: 14px;
    line-height: 1.5;
    color:#FCFCFD;
}
.drawer-policy a:hover, 
.drawer-policy a:active{
    color:#FCFCFD;
    text-decoration: none;
}
.drawer-logo-down {
    margin-bottom:40px;
    border:none;
    display: flex;
    justify-content: center;
}
.drawer-logo-down img{
    max-height: 64px;
}
.drawer-language-switcher {
    border:none;
}
.drawer-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.drawer-section-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: #FCFCFD;
}

/* Phone input section */
.drawer-phone-input {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

/* Custom country select dropdown */
.custom-country-select, .signup-country-select {
    position: relative;
    flex: 0 0 auto;
}

.country-select-trigger, .signup-country-trigger {
    background: #262626;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.country-select-trigger:hover, .signup-country-trigger:hover {
    background: #2a2a2a;
    border-color: #404040;
}

.country-select-trigger .flag-img, .signup-country-trigger .flag-img {
    width: 30px;
    height: 30px;
}

.country-select-trigger .country-code, .signup-country-trigger .country-code {
    color: #F1F1F3;
    font-size: 14px;
    font-weight: 500;
}

.country-select-dropdown, .signup-country-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #262626;
    border: 1px solid #333333;
    border-radius: 6px;
    min-width: 100%;
    display: none;
    flex-direction: column;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.country-select-dropdown.open, .signup-country-dropdown.open {
    display: flex;
}

.country-option, .signup-country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #F1F1F3;
    font-size: 14px;
}

.country-option:hover, .signup-country-option:hover {
    background: #2a2a2a;
}

.country-option.selected, .signup-country-option.selected {
    background: #333333;
}

.country-option img, .signup-country-option img {
    width: 30px;
    height: 30px;
}


/* Arrow color change when phone valid */
.drawer-btn-primary.valid{
    color: #F1F1F3;
}
.drawer-btn-primary.valid svg path {
    fill: #FFD11A !important;
}
.country-select {
    background: #262626;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 12px 16px;
    color: #F1F1F3;
    font-size: 14px;
    cursor: pointer;
    flex: 0 0 auto;
    min-width: 110px;
}

.country-select option {
    background: #262626;
    color: #F1F1F3;
}

.drawer-tel-input, .signup-tel-input {
    flex: 1 1 auto;
    min-width: 0;
    background: #262626;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 12px 16px;
    color: #F1F1F3;
    font-size: 14px;
}

.drawer-tel-input::placeholder {
    color: #7E7E81;
}

.drawer-tel-input:focus {
    outline: none;
    border-color: #f3c10a;
    background: #1f1f1f;
}

.drawer-btn-primary {
    width: 100%;
    background: #262626;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 14px 16px;
    color: #666666;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.drawer-btn-primary:hover {
    background: #2a2a2a;
    border-color: #404040;
}

.drawer-btn-secondary {
    display: flex;
    justify-content: center;
    width: 100%;
    color: #F1F1F3;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer-btn-secondary:hover {
    color: #f3c10a;
    text-decoration: underline;
}

/* Menu list */
.drawer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size:14px;
}

.drawer-menu-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.drawer-menu-list li:last-child {
    border-bottom: none;
}

.drawer-menu-list a {
    color: #F1F1F3;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.drawer-menu-list a:hover {
    color: #f3c10a;
}

/* Menu links */
.drawer-menu-link {
    padding: 10px 0;
    color: #CCCCCC;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

.drawer-menu-link:hover {
    color: #CCCCCC;
}

.drawer-menu-link:last-of-type {
    border-bottom: none;
}

/* Contacts section */
.drawer-contacts {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-contact-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #F1F1F3;
    font-size: 14px;
}

.drawer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.drawer-contact-item a {
    color: #F1F1F3;
    text-decoration: none;
    transition: color 0.2s ease;
}

.drawer-contact-item a:hover {
    color: #F1F1F3;
}

/* Hide drawer initially */
.inactive {
    display: none !important;
}

/* Disable page scroll when drawer is open */
html.drawer-open, body.drawer-open {
    height: 100%;
    overflow: hidden;
}

/* info block: image + text */
.drawer-section-info, .drawer-account-info {
    display: flex;
    gap: 12px;
    align-items: center;
}
.drawer-section-info img {
    flex: 0 0 56px; 
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
    padding: 6px;
}
.drawer-section-info span {
    flex: 1 1 auto;
    display: block;
    color: #F1F1F3;
    font-size: 12px;
    line-height: 1.4;
}

/* SMS code layout inside drawer-inner-block */
.drawer-second-step-block .drawer-btn-primary {
    margin-bottom: 0;
}
.sms-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.sms-title {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
}

.sms-subtitle {
    color: #BFC0C3;
    font-size: 13px;
}

.sms-code {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}

.sms-code .digit {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #111214;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFEFA;
    font-size: 14px;
    font-weight: 500;
}

.sms-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.sms-actions .btn-back,
.sms-actions .drawer-btn-primary {
    flex: 1 1 0;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    max-width: 130px;
}

.sms-actions .btn-back {
    background: #262626;
    color: #F1F1F3;
    border: 1px solid #333;
}

.sms-actions .drawer-btn-primary {
    background: #262626;
    color: #F1F1F3;
    border: 1px solid #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sms-actions .drawer-btn-primary[disabled],
.sms-actions .drawer-btn-primary:not(.valid) {
    opacity: 0.45;
}

.sms-actions .drawer-btn-primary.valid {
    cursor: pointer;
    opacity: 1;
}

.sms-actions .drawer-btn-primary.valid svg path {
    fill: #FFD11A !important;
}

.sms-resend {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #E4E4E7;
    font-weight: 500;
    font-size: 12px;
    margin-top: 10px;
}

.sms-resend.resend-ready {
    cursor: pointer;
    color: #FFFEFA;
}

/* SMS input specific styles */
.sms-code .sms-digit {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #FFFEFA;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    outline: none;
}
.sms-digit.error {
    border-color: #ED4B4B !important;
}
.sms-error-notification {
    font-size: 10px;
    line-height: 1.3;
    color: #DE5644;
    display: flex;
    justify-content: center;
    gap:5px;
}

/* Shake animation */
@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

.sms-code.shake {
    animation: shake 0.35s ease-in-out;
}

.sms-code .sms-digit::placeholder { color: #666; }

.sms-actions .btn-back { cursor: pointer; }
.sms-actions .drawer-btn-primary.sms-next { cursor: pointer; }

/* Remember-me checkbox block */
.sms-remember {
    display: none;
    margin-top: 12px;
}
.sms-remember.visible {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 260px;
}
.sms-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    max-width: 260px;
}
.remember-label {
    display:flex;
    gap: 8px;
}
.remember-custom {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #111214;
    border: 1px solid #333;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.remember-checkbox {
    display: none;
}
.remember-checkbox:checked + .remember-custom {
    background: #FFD11A;
    border-color: #FFD11A;
}
.remember-checkbox:checked + .remember-custom::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid #141414;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.remember-text {
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    line-height: 13px;
    max-width: 160px;
}

/* Third step block */
.drawer-third-step-block .drawer-section-info{
    display: flex;
    flex-direction: row;
}
.drawer-third-step-block .drawer-account-info{
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 2px;
}
.drawer-account-info span:first-of-type {
    font-size: 14px;
    font-weight: 500;
    color:#fff;
}

.drawer-account-info span:last-of-type {
    font-size: 12px;
    font-weight: 400;
    color: #B3B3B3;
}

.drawer-third-step-block img {
    padding: 0;
}

.drawer-third-step-block .drawer-account-info{
    padding-bottom: 0;
}

.drawer-third-step-block .drawer-section-info {
    padding-bottom: 0;
}

.drawer-section-info svg {
    margin-left: auto; 
    display: block;
}

/* Styles for scrollbar */

::-webkit-scrollbar {
  width: 10px;       
  height: 64px;      
}

/* Трек (фон скролла) */
::-webkit-scrollbar-track {
  background: #1a1a1a;   
  border-radius: 6px;
}

/* Ползунок (thumb) */
::-webkit-scrollbar-thumb {
  background: #555555;   
  border-radius: 6px;
  border: 3px solid #1a1a1a; 
}

/* Наведение на ползунок */
::-webkit-scrollbar-thumb:hover {
  background: #888888;
}

/* For Firefox */
* {
  scrollbar-width: thin;           /* thin / auto / none */
  scrollbar-color: #555555 #111111; /* thumb / track */
}

/* ========== SIGNUP MODAL ========== */
.signup-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: opacity 0.3s ease;
}

.signup-modal-overlay.inactive {
    display: none;
    opacity: 0;
}

.signup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 370px;
    background: rgba(20, 20, 20, 0.4);
    border-radius: 8px;
    padding: 24px;
    z-index: 2001;
    box-shadow: 0px 4px 8px 0px #00000014;
    backdrop-filter: blur(96px);
    max-height: 90vh;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.signup-modal.inactive {
    display: none;
    opacity: 0;
    transform: translate(-50%, -48%);
}

.signup-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.signup-modal-close:hover {
    opacity: 0.7;
}

.signup-modal-header {
    margin-bottom: 32px;
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.signup-modal-header span:first-of-type {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}

.signup-modal-header span:last-of-type {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color:#DDDDDD;
    margin: 0;
    line-height: 1.5;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.signup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.signup-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.signup-form-group.full-width {
    grid-column: 1 / -1;
}

.signup-form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #B3B3B3;
    margin:0;
}

.signup-input {
    background: #262626;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 12px 16px;
    color: #F1F1F3;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.signup-input::placeholder {
    color: #7E7E81;
}

.signup-input:focus {
    outline: none;
    border-color: #FFD11A;
    background: #2a2a2a;
}

/* Phone input styles */
.signup-phone-input {
    display: flex;
    gap: 12px;
    align-items: stretch;
}


.signup-tel-input {
    flex: 1 1 auto;
    background: #262626;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 15px 16px;
    color: #CCCCCC;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.2s ease;
}

.signup-tel-input::placeholder {
    color: #7E7E81;
}

.signup-tel-input:focus {
    outline: none;
    border-color: #FFD11A;
    background: #2a2a2a;
}

.signup-btn-primary {
    background: #262626;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 12px 16px;
    color: #F1F1F3;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    cursor: not-allowed;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    opacity: 0.45;
}

.signup-btn-primary:hover:not(:disabled) {
    background: #2a2a2a;
    border-color: #404040;
}

.signup-btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.signup-btn-primary.valid {
    cursor: pointer;
    opacity: 1;
    color: #F1F1F3;
}

.signup-btn-primary.valid svg path {
    fill: #FFD11A !important;
}
.signup-country-trigger {
    padding: 10px 16px;
}

/* Signup Input Validation Styles */
.signup-input {
    width: 100%;
    background: #262626;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 15px 16px;
    color: #CCCCCC;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.2s ease;
}

.signup-input::placeholder {
    color: #7E7E81;
}

.signup-input:focus {
    outline: none;
    border-color: #FFD11A;
    background: #2a2a2a;
}

.signup-input.error {
    border-color: #FF4444;
    background: #3a1a1a;
}

.signup-input.error:focus {
    border-color: #FFD11A;
    background: #2a2a2a;
}

.signup-tel-input.error:focus {
    border-color: #FFD11A;
    background: #2a2a2a;
}
    /* flex: 1 1 auto;
    background: #262626;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 12px 16px;
    color: #F1F1F3;
    font-size: 14px;
    transition: border-color 0.2s ease;
} */

.signup-tel-input::placeholder {
    color: #7E7E81;
}

.signup-tel-input:focus {
    outline: none;
    border-color: #FFD11A;
    background: #2a2a2a;
}

.signup-tel-input.error {
    border-color: #FF4444;
    background: #3a1a1a;
}

/* SMS Modal Styles */
.sms-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sms-modal-overlay.inactive {
    display: none;
}

.sms-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0f0f0f;
    border: 1px solid #333333;
    border-radius: 16px;
    padding: 24px;
    max-width: 370px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    box-shadow: 0px 4px 8px 0px #00000014;
    backdrop-filter: blur(96px)
}

.sms-modal.inactive {
    display: none;
}

.sms-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sms-modal-close:hover svg path {
    stroke: #ffffff;
}

.sms-modal-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 8px;
}

.sms-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #FCFCFD;
    margin: 0 0 8px 0;
}

.sms-modal-header p {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

.sms-modal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sms-modal-content .sms-code {
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.sms-modal-content .sms-digit {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid #7A7C7F;
    color: #FFFEFA;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    outline: none;
}

.sms-modal-content .sms-digit:focus {
    border-color: #FFD11A;
    background: #262626;
}

.sms-modal-content .sms-digit::placeholder {
    color: #666;
}

.sms-modal-content .sms-remember {
    display: none;
    margin: 0;
}

.sms-modal-content .sms-remember.visible {
    display: block;
}

/* .sms-modal-content .sms-wrap {
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
} */

.sms-modal-content .remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #F1F1F3;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 4px;
}

.sms-modal-content .remember-checkbox {
    display: none;
}

.sms-modal-content .remember-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #333333;
    border-radius: 4px;
    background: #262626;
    cursor: pointer;
    flex-shrink: 0;
}

.sms-modal-content .remember-checkbox:checked + .remember-custom {
    background: #FFD11A;
    border-color: #FFD11A;
}

.sms-modal-content .remember-custom::after {
    content: '';
    display: none;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sms-modal-content .remember-checkbox:checked + .remember-custom::after {
    display: block;
}

.sms-modal-content .sms-actions {
    display: flex;
    gap: 12px;
}

.sms-modal-content .sms-actions .btn-back,
.sms-modal-content .sms-actions .sms-modal-btn-primary {
    flex: 1 1 0;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border: 1px solid #262626;
    background: #262626;
    color: #F1F1F3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 165px;
}


.sms-modal-content .sms-actions .btn-back:hover {
    background: #2a2a2a;
    border-color: #404040;
}

.sms-modal-content .sms-actions .sms-modal-btn-primary[disabled],
.sms-modal-content .sms-actions .sms-modal-btn-primary:not(.valid) {
    opacity: 0.45;
}

.sms-modal-content .sms-actions .sms-modal-btn-primary.valid {
    cursor: pointer;
    opacity: 1;
}

.sms-modal-content .sms-actions .sms-modal-btn-primary.valid svg path {
    fill: #FFD11A !important;
}

.sms-modal-content .sms-resend {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #E4E4E7;
    font-weight: 500;
    font-size: 12px;
    margin: 0;
}

.sms-modal-content .sms-resend.resend-ready {
    cursor: pointer;
    color: #FFFEFA;
}

.sms-modal-content .sms-resend.resend-ready .sms-timer {
    cursor: pointer;
}

/* Success Modal Styles */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal-overlay.inactive {
    display: none;
}

.success-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0f0f0f;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 24px;
    max-width: 370px;
    width: 90%;
    z-index: 2001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.success-modal.inactive {
    display: none;
}

.success-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.success-modal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.success-modal span:first-of-type {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.success-modal span:last-of-type {
    font-size: 12px;
    color: #DDDDDD;
    margin: 0;
    line-height: 1.3;
}

.success-modal-btn {
    width: 100%;
    padding: 11px 24px;
    background: #FFD11A;
    color: #000000;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
}

.success-modal-btn:hover {
    background: #FFDB4D;
}

.mobile-title{
    display: flex;
    align-items: center;
    gap: 16px;
    color: #B3B3B3;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 0 32px;
  }

/* MEDIA 992px */
@media(max-width: 992px){
    .drawer-menu,
    .drawer-overlay{
        top:80px;
    }
    .drawer-section:first-child{
        border-bottom: none;
    }
}

/* MEDIA 480px */
@media (max-width: 480px) {
    .drawer-menu {
        width: 100%;
    }
    .drawer-menu,
    .drawer-overlay{
        top:70px;
    }

    .drawer-menu.inactive {
        transform: translateX(-100%);
    }

    .drawer-header {
        padding: 12px 16px;
    }

    .drawer-content {
        padding: 16px 0;
    }

    .drawer-section {
        padding: 24px 32px 24px 32px;
    }
    .drawer-section:first-child{
        border-bottom:none;
        padding:16px 16px 24px;
    }
    .country-select {
        min-width: 100%;
    }
}
