/* Start - New Header CSS */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.mod-close {
    padding: 0px;
    width: 40px;
    height: 40px;
    color: #272343;
    border-radius: 50% !important;
    background: #f0f0f0 !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.mod-close:hover {
    background: #F38521 !important;
    color: #ffffff !important;
}

header {
    background: #fff;
    box-shadow: rgba(17, 17, 26, .05) 0 4px 16px, rgba(17, 17, 26, .05) 0 8px 32px;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0px;
}

header .modal-backdrop {
    z-index: 0;
}

body.dark-mode {
    background-color: #f8f8f8 !important;
}

body.light-mode {
    background-color: #ffffff !important
}

header .flex-md-row {
    padding: 15px 0px;
}

header .right-section {
    gap: 20px;
}

header .custom-logo img {
    width: 180px;
    background: white;
    border-radius: 30px;
    padding: 8px 15px;
}

header .custom-logo span {
    font-size: 16px;
    color: #272343;
}

header .dropdown {
    width: max-content;
    position: relative;
}

header .dropdown span i {
    font-size: 20px;
    line-height: 26px;
}

header .userway {
    font-size: 24px;
    line-height: 30px;
}

header .dropdown-btn {
    gap: 5px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

body.light-mode header .dropdown-btn {
    color: #272343;
}

header .arrow-icon {
    border: solid #272343;
    border-width: 0 2px 2px 0 !important;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}

body.light-mode header .arrow-icon {
    border: solid #272343;
}

header .post-btn {
    background-color: #272343;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    color: #fff !important;
    font-size: 14px;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    cursor: pointer;
}

header .login-btn,
header .register-btn {
    background-color: #272343;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    color: #ffffff !important;
    font-size: 16px;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

header .login-btn:hover,
header .register-btn:hover {
    color: #fff;
    background-color: #F38521;
}

header .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 10px;
    z-index: 10;
}

header .dropdown.open .dropdown-content {
    width: 200px;
    border-radius: 10px;
    display: block;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header .dropdown.open .dropdown-content a {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    transition: all 0.3s ease-in;
}

header .dropdown.open .dropdown-content a:hover {
    color: #F38521;
}

header .theme-toggle-btn {
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.3s ease-in;
}

header .theme-toggle-btn:hover {
    background: #f38521 !important;
}

header .theme-toggle-btn:hover span,
header .theme-toggle-btn:hover i {
    color: #ffffff !important;
}

header .theme-toggle-btn:hover {
    background-color: #d26704;
}

header .theme-toggle-btn i {
    margin-right: 5px;
    font-size: 16px;
}

header .theme-toggle-btn i {
    color: #272343;
}

header .registerbg span i {
    font-size: 22px;
    line-height: 28px;
    transition: all 0.3s ease-in;
}

header .registerbg span i {
    color: #272343;
}

header .registerbg span i:hover {
    color: #F38521;
}

header .registerbg span {
    font-size: 14px;
    line-height: 22px;
}

header .registerbg span {
    color: #272343;
}

header a {
    text-decoration: none;
}

header .logindropdown-container {
    position: relative;
    display: inline-block;
}

header .logindropdown-toggle {
    background-color: transparent;
    color: #fff;
    padding: 0px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

header .logindropdown-toggle:focus {
    outline: none;
}

header .logindropdown-toggle .arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    transition: transform 0.3s;
}

header .logindropdown-toggle.active .arrow-down {
    transform: rotate(180deg);
}

header .logindropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
    z-index: 1003;
    width: max-content;
    opacity: 0;
    pointer-events: none;
}

header .logindropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

header .logindropdown-item {
    display: block;
    padding: 3px 10px;
    color: #272343 !important;
    text-decoration: none;
    font-size: 14px !important;
    transition: background-color 0.3s, color 0.3s;
}

header .logindropdown-item:hover {
    color: #F38521 !important;
}

header .open_menu {
    display: none;
    padding: 2px 8px;
    border-radius: 5px;
    border-color: #F38521;
    color: #ffffff;
    background: #F38521;
    font-size: 16px;
    transition: all 0.3s ease-in;
}

header .open_menu:hover {
    background: #272343;
    border-color: #272343;
}

header .sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    z-index: 10000;
    width: 250px;
    height: 100%;
    background-color: #272343;
    color: #ffffff;
    transition: left 0.3s ease-in-out;
    padding: 80px 20px;
}

header .sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

header .sidebar nav ul li {
    margin: 10px 0;
}

header .nav h5 {
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
}

