@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

*,
html,
body {
    font-family: 'EB Garamond', serif;
}

body {
    background: #F7F6F2
}

:root {
    --black: black;
    --white: #fff;
    --light: #f2f2f2;
    --dimgray: #696969;
    --body-color: #212529;
    --border-color: #dee2e6;
    --fs-default: 1rem;
    --fs-modal-title: 1.5rem;
}

.line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.middle-prnt {
    position: relative;
    display: table;
    width: 100%;
    min-height: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}

.focus-ring-none:focus {
    border-color: var(--border-color);
    outline: 0;
    box-shadow: none;
}

.modal-header {
    padding: 1rem 1rem 0;
}

.modal-body {
    padding: 0 1.5rem 1.5rem;
}

.list-product-media {
    height: 180px;
    background: #fff;
}

.list-product-media.media img {
    object-fit: contain;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-list-sidebar .no-border li {
    border: none;
}

.table thead tr th,
.table tbody tr td {
    background: transparent;
}

.btn-outline-dark:hover .si {
    background: var(--white);
}

.btn-outline-dark,
.btn-outline-danger {
    font-size: .8rem;
    text-transform: uppercase;
}

.top-80 {
    top: 80px;
}

/* Header */
.header {
    width: 100%;
    padding: 12px 0;
    background: #FFF;
    transition: .5s ease-in-out;
    position: relative;
    z-index: 123;
}

.header.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transition: .5s ease-in-out;
}

.header.fixed .brand img {
    height: 48px;
    transition: .5s ease-in-out;
}

.header.fixed .d-md-block .top-bar {
    display: none;
    transition: .5s ease-in-out;
}

.header.fixed .primary-menu {
    margin-top: 12px;
    transition: .5s ease-in-out;
}

.top-bar {
    position: absolute;
    width: 100%;
    top: 12px;
    left: 0;
    right: 0;
}

/* Search Bar */

.search-sec {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    padding: 4px 6px;
    background: var(--white);
}

.search-sec input {
    border: none;
    width: 100%;
    font-size: var(--fs-default);
}

.search-sec input:focus {
    outline: none;
    box-shadow: none;
}

