html {
    scroll-behavior: smooth;
  }
@font-face {
    font-family: "DINNext"; /* Choose a name for your font */
    src: url("/assets/fonts/din-next-lt-w23-regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}
body {
    font-family: "DINNext", sans-serif !important;
}
.unsetBackground {
    background: unset;
}
.topHeader {
    background-color: #f8f8f8;
}

.headIconText {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444444;
}

.headIconText:first-child {
    padding-left: 15px;
}

.headIconTextWithBorder {
    border-right: 1px solid #212121;
    padding-right: 15px;
}

.primaryLogo {
    height: 56px;
}

.primaryNav {
    padding-right: 40px;
}

.primaryNav a {
    padding-right: 24px;
}

.primaryNav a:first-child {
    padding-right: 0;
}

.vodiapicker {
    display: none;
}

#a {
    padding-left: 0px;
}

#a img,
.btn-select img {
    width: 12px;
}

#a li {
    list-style: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

#a li:hover {
    background-color: #f4f3f3;
}

#a li img {
    margin: 5px;
}

#a li span,
.btn-select li span {
    margin-left: 30px;
}

/* item list */

.b {
    display: none;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.open {
    display: show !important;
}

.btn-select {
    margin-top: 10px;
    width: 100%;
    max-width: 350px;
    height: 34px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ccc;
}
.btn-select li {
    list-style: none;
    float: left;
    padding-bottom: 0px;
}

.btn-select:hover li {
    margin-left: 0px;
}

.btn-select:hover {
    background-color: #f4f3f3;
    border: 1px solid transparent;
    box-shadow: inset 0 0px 0px 1px #ccc;
}

.btn-select:focus {
    outline: none;
}

.lang-select {
    margin-left: 50px;
}



.textColor {
    color: #444444;
}

.textPrimary {
    color: #0660c6;
}

.toggle-checkbox:checked {
    right: 0;
    border-color: #4f46e5;
}

.toggle-checkbox:checked + .toggle-label {
    background-color: #4f46e5;
}

.pricing-table tr:nth-child(even) {
    background-color: #f8fbfd;
}

.customBG {
    background-image: url("/assets/img/landing/contact-us.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    height: 250px;
}

.footerLinks a {
    margin-left: 14px;
}

.heroBanner {
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 1em;
}

.deviceMockup {
    justify-content: flex-end;
    height: 740px;
    /* margin-left: -184px; */
}

.hiddenXScroll {
    opacity: 0 !important;
}

@media only screen and (max-width: 600px) {

    .hiddenXScroll {
        opacity: 1 !important;
    }
    @keyframes bounce-x {
        0%, 100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(8px);
        }
    }
    .animate-bounce-x {
        animation: bounce-x 1s infinite;
    }

    .paddingMobileCustom {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .tableTHWidth {
        padding: 0 95px !important;
    }
    .tableTHZeroWidth {
        padding: 0 !important;
    }

    .topHeader div div {
        flex-wrap: wrap !important;
    }

    .headIconTextWithBorder {
        border: unset !important;
        padding-left: unset !important;
        padding-right: unset !important;
    }

    .text-7xl {
        font-size: 3.75rem !important;
    }

    .heroBanner .deviceMockup {
        display: none;
    }

    .table-fixed {
        table-layout: unset !important;
    }

    .table-fixed .px-6 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .table-fixed .p-6 {
        width: 250px;
    }

    .table-fixed .h-10 {
        height: unset !important;
    }
}


.language-selector {
    position: relative;
    display: inline-block;
}
.language-selector select {
    display: none; /* Hide native select */
}

.language-selector .custom-select {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.language-selector .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
}

.language-selector .dropdown div {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-selector .dropdown div:hover {
    background-color: #f1f1f1;
}

.language-selector img {
    width: 20px;
    margin-right: unset;
    margin-left: 8px;
}