header .sidebar nav ul li a {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

header .close-btn {
    width: 35px;
    height: 30px;
    border-radius: 5px;
    border-color: #F38521;
    color: #ffffff;
    background: #F38521;
    font-size: 16px;
    position: absolute;
    top: 20px;
    right: 20px;
}

header .sidebar.open {
    left: 0;
}

header .menu_content a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -55%;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    color: #ffffff;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

header .menu_content a:hover::after {
    width: max-content;
    opacity: 1;
    background: #272343;
    padding: 3px;
    font-size: 10px;
    color: #ffffff;
    display: block;
    transform: translateX(-50%) translateY(-5px);
}

header .menu_content a:hover p {
    color: #F38521;
}

header .menu_content {
    gap: 40px;
}

header .subcategory-list {
    display: none;
}

header .subcategory-list.active {
    display: block;
}

@media screen and (max-width: 1400px) {
    header .dropdown.open .dropdown-content {
        width: 170px;
    }

    header .dropdown-content {
        left: unset;
        right: 0%;
    }

    header .login-btn,
    header .register-btn {
        padding: 8px 10px;
    }

}

@media screen and (max-width: 1199px) {
    header .menu_content {
        gap: 20px;
    }

    header .nav_item {
        display: none;
    }

}

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

    .dropdown-toggle::after {
        display: none;
    }

    header .custom-logo img {
        width: 120px;
    }

    header .right-section {
        gap: 10px;
    }

    header .post-btn,
    header .dropdown-btn {
        font-size: 12px;
        line-height: 18px;
    }

    header .dropdown span i {
        font-size: 18px;
        line-height: 24px;
    }

    header .registerbg span,
    header .registerbg a,
    header .dropdown.open .dropdown-content a {
        font-size: 12px;
        line-height: 16px;
    }

    header .flex-md-row {
        padding: 15px 0px 15px;
    }

    header .theme-toggle-btn {
        display: none;
    }

}


/* End - New Header CSS */
/* Start - New Footer CSS */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100000;
    display: none;
    width: 50px;
    height: 42px;
    background-color: #0074a3;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.back-to-top i {
    font-size: 18px;
    animation: jump 2s infinite;
}