.search-sec input::-webkit-search-cancel-button {
    position: relative;
    right: 0px;
    width: 12px;
    height: 12px;
    -webkit-appearance: none;
    background-image: url('../icon/close.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

/* Top Bar */
.top-bar-option {
    padding: 2px 0;
}

.top-bar-option ol {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end;
}

.top-bar-option ol li {
    margin-left: 12px;
    list-style: none;
}

.top-bar-option ol li a,
.top-bar-option ol li button {
    width: 30px;
    height: 30px;
    background: var(--light);
    border-radius: 100%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.top-bar-option ol li a:hover,
.top-bar-option ol li button:hover {
    background: var(--dimgray);
}

.top-bar-option ol li a:hover i,
.top-bar-option ol li button:hover i {
    background: var(--white);
}

.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

/* Language Modal */
.language-modal-title {
    margin-bottom: 24px;
}

.language-modal-title h2 {
    margin: 0;
    font-weight: 400;
    font-size: var(--fs-modal-title);
}

/* Primary Menu */
.brand img {
    height: 80px;
    position: relative;
    z-index: 123;
}

.primary-menu {
    margin-top: 40px;
}

.primary-menu ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.primary-menu ul li {
    list-style: none;
    position: relative;
}

.primary-menu.menu-start ul li {
    margin-right: 50px;
}

.primary-menu.memu-end ul li {
    margin-left: 50px;
}

.primary-menu ul li a {
    font-size: var(--fs-default);
    text-decoration: none;
    color: #5f5f5f;
    padding: 12px 0;
}

.primary-menu ul li:hover ul.submenu {
    display: block;
}

.primary-menu ul li ul.submenu {
    position: absolute;
    top: 30px;
    left: 0;
    width: 150px;
    display: none;
    z-index: 99;
    transition: all 0.5s ease;
    width: 250px;
}

.primary-menu ul li ul.submenu li {
    margin: 0;
    display: block;
}

.primary-menu ul li ul.submenu li a {
    padding: 6px 12px;
    display: block;
    background: var(--white)
}

.primary-menu ul li ul.submenu li a:hover {
    color: var(--white);
    background: var(--dimgray);
}

/* -- Mobile Menu -- */
.m-search {
    display: none;
    padding: 6px 12px;
    background: var(--light);
    transition: all 0.5s ease;
}

.m-search.show {
    display: block;
}

.foot-bar {
    background: var(--white);
    position: fixed;
    left: 0;
    right: 0;
    padding: 20px 0;
    bottom: 0;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* -- */

.orc-item {
    color: var(--body-color);
    text-decoration: none;
    display: flex;
    padding: 12px;
    flex: 1 1 0%;
    flex-direction: row;
    align-self: stretch;
    background: var(--white);
    border: 1px solid var(--light);
}

.orc-item:hover .orc-item-text p {
    text-decoration: underline;
}

.orc-item-media {
    height: auto;
    position: relative;
    width: auto;
    max-width: 33%;
    display: flex;
    flex-shrink: 0;
    margin-right: 12px;
}

.orc-item-text {
    line-height: 1.2;
    font-size: var(--fs-default);
    display: flex;
    width: 100%;
    align-items: center;
    flex-grow: 1;
}

.orc-item-text p {
    margin: 0;
}

/* -- x -- */

.product-list-sidebar {
    padding: 0 12px 0 0;
    margin: 0;
    max-height: 80vh;
    overflow-y: scroll;
}

.product-list-sidebar::-webkit-scrollbar-thumb {
    border-radius: 4px;
}

.product-list-sidebar:hover::-webkit-scrollbar-thumb {
    background-color: var(--dimgray);
}

.product-list-sidebar::-webkit-scrollbar {
    width: 6px;
}

.product-list-sidebar li {
    border-bottom: 1px solid var(--border-color);
}

.product-list-sidebar li:last-child {
    border-bottom: none;
}

.ma-accordion-head a {
    text-decoration: none;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0;
    padding: 12px 0;
    text-decoration: none;
}

.ma-accordion-body {
    padding-left: 12px;
    padding-bottom: 24px;
}

.text-list li a {
    color: var(--dimgray);
    font-size: .9rem;
    text-decoration: none;
}

.text-list li a.active {
    font-weight: bold;
    color: var(--black);
}

.ma-radio [type="radio"]:checked,
.ma-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.ma-radio [type="radio"]:checked+label,
.ma-radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: var(--dimgray);
    font-size: .9rem;
}


.ma-radio [type="radio"]:checked+label:before,
.ma-radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: var(--white);
}

.ma-radio [type="radio"]:checked+label:before {
    border: 1px solid var(--black);
}

.ma-radio [type="radio"]:not(:checked)+label:before {
    border: 1px solid var(--border-color);
}

.ma-radio [type="radio"]:not(:checked)+label:hover:before {
    border-color: var(--black);
}

.ma-radio [type="radio"]:checked+label:after,
.ma-radio [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--black);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.ma-radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.ma-radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.checkbox-list .ma-checkbox,
.radio-list .ma-radio {
    margin-bottom: 6px;
}

.ma-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.ma-checkbox label {
    position: relative;
    cursor: pointer;
    display: flex;
    line-height: 18px;
}

.ma-checkbox label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--border-color);
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 14px;
}

.ma-checkbox label:hover::before {
    border-color: var(--black);
}

.ma-checkbox input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ma-checkbox input:checked+label:before {
    background: var(--black);
    border-color: var(--black);
}

.item-color {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 2px;
}

.item-color input[type=checkbox] {
    position: relative;
    --size: 18px;
    block-size: var(--size);
    inline-size: var(--size);
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid var(--border-color);
}

.item-color:hover input[type=checkbox] {
    border-color: var(--black) !important;
}

