:root {
    --main-color: #22B573;
    --sec-color: #EB9B3A;
    --thirt-color: #D83F8F;
    --text-color: #000000;
    --grey-color: #707070;
    --bread-color: #F1F1F1;
    --contact-color: #4E4E4E;
    --white-color: #ffffff;
    --view-color: #808080;
    --delete-color: #3E51DB;

}

@font-face {
    font-family: "tjLight";
    src: url("../fonts/Tajawal-Light.ttf") format("ttf"),
    url("../fonts/Tajawal-Light.woff") format("woff"),
    url("../fonts/Tajawal-Light.woff2") format("woff2"),
    url("../fonts/Tajawal-Light.eot") format("eot");
}

@font-face {
    font-family: "tj";
    src: url("../fonts/Tajawal-Regular.ttf") format("ttf"),
    url("../fonts/Tajawal-Regular.woff") format("woff"),
    url("../fonts/Tajawal-Regular.woff2") format("woff2"),
    url("../fonts/Tajawal-Regular.eot") format("eot");
}

@font-face {
    font-family: "tjMd";
    src: url("../fonts/Tajawal-Medium.ttf") format("ttf"),
    url("../fonts/Tajawal-Medium.woff") format("woff"),
    url("../fonts/Tajawal-Medium.woff2") format("woff2"),
    url("../fonts/Tajawal-Medium.eot") format("eot");
}

@font-face {
    font-family: "tjBold";
    src: url("../fonts/Tajawal-Bold.ttf") format("ttf"),
    url("../fonts/Tajawal-Bold.woff") format("woff"),
    url("../fonts/Tajawal-Bold.woff2") format("woff2"),
    url("../fonts/Tajawal-Bold.eot") format("eot");
}

@font-face {
    font-family: "tjBlk";
    src: url("../fonts/Tajawal-Black.ttf") format("ttf"),
    url("../fonts/Tajawal-Black.woff") format("woff"),
    url("../fonts/Tajawal-Black.woff2") format("woff2"),
    url("../fonts/Tajawal-Black.eot") format("eot");
}

a,
p,
label,
span,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "tj";
}

a {
    color: var(--text-color);
    text-decoration: none;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {

    outline: none;
}

body::-webkit-scrollbar {
    background-color: #fff;
    width: 7px;
    height: 0;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--main-color) #fff;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.clear {
    clear: both;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 0;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*  */

.fixall {
    margin: 0;
    border: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    text-decoration: none;
}

.fixall:focus,
.fixall:hover {
    outline: 0;
    text-decoration: none;
}

/* loader */

@-webkit-keyframes flash {
    from {
        opacity: .8;
    }
    to {
        opacity: 1;
    }
}

@keyframes flash {
    from {
        opacity: .8;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    width: 200px;
    height: 200px;
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    border: 4px solid transparent;
    border-radius: 50%;
    border-bottom: 4px solid var(--main-color);
    -webkit-animation: circle 3s infinite linear;
    animation: circle 3s infinite linear;
}

.loader::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-bottom: 4px solid var(--sec-color);
    -webkit-animation: circle 2s infinite linear;
    animation: circle 2s infinite linear;
}

.loader::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    bottom: 24px;
    right: 24px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-bottom: 4px solid var(--grey-color);
    -webkit-animation: circle 1s infinite linear;
    animation: circle 1s infinite linear;
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* MenuIcon Animation */
#nav-icon {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 99999;
    order: 2;
    margin-right: 3px;
    background-color: var(--main-color);
    border-radius: 5px;
    color: white;
    width: 40px;
    height: 40px;
}

#nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 22px;
    background-color: #ffffff !important;
    opacity: 1;
    left: 9px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

#nav-icon span:nth-child(1) {
    top: 12px;
}

#nav-icon span:nth-child(2) {
    top: 18px;
}

#nav-icon span:nth-child(3) {
    top: 24px;
}

#nav-icon.open span:nth-child(1) {
    top: 17px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    background-color: #ffffff;
}

#nav-icon.open span:nth-child(2) {
    opacity: 0;

}

#nav-icon.open span:nth-child(3) {
    top: 17px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background-color: #ffffff;
}

html[dir="ltr"] .side-logo {
    text-align: center;
}

/*  scrolltop  */

.scrolltop {
    display: none;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 9;
    -webkit-animation: bounce 2s ease infinite;
    animation: bounce 2s ease infinite;
}

.scroll {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
    background-image: -moz-linear-gradient(to top, var(--thirt-color) 0%, var(--main-color) 100%);
    background-image: -webkit-linear-gradient(to top, var(--thirt-color) 0%, var(--main-color) 100%);
    background-image: -ms-linear-gradient(to top, var(--thirt-color) 0%, var(--main-color) 100%);
    background-image: linear-gradient(to top, var(--thirt-color) 0%, var(--main-color) 100%);
    width: 36px;
    line-height: 39px;
    border-radius: 50%;
    height: 36px;
    text-align: center;
    margin: 0 0 0 0;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}


.scroll:hover {
    background-image: -moz-linear-gradient(to bottom, var(--thirt-color) 0%, var(--main-color) 100%);
    background-image: -webkit-linear-gradient(to bottom, var(--thirt-color) 0%, var(--main-color) 100%);
    background-image: -ms-linear-gradient(to bottom, var(--thirt-color) 0%, var(--main-color) 100%);
    background-image: linear-gradient(to bottom, var(--thirt-color) 0%, var(--main-color) 100%);
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.scroll:hover .fa {
    padding-top: -10px;
}

.scroll .fa {
    font-size: 11.2px;
    margin-top: -5px;
    margin-left: 1px;
}

/* scrolltop */
/*--------sidenav----------*/

.side-me {
    padding-top: 15px
}

.side-logo img {
    width: 110px;
}

.side-menu {
    display: inline-block;
    position: absolute;
    left: 4%;
    z-index: 99;
    top: 5%;
}

.sidenav {
    right: -1000px;
    overflow: scroll;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    text-align: right;
    background-color: var(--white-color);

    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 15px;
    -webkit-box-shadow: 6px 1px 14px rgba(0, 0, 0, .175);
    box-shadow: 6px 13px 14px rgba(0, 0, 0, .175);
}

html[dir="ltr"] .sidenav {
    text-align: left;
}

html[dir="ltr"] .down:after {
    left: unset;
    right: 35px;
}

html[dir="ltr"] .side-menu .sub_list li {
    margin-right: 0;
    margin-left: 25px;
}

.sidenav.open {
    right: 0;
}

.side-menu i {
    font-size: 30px
}

.sidenav input {
    width: 190px;
    height: 35px;
    border: 0;
    border-bottom: 1px solid;
    margin-top: 25px;
}

.sidenav button {
    background-color: #fff;
    border: 0px;
}

.sidenav a {
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    margin: 0px 30px;
    color: var(--text-color);
    line-height: 50px;
    font-weight: 600;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.sidenav a:hover {
    color: var(--sec-color);
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .side-menu {
        display: none
    }

    #nav-icon {
        display: none
    }
}

/*------------header------------*/
.top-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    flex-wrap: wrap;
}

.top {
    margin-bottom: 15px;
}

.top.fixedheader {
    height: 100px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999;
    background-color: var(--white-color);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.top.fixedheader .logo-head img {
    width: 121px;
    height: 100px;
}

.top.fixedheader .top-head {
    padding-top: 0px;
}

/*------------menu-head------------*/
.logo-head img {
    width: 121px;
    height: 121px;
}

.menu-head {
    margin: auto;
    order: 4;
    width: 100%;

}

/* html[dir="ltr"] .menu-head{margin-right: 45px;   margin-left: auto;}
    html[dir="ltr"] .menu-head li {
        margin-right: 0;
        margin-left: 12px;
        display: inline-block;
    } */

.menu-head li {
    margin-right: 30px;
    display: inline-block;
}

.menu-head a {
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--contact-color);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    transition: 0.3s ease-in-out;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--main-color), var(--main-color) 50%, var(--contact-color) 50%);
    background-size: 200% 100%;
    background-position: 100%
}

.menu-head a:hover {
    color: var(--main-color);
    transition: all 0.3s cubic-bezier(0, 0, 0.23, 1);
    background-position: 0%;

}

li.lang-head {
    margin-right: 20px;
    border-right: 1px solid #D6D6D6;
    padding-right: 20px;
}

.menu-head li.login-link {

    background-color: #eb9b3a;
    border: 1px solid #eb9b3a;
    display: inline-block;
    /* padding: 2px 5px; */
    width: 113px;
    text-align: center;
    height: 49px;
    border-radius: 5px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;

}

.menu-head li.login-link:hover {
    opacity: 0.7;
}

.menu-head li.login-link a {
    font-size: 17px;
    -webkit-text-fill-color: white;
}

.menu-head li .la-plus {
    font-size: 16px;
}

.dropdown-head {
    position: relative;
}


.side-menu ul li {
    position: relative;
}

.side-menu .sub_list li {
    line-height: 30px;
    margin-right: 25px;
}

.side-menu .sub_list a {
    font-size: 14px;
    color: #000;
    transition: .5s ease;
}

.side-menu a.down:hover,
.side-menu a.down:active {
    color: var(--contact-color);
}

/* .down:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
    position: absolute;
    display: block;
    color: #000;
    top: 0;
    left: 35px;
    font-size: 10px;
} */

a.down[aria-expanded="true"]:after {
    content: "\f068";
    color: var(--contact-color);;
}

a.down[aria-expanded="true"]:active {
    content: "\f068";
    color: var(--text-color);
}

@media (min-width: 992px) {
    #nav-icon {
        display: none;
    }

    .side-menu {
        display: none
    }
}

/*-------dropdown------*/

.nav-head {
    display: none;
    position: absolute;
    top: 30px;
    z-index: 1000;
    transform: translateX(-50%);
    min-width: 134px;
    list-style: none;
    background-color: var(--white-color);
    border: 0;
    right: auto;
    left: -45px;
    width: 180px;
    border-radius: 10px;
    border-right: 2px solid var(--main-color);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);

}

html[dir="ltr"] .nav-head {
    left: 0;
    right: -45px;
}

html[dir="ltr"] .nav-head > li > a {
    text-align: left;
}

html[dir="ltr"] li.lang-head {

    border-right: 0;
    border-left: 1px solid #D6D6D6;
    padding-right: 0px;
    padding-left: 20px;
}

.dropdown-menu {
    padding: 8px 16px;
}

@media (min-width: 768px) {
    .nav-head {
        display: block;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: 0.5s ease;
        -o-transition: 0.5s ease;
        transition: 0.5s ease;
    }

    .dropdown-head:hover .nav-head {
        visibility: visible;
        opacity: 1;
    }
}

.dropdown-head .nav-head > li {
    margin-right: 0px
}

.nav-head > li > a {
    color: var(--bread-color);
    padding: 8px 10px;
    text-transform: capitalize;
    text-align: right;
    font-size: 16px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    line-height: 1.2;
}

.nav-head > li:not(:last-child) {
    border-bottom: 1px solid var(--bread-color);
}

.nav-head > li > a:focus,
.nav-head > li > a:hover {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
}

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

.dropdown-head .dropdown-menu li {
    display: flex;
}

.lang-head {
    display: flex;
    margin-right: auto;
    order: 3;
}

