* {
    box-sizing: border-box;
}
body {
    -webkit-text-size-adjust: 100%;
    color: #34495e;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    line-height: 1.72222;
    margin: 0;
    padding: 0;
    background: #f6f6f6;
    font-weight: 400;
    min-width: 1280px;
}
.img-responsive {
    width: 100%;
}
.semi_bold {
    font-weight: 600;
}
a {
    color: #38acc9;
    text-decoration: none;
    transition: all 0.25s ease 0s;
}
.txt_center {
    text-align: center;
}
ul,
ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.container {
    margin: 0 auto;
}
.d-flex {
    display: flex;
    align-items: center;
}
.container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.pad-left-reset {
    padding-left: 0 !important;
}
.pad-right-reset {
    padding-right: 0 !important;
}
.border-none {
    border: none !important;
}
.margin-reset {
    margin: 0 !important;
}
.block_element {
    display: block;
}
.clr_black {
    color: #000;
}
.dontshow {
    display: none;
}
.clr_white {
    color: #fff;
}
.flex_direction_column {
    flex-direction: column;
}
.relative {
    position: relative;
}
.wd_100 {
    width: 100% !important;
}
.mt_top_10 {
    margin-top: 10px;
}
.margin_10 {
    margin: 10px;
}
@media only screen and (min-width: 768px) {
    .container {
        width: 90%;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}
.tabmenu_ul {
    display: flex;
    align-items: center;
    position: relative;
}
.tabmenu_ul li {
    width: 33%;
    position: relative;
}
.partners {
    margin: 0;
}
.partners .owl-carousel .item > div {
    height: 90px;
    box-shadow: none;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners .owl-carousel .owl-item img {
    width: auto;
}
.partners .owl-carousel .owl-item {
    height: inherit;
    background: 0 0;
    border: 0;
}
select {
    height: 40px;
    margin: 5px 0 15px 0;
    padding: 10px 18px 11px 11px;
    border-radius: 3px;
    box-shadow: 0 20px 50px 0 rgb(10 60 133 / 15%);
    border: solid 1px #d7e0ed;
    background-color: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    font-size: 13px;
    font-family: Roboto, sans-serif;
    font-weight: 300;
    outline: 0;
    width: 210px;
}
.errorpage {
    margin: 100px 0;
    text-align: center;
    justify-content: center;
}
.errormessage {
    font-family: "Open Sans";
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    padding: 50px;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}
.pad-left-0 {
    padding-left: 0 !important;
}
.valid-error {
    font-weight: 700;
    color: #df2323 !important;
    margin-left: 170px;
}
.existingCustomerErrorMsg {
    color: #df1e1e;
    font-size: 12px;
    margin-bottom: 17px;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/* Full-screen overlay for loading */
#loading-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fff; /* Light background with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it stays on top */
    perspective: 1000px; /* Adds depth for a 3D effect */
}

/* Logo styling */
#loading-logo {
    width: 100px; /* Adjust the size as needed */
    height: auto;
    animation: spin-vertically 2s linear infinite;
}
@keyframes spin-vertically {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}