.item-color input[type=checkbox]::before {
    content: '';
    display: block;
    position: absolute;
    top: 1px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.item-color span {
    margin-left: 14px;
    font-size: .9rem;
}

/* --x-- */

.price-range-slider {
    width: 100%;
}

.price-range-slider .range-value {
    margin: 0;
}

.price-range-slider .range-value input {
    width: 100%;
    background: none;
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    box-shadow: none;
    border: none;
    text-align: center;
    margin-bottom: 6px;
}

.price-range-slider .range-bar {
    background: var(--dimgray);
    height: 6px;
    border-radius: 10px;
}

.price-range-slider .range-bar .ui-slider-range {
    background: var(--black);
    height: 6px;
}

.price-range-slider .range-bar .ui-slider-handle {
    border: none;
    border-radius: 25px;
    background: var(--white);
    border: 2px solid var(--black);
    height: 18px;
    width: 18px;
    top: -7px;
    cursor: pointer;
}

.price-range-slider .range-bar .ui-slider-handle+span {
    background: var(--black);
}

/* -- x -- */

.list-product {
    padding: 12px;
    border: 1px solid var(--light);
    margin-bottom: 24px;
}

.list-product:hover {
    border-color: var(--dimgray);
}

.list-product-info a {
    font-size: 1rem;
    color: var(--body-color);
    text-decoration: none;
    font-weight: 500;
    margin: 8px 0;
}

.list-product-info {
    min-height: 48px;
}

.list-product-info h6 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    display: flex;
    align-items: center;
}

/* -- x -- */
.pc-item {
    margin-bottom: 24px;
}

.pc-item-desc {
    margin: 12px 0;
}

.pc-item-desc p {
    margin: 0;
    font-size: .9rem;
}

/* -- x -- */
footer {
    margin: 24px 0 0;
    padding: 24px 0;
    background: var(--light);
}

.foot-menu h2 {
    position: relative;
    font-size: 1rem;
    color: var(--text-color);
    padding-bottom: 5px;
}

.foot-menu h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 1px;
    background: var(--body-color);
}

.foot-menu ol {
    margin: 12px 0 0;
    padding: 0;
}

.foot-menu ol li {
    list-style: none;
    margin: 6px 0;
}

.foot-menu ol li a {
    text-decoration: none;
    color: var(--text-color);
}

.foot-logo img {
    height: 80px;
}

.s-media {
    margin: 12px 0 6px;
}

.s-media ol {
    margin: 0;
    padding: 0;
}

.s-media ol li {
    list-style: none;
    margin: 0 3px;
    display: inline-block;
}

.foot-contact ol {
    margin: 0;
    padding: 0;
}

.foot-contact ol li {
    list-style: none;
}

.foot-contact ol li a {
    font-size: 1rem;
    color: var(--text-color);
    text-decoration: none;
}

/* Product Details Page Design */
.owl-theme.pd-main-slider .owl-nav,
.owl-theme.pd-thumb-slider .owl-nav,
.owl-theme.also-like-portion .owl-nav {
    margin: 0;
    position: absolute;
    top: 45%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-theme.pd-main-slider .owl-nav [class*=owl-],
.owl-theme.pd-thumb-slider .owl-nav [class*=owl-],
.owl-theme.also-like-portion .owl-nav [class*=owl-] {
    position: absolute;
    background: #f6f6f4;
    border: 1px solid #ffffff;
    color: #383838;
    font-size: 1.25rem;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 100%;
    margin: 0 5px;
}

.owl-theme.pd-thumb-slider .owl-nav [class*=owl-] {
    width: 26px;
    height: 26px;
    font-size: 1rem;
    line-height: 26px;
}


.owl-theme.pd-main-slider .owl-nav .owl-prev,
.owl-theme.also-like-portion .owl-nav .owl-prev {
    left: 0;
}

.owl-theme.pd-main-slider .owl-nav .owl-next,
.owl-theme.also-like-portion .owl-nav .owl-next {
    right: 0;
}

.owl-theme.pd-thumb-slider .owl-nav .owl-prev {
    left: -18px;
}

.owl-theme.pd-thumb-slider .owl-nav .owl-next {
    right: -18px;
}

.pd-main-slider {
    margin-bottom: 24px;
}

.pd-main-slider .item img,
.pd-thumb-slider .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
}