@keyframes jump {

    0%,
    100% {
        transform: translateY(4px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.back-to-top.show {
    display: block;
    opacity: 1;
    visibility: visible;
}

.back-to-top.hide {
    opacity: 0;
    visibility: hidden;
}

@media screen and (max-width: 767px) {
    .back-to-top {
        width: 40px;
        height: 35px;
    }

    .back-to-top i {
        font-size: 16px;
    }
}


footer {
    background-color: #f8f8f8;
}

footer p,
footer span,
footer a,
footer figure,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    margin: 0px;
    padding: 0px;
    font-family: "Inter", serif;
    text-decoration: none;
}

footer {
    padding: 50px 0px 10px;
    background-color: #ffffff66;
}

footer hr {
    color: #666666;
    background: #666666;
    opacity: 1;
    height: 1px;
    width: 100%;
    margin: 50px 0px 10px 0px;
}

footer img[alt="footerLogo"] {
    width: 150px;
}

footer img[alt="accounts"] {
    width: 200px;
    filter: invert(1);
}

footer p {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

footer .social i {
    color: #666666;
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 50%;
    border: 1px solid #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

footer .social i:hover {
    color: #F38521;
    border-color: #F38521;
}

footer ul {
    list-style: none;
    padding-left: 0px;
    gap: 10px;
}

footer ul a {
    color: #666666 !important;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    transition: all 0.3s ease-in;
}

footer ul a:hover {
    color: #F38521 !important;
}

footer .justify-content-between {
    padding: 0px 20px;
}

footer label {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
}

.footer_text {
    color: #666666;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

footer form input {
    width: 100%;
    border: 1px solid #E1E3E5;
    font-size: 16px;
    color: #666666;
    background: transparent;
    padding: 10px 10px;
    outline: none;
    border-radius: 10px;

}

footer form button {
    width: 30%;
    background: #F38521;
    border: 1px solid #F38521;
    font-size: 16px;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

footer form button:hover {
    background-color: #d26704;
}

footer .cookies a {
    color: #272343;
    text-decoration: underline;
    transition: all 0.3s ease-in;
}

footer .cookies a:hover {
    color: #F38521;
}

/* this is single css */
@media screen and (max-width: 1199px) {
    footer .justify-content-between {
        padding: 0px 0px;
    }

    footer .social {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 991px) {
    footer {
        padding: 30px 0px;
    }

    footer .row {
        row-gap: 30px;
    }

    footer .cookies a,
    footer form input footer label,
    footer ul a,
    footer p {
        font-size: 14px;
        line-height: 20px;
    }

    footer .pt-2 {
        gap: 14px;
    }

    footer hr {
        margin: 30px 0px 20px 0px;
    }
}

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

    footer .cookies a,
    footer form input footer label,
    footer ul a,
    footer p {
        font-size: 12px;
        line-height: 18px;
    }

    footer ul {
        gap: 5px;
    }

    footer .justify-content-between {
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media screen and (max-width: 360px) {
    footer form .gap-2 {
        flex-direction: column !important;
    }

    footer form button {
        width: 100%;
    }

    footer .social a i {
        font-size: 14px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
}

/* End - New Footer CSS */

.modal-content {
    width: 500px;
    padding: 10px;
}

.modal.auction .modal-dialog {
    position: static;
    top: 50%;
    left: 50%;
    transition: transform .3s ease-out;
    transform: translate(-50%, -50%);
}

header .modal-backdrop {
    z-index: 0;
}

body.dark-mode {
    background-color: #f9f9f9 !important;
}

body.light-mode {
    background-color: #ffffff !important
}

header .flex-md-row {
    padding: 15px 0px;
}

header .right-section {
    gap: 20px;
}

header .custom-logo img {
    box-shadow: rgb(39 35 67 / 22%) 0px 7px 29px 0px;
}

header .custom-logo img {
    width: 180px;
    background: white;
    border-radius: 30px;
    padding: 8px 15px;
}

header .custom-logo span {
    font-size: 16px;
    color: #272343;
}

header .dropdown {
    width: max-content;
    position: relative;
}

header .dropdown span i {
    font-size: 20px;
    line-height: 26px;
}

header .userway {
    font-size: 24px;
    line-height: 30px;
}

header .dropdown-btn {
    gap: 5px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

header .dropdown-btn {
    color: #272343;
}

header .arrow-icon {
    border: solid #272343;
    border-width: 0 2px 2px 0 !important;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}

header .post-btn {
    background-color: #272343;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    color: #fff !important;
    font-size: 14px;
    border: none;
    padding: 8px 22px;
    border-radius: 5px;
    cursor: pointer;
}

header .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 10px;
    z-index: 10;
}

header .dropdown.open .dropdown-content {
    width: 200px;
    border-radius: 10px;
    display: block;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header .dropdown.open .dropdown-content a {
    color: #272343;
    font-size: 16px;
    line-height: 22px;
    transition: all 0.3s ease-in;
}

header .dropdown.open .dropdown-content a:hover {
    color: #F38521;
}

header .arrow-icon {
    border: solid #272343;
    margin-bottom: 3px;
    border-width: 0 1px 1px 0 !important;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

header .dropdown.open .arrow-icon {
    transform: rotate(-135deg);
    margin-bottom: 0px;

}

header .theme-toggle-btn {
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 5px;
    color: #272343;
    background-color: #ffffff;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.3s ease-in;
}

header .theme-toggle-btn:hover {
    color: #fff;
    background-color: #d26704;
}

header .theme-toggle-btn i {
    margin-right: 5px;
    color: #272343;
    font-size: 16px;
}

header .registerbg span i {
    font-size: 22px;
    line-height: 28px;
    transition: all 0.3s ease-in;
}

header .registerbg span i:hover {
    color: #F38521;
}

header .registerbg span {
    font-size: 14px;
    line-height: 22px;
}

header .nav_item,
header .registerbg span {
    color: #272343;
}

header .nav_item:hover {
    color: #F38521;
}

header .registerbg a {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    transition: all 0.3s ease-in;
}

header .logindropdown-container {
    position: relative;
    display: inline-block;
}

header .logindropdown-toggle {
    background-color: transparent;
    color: #272343;
    padding: 0px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

header .logindropdown-toggle:focus {
    outline: none;
}

header .logindropdown-toggle .arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    transition: transform 0.3s;
}

header .logindropdown-toggle.active .arrow-down {
    transform: rotate(180deg);
}

header .logindropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
    z-index: 1003;
    width: max-content;
    opacity: 0;
    pointer-events: none;
}

header .logindropdown-menu.show {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
}

header .logindropdown-item {
    display: block;
    padding: 3px 10px;
    color: #272343 !important;
    text-decoration: none;
    font-size: 14px !important;
    transition: background-color 0.3s, color 0.3s;
}

header .logindropdown-item:hover {
    color: #F38521 !important;
}

header .open_menu {
    display: none;
    padding: 2px 8px;
    border-radius: 5px;
    border-color: #F38521;
    color: #ffffff;
    background: #F38521;
    font-size: 16px;
    transition: all 0.3s ease-in;
}

header .open_menu:hover {
    background: #272343;
    border-color: #272343;
}

header .sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    z-index: 10000;
    width: 250px;
    height: 100%;
    background-color: #272343;
    color: #ffffff;
    transition: left 0.3s ease-in-out;
    padding: 80px 20px;
}

header .sidebar nav ul {
    list-style-type: none;
    padding: 0;
}

header .sidebar nav ul li {
    margin: 10px 0;
}

header .nav h5 {
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
}

header .sidebar nav ul li a {
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
}

header .close-btn {
    width: 35px;
    height: 30px;
    border-radius: 5px;
    border-color: #F38521;
    color: #ffffff;
    background: #F38521;
    font-size: 16px;
    position: absolute;
    top: 20px;
    right: 20px;
}

header .sidebar.open {
    left: 0;
}

header .menu_content a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -55%;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    color: #ffffff;
    opacity: 0;
    display: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

header .menu_content a:hover::after {
    width: max-content;
    opacity: 1;
    background: #272343;
    padding: 3px;
    font-size: 10px;
    color: #ffffff;
    display: block;
    transform: translateX(-50%) translateY(-5px);
}

header .menu_content a:hover p {
    color: #F38521;
}

header .menu_content {
    gap: 40px;
}

header .subcategory-list {
    display: none;
}

header .subcategory-list.active {
    display: block;
}

@media screen and (max-width: 1400px) {
    header .dropdown.open .dropdown-content {
        width: 170px;
    }

    header .dropdown-content {
        left: unset;
        right: 0%;
    }

}

@media screen and (max-width: 1199px) {
    header .menu_content {
        gap: 20px;
    }

    header .subcategory-list {
        display: none;
    }

    header .subcategory-list.active {
        display: block;
    }
}

@media screen and (max-width: 991px) {
    header .custom-logo img {
        width: 120px;
    }

    header .right-section {
        gap: 10px;
    }

    header .post-btn,
    header .dropdown-btn {
        font-size: 12px;
        line-height: 18px;
    }

    header .dropdown span i {
        font-size: 18px;
        line-height: 24px;
    }

    header .registerbg span,
    header .registerbg a,
    header .dropdown.open .dropdown-content a {
        font-size: 12px;
        line-height: 16px;
    }

    header .logindropdown-toggle {
        font-size: 14px;
        line-height: 20px;
    }

    header .theme-toggle-btn {
        display: none;
    }

    header .flag-icon {
        width: 20px;
    }

}

@media screen and (max-width: 767px) {
    header {
        padding: 10px 0px;
    }

    header .open_menu {
        width: 35px;
        height: 30px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .open_menu i {
        font-size: 18px;
    }

    header .d-flex.align-items-center.justify-content-end.gap-3 {
        justify-content: center !important;
        gap: 10px !important;
    }

    header .justify-content-between {
        gap: 5px;
    }

    header .theme-toggle-btn span {
        font-size: 12px;
        line-height: 18px;
    }

    header .registerbg a,
    header .dropdown.open .dropdown-content a {
        font-size: 10px;
        line-height: 16px;
    }

    header .nav h5 {
        font-size: 20px;
        line-height: 26px;
    }

    header .sidebar nav ul li a {
        font-size: 12px;
        line-height: 18px;
    }

    header .dropdown.open .dropdown-content {
        width: 130px;
    }

    header .logindropdown-toggle {
        font-size: 12px;
        line-height: 18px;
    }

    header .right-section .dropdown,
    header #location-custom,
    header .register-btn {
        display: none !important;
    }

    header .left-section .ps-3 {
        padding-left: 5px !important;
    }
}

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

    header .post-btn,
    header .login-btn,
    header .register-btn,
    header .login-btn,
    header .register-btn {
        padding: 6px 6px;
        font-size: 12px;
        line-height: 16px;
    }

    header .custom-logo img {
        width: 100px;
    }
}

@media screen and (max-width: 320px) {
    header .dropdown.open .dropdown-content {
        width: max-content;
    }

    header .dropdown-content {
        right: -16%;
    }
}

/* End - New Header CSS */
/* End - New Footer CSS */
/* Quick eze links - Modals CSS */

.custom-offcanvas .custom-offcanvas-header,
.custom-offcanvas .offcanvas-header {
    background: #1f294c;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
}

.custom-offcanvas {
    z-index: 9999;
    background: #f9f9f9;
    border-right: 1px solid #e0e0e0 !important;
    width: 350px !important
}

.custom-offcanvas .custom-offcanvas-header .offcanvas-title,
.custom-offcanvas .offcanvas-header .offcanvas-title {
    font-size: 18px;
    font-weight: 600
}

.custom-offcanvas .aside-cats:hover {
    background: #f0f8fb;
    border-left-color: #0074a3;
    color: #0074a3 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    transform: translateX(4px);
}

.custom-offcanvas .close-btn {
    width: 25px;
    height: 25px;
    background: #fff;
    border: none;
    color: #1f294c;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all .3s ease-in;
    display: flex;
    align-items: center;
    justify-content: center
}

.custom-offcanvas .close-btn:hover {
    background: #0074a3;
    color: #fff
}

.custom-offcanvas .custom-offcanvas-body {
    padding: 10px 15px
}

.custom-offcanvas .cat-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.custom-offcanvas .menu-btn {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 500;
    color: #1f294c;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease
}

.custom-offcanvas .menu-btn:hover {
    background: #0074a3;
    color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    transform: translateX(3px)
}

.custom-offcanvas .sub-cat-list {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0
}

.custom-offcanvas .aside-cats {
    margin: 6px 0
}

.custom-offcanvas .sub-cat-list li {
    margin-bottom: 6px
}

.custom-offcanvas .aside-cats,
.custom-offcanvas .dropdown-toggle,
.custom-offcanvas .sub-cat-list li a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-radius: 6px;
    border: none;
    border-left: 3px solid transparent;
    background: #fff;
    transition: all .3s ease;
    text-decoration: none;
    box-shadow: rgba(17, 17, 26, .05) 0 4px 16px, rgba(17, 17, 26, .05) 0 8px 32px;
}

.custom-offcanvas .aside-cats :hover,
.custom-offcanvas .dropdown-toggle:hover,
.custom-offcanvas .sub-cat-list li a:hover {
    background: #f0f8fb;
    border-left-color: #0074a3;
    color: #0074a3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    transform: translateX(4px)
}

.custom-offcanvas .aside-cats {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-radius: 6px;
    border-left: 3px solid transparent;
    background: #fff;
    transition: all .3s ease;
    text-decoration: none;
    position: relative
}

.custom-offcanvas .aside-cats:hover {
    background: #f0f8fb;
    border-left-color: #0074a3;
    color: #0074a3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    transform: translateX(4px)
}

.custom-offcanvas .aside-cats:hover img {
    transform: translateX(0px);
}

.custom-offcanvas .aside-cats .fa-chevron-right {
    position: absolute;
    right: 4%
}

.custom-offcanvas .dropdown-toggle {
    position: relative
}

.custom-offcanvas .dropdown-toggle::after {
    position: absolute;
    right: 4%
}

.custom-offcanvas .inner_ele,
.custom-offcanvas #ezeadAppDropdown-183183 ul {
    list-style: none;
}

/* Quick eze links - Modal CSS ended */
/* App_Suggest Modal style started */
.modal-content {
    width: 500px;
    padding: 10px;
}

.modal.auction .modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transition: transform .3s ease-out;
    transform: translate(-50%, -100%);
}

.modal.auction.show .modal-dialog {
    transform: translate(-50%, -50%);
}

.App_Suggest a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.App_Suggest a img {
    width: 100%;
    transition: all 0.3s ease-in;
}

.App_Suggest a img[alt="app-store"]:hover,
.App_Suggest a img[alt="google_play"]:hover {
    filter: invert(1);
}

.App_Suggest .modal-content h3 {
    padding-bottom: 0px;
}

.App_Suggest_close {
    background: none;
    border: none;
    padding: 0px;
    position: absolute;
    top: 6px;
    right: 6px;
}

.App_Suggest_close i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    background: #f0f0f0;
    color: #272343;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in;
}

.App_Suggest_close i:hover {
    background: #F38521;
    color: #ffffff;
}

.App_Suggest h3 span {
    color: #F38521;
}

/* App_Suggest Modal style end */
#selectCountry .cat-list .flag {
    width: 30px;
}

#selectCountry .cat-list .country-select {
    color: #272343;
}

#selectCountry .cat-list .country-select:hover {
    color: #f38521;
}

@media screen and (max-width:767px) {
    #selectCountry .cat-list .country-select {
        font-size: 12px;
        line-height: 18px;
    }

    #selectCountry .cat-list .flag {
        width: 18px;
    }

    #selectCountry #selectCountryLabel {
        font-size: 16px;
        line-height: 22px;
    }
}

/* <!-- SEO Text of EzeStore Ended --> */