* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "IBM Plex Sans", sans-serif;
}

::-webkit-scrollbar {
    display: none;
}

/* :root{
    --primary: #2C1275;
    --secondary: #8EB591;
    --primary-fontfamily: "IBM Plex Sans", sans-serif;
    --secondry-fontfamily: "Bookman Old Style", Georgia, serif
} */

button.owl-dot {
    width: 15px;
    height: 15px;
    background: #D9D9D9 !important;
    border-radius: 100%;
}

.owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

button.owl-dot.active {
    background: #2C1275 !important;
}

.web-nav li a {
    font-weight: normal;
    color: #001C27;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.web-nav li a::after {
    content: '';
    position: absolute;
    bottom: -34px;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 16px;
    background-color: #8EB591;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.web-nav li a.active {
    font-weight: bold;
    color: #8EB591;
}

.web-nav li a:hover {
    color: #8EB591;
}

.web-nav li a:hover::after,
.web-nav li a.active::after {
    transform: scaleX(1);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.font-bookman {
    font-family: "Bookman Old Style", Georgia, serif !important;
}

/* .font-IBM{
    font-family: "IBM Plex Sans", sans-serif ;
} */
body:has(.modal-login:not(.hidden)) {
    overflow: hidden;
}

body:has(.modal-signup:not(.hidden)) {
    overflow: hidden;
}

@media (max-width:1024px) {
    #tabbars {
        width: 300px;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 99;
        position: fixed;
        margin-left: -120%;
        transition: margin 0.4s ease-in-out;
    }

    .margin-0 {
        margin-left: 0 !important;
    }
}

@media (max-width: 767px) {
    #profileID .grid {
        display: inherit !important;
    }
}

@media (max-width: 576px) {
    #notificationDropdown {
        right: -60px;
    }

    .logo img {
        width: 150px;
    }

    #profile img {
        width: 36px;
        height: 36px;
    }
}

.rubike {
    font-family: "Rubik", sans-serif;
}

.passwordEye {
    position: absolute;
    right: 16px;
    top: 43px;
}

.passwordEye i {
    color: #8f8f8f;
}