.pd-main-slider .item {
    height: 500px;
}

.pd-thumb-slider .item {
    height: 120px;
    border-radius: 6px;
    border: 1px solid #f2f2f2;
}


.orp-sec {
    background: #F3F3F3;
    padding: 24px 0;
}

.orp-text h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: normal;
}

.orp-text p {
    font-size: .9rem;
}

.pd-header h1 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 24px;
}

.pd-header h4 {
    font-size: 1.5rem;
    font-weight: normal;
}

.pd-action {
    margin: 36px 0;
}

.pd-details p {
    font-size: .9rem;
}

.pd-details p a {
    font-weight: bold;
    color: #212529;
}

/*  */
.pd-more-details {
    background: var(--light);
}

.orp-item-media {
    width: 100%;
    height: 200px;
    background: var(--white);
}

.media.orp-item-media img,
.cart-pd-media.media img {
    object-fit: contain;
}

.cartbadge {
    position: absolute;
    top: -4px;
    right: -4px;
    z-index: 1;
    width: 18px;
    height: 18px;
}

.cartbadgecount {
    border-radius: 100%;
    line-height: 18px;
    font-size: small;
    background: #f00;
    color: #fff;
    text-align: center;
    font-weight: bold;
    display: block;
}

.cart-header,
.fevourite-header {
    display: flex;
    justify-content: center;
}

.cart-header h1,
.fevourite-header h1 {
    display: flex;
    font-size: 1.5rem;
}

.cart-pd-media {
    width: 100px;
    height: 120px;
    border: 1px solid var(--border-color);
}

.cart-pd-desc h4 {
    font-size: .9rem;
    margin: 0;
    padding: 2px 10px;
    background: var(--body-color);
    color: var(--white);
    border-radius: 50px;
    display: inline-block;
}

.cart-pd-desc h2,
.cart-pd-price h2,
.cart-pd-qty h2,
.cart-pd-pt h2 {
    font-size: 1.1rem;
    margin: 0 0 5px;
    color: var(--body-color);
}

.cart-pd-label {
    font-size: 13px;
}

.cart-pd-price h3,
.cart-pd-pt h5 {
    font-size: 0.9rem;
    color: var(--body-color);
}

.qty-btn {
    font-size: 1rem;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 100%;
    background: var(--body-color);
    color: var(--white);
    cursor: pointer;
}

.del-btn {
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    margin-left: 12px;
}

.cart-qty h4 {
    margin: 0;
    width: 40px;
    font-size: 1.2rem;
    text-align: center;
}

.noClick {
    pointer-events: none;
}

.empty-cart {
    padding: 24px;
    background: var(--light);
    border-radius: 12px;
}

.empty-cart .si {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
}

.empty-cart p {
    margin: 0;
}

/* -- Profile Details -- */
.profile-title {
    display: flex;
    padding: 12px;
    margin-bottom: 16px;
    background-color: #fff;
    border: 1px solid #fafafa;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
}

.profile-title img {
    vertical-align: middle;
    width: 50px;
    height: 50px;
}

.profile-title-text {
    padding: 5px 0 0 16px;
    width: calc(100% - 50px);
}

.profile-title-text p {
    font-size: 13px;
    margin: 0;
}

