html {
    overflow-y: scroll;
}

body {
    font-family: "Mulish", sans-serif;
    background-color: #ffffff;
}

.ttp-color-fuchsia {
    color: #0e2d4e;
}

.ttp-color-purple {
    color: #422055;
}

.ttp-bg-color-purple {
    background-color: #422055;
}

.ttp-btn-primary {
    background-color: #0e2d4e;
    color: #ffffff;
}

.ttp-btn-primary:hover {
    background-color: #0e2d4e;
    color: #ffffff;
}

.ttp-btn-secondary {
    background-color: white;
    color: #4b2960;
    border: solid 1px #4b2960;
}

.ttp-btn-secondary:hover {
    background-color: #f8f8f8;
    color: #4b2960;
    border: solid 1px #4b2960;
}

.ttp-btn-fuchsia {
    background-color: #9E007E;
    color: #ffffff;
}

.ttp-btn-fuchsia:hover {
    background-color: #9E007E;
    color: #ffffff;
}

.ttp-bg-gray {
    background-color: #FBFBFB;
}

.ttp-text-gray {
    color: #979797;
}

.ttp-text-purple {
    color: #422055;
}

.ttp-color-default {
    color: #000000;
}

.ttp-color-valid {
    color: #3F7D20;
}

.ttp-color-invalid {
    color: #9E007E;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 58%; /* For desktop */
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        top: 50%; /* For mobile */
    }
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Hide default Bootstrap icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none; /* Remove default background */
}

.navbar {
    background: linear-gradient(90.04deg, #0e2d4e 2.7%, #ffffff 94.75%);
    height: 65px;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.form-check-input:checked {
    background-color: black;
    border-color: black;
}

.form-check-input:focus {
    outline: none;
    box-shadow: none;
}

.form-select {
    border: 1px solid #DEDEDE;
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-control {
    border: 1px solid #DEDEDE;
    border-radius: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-control:focus {
    border-color: #9E007E;
    box-shadow: 0 0 0 0.1rem rgb(158, 113, 148);
    outline: none;
}

.form-select:focus {
    border-color: #9E007E;
    box-shadow: 0 0 0 0.1rem rgb(158, 113, 148);
    outline: none;
}

.empty-field:focus {
    border-color: #9E007E;
    box-shadow: 0 0 0 0.1rem rgb(158, 113, 148);
    outline: none;
}

.empty-field {
    border-color: #9E007E;
    box-shadow: 0 0 0 0.1rem rgb(158, 113, 148);
    outline: none;
}

.empty-radio {
    border: solid 2px #9E007E;
}

.empty-label {
    color: #9E007E;
}

.empty-text-warnings {
    padding-top: 10px;
    padding-bottom: 2px;
    font-size: 12px;
    color: #9E007E !important;
}

.empty-card-border {
    padding: 12px !important;
    border: solid 2px #0e2d4e !important;
}


@media (max-width: 768px) {
    #svg-desktop-1,
    #svg-desktop-2,
    #navbar-dev-text-desktop {
        display: none;
    }

    #svg-mobile-1,
    #svg-mobile-2,
    #navbar-dev-text-mobile {
        display: block;
    }
}

@media (min-width: 769px) {
    #svg-desktop-1,
    #svg-desktop-2,
    #navbar-dev-text-desktop {
        display: block;
    }

    #svg-mobile-1,
    #svg-mobile-2,
    #navbar-dev-text-mobile {
        display: none;
    }
}

.shipping-card {
    margin-bottom: 10px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-bg-tiptap {
    color: #fff !important;
    background-color: #9e007e !important;
}

input::placeholder {
    color: #9C9C9C !important;
}

/**
* ==============================================
* Dot Flashing
* ==============================================
*/
.dot-flashing {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%; /* Updated for consistent circles */
    background-color: #422055;
    animation: dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
    display: inline-block; /* Ensures it aligns properly with text */
}

.dot-flashing::before, .dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%; /* Updated for consistent circles */
    background-color: #58326e;
}

.dot-flashing::before {
    left: -15px;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::after {
    left: 15px;
    animation: dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dot-flashing {
    0% {
        background-color: #9880ff;
    }
    50%, 100% {
        background-color: rgba(152, 128, 255, 0.2);
    }
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 13px;
    width: 13px;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg viewPort='0 0 12 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3e%3cline x1='1' y1='11' x2='11' y2='1' stroke='%239e017d' stroke-width='2'/%3e%3cline x1='1' y1='1' x2='11' y2='11' stroke='%239e017d' stroke-width='2'/%3e%3c/svg%3e");
}