.lang-head a.icon-lang {
    display: flex;
    background-color: var(--main-color);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    width: 40px;
    height: 40px;
    margin: 0px 3px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.lang-head a.icon-lang:hover {
    background-color: var(--sec-color);
}

.icon-lang i {
    font-size: 21px;
}

.lang-list {
    left: 22px;
    top: 40px;
    min-width: 118px;
    width: 137px;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
}

.lang-list > a {
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    color: var(--contact-color);
    font-size: 15px;
    font-weight: 500;
    padding: 3px 0px;

}

.lang-list > a:hover {
    color: var(--main-color);
}

.menu i {
    font-size: 10px;
    margin: 0px 2px;
}

/* Slider */

.photo-head {
    position: relative;
}

.photo-head img {
    border-radius: 15px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.overlay-slid {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.slider-title {
    padding: 0px 30px;
}

.slider-ti {
    color: #fff;
}

.slider-ti h2 {
    font-size: 55px;
    text-shadow: 2px 2px #070707;
    line-height: 1.5;
    font-weight: 900;
}

.order-head a {
    display: block;
    background-color: var(--thirt-color);
    text-align: center;
    line-height: 52px;
    width: 166px;
    height: 52px;
    font-size: 18px;
    border-radius: 25px;
    color: #fff;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.order-head a:hover {
    background-color: var(--sec-color)
}

.order-head {
    margin-top: 25px;
}

.slider-head.owl-carousel .owl-nav .owl-next {
    top: 45%;
    border: 1px solid transparent;
    position: absolute;
    color: var(--white-color);
    width: 41px;
    height: 41px;
    line-height: 41px;
    font-size: 14px;
    left: -75px;
    border-radius: 50%;
    background-color: var(--main-color);
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.slider-head.owl-carousel .owl-nav .owl-prev {
    top: 45%;
    border: 1px solid transparent;
    position: absolute;
    color: var(--white-color);
    width: 41px;
    height: 41px;
    line-height: 41px;
    font-size: 14px;
    right: -75px;
    border-radius: 50%;
    background-color: var(--main-color);
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}


.slider-head.owl-carousel .owl-nav .owl-prev:hover,
.slider-head.owl-carousel .owl-nav .owl-next:hover {
    border-color: var(--sec-color);
    color: var(--sec-color);
    background-color: var(--white-color);
}

.slider-head i {
    font-size: 20px;
}

/* about-home */
.about-home {
}

.about-home-flex {
    display: flex;
    background-color: #E6F3F4;
    border-radius: 15px;
    margin-bottom: 50px;
    margin-top: 25px;
}

.about-h-shape {
    background-color: #ed9c39;
    width: 38%;
    border-radius: 0px 15px 15px 0px;
    position: relative;
    height: auto
}

.col-shape {
    clip-path: polygon(0% 43%, 100% 19.8%, 100% 100%, 0% 100%);
    height: 100%;
    background-color: #08818a;
    overflow: hidden;
    border-radius: 0px 15px 15px 0px;
    position: absolute;
    width: 100%;
}

.abot-sv {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 28px;
    flex-direction: column;
}

.about-h-shape svg {
    width: 150px;
    height: 155px
}

.about-h-shape span {
    display: flex;
    color: white;
    width: 91%;
    font-size: 78px;
    z-index: 9999998;
    align-items: center;
    font-weight: 900;
    font-family: "tjMd";
    margin-top: 50px;
    line-height: 79px;
    letter-spacing: 7.2px;
}

.about-h-content ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-weight: 500;
    font-family: 'tj';
    font-size: 19px;
}

.about-h-content ul li i {

    width: 25px;
    bottom: 4px;
    transform: translateX(50%);
    color: var(--sec-color);
    font-size: 27px;
}

.about-h-content {
    width: 60%;
    padding: 35px 35px;

}

.about-h-content span.nf-title {
    display: block;
    font-size: 39px;
    font-weight: bold;
    color: var(--main-color);
    margin-top: 0;
    margin-bottom: 10px;
    font-family: 'tj';
    font-weight: bold;
}

.about-h-content ul.our-why {
    line-height: 1.699;
    font-size: 18px;
    color: var(--text-color);
    padding: 10px 0;
    margin: 0;
}

.our-goal {
    margin-bottom: 20px;
}

.about-h-content span {
    display: block;
    font-size: 30px;
    font-weight: bold;
    color: var(--main-color);
    margin-top: 0;
    margin-bottom: 5px;
    font-family: 'tj';
    font-weight: bold;
}

.about-h-content p {
    font-weight: 500;
    font-family: 'tj';
    font-size: 19px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-home-flex {
        flex-direction: column;
    }

    .about-h-shape {
        width: 100%;
        padding: 35px 0px;
        border-radius: 15px;
    }

    .col-shape {
        border-radius: 15px;
    }

    .about-h-shape span {
        width: 60%;
    }

    .about-h-content {
        width: 100%;
        padding: 70px 50px;
    }
}

@media (max-width: 480px) {
    .about-h-shape svg {
        width: 100px;
        height: 130px;
    }

    .about-h-shape span {
        width: unset;
        letter-spacing: 0;
        margin-top: 0px;
        font-size: 60px;
    }


}

@media (max-width: 425px) {
    .about-h-shape span {
        font-size: 44px;
    }

    .about-h-content {
        padding: 70px 35px;
    }
}


/*  */
/*  */
/*  */
/*  */
/*  */
/*  */
/* home-products */
.home-products {
    position: relative;
}

.home-bg {
    display: none;
}

.home-bg-right {
    display: none;
}

.produ-one {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.prod-1 {
    background-color: var(--bread-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    height: 200px;
    width: 49%;
    margin: 0;

}

.prod-flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    align-items: center;
    filter: contrast(1);
    padding: 0px 40px;
}

.prod-title h3 {
    font-size: 30px;
    font-weight: 600;
    color: var(--main-color);
    filter: contrast(1);
}

.prod-photo svg {
    width: 140px;
    color: var(--main-color);
}

.st0 {
    fill: #22b573 !important;
}

.prod-title span {
    display: block;
    font-size: 39px;
    font-weight: 600;
    color: var(--text-color);
    filter: contrast(1);
    margin-right: 15px;
}

.prod-title {
    display: flex;
    align-items: center;
}

/* owl selectBook */
.select-books {
    padding-top: 50px;
    padding-bottom: 25px;
}

.select-flex {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.select-flex p {
    font-size: 35px;
    margin: 0px 5px;
    font-weight: 700;
}

.select-flex img {
    width: 26px;
    height: 30px;
}

.select-item img {
    height: 267px;
    overflow: hidden;
    margin: auto;
    min-width: 100%;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;

    overflow: hidden;
    border-radius: 15px;
}

.select-detials {
    margin-top: 5px;
}

.select-detials p {
    margin-bottom: 6px;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}


.select-item {
    overflow: hidden;
    -webkit-transition: 0.8s ease;
    cursor: pointer;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    border-radius: 10px;
    padding-bottom: 15px;
}

.select-item:hover .select-item img {

    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.select-item:hover .select-detials p {
    color: var(--main-color);
}

.discount {
    text-decoration: line-through;
    color: #9F9F9F;
    font-size: 18px;
    font-weight: 500;
    margin: 0px 2px;
}

.sale {
    font-size: 18px;
    filter: contrast(1);
    color: var(--main-color);
    /*font-weight: 600;*/
    margin: 0px 2px;
}

.price-book {
    text-align: center;
}

.owl-select.owl-carousel .owl-nav .owl-next,
.owl-arrived.owl-carousel .owl-nav .owl-next,
.owl-products-home.owl-carousel .owl-nav .owl-next {
    top: 29%;
    border: 1px solid transparent;
    position: absolute;
    color: var(--white-color);
    width: 41px;
    height: 41px;
    line-height: 30px;
    font-size: 20px;
    left: -75px;
    border-radius: 50%;
    background-color: var(--main-color);
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.owl-select.owl-carousel .owl-nav .owl-prev,
.owl-arrived.owl-carousel .owl-nav .owl-prev,
.owl-products-home.owl-carousel .owl-nav .owl-prev {
    top: 29%;
    border: 1px solid transparent;
    position: absolute;
    color: var(--white-color);
    width: 41px;
    height: 41px;
    line-height: 44px;
    font-size: 14px;
    right: -75px;
    border-radius: 50%;
    background-color: var(--main-color);
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}


.owl-select.owl-carousel .owl-nav .owl-prev:hover,
.owl-select.owl-carousel .owl-nav .owl-next:hover,
.owl-products-home.owl-carousel .owl-nav .owl-next:hover,
.owl-arrived.owl-carousel .owl-nav .owl-prev:hover,
.owl-arrived.owl-carousel .owl-nav .owl-next:hover
.owl-products-home.owl-carousel .owl-nav .owl-next:hover {
    border-color: var(--sec-color);
    color: var(--sec-color);
    background-color: var(--white-color);
}

.owl-select i, .owl-arrived i {
    font-size: 20px;
}

.owl-select .owl-dots {
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    bottom: -50px;
}

.owl-select .owl-dots .owl-dot.active {
    background-color: rgb(1, 139, 153);
}

.owl-select .owl-dots .owl-dot {
    display: inline-block;
    width: 9px;
    margin-right: 5px;
    height: 9px;
    background-color: rgb(210, 210, 210);
    border-radius: 50%;
}

/* section banner */
/* .banners-home {padding-bottom: 80px;} */
.banners-home {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
}

.banner-one {
    position: relative;
}

.banner-one img {
    aspect-ratio: 16 / 6;
}

.banner-cover {
    position: absolute;
    bottom: 0;
    left: 5%;
    overflow: hidden;
    width: 58%;
    height: 100%;
    transition: .5s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transform: translatex(50%);
}

.banner-cover h3 {
    font-size: 65px;
    color: var(--white-color);
    font-weight: 900;
}

.banner-cover .order-banner a {
    display: block;
    background-color: var(--sec-color);
    text-align: center;
    line-height: 52px;
    width: 166px;
    height: 52px;
    font-size: 18px;
    border-radius: 25px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 50px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.banner-cover .order-banner a:hover {
    background-color: var(--thirt-color)
}

/* Boxs */
.boxs-home {
    padding-bottom: 45px;
    padding-top: 45px;
}

.box {
    background-color: #E6F3F4;
    border-radius: 20px;
}

.box-flex {
    display: flex;
    align-items: center;
    justify-content: space-around;
    align-content: center;
    height: 349px;
}

.box-one img {
    width: 120px;
    height: 105px;
}

.box-one svg {
    width: 100px !important;
    height: 95px !important;
}

.box-one p {
    font-size: 31px;
    color: var(--contact-color);
    margin-bottom: 0;
    margin-top: 25px;
    text-align: center;
    font-weight: 700;
    font-family: "tjMd";
}

/*---------------------join-us-----------------------------*/


.join {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-color);
    padding: 25px;
    border-radius: 15px;

}

.join-us {
    margin-bottom: 40px;
}

.subscribe {
    display: flex;
    align-items: center;
}

.subscribe h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 0;
}

.subscribe img {
    display: inline-block;
    margin-left: 15px;
    width: 53px;
    height: 35px;
}

.join .form-control {
    width: 654px;
    height: 45px;
    padding: 7px 30px;
    font-size: 14px;
    color: var(--contact-color);
    background-color: #fff;
    background-image: none;
    font-family: "tjMd";
    text-align: right;
    border: 0px;
    border-radius: 10px;
    box-shadow: none;
    -webkit-transition: border-color ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s;
    transition: border-color ease-in-out .15s
}

.join .form-group {
    position: relative;
    margin-bottom: 0;
}

.join .check {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 89px;
    height: 36px;
    background-color: var(--sec-color);
    border: 2px solid transparent;
    font-size: 14px;
    font-family: "tjMd";
    color: #fff;
    border-radius: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.join .check:hover,
.join .check:focus {
    border-color: var(--main-color);
    color: var(--main-color);
    background-color: #fff
}

@media (max-width: 1199px) {
    .menu-head li {
        margin-right: 15px;
    }

    .menu .list-inline {
        display: flex;
        align-items: center;
    }

    .menu-head a {
        font-size: 18px;
    }

    .menu-head li:last-child a {
        font-size: 15px;
    }

    .join {
        flex-direction: column;
        align-items: center;
    }

    .subscribe {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .subscribe img {
        margin: 0;
    }

    .join .form-control {
        width: 100%;
    }

    .subscribe {

        flex-direction: column;
    }

    .subscribe h5 {
        margin-bottom: 5px;
        margin-top: 10px;
    }

    .join {
        margin-bottom: 25px;
    }

    .join .form-group {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .subscribe h5 {
        font-size: 17px;
        text-align: center;

    }
}

/* Footer */

footer {
    padding-bottom: 70px;
    padding-top: 40px;
}

.links-1 h3 {
    font-size: 23px;
    font-weight: 700;
    font-weight: 900;
    color: var(--main-color);
    filter: contrast(1);
}

.links-1 ul {
    margin-top: 30px
}

.links-1 ul li a {
    color: var(--contact-color);
    font-size: 17px;
    line-height: 39px;
    font-weight: 700;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    transition: 0.3s ease-in-out;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--main-color), var(--main-color) 50%, var(--contact-color) 50%);
    background-size: 200% 100%;
    background-position: 100%
}

.foot-logo img {
    margin-top: -10px;
    height: 135px;
    width: 135px;
}


.links-1 ul li a:hover {
    color: var(--main-color);
    transition: all 0.3s cubic-bezier(0, 0, 0.23, 1);
    background-position: 0%;
}

.foot-social i {
    background-color: #E6F3F4;
    color: var(--contact-color);
    border-radius: 55%;
    text-align: center;
    margin: 0px 1px;
    width: 37px;
    height: 36px;
    line-height: 36px;
    font-size: 19px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.foot-social .ty {
    background-color: #E6F3F4;

    border-radius: 55%;
    text-align: center;

    width: 37px;
    height: 36px;
    line-height: 42px;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.foot-social .ty img {
    width: 16px;
    height: 16px;
}

.cy img {
    width: 14px;
    height: 14px;
}

.cy {
    text-align: center;
    margin: 10px 7px;
    width: 25px;
    height: 25px;

    line-height: 33px;
}

/* .foot-social i:hover{
  color: var(--main-color);
} */
.foot-social i:first-child {
    margin: 0px
}

.contact-us.details .f-ti span {
    direction: ltr;
    display: inline-block;
}

@media (min-width: 767px) {
    .links-1 > .collapse {
        display: block;
    }

    .links-1 {
        display: block
    }
}

@media (min-width: 767px) and (max-width: 1920px) {
    .links-1 {
        display: block
    }

}

.foot-logo h3 {
    font-size: 21px;
    font-weight: 800;
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

/* Foot Copy */
.foot-copy {

    padding: 13px 0px;
}

.copy_allright {
    display: flex;
    justify-content: center;
}

.copy {
    color: var(--contact-color);
    font-size: 12px;
    font-family: "tj";
}

@media (max-width: 1024px) {


}

@media (max-width: 1440px) {
    .owl-select.owl-carousel .owl-nav .owl-next, .owl-arrived.owl-carousel .owl-nav .owl-next, .owl-products-home.owl-carousel .owl-nav .owl-next, .slider-head.owl-carousel .owl-nav .owl-next {
        left: -60px;
    }

    .owl-select.owl-carousel .owl-nav .owl-prev, .owl-arrived.owl-carousel .owl-nav .owl-prev, .owl-products-home.owl-carousel .owl-nav .owl-prev, .slider-head.owl-carousel .owl-nav .owl-prev {
        right: -60px;
    }
}

@media (max-width: 1024px) {
    .slider-head.owl-carousel .owl-nav .owl-prev, .slider-head.owl-carousel .owl-nav .owl-next,
    .owl-select.owl-carousel .owl-nav .owl-next, .owl-arrived.owl-carousel .owl-nav .owl-next, .owl-products-home.owl-carousel .owl-nav .owl-next, .slider-head.owl-carousel .owl-nav .owl-next, .owl-select.owl-carousel .owl-nav .owl-prev, .owl-arrived.owl-carousel .owl-nav .owl-prev, .owl-products-home.owl-carousel .owl-nav .owl-prev, .slider-head.owl-carousel .owl-nav .owl-prev {
        display: none;
    }

    .slider-head .owl-dots {
        position: absolute;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        left: 50%;
        bottom: 40px;
    }

    .slider-head .owl-dots .owl-dot.active {
        background-color: rgba(1, 138, 153, 0.452);
    }

    .slider-head .owl-dots .owl-dot {
        display: inline-block;
        width: 9px;
        margin-right: 5px;
        height: 9px;
        background-color: rgb(255 255 255);
        border-radius: 50%;
    }

    .home-products {

        padding-top: 30px;
    }

    .slider-ti h2 {
        font-size: 44px;
    }

    .prod-title h3 {
        font-size: 36px;

    }

    .select-books {
        padding-top: 30px;
    }

    .owl-arrived .owl-dots, .owl-products-home .owl-dots, .owl-select .owl-dots {
        position: absolute;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        left: 50%;
        bottom: -40px;
    }

    .owl-arrived .owl-dots .owl-dot.active, .owl-products-home .owl-dots .owl-dot.active, .owl-select .owl-dots .owl-dot.active {
        background-color: var(--main-color);
    }

    .owl-arrived .owl-dots .owl-dot, .owl-products-home .owl-dots .owl-dot, .owl-select .owl-dots .owl-dot {
        display: inline-block;
        width: 9px;
        margin-right: 5px;
        height: 9px;
        background-color: #dbd9d9;
        border-radius: 50%;
    }

    .banners-home {
        padding-top: 55px;
    }

    .banner-cover h3 {
        font-size: 55px;
    }

    .lang-list {
        left: 50px;
    }
}

@media (max-width: 991px) {
    /* .menu-head{display: none;}
    .lang-head{display: none;} */
    .slider-ti h2 {
        font-size: 39px;
    }

    /* .top-head{    flex-wrap: wrap;} */
    .logo-head {
        width: 100%;
        text-align: center;
    }

    .menu-head {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .menu-head li {
        margin-right: 15px;

    }

    .produ-one {

        justify-content: center;

    }

    .select-flex p {
        font-size: 25px;
    }

    .banner-cover h3 {
        font-size: 40px;
    }

    .box-one img {
        width: 100px;
        height: 92px;
    }

    .links-1 {
        text-align: center;
    }

    .foot-social a {
        margin-top: 5px;
    }

    footer {
        padding-bottom: 35px;

    }

    .box-one p {
        font-size: 23px;
    }
}

@media (max-width: 767px) {
    .slider-ti h2 {
        font-size: 34px;
    }


    .banner-cover h3 {
        font-size: 37px;
    }

    .foot-logo {
        text-align: center;
        margin-bottom: 15px;
    }

    footer {
        padding-bottom: 20px;
        padding-top: 10px;
    }

    .foot-social {
        margin-bottom: 25px;
    }

    .links-1 h3 {
        font-size: 21px;
    }

    .links-1 ul {
        margin-top: 10px;
    }

    .links-1 ul li a {
        font-size: 15px;
        line-height: 33px;
    }

    .box-one img {
        width: 91px;
        height: 76px;
    }

    .box-flex {

        height: 219px;
    }

}

@media (max-width: 480px) {

    .slider-ti h2 {
        font-size: 24px;
    }

    .order-head a, .banner-cover .order-banner a {
        line-height: 46px;
        width: 136px;
        height: 46px;
        font-size: 17px;

    }

    .home-bg, .home-bg-right {
        display: none;
    }
}

@media (max-width: 425px) {
    .menu-head {
        display: none;
    }

    .top-head {
        flex-wrap: unset;
    }

    .logo-head {
        text-align: unset;
    }

    .logo-head img {
        width: 100px;
        height: 90px;
    }

    .top-head {
        padding-top: 5px;
    }

    .top {
        margin-bottom: 10px;
    }

    .overlay-slid {
        width: 75%;
    }

    .banner-cover h3 {
        font-size: 28px;
    }

    .banner-cover .order-banner a {
        margin-bottom: 15px;
    }

    .banner-cover h3 {
        font-size: 26px;
    }

    .banners-home {
        padding-bottom: 0;
    }

    .box-flex {
        height: auto;
        flex-direction: column;
        padding: 25px 0px;
    }

    .box-one p {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .box-one img {
        width: 89px;
        height: 73px;
        margin-top: 29px;
    }

    .links-1 h3 {
        margin-top: 15px;
    }

    .side-logo {
        padding: 5px 5px
    }

    .down {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .search-side-menu {
        padding-bottom: 50px;
    }

    .prod-title h3 {
        font-size: 30px;
    }

}

.down i {
    font-size: 15px;
}

/* ===================================== */
.products-flex {
    display: flex;
}

.cate-products {
    width: 20%;
    height: 100%;
}

.grid-products .cate-products {
    width: 19%;
}

.grid-products .card.p-2 {
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    border: 0;
    background-color: #E6F3F4;
}

.d-flex h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--grey-color);
}

.mt-2 h6 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 0;
}

.cate-products hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid #ccc;
    opacity: .25;
}

/* .d-flex h6:last-of-type{background-color: var(--main-color);
    border-radius: 5px;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;} */
.book_counts h6 {
    background-color: var(--main-color);
    border-radius: 5px;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-products .items-flex {
    justify-content: start;
    display: flex;
    flex-wrap: wrap;
}

.grid-products .items-flex .select-item {
    margin: 2px 10px;
    margin-bottom: 30px;
    width: 23%;
}

.name-products {
    border: 1px solid #D9D9D9;
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 25px 17px;
}

.items-products {
    width: 100%;
}

.items-flex .select-item {
    width: 267px;
    margin-bottom: 30px;
}

.select-item {
    position: relative;
}

/* .select-item:hover .pro-overlay {
  bottom: 60%
} */
.product-icon button.ic-pro {
    border: 1px solid transparent;
    color: #fff;
    width: 39px;
    height: 39px;
    line-height: 28px;
    border-radius: 50%;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 5px;
}

.product-icon button.ic-pro.heart {
    background-color: #eb9b3a;
}

.product-icon button.ic-pro.heart:hover {
    color: #eb9b3a;
    background-color: var(--white-color);
    border-color: #eb9b3a;

}

.product-icon button.ic-pro.heart:hover.ic-pro.heart i {
    color: #eb9b3a;
}

.product-icon {
    display: flex;
    /* flex-direction: column; */
    justify-content: space-evenly;
    align-items: center;
    padding: 5px 10px;
    flex-direction: row-reverse;


}

.product-icon button.cart-pro {
    background-color: #22b573;
    border: 1px solid transparent;
    text-transform: uppercase;
    color: #fff;
    width: 174px;
    height: 39px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    border-radius: 19px;
    margin: 8px 0px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

.product-icon button.cart-pro:hover {
    border-color: #22b573;
    background-color: var(--white-color);
    color: #22b573;
}

.product-icon button.cart-pro:hover.cart-pro i {
    color: var(--main-color);
}

.product-icon span {
    font-size: 18px;
    font-weight: 500;
    filter: contrast(1);
}

.product-icon i {
    font-size: 22px;
    color: white;

}

.ic-pro.heart span {
    display: none;
}

.pro-overlay {
    position: absolute;
    left: 0;

    transform: translateX(50%);
    top: 4%;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

label input[type=radio],
label input[type=checkbox] {
    display: none;
}

.cell {
    position: relative;
    display: block;
}

.cell label {
    text-transform: capitalize;
    margin-bottom: 5px;
    cursor: pointer;
    color: #575757;
    font-size: 14px;

}

.cell label > span.circle {
    position: relative;
    top: 4px;
    left: 0;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 5px;
    background-color: rgb(255, 255, 255);
    /* box-shadow: inset 0px 3px 7px 0px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgb(209, 209, 209);
}

.cell label > span.circle {
    border-radius: 3px;
}

.cell label input[type=radio]:checked ~ span.circle {
    border-color: rgb(209, 209, 209);
}

.cell label input[type=radio]:checked ~ span.circle:after {
    content: "";
    position: absolute;
    border-radius: 2px;
    display: inline-block;
    background-color: var(--main-color);
    width: 8px;
    height: 8px;
    top: 1px;
    left: 1px;
}

.fi-group .form-control {
    font-size: 13px;
}

.fi-group .form-select-lg {
    height: 38px;
    box-shadow: none;
    border-radius: 5px;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    font-family: "tj";
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
}

.box-radio {
    margin-bottom: 10px;
}

.fi-group .box-radio .cell label {
    margin-bottom: 0;
    font-weight: 200;
}

.product-filter {
    border: 1px solid #D9D9D9;
    background-color: var(--white-color);
    border-radius: 15px;

    margin-top: 15px;
}

.product-filter h5 {
    background-color: var(--contact-color);
    color: var(--white-color);
    text-align: center;
    font-size: 17px;
    font-weight: 300;
    padding: 12px 0px;
    border-radius: 10px 10px 0px 0px;
}

.fi-group {
    padding: 5px 15px;
}

.fi-group label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: "tj";
}

.fi-group h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: "tj";

}

.products-flex .status-book input[type="radio"] {
    display: none;
}

.products-flex .status-book input[type="radio"] + label {
    z-index: 10;
    margin: 0 0px 5px 0;
    position: relative;
    color: #aaacae;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: bold;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    cursor: pointer;
    transition: all 200ms ease;
    font-weight: 100;
    font-size: 14px;
}

.products-flex .status-book input[type="radio"]:checked + label {
    color: var(--white-color);
    border-color: var(--main-color);
    background-color: var(--main-color);
}

.products-flex .status-book input[type="radio"] + label {
    padding: 2px 10px;
    border-radius: 8px;
}

.products-flex .status-book .status-book-flex {
    margin-bottom: 10px;
    margin-top: 2px;
}

.items-flex {
    justify-content: space-around;
    display: flex;
    flex-wrap: wrap;
}

.name-products h4 {
    font-size: 19px;
    font-weight: 700;
}

.product-tab {
    padding: 0px 30px;
}

.product-tab li {
    list-style-type: square;
    color: var(--contact-color);
}

.product-tab li a {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: var(--contact-color);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.9;
}

.product-tab li a:hover {
    color: var(--main-color);
}

.product-tab li a:focus {
    color: var(--main-color);
}

.crumb-head {

    margin-bottom: 10px;
    display: none;
}

.bread {
    display: flex;
    height: 50px;
    align-items: center;
}

.bread li a {
    font-size: 17px;
    color: #888888;
    margin: 0px 5px;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;

}

.bread li a:hover {
    color: #ffff;
}

.bread li {
    font-size: 17px;
    color: #ede8e8;
}

@media (max-width: 1199px) {
    .grid-products .items-flex .select-item {
        width: 22%;
    }
}

@media (max-width: 1024px) {
    .name-products {
        width: 30%;
    }
}

@media (max-width: 992px) {
    .name-products {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .top.fixedheader {
        height: 90px;
    }

    .items-flex .select-item {
        width: 232px;

    }
}

@media (max-width: 480px) {

    .products-flex {
        flex-direction: column;
    }

    .cate-products {
        width: 100%;

    }

    .name-products {
        width: 100%;
    }

    .product-tab {
        padding: 0px 0px;
        display: flex;
        flex-wrap: wrap;
    }

    .product-tab li {
        padding: 0px 10px;
        list-style-type: none;
    }

    .name-products {
        padding: 20px 15px;
    }

    .name-products h4 {
        text-align: center;
    }

    .items-products {
        width: 100%;
        margin-top: 30px;
    }

    .select-item img {
        aspect-ratio: 4 / 3;
        width: 80%;
    }
}

@media (max-width: 425px) {
    .top.fixedheader {
        height: 93px
    }
}

/*  */
/* Single Product */
/*  */
.related-books {
    padding-bottom: 55px;
    padding-top: 55px;
}

.single-product {
    position: relative;
}

.single-product .home-bg {
    position: absolute;
    left: 0;
    width: auto;
    top: 0;
    z-index: -1;
    transform: translateY(50%);
}

.single-pro {
    width: 50%;
    margin: auto;
}

.single-book {
}

.sing-photo {
}

.sing-photo img {
    width: 100%;
    height: 520px;
}

.sing-title {
}

.sing-title-flex {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.sing-title-flex h3 {
    width: 65%;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
}

.sing-title-flex span {
    font-size: 29px;
    color: var(--main-color);
    font-weight: 600;
}

.sing-title h4 {
    font-size: 19px;
    color: #9F9F9F;
    font-weight: 600;
}

.sign-title-cart-flex {
    display: flex;
    justify-content: space-between;
}

.sign-title-photo {
    display: flex;
    align-items: center;
}

.sign-title-photo h5 {
    margin: 0px 10px;
}

.sign-title-photo img {
    border-radius: 50%;
    width: 52px;
    height: 52px;
}

.add-cart i {
    font-size: 22px;
}

.add-cart a {
    display: block;
    background-color: #EB9B3A;
    text-align: center;
    line-height: 52px;
    width: 182px;
    height: 52px;
    font-size: 19px;
    border-radius: 25px;
    color: #fff;
    font-weight: 500;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.add-cart a:hover {
    background-color: var(--main-color)
}


.owl-related-book .owl-dots, .owl-products-home .owl-dots, .owl-select .owl-dots {
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
    bottom: -40px;
}

.owl-related-book .owl-dots .owl-dot.active, .owl-products-home .owl-dots .owl-dot.active, .owl-select .owl-dots .owl-dot.active {
    background-color: var(--main-color);
}

.owl-related-book .owl-dots .owl-dot, .owl-products-home .owl-dots .owl-dot, .owl-select .owl-dots .owl-dot {
    display: inline-block;
    width: 9px;
    margin-right: 5px;
    height: 9px;
    background-color: #dbd9d9;
    border-radius: 50%;
}

.owl-related-book.owl-carousel .owl-nav .owl-next {
    top: 29%;
    border: 1px solid transparent;
    position: absolute;
    color: var(--white-color);
    width: 41px;
    height: 41px;
    line-height: 44px;
    font-size: 14px;
    left: -75px;
    border-radius: 50%;
    background-color: var(--main-color);
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.owl-related-book.owl-carousel .owl-nav .owl-prev {
    top: 29%;
    border: 1px solid transparent;
    position: absolute;
    color: var(--white-color);
    width: 41px;
    height: 41px;
    line-height: 44px;
    font-size: 14px;
    right: -75px;
    border-radius: 50%;
    background-color: var(--main-color);
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}


.owl-related-book.owl-carousel .owl-nav .owl-prev:hover,
.owl-related-book.owl-carousel .owl-nav .owl-next:hover {
    border-color: var(--sec-color);
    color: var(--sec-color);
    background-color: var(--white-color);
}

.sing-details {
    border: 1px solid #D9D9D9;
    padding: 25px 36px;
    border-radius: 20px;
    margin-top: 35px;
}

.sing-details h4 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-color);
}

.sing-detail-flex {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.sign-title {
    width: 50%;
    margin-bottom: 20px;
}

.sign-title h4 {
    font-size: 17px;
    margin-bottom: 0;
    color: var(--contact-color);
}

.sign-title span {
    color: #888888;
    font-size: 14px;
}

@media (max-width: 991px) {
    .sing-photo img {
        height: auto;
    }

    .single-pro {
        width: 70%;
    }
}

@media (max-width: 480px) {

    .cart-item-photo img {
        width: 50%;
        height: auto;
        border-radius: 15px;

    }

    .total-orders p {
        text-align: center;
        margin-bottom: 7px;
    }

    .cart-title {
        margin: 10px 5px;
        text-align: center;
    }

    .sign-title-cart-flex {
        flex-direction: column;
    }

    .sign-title-photo {
        margin-bottom: 10px;
    }

    .add-cart a {
        width: 100%;
    }

    .sing-details {
        margin-top: 15px;
    }

    .sing-title-flex span {
        font-size: 19px;
    }
}

/* Cart */
.section-cart {
}

.section-cart .home-bg {
    position: absolute;
    left: 0;
    width: auto;
    top: 0;
    z-index: -1;
    transform: translateY(50%);
}

.cart-flex {
    justify-content: space-between;
    display: flex;
}

.cart-items {
    width: 65%;
}

.cart-item {
    width: 100%;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    padding: 15px;
    background-color: var(--white-color);
    margin-bottom: 20px;
}

.cart-item-flex {
    display: flex;
}

.cart-item-photo {
    display: unset;
    width: unset;

}

.cart-item-photo a {
    display: block;
    text-align: center;
}

.cart-item-photo img {
    width: 129px;
    height: 129px;
    border-radius: 15px;
}

.cart-title {
    margin: 10px 15px;
}

.cart-title p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}

.cart-item-price {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.cart-title span {
    font-size: 24px;
    color: var(--main-color);
    font-weight: 600;

    display: inline-block;
}

.item-trash {
    display: flex;
    align-items: center;
    background-color: #3E51DB;
    text-align: center;
    width: 166px;
    height: 52px;
    border: 0;
    font-size: 22px;
    border-radius: 10px;
    color: #fff;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    justify-content: center;
}

.item-trash:hover {
    opacity: 0.8;
}

.item-trash i {
    font-size: 26px;
}

.cart-total {
    width: 33%;
}

.total-orders {
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    padding: 15px 20px;
    background-color: var(--white-color);
    height: 161px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.total-order, .total-shipping, .total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-price {
    border-top: 1px solid #D9D9D9;
    padding-top: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.total-price p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--contact-color);
}

.total-order p, .total-shipping p {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--contact-color);
}

.total-order span, .total-shipping span {
    font-size: 17px;
    font-weight: 500;
    color: var(--contact-color);
}

.total-price span {
    font-size: 18px;
    font-weight: 700;
    color: var(--contact-color);
}

.total-order, .total-shipping {
    margin-top: 10px;
}

.order-now-flex {
    display: flex;
    margin-top: 24px;

}

.order-now-flex p {
    margin-bottom: 0;
    font-size: 17px;
    color: var(--contact-color);
    font-weight: 600;
    margin-left: 5px;
}

.order-one button {
    display: block;
    background-color: var(--sec-color);
    text-align: center;
    line-height: 46px;
    width: 166px;
    height: 52px;
    border: 0;
    font-size: 18px;
    border-radius: 10px;
    color: #fff;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.order-one button:hover {
    background-color: var(--main-color);
}

@media (max-width: 1024px) {
    .cart-item-price {
        width: 28%;
    }

}

@media (max-width: 991px) {
    .cart-flex {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cart-items {
        width: 75%;
    }

    .cart-item-photo p {
        font-size: 16px;
        width: 50%;
    }

    .cart-item-price span {
        font-size: 20px;
    }

    .cart-item-price {
        width: 30%;
    }

    .cart-total {
        width: 75%;
    }
}

@media (max-width: 480px) {
    .cart-item-flex {
        flex-wrap: wrap;
        width: 100%;
    }

    .box-one {
        margin-bottom: 15px;
    }

    .box-one svg {
        vertical-align: middle;
        width: 90px;
        height: 110px;
    }

    .cart-item-photo p {
        width: 100%;

    }

    .cart-item-price {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
    }

    .cart-item-photo {

        width: 100%;
    }

    .cart-total {
        width: 76%;
    }

    .order-now-flex p {
        text-align: center;
        margin: 0;
    }

    .order-now-flex {
        margin-top: 10px;
        flex-direction: column;
    }

    .order-one button {
        margin: auto;
        margin-top: 10px;
    }
}

/* Login page */
/* Login */
.login-section, .add-book-section {
    position: relative;
}

.login-section .home-bg, .add-book-section .home-bg {
    position: absolute;
    left: 0;
    width: auto;
    top: 0;
    z-index: -1;
    transform: translateY(50%);
}

.head-title {
    text-align: center;
}

.head-title h2 {
    position: relative;
    color: var(--contact-color);
    font-size: 33px;
    font-family: "tjBlk";
    margin-bottom: 30px;
    margin-top: 20px

}

.login-form, .add-book-form {
    width: 40%;
    margin: auto;
    background-color: #fff;
    padding: 35px 45px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    border-radius: 20px;
    margin-bottom: 50px;

}

.form-group {
    position: relative;
    margin-bottom: 10px;
}

.login-form label, .add-book-form label {
    color: var(--contact-color);
    font-size: 14px;
    padding-right: 5px;
    padding-bottom: 5px;
    font-weight: 700;
    font-family: "tjMd";
}

.login-form input, .add-book-form input {
    border: 1px solid rgb(242, 242, 242);
    background-color: rgb(255, 255, 255);
    border-radius: 3px;
    width: 100%;
    height: 55px;
    box-shadow: none;
    border-radius: 15px;
    text-align: right;
}

.get-pas a {
    display: block;
    text-align: center;
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 14px;
    font-family: "tjMd";
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.get-pas a:hover {
    color: var(--main-color);
}

.sec-prov {
    border-radius: 15px;
    border: 0px;
    background-color: var(--main-color);
    color: #fff;
    width: 100%;
    height: 51px;
    font-family: "tjBold";
    font-size: 17px;
    line-height: 46px;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.sec-prov:hover {
    background-color: var(--sec-color);
    color: #ffffff;
}

.form-control:focus, .form-select:focus {
    border-color: var(--main-color);
    outline: 0;
    box-shadow: none;

}

@media (max-width: 991px) {
    .login-form, .add-book-form {
        width: 70%;
    }
}

@media (max-width: 480px) {
    .login-form, .add-book-form {
        width: 90%;
    }

    .head-title h2 {

        font-size: 28px;
        margin-bottom: 25px;
        margin-top: 0px;
    }
}

@media (max-width: 425px) {
    .login-form {
        width: 100%;
    }
}

.form-select-lg {
    font-size: 1rem;
    color: var(--contact-color);
    border: 1px solid rgb(242, 242, 242);
    background-color: rgb(255, 255, 255);
    border-radius: 3px;
    width: 100%;
    height: 45px;
    box-shadow: none;
    border-radius: 15px;
}

.form-select-lg option {
    background-color: var(--white-color);
    padding: 5px;
}

.form-select-lg option:checked {
    color: var(--white-color);
    background-color: var(--main-color);
}

.form-select-lg option:hover {
    color: var(--white-color);
    background-color: var(--main-color);
}

/* Contact US */
.contact-us.details {

    border: 1px solid #efefef;
    border-radius: 10px;
    margin-bottom: 60px;
    margin-top: 70px;
    background-color: #efefef;
    padding: 35px;
    border-radius: 25px;
}

.contact-us.details .f-ti li > i {
    width: 33px;
    height: 33px;
    background-color: #ffffff;
    color: var(--main-color);
    font-size: 18px;
    border-radius: 50%;
    line-height: 33px;
    text-align: center;
    margin: 0px 10px;
    margin-bottom: 15px;
}

.social-foot.contact i {

    text-align: center;
    margin: 10px 7px;
    width: 30px;
    height: 30px;
    font-size: 19px;
    background-color: #ffffff;
    line-height: 30px;
    border-radius: 50%;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.social-foot.contact a:hover {
    color: var(--text-color);
}

.contact-us.details h2 {
    font-size: 25px;
    font-family: "tjBold";
    margin-bottom: 45px;
    color: var(--main-color);
}

.social-foot.contact h3 {
    font-size: 20px;
    font-family: "tjBold";
    margin-bottom: 30px;
}

@media (max-width: 480px) {
    .contact-us.details h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-us.details .f-ti li {
        flex-direction: column;
    }

    .social-foot.contact i {
        margin: 0px 4px;
    }
}

.cont .form_input {

    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    border: 1px solid rgb(242, 242, 242);
    background-color: rgb(255, 255, 255);
    border-radius: 3px;
    padding: 0px 15px;
    width: 100%;
    height: 55px;
    box-shadow: none;
    border-radius: 15px;
    text-align: right;
}

.cont textarea {
    width: 100%;
    height: 127px;
    outline: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    border: 1px solid rgb(242, 242, 242);
    background-color: rgb(255, 255, 255);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.cont textarea:focus {
    border-color: var(--main-color
    );
}

textarea::placeholder {
    color: #465A61;
    font-size: 16px;
    font-family: "tjMd";
}

.form_input::-webkit-input-placeholder {
    color: var(--main-color);
}

.form_input:-ms-input-placeholder {
    color: var(--main-color);
}

.form_input::-ms-input-placeholder {
    color: var(--main-color);
}

.form_input::placeholder {
    color: #465A61;
    font-size: 16px;
    font-family: "tjMd";
}

.form_input:focus {
    border-color: var(--main-color);
}

.ask-send .btn {
    display: block;
    background-color: var(--main-color);
    text-align: center;
    line-height: 37px;
    width: 140px;
    background-size: 200% auto;
    background-position: left center;
    height: 52px;
    font-size: 18px;
    border-radius: 15px;
    color: #fff;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.ask-send .btn:hover {
    color: #fff;
    background-color: var(--main-color);
}

.btn.active,
.btn:active {
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 480px) {
    .contact-us.details {
        margin-bottom: 25px;
        margin-top: 30px;

    }

    .ask-send .btn {
        margin-top: 0;
        width: 100%;
    }
}

.section-contact-us .home-bg, .section-about-us .home-bg {
    display: none;
}

.section-contact-us .head-title {
    margin-bottom: 35px;
}

.cont-flex {
    background-color: var(--white-color);
    padding: 55px 25px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    border-radius: 15px;
    margin-bottom: 60px;
}

/* Add-Book */
.add-book-form input[type="radio"] {
    display: none;
}

.add-book-form input[type="radio"] + label {
    z-index: 10;
    margin: 0 10px 10px 0;
    position: relative;
    color: var(--text-color);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: bold;
    background-color: #d9d9d9;
    cursor: pointer;
    transition: all 200ms ease;
    width: 200px;
    text-align: center;
    height: 40px;
    line-height: 29px;

}

.add-book-form input[type="radio"]:checked + label {
    color: var(--white-color);
    border-color: #3e51db;
    font-family: "tj";
    background-color: #3e51db;

}

.add-book-form input[type="radio"] + label {
    padding: 5px 20px;
    border-radius: 10px;
}

.kind-book-flex, .status-book-flex, .type-book-flex {
    margin-top: 8px;
}

.book-img-flex label input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.type-book-flex-one {
    display: flex;
    justify-content: space-between;
}

.type-price-book span {
    color: var(--contact-color);
    font-size: 14px;
    padding-right: 5px;
    padding-bottom: 5px;
    font-weight: 700;
    font-family: "tjMd";
}

.book-img-flex .user-img {
    border: 1px dashed #bdbdbd;
    width: 128px;
    height: 128px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 72px;
    color: #bdbdbd;
    margin-top: 10px;

}

.book-img-flex {
    position: relative;
    margin-bottom: 30px;
}

.book-img-flex .la-camera-retro {
    position: absolute;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background-color: white;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    width: 38px;
    height: 38px;
    font-size: 23px;
    position: absolute;
    color: var(--sec-color);
    bottom: -15px;
    cursor: pointer;
}

/* contactForm */

#contactForm {
    display: none;
    border-radius: 3px;
    background-color: rgb(255, 255, 255);
    width: 500px;
    padding: 2em;
    text-align: center;
    z-index: 9999999;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    border-radius: 15px;
    height: 100%;
    overflow: scroll;
}

#contactForm .close {
    position: absolute;
    top: 40px;
    color: rgb(230, 230, 230);
    opacity: 1;
    font-size: 24px;
    left: 40px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#contactForm .close:focus,
#contactForm .close:hover {
    color: #141933
}

#contactForm h5 {
    position: relative;
}

#contactForm h5::after {
    top: 35px;
    bottom: 0;
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    background-color: rgb(1, 139, 153);
    left: 50%;
    transform: translateX(-50%);
}

#contactForm p {
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: right;
    font-weight: 500;
    font-family: "tjMd";
}

.contact-over {
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.confirm-title {
    text-align: right;
}

.confi-flex span {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 700;
}

.confi-flex i {
    font-size: 22px;
    color: var(--main-color);
}

.confirm-title ul {
    margin: 10px 0px;
}

.confirm-title ul li {
    color: var(--contact-color);
    font-weight: 400;
    font-size: 16px;
    list-style-type: disc;
    margin: 0px 20px;
}

.add-book-form {
    width: 55%;
}

@media (max-width: 992px) {
    .add-book-form {
        width: 70%;
    }

    #contactForm {
        height: 100%;
        overflow: scroll;
    }
}

@media (max-width: 991px) {
    .add-book-form {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .add-book-form {
        width: 93%;
    }

    #contactForm {
        width: 425px;
    }
}

@media (max-width: 425px) {
    #contactForm {

        width: 340px;
    }
}

/*  wishlist Section*/
.wishlist {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 25px 15px;
    width: 70%;
    margin: auto;
}

.wishlist h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
}

.table-responsive img {
    width: 47px;
    height: 47px;
}

.table-responsive tr {
    font-weight: 600;
}

b, strong {
    font-weight: unset;
}

/* Account Section */

.account-section {
    position: relative;
}

.account-section .home-bg,
.section-orders .home-bg,
.section-single-order .home-bg {
    position: absolute;
    left: 0;
    width: auto;
    top: 0;
    z-index: -1;
    transform: translateY(50%);
}

.account-flex span {
    font-size: 21px;
    font-weight: 900;
    color: var(--text-color);
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.account-flex ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: start;
}

.account-flex ul li {
    text-align: center;
    padding: 10px 5px;
    margin: 0 7.5px;
    width: 23%;
}

.account-flex ul > li > a {
    font-size: 16px;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    border: 1px solid transparent;
    border-radius: 20px;
    color: var(--text-color);
    background-color: #f1f1f1;
    text-align: center;
    padding: 0px 35px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.account-flex ul > li > a:hover {
    color: var(--main-color);
    border-color: var(--main-color);
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
}

.account-flex ul > li > a:hover .account-flex span {
    color: var(--main-color);
}

.account-flex li > a > i {
    display: block;
    text-align: center;
    font-size: 40px;
    margin-bottom: 9px;
    color: var(--sec-color);
}

.single-order-card {
    width: 60%;
    margin: auto;
}

@media (max-width: 991px) {
    .dropdown-head {
        display: none;
    }

    .account-flex ul li {
        width: 22%;
    }

    .account-flex span {
        font-size: 18px;
    }

    .account-flex li > a > i {
        font-size: 35px;
    }

    .account-flex ul > li > a {
        align-items: center;
        padding: 0px 10px;
    }

    .account-flex li > a > i {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .account-flex ul {
        justify-content: center;
    }
}

/* Orders Section */
.section-orders {
    position: relative;
}

.orders-card {

    border-radius: 15px;
    padding: 10px;
    background-color: var(--white-color);
    width: 60%;
    margin: auto;
}

.order-flex {
    display: flex;
    border: 1px solid #ebe8e8;
    border-radius: 15px;
    padding: 10px;
    margin: 10px 0px;
    background-color: #fff;
}

.orders-photo img {
    width: 131px;
    height: 137px;
    border-radius: 10px;
}

.orders-details {
    margin: 0 10px;
    width: 85%;
}

.orders-details p {
    font-size: 21px;
    font-weight: 700;
    width: 73%;

}

.product_data span:first-of-type {
    font-weight: 600;
    font-size: 18px;
    width: 120px;
    display: inline-block;
}

.product_data {
    margin: 7px 0px;
}

.product_data span.data {
    font-size: 18px;
    width: auto;
    /*font-weight: 700;*/
}

.product_data .text-warning {
    width: unset !important;
    font-size: 16px;
}

.orders-photo {
    width: 20%;
}

.data-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.orders-btn i {
    font-size: 26px;
}

/* Single Order */

.section-single-order {
    position: relative;
}

.order-tabs {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    width: 60%;
    margin: auto;
    margin-top: 15px;
}

.order-tabs .nav-pills .nav-link.active, .order-tabs .nav-pills .show > .nav-link {
    color: var(--white-color);
    background-color: var(--main-color);
}

.order-tabs .nav-pills .nav-link {
    background-color: #f0eeee;
    margin: 0px 5px;
    border: 0;
    border-radius: var(--bs-nav-pills-border-radius);
    color: var(--contact-color);
    font-family: "tjMd";
}

#pills-tab {
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8dd;
}

.rate:not(:checked) > input {
    position: absolute;
    top: -9999px;
}

.rate {
    margin: 0px 15px;
    display: flex;
    flex-direction: row-reverse;
}

.rate-flex {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.rate:not(:checked) > label {
    float: left;
    /* float:right; */
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
}

.rate:not(:checked) > label:before {
    content: 'â˜… ';
}

.rate > input:checked + label {
    color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
    color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
    color: #c59b08;
}

.star:hover,
.rate:checked ~ .star {
    color: #ffc700;
}

/* Search */
.search-icon {
    position: relative;
    display: flex;
    background-color: var(--main-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    width: 40px;
    height: 40px;
    margin: 0px 3px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.search-icon i {
    font-size: 21px;
    color: white;
}

.search-icon:hover {
    background-color: var(--sec-color);
}

.search-icon .link-om {
    display: flex;
    align-items: center;
}

.search-st-abaya {
    position: absolute;
    top: 14%;
    left: 0;
    width: 20%;
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: -1;
    transform: translateX(50%);
}

@media only screen and (max-width: 991px) {
    .search-st-abaya {
        top: 92%;
        width: 100%;
    }
}


.search-st-abaya.active {
    opacity: 1;
    z-index: 11;
}

@media only screen and (max-width: 991px) {
    .search-st-abaya.active {
        top: 92%;
    }
}

.search-st-abaya .om-in {
    width: 100%;
    height: 50px;
    padding: 0 22px;
    background-color: #ffffff;
    color: #000;
    outline: none;
    border-radius: 15px;
    border: 1px solid #eaeaea;
}

.search-st-abaya .om-in::-webkit-input-placeholder {
    color: #9f9b8b;
    text-transform: capitalize;
}

.search-st-abaya .om-in:-ms-input-placeholder {
    color: #9f9b8b;
    text-transform: capitalize;
}

.search-st-abaya .om-in::-ms-input-placeholder {
    color: #9f9b8b;
    text-transform: capitalize;
}

.search-st-abaya .om-in::placeholder {
    color: #9f9b8b;
    text-transform: capitalize;
}

.search-st-abaya .om-in-submit {
    position: absolute;
    top: 50%;
    left: 14px;
    background-color: transparent;
    border: none;
    font-size: 25px;
    color: var(--contact-color);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 36px;
}

.top.fixedheader .search-st-abaya {
    top: 70%;
}

@media (max-width: 1920px) {

}

/* statistics */
.statistics {
    padding-top: 90px;
    padding-bottom: 30px;
}

.statistics-section-flex {
    display: flex;
    justify-content: space-evenly;
    background-color: #E6F3F4;
    border-radius: 20px;
    padding: 60px 0px;
}

.statistics-number {
    text-align: center;
}

.stati-icon {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 118px;
}

.stati-icon i {
    font-size: 60px;
    color: var(--sec-color);
}

.statistics-number h4 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    direction: ltr;
    margin-top: 20px;
    color: var(--contact-color);
}

.statistics-number span {
    font-size: 24px;
    color: var(--text-color);
    text-transform: capitalize;
    font-weight: 900;
}

.complaint-sec {
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: end;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.complaint-sec i {
    margin: 0px 3px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.complaint-sec a {
    text-decoration: underline;
    font-size: 13px;
    color: var(--contact-color);
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.complaint-sec:hover.complaint-sec > i {
    color: red;
}

.complaint-sec:hover.complaint-sec > a {
    color: red;
}

.bt-eye, .bt-cart, .bt-delet {
    width: 45px;
    display: inline-block;
    height: 45px;
    border-radius: 50%;
    border: 0;
    margin: 0px 3px;
}

.bt-eye {
    background-color: gray;
}

.bt-cart {
    background-color: #22b573;
}

.bt-delet {
    background-color: #dc3545;
}

.orders-btn i {
    color: white;
}

.orders-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

/* User-book */
.user-book {
    width: 21%;
}

.user-book span {
    color: var(--grey-color);
    font-family: 'tjMd';
}

.user-book h4 {
    font-size: 25px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .statistics {
        padding-top: 75px;
        padding-bottom: 25px;
    }

    .menu-head li {
        margin-right: 20px;

    }


}

@media (max-width: 992px) {
    .search-st-abaya {
        position: absolute;
        top: 16%;
    }
}

@media (max-width: 991px) {
    .top.fixedheader .top-head {
        flex-wrap: unset;
    }

    .top.fixedheader .search-st-abaya {
        top: 70%;
        width: 30%;
    }

    .top.fixedheader .logo-head {
        width: 25%;
        text-align: center;
    }

    .top.fixedheader .menu-head li {
        margin-right: 11px;
    }

    .top.fixedheader .menu-head a {
        font-size: 17px;
    }

    .stati-icon {
        width: 100%;
    }

    .statistics-number {
        width: 50%;
        margin-bottom: 30px;
    }

    .statistics-section-flex {
        flex-wrap: wrap;
        padding: 25px 0px;
    }

    .statistics-number h4 {

        margin-top: 10px;

    }

    .product-icon {
        justify-content: center;
    }

    .orders-card {

        width: 85%;

    }

    .lang-head {
        order: 2;
    }

    .menu-head {
        display: none;
    }

    .logo-head {
        width: unset;
    }

}


@media (max-width: 480px) {
    .product-icon {
        padding-top: 10px;
    }

    .cont-flex {
        padding: 0px 20px;
    }

    .section-contact-us .head-title {
        margin-bottom: 38px;
    }

    .prod-1 {
        width: 80%;
    }

    .account-flex ul li {
        width: 47%;
        margin: 0;
    }

    .account-flex span {
        font-size: 17px;
    }

    .account-flex ul > li > a {

        align-items: center;

        padding: 0px 10px;

    }

    .type-book-flex-one {
        flex-direction: column;
    }

    .orders-card {

        width: 100%;
    }

    .orders-photo img {
        width: 150px;
        text-align: center;
        margin: auto;

    }

    .orders-details {
        margin: auto;
        margin-top: 10px;
        margin-bottom: 10px;

    }

    .orders-btn {
        width: 100%;
        margin: auto;
        margin-top: 10px;
    }

    .section-orders .orders-btn .btn.btn-primary.btn_sm, .section-orders .orders-btn .btn.btn-danger.btn_sm {
        width: 100%;
    }

    .orders-details p {
        width: 100%;
    }

    .data-flex {
        align-items: start;
        flex-direction: column;
    }

    .orders-photo {
        width: 100%;
        text-align: center;
    }

    .orders-btn {
        margin-top: 10px;

    }

    .order-tabs {

        margin-top: 20px;

    }

    .orders-btn .btn.btn-danger.btn_sm {
        margin-top: 5px;
    }

    .wishlist {

        padding: 10px 0px;
        width: 100%;
    }
}

.search-side-menu .om-in {
    width: 100%;
    height: 50px;
    padding: 0 22px;
    margin-top: 5px;
    background-color: #ffffff;
    color: #000;
    outline: none;
    border-radius: 15px;
    border: 1px solid #eaeaea;
}

.search-side-menu .om-in-submit {
    position: absolute;
    top: 58%;
    left: 8px;
    background-color: transparent;
    border: none;
    font-size: 25px;
    color: var(--contact-color);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 36px;
}

.search-side-menu form {
    position: relative;
}

.search-side-menu .search-om-form {
    width: 85%;
    margin: auto;
}

.search-side-menu i {
    font-size: 27px;
}

#bookReport h5.modal-title {
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--contact-color);
}

#bookReport label {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--contact-color);
}

.orders-btn .bt-cart:hover {
    opacity: 0.5;
}

.orders-btn .bt-delet:hover {
    opacity: 0.5;
}

.msger {
    margin-top: 60px !important;
    margin-bottom: 100px !important;
}

.custom-box-shadow {
    background-color: white;
}

.justify-content-center {
    margin: 0px 15px !important;
}

.custom-box-shadow {

    margin-top: 40px;
    background-color: white;
}

.section-single-order .col-md-12 {
    margin-top: 60px !important;
}


.section-orders .orders-btn .btn.btn-primary.btn_sm {
    display: flex;
    align-items: center;
    background-color: var(--view-color);
    text-align: center;
    width: 114px;
    height: 46px;
    border: 0;
    font-size: 19px;
    border-radius: 10px;
    color: #fff;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    justify-content: center;
}

.section-orders .orders-btn {
    flex-direction: column;
}

.section-orders .orders-btn .btn.btn-primary.btn_sm:hover {
    opacity: 0.5;
}

.section-orders .orders-btn .btn.btn-danger.btn_sm {
    display: flex;
    align-items: center;
    background-color: var(--delete-color);
    text-align: center;
    width: 114px;
    height: 46px;
    border: 0;
    font-size: 19px;
    border-radius: 10px;
    color: #fff;
    margin-top: 5px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    justify-content: center;

}

.section-orders .orders-btn .btn.btn-danger.btn_sm i {
    font-size: 21px;
    margin: 0px 3px;
}

.section-orders .orders-btn .btn.btn-primary.btn_sm i {
    font-size: 21px;
    margin: 0px 3px;
}

.section-orders .orders-btn .btn.btn-danger.btn_sm:hover {
    opacity: 0.5;
}

.page-error-fix {
    width: 60%;
    margin: auto;
    text-align: center;
    padding: 60px 0px;
    background-color: white;
}

.page-error-fix h2 {
    font-size: 100px;
    color: var(--contact-color);
}

.page-error-fix p {
    font-size: 36px;
    font-weight: bold;
}

/*  */

.advanced-search-section {
    padding: 0px 0 40px;
}

.orders-btn .align-items-center {
    letter-spacing: 1.3px;
    width: 165px;
    height: 46px;
    background-color: #ff000091;
    border: 0;
    border-radius: 5px;
    justify-content: space-around;
}

.orders-btn .align-items-center:hover {
    background-color: #ff0000cf;
}

@media (max-width: 991px) {
    .advanced-search-section {
        padding: 20px 0;
    }
}

.advanced-search-form {
    padding: 24px 68px;
    background-color: #f5f5f5;
    border-radius: 25px;
}

@media (max-width: 991px) {
    .advanced-search-form {
        padding: 25px 15px;
    }
}

.main-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.main-line .form-group {
    margin: 0;
}

@media (max-width: 991px) {
    .main-line .form-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .main-line {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        justify-content: center;
    }
}

.advanced-input {
    padding-top: 17px;
    display: none;
}

.search-submit {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 125px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    background-color: var(--main-color);
    padding: 0;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0 7px;
    font-family: 'tj';
}

.search-submit:hover, .search-submit:focus {
    background-color: var(--sec-color);
    text-decoration: none;
    color: #fff;
}

@media (max-width: 991px) {
    .search-submit {
        width: calc(50% - 6px);
        margin: 0 3px;
    }
}

.advanced-search-btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 153px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    background-color: var(--sec-color);
    padding: 0;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.advanced-search-btn i {
    font-size: 12px;
    -webkit-margin-start: 8px;
    margin-inline-start: 8px;
    display: none;
}

.advanced-search-btn:hover, .advanced-search-btn:focus {
    background-color: #f9a51b;
    text-decoration: none;
    color: #fff;
}

.advanced-search-form label {
    /* font-size: 15px;
  font-weight: 700;
  color: #000;
  padding: 0 4px;
  margin: 0 0 11px; */
    display: none;
}

@media (max-width: 991px) {
    .advanced-search-btn {
        width: calc(50% - 6px);
        margin: 0 3px;
    }
}

.form-info {
    text-align: end;
    font-size: 15px;
    color: #616161;
    line-height: 1.6;
    font-weight: 500;
    margin-top: 37px;
}

.advanced-search-section .form-control {
    background-color: #ffffff;
    height: 48px;
    border-radius: 14px;
    width: 100%;
    border: 3px solid #fff;
    font-size: 15px;
    color: #757575;
    font-weight: 500;
    padding: 0 25px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.advanced-search-section .form-group {
    width: 100%;
}

.form-group label .more {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.inputs-line-three {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 18px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.inputs-line-three .form-group {
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .inputs-line-three {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .prod-photo svg {
        width: 100px;

    }

    .prod-title span {

        font-size: 30px;

    }

}

@media (max-width: 1024px) {
    .prod-1 {
        margin: 10px 10px;
        width: 47%;
    }
}

.inputs-line-two {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.inputs-line-two .form-group {
    max-width: 100%;
    overflow: hidden;

}

@media (max-width: 1199px) {
    .inputs-line-two {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .prod-1 {
        width: 68%;
    }
}

@media (max-width: 480px) {
    .prod-1 {
        width: 100%;
    }

    .prod-photo svg {
        width: 83px;
    }

    .prod-title span {
        font-size: 23px;
    }

    .prod-1 {
        height: 145px;
    }

    .prod-flex {
        padding: 0px 30px;
    }

    .order-flex {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .prod-photo svg {
        width: 70px;
    }

    .prod-title span {
        font-size: 23px;
    }

    .prod-flex {
        padding: 0px 18px;
    }
}

.form-submit {
    width: 153px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    background-color: var(--main-color);
    padding: 0;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 20px auto 0;
    font-family: 'tj';
    display: none;
}

.form-submit:hover, .form-submit:focus {
    background-color: var(--sec-color);
    text-decoration: none;
    color: #fff;
}

.form-select-lg .mb-3 {
    margin-bottom: 0 !important;
}

/*  */
.logo-head {
    order: 1;
    width: 24%;
}

.search-bar {
    position: relative;
    order: 2;
}

.search-bar .form-group {
    width: 556px;
    margin-bottom: 0;
}

.search-bar .searchinput {
    background-color: #E6F3F4;
    width: 100%;
    height: 45px;
    border: 1px solid #E6F3F4;
    border-radius: 10px;
    padding: 0px 25px;
}


.search-bar .searchinput::placeholder {
    color: #b9b9b9;
    font-size: 14px;

}

.se_on {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 5px;
    background-color: var(--main-color);
    color: #fff;
    border: 1px solid transparent;
    transform: translateX(-50%);
    left: 24px;
    top: 5px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}


.se_on:hover {
    color: var(--main-color);
    background-color: rgb(247, 247, 247);
    border-color: var(--main-color);
}

.down_nav {

    height: 50px;
    line-height: 50px;
    margin-bottom: 15px;

}

.main {
    display: flex
}

.down_nav .cat {
    position: relative;
    width: 263px;
}

.down_nav .title {
    background-color: var(--main-color);
    color: #ffffff;
    font-size: 20px;
    padding: 0 30px;
    cursor: pointer;
    font-family: 'tj';
    border-radius: 5px;
}

.title i {
    margin: 0px 8px;
}

.down_nav .title > .fa {
    margin-left: 12px;
}

.down_nav .demo {
    width: 214px;
    position: absolute;
    z-index: 999;
    background-color: #ffffff;
    border-radius: 5px;
    display: none;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
}

.down_nav .demo .sub:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}


.down_nav .demo > ul > li {

    padding: 0px 23px;
    line-height: normal;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: relative;
}

.down_nav .demo .sub {
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.down_nav .demo .sub:hover {
    color: var(--main-color)
}

.down_nav .demo .sub {
    color: #282526;
    font-size: 14px;
    display: block;
    line-height: 36px;
    position: relative;
    transition: 0.5s ease;
    padding: 1px 14px;
    background-color: #ffffff;
}

/* .down_nav .demo .sub:after {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 3px;
  color: #b1b1b1;
  font-size: 9px;
  content: "\f104";
  left: 9px;
}

.down_nav .demo .sub:hover::after {
  color: var(--main-color)
} */

.demo .sub_list {
    position: absolute;
    background-color: #ffffff;
    right: 264px;
    top: 0;
    padding: 20px;
    border: 0;
    transition: 0.5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 400;
    border: 1px solid #e5e5e5;
    width: 878px;
    display: flex;
    flex-wrap: wrap;
    height: 0;
    overflow: hidden;
}

.down_nav .demo > ul > li:hover .sub_list {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.demo .sub_list .sub_item {
    display: inline-block;
    transition: 0.5s ease;
    margin: 0px 5px 5px 5px;
    border: 1px solid rgb(230, 230, 230);
    margin: 10px;
    width: 99px;
    height: 104px;
}

.demo .sub_text {
    position: absolute;
    background-color: #ffffff;
    right: 214px;
    top: 0;

    border: 0;
    transition: 0.5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 400;

    width: 256px;
}

.down_nav .demo > ul > li:hover .sub_text {
    opacity: 1;
    visibility: visible;
}

.demo .sub_text .sub_item {
    display: inline-block;
    transition: 0.5s ease;
    margin: 0px 5px 5px 5px;
    border: 1px solid rgb(230, 230, 230);
    margin: 10px;
    width: 99px;
    height: 104px;
}

.sub_text a {
    text-decoration: none;
    color: #515252;
    margin: 6px 0px;
    display: block;
    font-size: 15px;

    padding: 0px 15px;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.sub_text > li {
    padding: 3px 10px;
    border-radius: 3px;

}

.sub_text > li:not(:last-child) {
    border-bottom: 1px solid #f2f2f2;
}

.sub_text a:hover {
    color: var(--main-color)
}

.demo .sub_list .sub_item:hover {
    border-color: var(--main-color)
}

/* .cat .collapse:not(.show) {
  display: block !important;
} */
.sub-photo {
    display: flex;
    align-content: center;
    justify-content: center;
    max-width: 97px;
    height: 100px;
    align-items: center;
    overflow: hidden;
}

.sub-list img {
    height: auto;
    width: auto;
}

@media (max-width: 1024px) {
    .grid-products .cate-products {
        width: 22%;
    }

    .grid-products .items-flex .select-item {
        width: 31%;
    }
}

@media (max-width: 991px) {
    .grid-products .items-flex {
        justify-content: center;
    }

    .grid-products .cate-products {
        width: 30%;
    }

    .grid-products .items-flex .select-item {
        width: 45%;
    }

    .down_nav {
        display: none;
    }

    .logo-head {
        width: unset;
    }

    .search-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .single-order-card {
        width: 90%;
        margin: auto;
    }

    .order-tabs {
        width: 90%;
    }

}

@media (max-width: 480px) {
    .subscribe h3 {
        margin-top: 10px;
        font-size: 16px;
        color: #fff;
        font-weight: 900;
        margin-bottom: 0;
    }

    .single-order-card {
        width: 95%;
    }
}

.order-tabs {
    width: 95%;
}

@media (max-width: 425px) {
    .grid-products .items-flex .select-item {
        width: 62%;
        margin: auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 375px) {
    .grid-products .items-flex .select-item {
        width: 80%;
    }
}

.not-allowed {
    opacity: 0.3;
    background-color: #dbdbdb !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.wishlist .table-responsive {
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1) !important;
    border-radius: 15px !important;
    font-family: 'tj' !important;
}

.wishlist tbody {
    border-style: unset !important;
    border-color: transparent !important;
}

.wishlist .table-responsive tr {
    border-width: 0px 0px !important;
    border-style: unset !important;
    border-color: transparent !important;
}

.wishlist .table > :not(caption) > * > * {
    padding: 10px 5px !important;
}

.notification {
    position: relative;

}

.notification i, .messages i {
    font-size: 21px;
}

.notification .notifi-count {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    top: -5px;
    right: 0px;
    background-color: #ed9c39;
    font-size: 12px;
    color: #fff;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}


.notification a, .messages a {
    display: flex;
    background-color: var(--main-color);
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    width: 40px;
    height: 40px;
    margin: 0px 3px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
}

.notification a:hover {
    background-color: var(--sec-color);
}

.messages a:hover {
    background-color: var(--sec-color);
}

.notification a:hover span {
    background-color: var(--main-color);
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.notification-section {
}

.notification-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 7px;
    background: #fff;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border-radius: 15px;
    align-items: center;

}

.notification-list input[type=checkbox] {
    display: none;
}

.notifi-detail p {
    margin-bottom: 4px;
    font-weight: 500;
    color: var(--text-color);
}

.notifi-detail b {
    font-weight: 600;
    color: var(--bs-black);
}

.notifi-time {
    font-size: 14px;
    color: var(--grey-color);
}

.cell-check {
    position: relative;
    display: block;
}

.cell-check label {
    margin-bottom: 5px;
    cursor: pointer;
    width: 50px;
}

.cell-check label > span.circle {
    position: relative;
    top: 4px;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    background-color: rgb(255, 255, 255);
    /* box-shadow: inset 0px 3px 7px 0px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgb(209, 209, 209);
}

.cell-check label > span.circle {
    border-radius: 3px;
}

.cell-check label input[type=checkbox]:checked ~ span.circle {
    border-color: rgb(209, 209, 209);
}

.cell-check label input[type=checkbox]:checked ~ span.circle:after {
    content: "";
    position: absolute;
    border-radius: 2px;
    display: inline-block;
    background-color: var(--main-color);
    width: 16px;
    height: 16px;
    top: 1px;
    left: 1px;
}

.cell-check span.checkmark {
    border-radius: 3px;
}

.cell-check span.checkmark {
    position: relative;
    top: 4px;
    left: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    background-color: rgb(255, 255, 255);
    /* box-shadow: inset 0px 3px 7px 0px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgb(209, 209, 209);
}

.cell-check input[type=checkbox]:checked ~ span.checkmark:after {
    content: "";
    position: absolute;
    border-radius: 2px;
    display: inline-block;
    background-color: var(--main-color);
    width: 16px;
    height: 16px;
    top: 1px;
    left: 1px;
}

.cell-check {
    position: relative;
    display: block;
}

.notif-cont {
    border-bottom: 1px solid #cccccc57;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.select-notif {
    display: block;
    background-color: #0060cf;
    text-align: center;
    line-height: 47px;
    width: 136px;
    height: 45px;
    font-size: 19px;
    border-radius: 3px;
    color: #fff !important;
    font-weight: 500;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.select-notif:hover {
    opacity: 0.7;
}

.delete-notif {
    display: block;
    background-color: #860a0a;
    text-align: center;
    line-height: 47px;
    width: 136px;
    height: 45px;
    font-size: 19px;
    border-radius: 3px;
    color: #fff !important;
    font-weight: 500;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.delete-notif:hover {
    opacity: 0.7;
}

.notif-cont i {
    font-size: 19px;
    margin-right: 3px;
}

.cart-title a:hover {
    color: var(--main-color);
}

.p-3 a.btn.btn-primary {
    width: 165px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

@media (max-width: 480px) {
    .d-flex.p-3 {
        flex-wrap: wrap;
    }
}

.card.p-2 .text-center img {
    display: none;
}

/*  */

.shareit {
    display: flex;
    margin-bottom: 10px;
    margin-top: 15px;
}

.shareit a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #fff;
    opacity: 0.75;
    transition: opacity 0.15s linear;
    text-decoration: none;
}

.shareit a:hover {
    opacity: 1;
}

.facebook {
    background: #3b5998;
}

.twitter {
    background: #000000;
}

.linkedin {
    background: #0077b5;
}

.reddit {
    background: #FF4500;
}

.whatsapp {
    background: #128c7e;
}

.tumblr {
    background: #000000;
}

.pinterest {
    background: #cb2027;
}

.cyc img {
    width: 24px;
    height: 24px;
}

.head-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-flex .mb-3.btn.btn-sm.btn-success.text-white {
    background-color: transparent !important;
    border: 0px solid transparent !important;
    display: inline-block;
    padding: 2px 5px;

    text-align: center;

    border-radius: 5px;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    font-size: 21px;
}

.head-flex .mb-3.btn.btn-sm.btn-success.text-white:hover {
    opacity: 0.7;
    color: var(--bs-btn-hover-color);
    background-color: transparent;
    border-color: transparent;
}

.head-flex i {
    color: var(--main-color);
    font-size: 28px;
    margin: 0px 5px;
}

@media (max-width: 480px) {
    .head-flex {
        flex-direction: column;
    }

    .wishlist .btn.btn-sm.btn-danger {
        width: 100%;
        margin: 3px 0px;
    }
}

.messages {
    position: relative;
}

.messages a:hover span {
    background-color: var(--main-color);
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
}

.messages .notifi-count {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    top: -5px;
    right: 0px;
    background-color: #ed9c39;
    font-size: 12px;
    color: #fff;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.side-menu ul li.add-book-mob {
    background-color: var(--sec-color);

}

.side-menu ul li.add-book-mob > a {
    color: white;
}

.whats {
    position: fixed;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 50%;
    bottom: 100px;
    right: 170px;
    background-color: #38b828;
    color: #fff !important;
    z-index: 99999;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.whats:hover {
    color: #fff !important;
    opacity: .8;
    text-decoration: none
}

@media (max-width: 1500px) {
    .whats {
        right: 40px
    }
}

/* Mega Menu */
/*------ navbar start ------*/
.nav-bar {
    z-index: 9;
}

.nav-bar .zx-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
}

.nav-bar .logo-container {
    width: 270px;
}

.nav-bar .logo-container .logo {
    width: 170px;
}

.nav-bar .logo-container .logo img {
    -webkit-filter: brightness(0%) invert(1);
    filter: brightness(0%) invert(1);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.nav-bar .icons {
    width: 270px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-bar .icons .icon-container {
    position: relative;
    font-size: 22px;
    color: #fff;
    margin: 0 0 0 25px;
}

[dir="ltr"] .nav-bar .icons .icon-container {
    margin: 0 25px 0 0;
}

.nav-bar .icons .icon-container:last-child {
    margin: 0;
}

.nav-bar .icons .icon-container a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-bar .icons .icon-container i {
    padding: 0 5px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav-bar .icons .icon-container span {
    font-family: ar-reg;
    font-size: 16px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav-bar .icons .icon-container:hover {
    color: #bfbfbf;
}

.nav-bar .icons .menu-icon {
    display: none;
}

.nav-bar .icons .user-icon {
    position: relative;
}

.nav-bar .icons .user-icon .after {
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav-bar .icons .user-icon .after::after {
    content: "\f0d7";
    /* FontAwesome Unicode */
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 600;
    font-size: 11px;
    color: #727071;
    padding: 0 3px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.nav-bar .icons .user-icon .switch {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 40px;
    left: 55%;
    z-index: 9;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 130px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.09);
    color: #000;
    border-radius: 5px;
    padding: 8px 5px;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.nav-bar .icons .user-icon .switch a {
    display: block;
    margin: 3px 0;
}

.nav-bar .icons .user-icon .switch a:hover {
    color: #bfbfbf;
}

.nav-bar .icons .user-icon .switch span {
    padding: 0 2px;
    font-size: 15px;
}

.nav-bar .icons .user-icon:hover > span {
    color: #fff;
}

.nav-bar .icons .user-icon:hover > span::after {
    color: #fff;
}

.nav-bar .icons .user-icon:hover .switch {
    top: 30px;
    opacity: 1;
    visibility: visible;
}

.nav-bar .icons .cart-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-bar.fixed-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
}

.nav-bar.fixed-nav .logo-container .logo {
    width: 114px;
}

.nav-bar.fixed-nav .logo-container .logo img {
    -webkit-filter: unset;
    filter: unset;
}

.nav-bar.fixed-nav .icons .icon-container {
    color: #000;
}

.nav-bar.fixed-nav .nav-list .list li {
    color: #000;
}

.nav-bar.fixed-nav .nav-list .list li::after {
    color: #000;
}

.nav-bar.fixed-nav .mega-menu {
    top: 80px;
}

/*------ navlist start ------*/
.nav-list .zx-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-list .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-list .list li {

    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 0 25px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

[dir="ltr"] .nav-list .list li {
    margin: 0 18px 0 0;
}

.nav-list .list li:last-child {
    margin: 0;
}

.nav-list .list li:hover {
    color: #bfbfbf;
}

.nav-list .list li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-hover .la-angle-down:before {
    font-size: 11px;
}

/*------ navlist end ------*/
.mega-menu {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    width: 100vW;
    position: absolute;
    top: 200px;
    left: 0;
    z-index: 9;
}

.mega-menu .container {
    position: relative;
}

.mega-menu .zx-mega-container {
    background-color: #fff;
    padding: 20px 30px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    box-shadow: 0px 0px 8px 0px rgba(1, 1, 1, 0.1);
    border-radius: 10px;
}

.mega-menu .mega-container {
    height: 310px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;

    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
}

.mega-menu .list-title a {
    font-size: 18;
}

.mega-menu .list-title {

    font-size: 18px;
    color: #000;
    margin: 10px 0 0 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.mega-menu ul {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.mega-menu ul li {

    font-size: 16px;

    color: #333 !important;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

[dir="ltr"] .mega-menu ul li {
    margin: 0 80px 10px 0 !important;
}

.mega-menu ul li:hover {
    color: #000;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
}

[dir="ltr"] .mega-menu ul li:hover {
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
}


.mega-menu .mega-brands .img-container {
    border-style: solid;
    border-width: 1px;
    border-color: #e6e6e6;
    width: 127px;
    height: 127px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0;
}


.mega-list img {
    width: 15px;
}

.down {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media (max-width: 991px) {
    .nav-bar {
        display: none;
    }
}

.logo-head img {
    width: 100px;
    height: 100px;
}

/*------ navbar end ------*/
.breadcrumb {
    background-color: var(--main-color);
    position: relative;
    height: 199px;
    background-image: url(../images/Vector.png);
    background-position: left center;
    background-repeat: repeat-y;
    position: relative;
}

.breadcrumb h2 {
    color: #fff;
    margin: 0;
    margin-bottom: 10px;
    font-size: 35px;
    font-weight: 700;
}

.breadcrumb p {
    color: #F5F5F5;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

.crumb-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 199px;

}

.request-book {
    font-family: 'tj';
    border-radius: 10px;
    overflow: hidden;
    width: 85%;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 40px;
}

.request-book thead {
    background-color: var(--main-color);
    border-radius: 10px 10px;
    overflow: hidden;
    color: #fff;
}

.name-book-table span {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
}

.author-book-table span {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color-color);
}

.publish-book-table span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color-color);
}

.status-book-table span {
    color: var(--white-color);
    padding: 5px 15px;
    background-color: var(--main-color) !important;
    border-radius: 10px;
}

.add-book-table span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color-color);
}

.copy-book-table a {
    border-radius: 50%;
    background-color: #EB9B3A;
    padding: 12px;
}

.request-book.table tr {
    text-align: center;
    line-height: 50px;
}

.head-table {
    border-radius: 10px;
}

.paginat-books {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.pagination > li > a, .pagination > li > span {
    border-color: #F5F5F5;
    padding: 10px 15px;
    color: var(--contact-color);
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: var(--main-color);
    background-color: #F5F5F5;
    border-color: #F5F5F5;
}

.copy-book-table img {
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    .request-book {
        width: 100%;
        margin: auto;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .request-book.table tr {
        line-height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .breadcrumb h2 {
        font-size: 28px;
    }

    .breadcrumb p {
        font-size: 15px;
    }

    .crumb-title {
        height: 160px;
    }

    .breadcrumb {
        height: 160px;
        background-size: contain;
    }

    .table > thead {
        vertical-align: middle;
    }

    .request-book.table tr {
        line-height: 24px;
        font-size: 11px;
    }

    .copy-book-table a {

        padding: 10px;
    }

    .copy-book-table img {
        width: 17px;
        height: 17px;
    }

    .name-book-table span {
        font-size: 14px;
    }

    .author-book-table span {
        font-size: 14px;
    }

    .publish-book-table span {
        font-size: 14px;
    }

    .add-book-table span {
        font-size: 14px;
    }

    .request-book.table tr {
        vertical-align: middle;
    }

}

@media (max-width: 375px) {
    .request-books-table .table > :not(caption) > * > * {
        padding: 1px 10px;
    }

    .copy-book-table a {
        padding: 7px;
    }

    .copy-book-table img {
        width: 15px;
        height: 15px;
    }
}

.spaced {
    white-space: pre;
}

.nav-list .list>li>a{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--contact-color);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    transition: 0.3s ease-in-out;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, var(--main-color), var(--main-color) 50%, var(--contact-color) 50%);
    background-size: 200% 100%;
    background-position: 100%;
}
.nav-list .list>li>a:hover {
    color: var(--main-color);
    transition: all 0.3s cubic-bezier(0, 0, 0.23, 1);
    background-position: 0%;
}
.nav-list .list li.login-link a{
    background-color: var(--sec-color);
    padding: 5px 7px;
    color: #fff !important;
    border-radius: 5px;
    font-weight: 500;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    transition: 0.3s ease-in-out;
}
.nav-list .list li.login-link a:hover{opacity: 0.8;}
.nav-list .list li.login-link a .la-plus:before {
    font-size: 15px;
    margin-inline-start: 5px;
}
.books-request-home .d-flex{flex-direction: column;}
.books-request-home .d-flex div i{
    color: var(--main-color);
    margin-bottom: 5px;
}
.books-request-home .d-flex div{
    color: var(--text-color);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    transition: 0.3s ease-in-out;
}
.books-request-home .d-flex div:hover{color: var(--main-color);}
.books-request-home .select-item{height: 140px;}
.books-request-home .owl-item {    padding: 2px;}
.cy {
    width: 30px;
    height: 30px;
    line-height: 26px;
    background-color: #fff;
    border-radius: 50%;
}

.login-link a {
    background-color: var(--sec-color) !important;
    padding: 5px 7px !important;
    color: #fff !important;
    border-radius: 5px;
    font-weight: 500 !important;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    transition: 0.3s ease-in-out;
    background-image: none;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-image: none !important;
    background-size: unset !important;
    background-position: unset !important;
}
.cart-flex {
    justify-content: center;
}
.no__items {
    margin: auto !important;
}
.role-selection-group .custom-box:hover {
    border-color: transparent !important;
}
.mega-menu .list-title a {
    font-size: 16px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    transition: 0.3s ease-in-out;
}
.mega-menu .list-title a:hover {    color: var(--main-color);}
.cart-item-price button{
    background-color: red;
    text-align: center;
    line-height: 44px;
    width: 120px;
    height: 50px;
    border-color: red;
    font-size: 20px;
    border-radius: 10px;
}

.section-orders .orders-btn .btn.btn-primary.btn_sm {
    display: flex;
    align-items: center;
    background-color: #121283d4;
    text-align: center;
    width: 114px;
    height: 46px;
    border: 0;
    font-size: 15px;
    border-radius: 10px;
    color: #fff;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    justify-content: space-around;
}
.orders-btn{}
.section-orders .orders-btn .btn.btn-info.btn-sm.mt-2.text-white {
    background-color: #ffa200f0;
    border-color: #ffa200f0;
    width: 114px;
    height: 46px;
    border-radius: 10px;
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}
.section-orders .orders-btn .btn.btn-info.btn-sm.mt-2.text-white:hover {
    opacity: 0.8;
}
.section-orders .orders-btn .btn.btn-danger.btn_sm {
    display: flex;
    align-items: center;
    background-color: #8d0000c2;
    text-align: center;
    width: 114px;
    height: 46px;
    border: 0;
    font-size: 14px;
    border-radius: 10px;
    color: #fff;
    margin-top: 5px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    justify-content: space-evenly;
}
.form-select-lg option:hover {
    color: var(--white-color);
    background-color: #22b573c2;
}
.contact-us.details {
    border-radius: 10px;
    margin-bottom: 10px;
    margin-top: 0px;
}
.cart-flex {
    justify-content: space-between;
}
.swal2-styled.swal2-confirm {
    background-color: var(--main-color) !important;
}
.sing-photo {
    margin-bottom: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
}
.shareit {
    display: none;
}
@media (max-width:1024px) {
    .nav-list .list li {
        font-size: 16px;
        margin: 0 0 0 17px;
    }
    .nav-list .list>li>a {font-size: 16px;}
}