.profile-title-text h4 {
    padding-top: 3px;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.profile-menu {
    padding: 4px 12px;
    border: 1px solid #fafafa;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
}

.main-menu .si {
    background: #3228bd;
}

.main-menu span {
    margin-left: 12px;
    font-size: 16px;
    font-weight: 500;
}

.profile-menu-item a {
    text-decoration: none;
    color: inherit;
}

.profile-menu-item button {
    border: none;
    padding: 0;
    background: transparent;
}

.profile-menu .profile-menu-item {
    padding: 8px 12px;
    border-bottom: 1px solid var(--border-color);
}

.profile-menu .profile-menu-item:last-child {
    border-bottom: none;
}

.profile-content-box {
    padding: 24px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
}

.profile-sub-menu {
    padding: 8px 24px;
    margin: 8px 0 8px 10px;
}

.profile-menu .profile-menu-item a .profile-sub-menu {
    font-size: 16px;
}

.pi-title {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.pi-title h4 {
    font-size: 18px;
    margin: 0;
}

.pi-title .si,
.add-address .si {
    cursor: pointer;
    background: #3228bd;
}

.order-box {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
    overflow: hidden;
}

.order-box-header {
    padding: 6px 12px;
    background: #f2f2f2;
}

.order-box-header-text p {
    margin-bottom: 0;
    font-size: 14px;
}

.order-box-body {
    padding: 12px;
}

.order-box-body p {
    font-size: 14px;
    line-height: 18px;
}

.order-box img {
    width: 100%;
}

.order-status {
    font-size: 13px;
}

.address-box {
    padding: 24px;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
}

.address-box .add-address a {
    font-size: 14px;
    display: flex;
    color: #3228bd;
    font-weight: 600;
    text-decoration: none;
    align-items: center;
}

.add-address-form h4 {
    font-size: 15px;
    margin-bottom: 12px;
}

.save-address p {
    margin: 0px;
}

.profile-menu-item a.active {
    color: #3228bd;
}

.chackout-box .form-label {
    margin-bottom: 0;
    font-size: 1rem;
}

.change-address a {
    font-size: 14px;
    color: #333;
    display: flex;
    justify-content: end;
    align-items: center;
}

/* Custome Radio BTN */
.choose-address-radio .radio-label {
    border: 1px solid #dddddd;
    padding: 12px;
    border-radius: 6px;
}

.choose-address-radio .radio-label p {
    margin: 0;
    font-size: .9rem;
}

.choose-address-radio [type="radio"]:checked,
.choose-address-radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.choose-address-radio [type="radio"]:checked+label,
.choose-address-radio [type="radio"]:not(:checked)+label {
    position: relative;
    cursor: pointer;
    width: 100%;
    color: #666;
}

.choose-address-radio [type="radio"]:checked+label {
    border: 1px solid #ffc18d;
}

.choose-address-radio [type="radio"]:checked+label:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 35px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 6px;
    background: #ffc18d;
}

.choose-address-radio [type="radio"]:checked+label:after {
    content: '';
    position: absolute;
    top: 4px;
    right: 10px;
    width: 8px;
    height: 16px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.choose-address-radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
}

.choose-address-radio [type="radio"]:checked+label:after {
    opacity: 1;
}

.iti {
    width: 100%;
}

.product-list-sale-price {
    color: #d19f9f;
    margin-left: 6px;
}

.product-details-sale-price {
    color: #d19f9f;
    font-size: 18px;
    margin-left: 12px;
}

.open-sub-cat span {
    margin-bottom: 5px;
    cursor: pointer;
}

.has-sub-cat {
    border-top: 1px solid #dee2e6;
    margin: 0 0 6px 0;
    padding: 6px 0 1px 20px;
    background: #f7f7f7;
}

.has-sub-cat li {
    list-style: none;
}


/*Side Nav*/
.side-menu {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}

.sidenav {
    transition: .5s ease-in-out;
    position: fixed;
    background: url('../img/menu.webp') 0 0/cover no-repeat #c5ccc7;
    width: 350px;
    height: 100vh;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    transform: translateX(-100%)
}

.sidenav.show-side-nav {
    transform: translateX(0)
}

.sidenav ul {
    margin: 0;
    padding: 24px 0
}

.sidenav ul li {
    margin: 10px 12px;
    list-style: none
}

.sidenav ul li a {
    color: #000;
    font-size: .9rem;
    text-decoration: none
}

.sidenav a.closebtn {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    margin: 6px 12px 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: end
}

.global_loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: var(--position-xy-center);
    z-index: 99999;
}

.global_loader img {
    height: 80px
}

.add-pte-media {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

li.top_search {
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding-left: 12px;
}

li.top_search input {
    border: 0;
}

li.top_search input:focus {
    outline: none;
    box-shadow: none;
}