﻿.iti,
.iti .lp-phone-input {
    width: 100%;
}

footer {
    color: white;
    font-size: smaller;
    padding: 20px;
}

.text-danger {
    color: red;
}

button[disabled],
input[type=submit][disabled] {
    cursor: not-allowed;
    /*background: grey;
    color: white;*/
    background: silver !important;
    color: white !important;
}

.iti__selected-flag {
    padding: 0 12px 0 12px !important;
}

.text-important {
    font-weight: 600;
    font-size: larger;
}

.global-lang-container {
    position: fixed;
    top: 16px;
    inset-inline-end: 10px;
    display: flex;
    gap: 4px;
}

.cta-generate-subtext {
    font-size: 12px;
    font-weight: 100;
}

.am-header {
    text-align: center;
    font-size: 13px;
    color: grey;
    margin-top: 5px;
}

.pin-input {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    width: 100%;
}

    .pin-input input {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 1;
        font-size: 16px;
    }

.pin-slots {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.pin-slot {
    width: 40px;
    height: 40px;
    border: 2px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    transition: border-color 0.3s ease;
}

    .pin-slot.active {
        border-color: #007bff;
    }

    .pin-slot.filled {
        background-color: #e9ecef;
    }

.pin-input.error .pin-slot {
    border-color: #dc3545;
}

.pin-input:focus-within .pin-slots {
    /*box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);*/ /* Example: Add a blue outline */
}

.pin-input:focus-within .pin-slot.active {
    /* Styles to apply to the active slot when the input has focus */
    border-color: #007bff; /* Example: Change border color to blue */
}

[highlighted] {
    outline: 2px solid #fbff00;
}

.am-service-description {
    white-space: pre-wrap;
}

.preview-input {
    all: unset;
    cursor: text;
    width: 100%;
    text-align: inherit;
    min-width: 1px;
    display: inline-block;
    white-space: normal;
}

p:empty, .editable-span:empty, label:empty, li:empty, li:has(a:empty), .am-burger-menu-item:has(.editable-span:empty),
p:has(.editable-span:empty), footer:empty, .am-subscription-hint:empty,
.am-service-description:has(.editable-span:empty), label:empty, label:has(.editable-span:empty),
h1:empty, h2:empty, h3:empty, h4:empty, h5:empty, h6:empty {
    display: none !important;
}

.lp-burger-menu-icon svg {
    width: clamp(45px, 4vw, 60px);
    height: clamp(45px, 4vw, 60px);
    position: absolute;
    inset-inline-start: 0;
    margin: 10px;
    cursor: pointer;
}

.am-burger-menu-icon {
    fill: white;
}

.lp-burger-menu {
    position: fixed;
    top: 0;
    inset-inline-start: -280px; /* hidden by default */
    width: 280px;
    height: 100%;
    background-color: #1F2328;
    overflow: auto;
    transition: left 0.3s ease, right 0.3s ease;
    z-index: 1000;
    background-color: var(--lp-card-navy);
}

.lp-burger-menu.open {
    inset-inline-start: 0;
}

.lp-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-menu-list li {
    padding: 15px 20px;
}

.am-burger-menu-item {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.lp-burger-menu-service-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-burger-menu-service-icon {
    width: 80px;
    margin-bottom: 10px;
}

.am-burger-menu-close-icon-container {
    width: clamp(26px, 2.5vw, 36px);
    padding: 3px;
    padding-inline-end: 10px;
    cursor: pointer;
}

.lp-burger-menu-close-icon-container {
    width: 100%;
    display: flex;
    justify-content: end;
}

.am-burger-menu-close-icon-color {
    fill: white;
}

.gallery-swiper-image {
    max-width: 270px;
    transition: background-color 0.6s ease;
}

.gallery-swiper-image > img {
    width: 100%;
    object-fit: cover;
    max-height: 170px;
}

.gallery-swiper-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-swiper-page-dots {
    display: flex;
    gap: 12px;
    margin-block: 12px;
    justify-content: center;
    align-items: center;
}

.gallery-swiper-page-dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    transition: background-color 0.6s ease;
}

.gallery-swiper-page-dot[current] {
    background-color: #717171;
}