
body {
    font-family: Arial, sans-serif;
}

#phone-error {
    color: red;
    display: none;
    padding: 0 0 4px 0;
}

/* SUGGESTIONS Dropdown Settings*/
.suggestions-container {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    max-height: 150px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    width: calc(100% - 2px); /* its cuz of the padding in custom_style_form: padding + 7px*/
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: -10px 1px;
    list-style-type: none;
    padding-left: 0;
}

.suggestions-container-step-2-fix {
    width: calc(100% - 102px);
}

@media screen and (max-width:767px) {
	.suggestions-container {
        width: calc(100% - 2px) !important;
	}

    .suggestions-container-step-2-fix {
        width: calc(100% - 52px) !important;
    }
}


.suggestions-container li {
    padding: 0.3rem;
    padding-left: 0.6rem !important;
    cursor: pointer;
    font-size: 0.9rem;
}

.suggestions-container li:hover {
    /* background: rgba(155, 81, 224, 0.2); */
    background: rgba(52, 152, 219, 0.2);
}

.no-before:before {
    content: none !important; 
    display: none !important;
}

.SelectModel select {
    cursor: pointer;
}

.enabled-selector {
    background-color: white;
}

/* .cati-dropdown {
    position: relative;
    display: inline-block;
    margin: 10px;
} */

/* input[type="text"] {
    color: black
} */

/* LOADER settings */

/* TESTING REMOVED
 .loader-message {
    color: #fff;
    font-size: 20px;
    margin-top: 30px;
    text-align: center;
    font-weight: bold;
    width: 100%;
} */

 .dots::after {
        content: '';
        display: inline-block;
        width: 1em;
        text-align: left;
        animation: dots 3s steps(4, end) infinite;
    }

    @keyframes dots {
        0% {
            content: '...';
        }
        25% {
            content: '';
        }

        45% {
            content: '.';
        }
        75% {
            content: '..';
        }
        90%, 100% {
            content: '...';
        }
    }
/* TEST REMOVED
.loader2-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    flex-direction: column;
} */

.loader2 {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #9b51e0; /* #9b51e0 = rgba(155, 81, 224, 1)*/
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2.4s linear infinite;
    animation: spin 2.4s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.menu-item-real-time-tracking a {
    color: #e60012 !important;
}

.menu-item-real-time-tracking a:hover {
    color: #ec3948 !important;
}

/* Fix Cookie Yes banner positioning */
.cky-consent-container[role="region"] {
    position: fixed !important;
}

/* Hide mobile-only menu item on screens wider than 767px */
/* @media (min-width: 1270px) {
    .menu-item-mobile-only {
        display: none !important;
    }
} */

/* Show mobile-only menu item on screens 767px and below */
/* @media (max-width: 1269px) {
    .menu-item-mobile-only {
        display: block;
    }
} */

/* Loading overlay styles */
.loader2-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Frame container for the loader content */
.loader-frame {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 
                0 0 80px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.loader-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.8;
}
.loader-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    height: 92%;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Progress bar container */
/* .cati-progress-container {
    width: 100%;
    margin-bottom: 30px;
} */

/* Progress bar background */
/* .cati-progress-bar {
    width: 100%;
    height: 24px;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
} */

/* Progress bar fill */
/* .cati-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #3498db, #3498db, #3498db, #5dade2);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
} */

/* Add shimmer effect to progress fill */
/* .cati-progress-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmer 1.5s infinite;
} */
/* 
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
} */

.circular-progress-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.circular-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#3498db 0deg, #e0e0e0 0deg);
    transition: background 0.3s ease;
}

.loader-icon {
    position: static;
    /* top: 50%;
    left: 50%; */
    object-fit: contain;
    /* transform: translate(-50%, -50%); */
    width: 75% !important;
    height: 75% !important;
    /* border-radius: 50%; */
    z-index: 1;
}

/* Progress percentage text */
.cati-progress-percentage {
    display: none;;
    text-align: center;
    color: #212529;
    font-size: 18px;
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); */
}

/* Loader message */
.loader-message {
    /* color: #555; */
    color: #6c757d;
    font-size: 16px;
    text-align: center;
    max-width: 400px;
    line-height: 1.5;
    margin-top: 20px;
    font-weight: 500;
}

#message-text {
    display: inline-block;
    min-height: 1.5em;
    transition: opacity 0.2s ease;
}

/* Loading title */
.loader-title {
    font-size: 24px;
    color: #212529;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

/* Optional: Add a subtle animation to the frame on appearance */
.loader-frame {
    animation: fadeInScale 0.3s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .loader-frame {
        padding: 30px 20px;
        width: 95%;
    }
    
    .loader-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .progress-bar {
        height: 20px;
    }
    
    .progress-percentage {
        font-size: 16px;
    }
    
    .loader-message {
        font-size: 14px;
    }
}

/* Alternative dark theme - uncomment to use */

/* .loader-frame {
    border: 0px solid rgba(255, 255, 255, 0.1);
}

.loader-frame::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);
}

.loader-title {
    color: #fff;
}

.progress-bar {
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-percentage {
    color: #fff;
}

.loader-message {
    color: rgba(255, 255, 255, 0.9);
} */

