@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --bs-primary: #181820;
    --bs-light: #6b6b6b;
    --bs-white: #ffffff;
    --bs-background: #f3f5f7;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #eeeeee;
    height: 6px;
}

::-webkit-scrollbar {
    width: 8px;
    width: 5px;
    background-color: #eeeeee;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--bs-primary);
    border: 4px solid var(--bs-primary);
    height: 6px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--bs-primary);
}

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

img {
    max-width: 100%;
}

#back-to-top {
    display: none !important;
    height: 48px;
    width: 48px;
    display: block;
    line-height: 48px;
    font-size: 26px;
    background-color: var(--bs-primary);
    border-radius: 4px;
    text-align: center;
    color: #fff;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
}

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

.slick-slide {
    float: left;
}

.slick-list {
    overflow-x: hidden;
}

.owl-nav.disabled,
.owl-dots.disabled {
    display: none;
}

.owl-loaded {
    overflow: hidden;
}

.owl-item {
    float: left;
}

.owl-nav button,
.slide-arrow {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    backdrop-filter: blur(4.5px);
    border-radius: 100%;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    height: 70px;
    width: 70px;
    color: var(--bs-white);
    padding: 0;
    font-size: 30px;
    text-align: center;
    line-height: 36px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.btn.btn-primary {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    color: var(--bs-white);
    padding: 12px 15px;
    line-height: normal;
    outline: 0 !important;
    box-shadow: none !important;
    text-transform: capitalize;
}

.btn.btn-primary[disabled] {
    opacity: .2;
    cursor: no-drop;
}

.btn.btn-secondary {
    background: var(--bs-white);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 15px;
    line-height: normal;
    outline: 0 !important;
    box-shadow: none !important;
    color: var(--bs-primary);
}

.btn.btn-primary svg,
.btn.btn-secondary svg {
    vertical-align: text-bottom;
    width: 30px;
    height: auto;
    display: inline-block;
}

.page-paddings {
    padding: 100px 0px;
}

.page-background {
    background-color: var(--bs-background);
    padding: 100px 0px;
}

.page-title h2 {
    font-weight: 600;
    font-size: 50px;
    margin: 0px auto 12px;
    /* max-width: 1000px; */
    text-transform: capitalize;
}

.page-title.small-title h2 {
    max-width: 100%;
    font-size: 30px;
    font-weight: 600;
    margin: 0px;
}

.page-title.small-text {
    max-width: 850px;
    margin: 0px auto;
}

.page-title.small-text h2 {
    font-size: 44px;
}

.page-title.small-text p {
    font-size: 18px;
    color: rgb(0 0 0 / 50%);
}

.page-title h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 12px;
}

.page-title p {
    font-weight: 400;
    font-size: 20px;
    max-width: 915px;
    margin: 0px auto;
}

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

.form-group label {
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    display: block;
    margin-bottom: 8px;
}

.form-group svg {
    position: absolute;
    top: 46px;
    left: 15px;
}

.form-group .form-control {
    font-weight: 400;
    font-size: 14px;
    color: #6B6B6B;
    padding: 18px 15px;
    background: #FAFAFA;
    border: 1px solid rgba(107, 107, 107, 0.1);
    border-radius: 10px;
    outline: 0;
    box-shadow: none;
}

.form-control i {
    color: rgb(0 0 0 / 50%);
    font-size: 18px;
}

.form-control input {
    border: none;
    outline: none;
    font-weight: 600;
}

.form-control textarea {
    border: none;
    outline: none;
    font-weight: 600;
}

.float-label {
    font-size: 16px;
    font-weight: 400 !important;
    color: rgb(0 0 0 / 50%) !important;
    position: absolute;
    left: 44px;
    top: 16px;
    pointer-events: none;
    transition: ease-in .2s;
}

.form-control:focus-within .float-label {
    top: 4px;
    font-size: 11px;
    color: #000 !important;
}

input:not(:placeholder-shown)+.float-label {
    top: 4px;
    font-size: 11px;
}

textarea:not(:placeholder-shown)+.float-label {
    top: 4px;
    font-size: 11px;
}

::placeholder {
    font-weight: 400 !important;
    color: rgb(0 0 0 / 50%) !important;
}

.c-tooltip {
    background: #fff 0 0 no-repeat padding-box;
    border-radius: 10px;
    box-shadow: 0 7px 23px #00000029;
    color: #000;
    font-size: 12px;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 1;
    padding: 15px;
    position: absolute;
    bottom: 30px;
    transition: all .2s ease-in-out;
    visibility: hidden;
    width: 100%;
    max-width: 312px;
}

.t-top:hover~.c-tooltip {
    visibility: visible;
}

.c-tooltip::after {
    border-bottom: 22px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    bottom: 0;
    content: "";
    height: 0;
    left: 20px;
    position: absolute;
    text-align: center;
    bottom: -10px;
    transform: rotate(180deg);
    width: 0;
}

.c-tooltip>ul>li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px;
}

.c-tooltip>ul>li>img {
    position: absolute;
    top: 4px;
    left: 0px;
}

.contact-info {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 30px 2px #cccccc85;
    padding: 30px;
    width: 100%;
    max-width: 500px;
}


/* Header css */
.head-top {
    padding: 15px 0px;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(21, 17, 148, 0.06);
    transition: all 0.5s;
    position: relative;
}

.head-top.fixed-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    animation: goDown 0.5s ease-in-out forwards;
    z-index: 999;
}

@keyframes goDown {
    0% {
        top: -60px;
    }

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

.h-top {
    background-color: #3e7ee9;
    padding: 8px 0px;
}

.h-left marquee {
    font-size: 15px;
    margin: 0px;
    color: rgb(255 255 255 / 95%);
}

.h-right ul {
    gap: 5px 0;
}

.h-right ul>li {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid rgb(255 255 255 / 75%);
    line-height: 12px;
}

.h-right ul>li:last-child {
    padding-right: 0px;
    margin-right: 0px;
    border-right: 0px;
}

.h-right ul>li>a {
    font-size: 15px;
    text-decoration: none;
    color: rgb(255 255 255 / 95%);
}

.login-dropdown .selectDropdown>ul>li {
    margin: 0px;
    padding: 0px;
    border-right: 0px;
    border-bottom: 1px solid rgb(235 235 235 / 75%);
}

.login-dropdown .selectDropdown>ul>li:last-child {
    border-bottom: 0px;
}

.login-dropdown .select .selectDropdown {
    margin-top: 12px;
    width: 201px;
    left: auto;
    right: -10px;
}

.login-dropdown .selectDropdown>ul>li a {
    padding: 12px 12px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 14px;
    color: rgb(0 0 0 / 70%);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: normal;
}

.login-dropdown .selectDropdown>ul>li a>svg,
.login-dropdown .selectDropdown>ul>li a>i {
    margin-right: 2px;
}

.logo img {
    max-width: 140px;
}

.hs-box .form-group .form-control {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    border-radius: 6px;
    padding: 10.5px 40px 10.5px 11px;
    line-height: normal;
    color: #000;
    font-weight: 400;
}

.hs-box .form-group {
    margin-bottom: 0px;
}

.hs-box .form-group .btn-search {
    border: 0px;
    padding: 0px;
    background: transparent;
    color: rgb(0 0 0 / 80%);
    font-size: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    height: auto;
    width: auto;
}

.hs-box .form-group .btn-close {
    border: 0px;
    padding: 0px;
    background: transparent;
    color: #000;
    opacity: 1;
    font-size: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    height: auto;
    width: auto;
    outline: 0;
    box-shadow: none;
    z-index: 99;
}

.h-right .login>a {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    margin: 9px 10px 9px 0px;
    display: block;
    transition: all 0.5s;
}

.h-right .login>a:hover {
    color: #3e7ee9;
}

.h-right>div {
    float: left;
    margin-right: 8px;
}

.h-right>div:last-child {
    margin-right: 0px;
}

.h-cart .btn.btn-primary {
    background-color: #fff;
    border-color: #e5e5e5;
    font-size: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    padding: 0px 8px;
    color: #181820;
    height: 44px;
}

.h-cart .btn.btn-primary path {
    /* fill: #3e7ee9; */
}

.h-cart .budge {
    background-color: #356ad1;
    color: #ffffff;
    position: absolute;
    top: 6px;
    right: 5px;
    padding: 0px;
    height: 15px;
    width: 15px;
    font-size: 10px;
    font-weight: 800;
    line-height: 15px;
    border-radius: 100%;
}

/* Dropdown css */
.dropdown.dropdown--cart {
    width: 400px;
    padding: 0;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 0 12px 0 rgba(21, 17, 148, 0.06);
    background-color: #fff;
    position: absolute;
    top: 100%;
    margin-top: 17px;
    right: 0px;
    z-index: 99;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}

.h-cart.active .dropdown.dropdown--cart {
    opacity: 1;
    visibility: visible;
}

.dropdown.dropdown--cart:before {
    right: 20px
}

.dropdown.dropdown--cart .cart_list {
    max-height: 351px;
    overflow-y: auto;
}

.dropdown.dropdown--cart .cart_area .cart_product {
    padding: 20px 25px;
    border-bottom: 1px solid #ebedf2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.dropdown.dropdown--cart .cart_area .cart_product .product__info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.dropdown.dropdown--cart .cart_area .cart_product .product__info .thumbn {
    width: 70px;
    aspect-ratio: 1/1;
    margin-right: 15px;
}

.dropdown.dropdown--cart .cart_area .cart_product .product__info .thumbn img {
    width: 100%;
    height: 100%;
}

.dropdown.dropdown--cart .cart_area .cart_product .product__info .info .title {
    font-weight: 500;
    color: rgb(0 0 0 / 75%);
    margin-bottom: 4px;
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
}

.dropdown.dropdown--cart .cart_area .cart_product .product__info .info .cat a {
    font-size: 14px;
    text-decoration: none;
    color: #3e7ee9;
}

.dropdown.dropdown--cart .cart_area .cart_product .product__info .info .cat a img {
    display: inline-block;
    padding-right: 5px
}

.dropdown.dropdown--cart .cart_area .cart_product .product__action {
    text-align: center
}

.dropdown.dropdown--cart .cart_area .cart_product .product__action a:hover span {
    color: #fff
}

.dropdown.dropdown--cart .cart_area .cart_product .remove-cart {
    text-align: center;
    font-size: 16px;
    display: inline-block;
    -webkit-border-radius: 50%;
    border-radius: 5px;
    color: rgb(24 24 32 / 50%);
    position: absolute;
    top: 20px;
    right: 15px;
    cursor: pointer;
}

.dropdown.dropdown--cart .cart_area .cart_product .product__action p {
    margin-bottom: 0;
    margin-top: 0px;
    font-weight: 600;
    text-align: left;
}

.dropdown.dropdown--cart .cart_area .total {
    text-align: right;
    padding: 12px 15px;
    background-color: rgb(229 229 229 / 35%);
}

.dropdown.dropdown--cart .cart_area .total p {
    font-weight: 600;
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
}

.emty-cart {
    text-align: center;
    padding: 30px 15px;
}

.emty-cart svg {
    max-width: 60px;
    display: block;
    margin: 0px auto 22px;
}

.emty-cart h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.emty-cart p {
    font-size: 15px;
    margin: 0px;
    color: rgb(0 0 0 / 50%);
}

/* Dropdown css */
.header-left .logo {
    margin-right: 45px;
}

.h-nav .navbar-nav .nav-item {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    padding-right: 45px;
    font-family: 'Lato', sans-serif !important;
}

.h-nav .navbar-nav .nav-item:last-child {
    padding-right: 0px;
}

.h-nav .navbar-nav .nav-link {
    padding: 0px;
    letter-spacing: 0.5px;
    color: #000000;
    font-weight: 600;
}

.h-nav .navbar-nav .nav-link:hover {
    color: #3e7ee9;
}

/* Header css */

/* Bradcrumb css */
.breadcrumb-area {
    padding: 40px 0px;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-area .breadcrumb-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.breadcrumb-area .breadcrumb ul {
    display: block;
    width: 100%
}

.breadcrumb-area .breadcrumb ul li a {
    line-height: initial;
    color: #3e7ee9;
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb-area .page-title {
    color: #000000;
    font-weight: 600;
    margin: 0px;
    line-height: normal;
}

.breadcrumb-area.breadcrumb--center {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 27px
}

.breadcrumb-area.breadcrumb--center .page_title {
    padding-top: 30px;
    padding-bottom: 47px
}

.breadcrumb-area.breadcrumb--center .page_title h1 {
    color: #fff;
    line-height: 52px
}

.breadcrumb-area.breadcrumb--center .page_title p {
    color: #f3f3f8;
    font-size: 36px;
    line-height: 52px;
    font-weight: 500
}

.breadcrumb-area.breadcrumb--center .page_title p.subtitle {
    font-size: 20px
}

.breadcrumb-area.breadcrumb--center .breadcrumb {
    padding-bottom: 0
}

.breadcrumb {
    padding: 0;
    background: 0 0;
    margin: 0px 0 14px;
}

.breadcrumb ul li {
    display: inline-block;
    color: rgb(0 0 0 / 50%);
}

.breadcrumb ul li:after {
    content: '/';
    color: rgb(0 0 0 / 50%);
    padding: 0 7px;
}

.breadcrumb ul li a {
    font-size: 15px;
    line-height: 70px;
    color: #fff
}

.breadcrumb ul li:last-child:after {
    display: none
}

.breadcrumb ul li.active a {
    color: #bfcad7
}

/* Bradcrumb css */

.exclusive-section,
.product-section {
    padding: 40px 0px;
}

.all-items {
    border: 1px solid #e5e5e5;
    padding: 14px 14px;
    border-radius: 5px;
}

.all-items h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
    text-transform: capitalize;
    position: relative;
    padding-left: 28px;
}

.all-items h2>i {
    color: #3e7ee9;
    font-size: 15px;
    vertical-align: inherit;
    position: absolute;
    top: 4px;
    left: 0px;
}

.filter-menu a {
    font-size: 15px;
    color: rgb(0 0 0 / 50%);
    text-decoration: none;
    margin-right: 25px;
    font-weight: 500;
    position: relative;
    transition: all 0.5s;
}

.filter-menu a:last-child {
    margin-right: 0px;
}

.filter-menu a.active,
.filter-menu a:hover {
    color: #3e7ee9;
}

.filter-menu a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -16px;
    border-bottom: 1px solid #3e7ee9;
    opacity: 0;
    transition: all 0.5s ease;
}

.filter-menu a.active:before {
    opacity: 1;
}

.items-right .form-group {
    margin-right: 15px;
    margin-bottom: 0px;
}

.items-right .form-group:last-child {
    margin-right: 0px;
}

.items-right .form-group>label {
    margin: 0px;
    font-size: 15px;
    margin-right: 6px;
}

.product-wrap {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    margin-top: 30px;
}

.product-wrap .product-info {
    padding: 15px 15px;
}

.product-info .shop_author {
    margin-bottom: 6px;
    font-size: 15px;
    color: rgb(0 0 0 / 50%);
}

.product-wrap .wdp-ribbon {
    display: inline-block;
    padding: 3px 12px;
    position: absolute;
    top: 8px;
    right: 8px;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    text-shadow: none;
    background-color: #f35900;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
}

.related-slider .owl-nav,
.related-slider .owl-dots {
    display: none;
}

.related-slider .product-wrap {
    margin-bottom: 2px;
}

.wdp-ribbon-six {
    background: none !important;
    position: relative;
    box-sizing: border-box;
    position: absolute;
    width: 65px;
    height: 65px;
    top: 0px;
    right: 0px;
    padding: 0px;
    overflow: hidden;
}

.wdp-ribbon-inner-wrap {
    -ms-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    -webkit-transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.wdp-ribbon-border {
    width: 0;
    height: 0;
    border-right: 65px solid #f35900;
    border-bottom: 65px solid transparent;
    z-index: 12;
    position: relative;
    top: -20px;
}

.wdp-ribbon-text {
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 13px;
    letter-spacing: 1px;
    position: absolute;
    z-index: 14;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 15px;
    left: -1px;
    width: 91px;
    text-align: center;
    color: #fff;
}

.product-info h3 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-info h3>a {
    color: #000;
    text-decoration: none;
    transition: all 0.5s;
}

.product-info h3>a:hover {
    color: #3e7ee9;
}

.product-wrap .product-action {
    border-top: 1px solid #e5e5e5;
    margin-top: 15px;
    padding-top: 15px;
}

.product-action>h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0px;
}

.product-action>h4>span {
    font-size: 14px;
    color: rgb(0 0 0 / 50%);
    margin-top: 4px;
    text-decoration: line-through;
}

.product-action>h4>span>i {
    font-size: 8px;
}

.product-action ul>li {
    margin-right: 8px;
}

.product-action ul>li:last-child {
    margin-right: 0px;
}

.product-action ul li .btn.btn-primary {
    font-size: 15px;
    padding: 8px 10px;
    border-color: #3e7ee9;
    background-color: #3e7ee9;
    border-radius: 5px;
}

.product-action ul li .btn.btn-primary.preview {
    border-color: #e5e5e5;
    background-color: transparent;
    color: var(--bs-primary);
    padding: 8px 15px;
}

.product-sales svg {
    margin-right: 8px;
}

.tt_product .product-sales {
    font-size: 15px;
    color: rgb(0 0 0 / 50%);
}

.tt_product .product-sales .sale-counter {
    font-weight: 500;
    margin-right: 4px;
}

.related-products {
    border-top: 1px solid #e5e5e5;
    padding: 40px 0px;
}


.pro-slider .owl-dots {
    display: none;
}

.pro-slider .owl-nav {
    display: block;
}

.pro-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 45px;
    width: 45px;
    background-color: #fff !important;
    border: 2px solid #3e7ee9;
    color: #3e7ee9;
    line-height: 42px;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border-radius: 5px;
}

.pro-slider:hover .owl-nav button {
    opacity: 1;
    visibility: visible;
}

.pro-slider .owl-nav button.disabled {
    cursor: no-drop;
    border-color: rgb(0 0 0 / 30%);
    color: rgb(0 0 0 / 30%);
}

.pro-slider .owl-nav button.owl-prev {
    left: 15px;
}

.pro-slider .owl-nav button.owl-next {
    right: 15px;
}

.product-section .pro-card.pro-top {
    border: 0px;
    padding: 0px;
    box-shadow: none;
}

.pro-category ul li svg,
.pro-category ul li>i {
    margin-right: 5px;
}

.pro-category ul li .review {
    vertical-align: baseline;
}

.product-section .pro-card {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 0 12px 0 rgba(21, 17, 148, 0.06);
    padding: 20px;
    margin-bottom: 30px;
}

.product_detail_text .product-description-section {
    display: none;
}

.feature-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #212529;
    font-weight: 600;
}

.feature-item ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.feature-item ul>li {
    line-height: 1.8;
    font-size: 15px;
    list-style: disc;
    color: #495057;
    margin-bottom: 8px;
}

.feature-item ul>li:last-child {
    margin-bottom: 0px;
}

.pro-card h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.pro-category ul li {
    font-size: 16px;
    color: rgb(0 0 0 / 80%);
    position: relative;
    padding-right: 20px;
    margin-right: 20px;
}

.pro-category ul li:last-child {
    margin-right: 0px;
    padding-right: 0px;
}

.pro-category ul li::after {
    content: "";
    background-color: rgb(0 0 0 / 60%);
    position: absolute;
    height: 12px;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}

.pro-category ul li:last-child::after {
    content: none;
}

.product-section .pro-card .pro-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
    margin: -20px -20px 0px;
}

.product-section .pro-card .pro-header h2 {
    font-weight: 600;
    font-size: 24px;
    color: #000000;
    margin: 0px;
}

.pro-card .pro-category {
    margin-bottom: 20px;
}

/*.preview_buttons .btn {
    background-color: #3e7ee9;
    border-color: #3e7ee9;
}*/



.product-section .card-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 0 12px 0 rgba(21, 17, 148, 0.06);
    margin-bottom: 20px;
}

.sidebar-widget:last-child {
    margin-bottom: 0px;
}

.sidebar-widget .pro-header h3 {
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin: 0px;
}

.sidebar-widget .pro-header h3 svg {
    vertical-align: bottom;
}

.sidebar-widget .pro-header h2 {
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin: 0px;
}

.sidebar-widget .sidebar-info {
    padding: 20px;
}

.sidebar-widget .sidebar-info .theme-description {
    margin: 15px 0px 0px;
    font-size: 16px;
    font-style: italic;
}

.pr-features li {
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    color: rgb(0 0 0 / 60%);
    padding-left: 24px;
}

.pr-features li:last-child {
    margin-bottom: 0px;
}

.pr-features li>i {
    font-size: 12px;
    color: rgb(0 0 0 / 50%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}

.sidebar-widget .card-footer {
    padding: 20px;
    background-color: transparent;
    border-top: 1px solid #e5e5e5;
    flex-wrap: nowrap;
    margin: 0px -5px;
}

.sidebar-widget .card-footer>form {
    width: 50%;
    margin: 0px 5px;
}

.sidebar-widget .card-footer .btn {
    width: 100%;
    margin-right: 15px;
}

.sidebar-widget .card-footer .btn:last-child {
    margin-right: 0px;
}

.sidebar-widget .card-footer .btn.btn-secondary {
    background-color: #3e7ee9;
    border-color: #3e7ee9;
    color: #ffffff;
}

.sidebar-payment {
    background-color: #3e7ee915;
    padding: 8px 15px;
}

.pro-header .pro-review {
    font-size: 15px;
}

.pro-header .pro-review svg {
    vertical-align: text-bottom;
    width: 20px;
    height: 20px;
}

.sidebar-info .review-item {
    margin-bottom: 12px;
    font-size: 15px;
    color: #000;
}

.sidebar-info .review-item:last-child {
    margin-bottom: 0px;
}

.sidebar-info .review-item>small>span {
    font-weight: 600;
}

.sidebar-info .review-item .progress {
    height: 6px;
    margin-top: 5px;
}

.marketplace-content li {
    font-size: 15px;
    margin-bottom: 15px;
    position: relative;
    color: rgb(0 0 0 / 80%);
}

.marketplace-content li:last-child {
    margin-bottom: 0px;
}

.marketplace-content li span.w-45 {
    width: 45%;
    display: inline-block;
    color: #000;
    font-weight: 500;
    vertical-align: top;
}

.marketplace-content li span.w-55 {
    width: 55%;
    display: inline-block;
}

.marketplace-content li span.w-55>a {
    text-decoration: none;
    color: #6c757d;
}

.sidebar-widget.live-support {
    background-color: #f1f1f7;
}

.sidebar-info .doken-wrap {
    margin-bottom: 12px;
}

.doken-wrap h6 {
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    margin: 0px;
}

.doken-wrap>span {
    font-size: 14px;
    line-height: 15px;
    color: #3e7ee9;
    font-weight: 500;
    font-style: italic;
    margin: 0 0 0 10px;
    position: relative;
    padding: 0 0 0 22px;
}

.doken-wrap>span::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    left: 5px;
    right: auto;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #3e7ee9;
    border-radius: 10px;
    z-index: 3;
}

.doken-wrap>span::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    animation-iteration-count: 1;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid #3e7ee9;
    top: 0;
    left: 0;
    background: rgba(198, 16, 0, 0);
    z-index: 0;
    margin: auto;
    bottom: 0;
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 1;
        box-shadow: inset 0 0 25px 3px rgba(255, 255, 255, .75), 0 0 25px 10px rgba(255, 255, 255, .75);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;
    }
}

.doken-description {
    font-style: italic;
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.pro-left h1 {
    font-weight: 600;
    font-size: 44px;
    color: #000000;
    margin-bottom: 25px;
    line-height: normal;
}

.pro-info>div {
    margin-bottom: 30px;
}

.pro-info>div:last-child {
    margin-bottom: 0px;
}

.pro-info .title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
}

.pro-info p {
    font-size: 16px;
    position: relative;
    color: rgb(0 0 0 / 75%);
    line-height: 1.6;
    margin: 0px;
}

.pro-info .i-list {
    margin-top: 15px;
}

.i-list li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
    color: rgb(0 0 0 / 75%);
    position: relative;
    padding-left: 30px;
}

.i-list li:last-child {
    margin-bottom: 0px;
}

.i-list li::before {
    content: "";
    background-image: url(../images/check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    height: 20px;
    width: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}

.product-includes .i-list li::before {
    background-image: url(../images/round.svg);
}

.product-credits .i-list li::before {
    background-image: url(../images/img.svg);
}

.product-fonts .i-list li::before {
    background-image: url(../images/link.svg);
}

.i-list li>a {
    color: #3e7ee9;
    word-break: break-word;
}


.product-tabs .nav-tabs {
    border: 0px;
    margin-bottom: 1px;
}

.tab-main .comment-main {
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e5e5e5;
    padding: 20px 20px;
}

.product-tabs .nav-tabs .nav-link {
    font-size: 18px;
    padding: 12px 30px;
    color: #000000;
    border: 0px;
    border-radius: 0px;
    font-weight: 600;
    background-color: #e9ecef;
    margin-right: 10px;
}

.product-tabs .nav-tabs .nav-link:last-child {
    margin-right: 0px;
}

.product-tabs .nav-tabs .nav-link.active {
    background-color: rgb(62 126 233 / 15%);
    color: #3e7ee9;
    outline: 0;
    position: relative;
}

.product-tabs .nav-tabs .nav-link.active::before {
    content: "";
    height: 2px;
    width: 100%;
    background-color: #e2ecfc;
    position: absolute;
    bottom: -1px;
    left: 0px;
}

.comment-item {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px 20px;
    margin-bottom: 20px;
}

.comment-item.admin-reply {
    border: 0px;
    background-color: rgb(238 238 238 / 50%);
    margin-bottom: 0px;
}

.comment-item.admin-reply .comments-header {
    border: 0px;
    padding: 0px;
    margin-bottom: 8px;
}

.comments-header {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.comments-header .verify-user {
    font-size: 12px;
    color: #6c757d;
}

.user-text .meta .review-author {
    font-size: 18px;
    margin-right: 5px;
}

.user-text .meta .review-date {
    font-size: 15px;
    color: #6c757d;
}

.comments-text p {
    margin: 0px;
    font-size: 15px;
    line-height: 1.8;
    color: #6c757d;
}

.must-log-in {
    background-color: #f1f1f7;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 0 12px 0 rgba(21, 17, 148, 0.06);
    margin-top: 20px;
    padding: 20px;
}

.must-log-in p {
    margin: 0px;
}

.must-log-in p>a {
    font-weight: 600;
    text-decoration: none;
}

.no-data h2 {
    margin: 0px;
    font-size: 26px;
    color: rgb(0 0 0 / 60%);
    font-weight: 500;
    padding: 50px 0px;
}

.no-record {
    max-width: 720px;
    margin: 0px auto;
    text-align: center;
}

.no-record h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.5;
}

.no-record h2>span {
    font-weight: 600;
    color: #3e7ee9;
}


.comment-form {
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e5e5e5;
    padding: 20px 20px;
    margin-top: 20px;
}

.comment-form .comment-title {
    margin: -20px -20px 20px;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    background-color: rgb(62 126 233 / 8%);
}

.comment-title h3 {
    font-weight: 700;
    font-size: 22px;
    color: #000000;
    margin: 0px;
}

.comment-info .rating-box {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
}

.rating-box .form-label {
    margin: 0px 10px 0px 0px;
    font-weight: 500;
    width: 100%;
    color: #6c757d;
}

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

.rate:not(:checked)>label {
    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;
}

/* pagination */
.pagination-box .pagination .page-item {
    margin: 5px 5px;
    display: inline-block;
}

.pagination-box .pagination .page-item .page-link {
    background: #FFFFFF;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    height: 40px;
    width: 40px;
    padding: 0px;
    font-weight: 700;
    font-size: 17px;
    text-align: center;
    color: #000000;
    line-height: 38px;
    outline: 0;
    box-shadow: none;
}

.pagination-box .pagination .page-item.active .page-link,
.pagination-box .pagination .page-item:hover .page-link {
    color: #356ad1;
    border-color: #356ad1;
}

.pagination-box .pagination .page-item.disabled {
    opacity: .5;
    cursor: no-drop;
}

/* pagination */

/* Cart css */
.cart-area {
    padding: 50px 0px;
}

.cart-area .page-title p {
    font-size: 18px;
    color: rgb(0 0 0 / 50%);
}

.cart-area .card-cart {
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 0 12px 0 rgba(21, 17, 148, 0.06);
    padding: 20px;
}

.cart-item {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cart-item:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.cart-item a {
    text-decoration: none;
    color: #000;
    width: 75%;
}

.cart-left .cart-media {
    width: 100px;
    margin-right: 15px;
}

.cart-media img {
    width: 100px;
    border-radius: 5px;
    object-fit: cover;
}

.cart-right h3 {
    font-size: 18px;
    margin-bottom: 6px;
    line-height: 1.4;
}

.cart-right .shop_author {
    font-size: 15px;
    color: rgb(0 0 0 / 50%);
}

.cart-price h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.cart-price>span {
    font-size: 12px;
}

.cart-price>span>a {
    color: rgb(0 0 0 / 50%);
}

.cart-item .cart-price {
    border-left: 1px solid #e5e5e5;
    padding-left: 30px;
    text-align: end;
}

.cart_totals th, .cart_totals td {
    font-size: 16px;
    padding: 15px 0px;
    border-color: #e5e5e5;
}

.card-cart .text-center strong {
    font-size: 20px;
}

.card-cart .fs--1 {
    font-size: 15px;
    color: rgb(0 0 0 / 50%);
    max-width: 420px;
    margin: 0px auto;
}

.svg-inline--fa {
    color: #3e7ee9;
}

.card-cart .no-cart {
    padding: 40px 20px;
}

.no-cart h2 {
    font-size: 28px;
    max-width: 340px;
    line-height: 1.3;
    margin: 0px auto;
    color: rgb(24 24 32 / 50%);
}


.select-currency label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.card-cart .select-currency {
    margin-bottom: 10px;
}

.drop-down .selected a {
    font-weight: 600;
    font-size: 16px;
    color: var(--bs-primary);
    padding: 12px 15px;
    background: #FAFAFA;
    border: 1px solid rgba(107, 107, 107, 0.1);
    border-radius: 10px;
    outline: 0;
    box-shadow: none;
    width: 100%;
    display: block;
    text-decoration: none;
    position: relative;
}

.drop-down .selected a span img {
    max-width: 30px;
    vertical-align: middle;
    margin-right: 5px;
}

.drop-down .selected a::before {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}

.drop-down .option {
    position: relative;
}

.drop-down .options ul {
    display: none;
    list-style: none;
    padding: 15px;
    position: absolute;
    left: 0px;
    top: 100%;
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(107, 107, 107, 0.1);
    border-radius: 10px;
    margin-top: 5px;
}

.drop-down .selected span.value, .drop-down .options span.value {
    display: none;
}

.drop-down .options ul>li>a>img {
    max-width: 30px;
    vertical-align: middle;
    margin-right: 3px;
}

.drop-down .options ul li {
    margin-bottom: 13px;
}

.drop-down .options ul li:last-child {
    margin-bottom: 0px;
}

.drop-down .options ul li a {
    display: block;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    color: #6B6B6B;
}

.drop-down .options ul li a:hover {
    color: #3e7ee9;
    transition: 0.2s ease;
}

/* Cart css */

/* Services css */
.services-area {
    padding: 20px 0px 50px;
}

.services-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    margin-top: 30px;
}

.services-card .sr-info {
    padding: 15px;
}

.sr-info>h3 {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.sr-info>h3>a {
    color: #000;
    text-decoration: none;
    transition: all 0.5s;
}

.sr-info>h3>a:hover {
    color: #3e7ee9;
}

.sr-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: rgb(0 0 0 / 50%);
}

.sr-action .sr-review {
    font-size: 16px;
    color: #000000;
}

.sr-action .sr-review svg {
    position: relative;
    top: -3px;
}

.sr-footer {
    margin: 15px -15px 0px;
    padding: 15px 15px 0px;
    border-top: 1px solid #e5e5e5;
}

.sr-footer span {
    font-size: 14px;
    color: rgb(0 0 0 / 50%);
}

.sr-footer h2 {
    margin: 0px;
    font-weight: 700;
    font-size: 20px;
}

.sr-cart .btn.btn-secondary {
    border-color: #e5e5e5;
}

.sr-cart .btn.btn-secondary>i {
    color: #3e7ee9;
    margin-right: 2px;
}

/* Services css */

/* Support css */
body .support-area {
    padding: 50px 0px;
}

/* Support css */

/* Footer css */
.footer {
    background-color: #1f3044;
    border-top: 1px solid rgba(205, 205, 205, 0.2);
    text-align: left;
    font-size: 16px;
    margin: 0;
    color: rgb(255 255 255 / 80%);
    font-weight: 300;
    line-height: 1.8;
}

.footer-content {
    max-width: 380px;
}

.footer-content p {
    color: rgb(255 255 255 / 80%);
    margin-bottom: 20px;
}

.footer .footer-top {
    padding: 20px 0px 50px;
}

.footer-top .footer-widget {
    margin-top: 30px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer .footer-widget.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    outline: none;
}

.footer .footer-widget .footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 45px;
}

.footer .footer-menu ul li {
    margin-bottom: 10px;
    position: relative;
    display: flex;
    margin-right: 0;
    padding-left: 22px;
}

.footer .footer-menu ul li:last-child {
    margin-bottom: 0;
}

.footer .footer-menu ul li a::before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0px;
    left: -22px;
}

.footer .footer-menu ul li a {
    color: rgb(255 255 255 / 80%);
    text-decoration: none;
    position: relative;
}

.footer .footer-widget.footer-menu ul li a:hover {
    color: #3e7ee9;
}

.s-coins span {
    float: left;
    padding-right: 6px;
}

.s-coins span:last-child {
    padding-right: 0px;
}

.s-coins span img {
    max-width: 35px;
}

.footer-contact-info .footer-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-contact-info p {
    color: rgb(255 255 255 / 80%);
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.footer-contact-info p a {
    color: rgb(255 255 255 / 80%);
    text-decoration: none;
}

.footer-contact-info span {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    color: #3e7ee9;
}

.footer .social-icon ul {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.footer .social-icon ul li {
    margin-right: 10px;
}

.footer .social-icon ul li:last-child {
    margin-right: 0;
}

.footer .social-icon ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 18px;
    transition: all 0.4s ease 0s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: #3e7ee9;
    color: #fff;
    text-decoration: none;
}

.footer .footer-bottom .copyright-text p {
    color: rgb(255 255 255 / 80%);
}

.footer .footer-bottom .copyright-text p>a {
    font-weight: 600;
    color: rgb(255 255 255 / 80%);
    text-decoration: none;
}

.policy-menu {
    margin: 0;
    padding: 0;
    text-align: right;
}

.policy-menu li {
    display: inline-block;
    color: rgb(255 255 255 / 80%);
    margin-right: 15px;
}

.footer-select {
    position: relative;
    width: 108px;
}

.policy-menu li:last-child {
    margin-right: 0;
}

.policy-menu li a {
    color: rgb(255 255 255 / 80%);
    text-decoration: none;
}

.policy-menu li a:hover,
.policy-menu li a:focus {
    color: #3e7ee9;
}

.policy-menu li::after {
    color: rgb(255 255 255 / 80%);
    content: "|";
    font-weight: 300;
    position: relative;
    left: 8px;
}

.policy-menu li:last-child::after {
    content: "";
}

.footer-widget .form-group {
    margin-bottom: 0px;
}

.footer-widget .form-group .form-control {
    background-color: rgb(255 255 255 / 12%);
    border: 0px;
    font-size: 16px;
    border-radius: 4px;
    padding: 16px 50px 16px 15px;
    line-height: normal;
    color: #fff;
    font-weight: 300;
}

.footer-widget .form-group .form-control::placeholder {
    color: rgb(255 255 255 / 60%);
}

.footer-widget .form-group .footer-btn {
    border: 0px;
    padding: 0px;
    background: transparent;
    color: rgb(255 255 255 / 60%);
    font-size: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    outline: 0;
    box-shadow: none;
}

.footer-widget .read-terms {
    margin: 6px 0px 0px;
    font-size: 14px;
}

.footer-widget .read-terms>a {
    font-weight: 600;
    text-decoration: none;
    color: rgb(255 255 255 / 80%);
}

.copyright {
    border-top: 1px solid rgb(229 229 229 / 15%);
    padding: 20px 0px;
}

/* Footer css */

@media screen and (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1430px;
    }

    .footer-main .container {
        max-width: 1250px;
    }
}


/* Login css */
.tw-account {
    padding: 50px 0px;
}

.account-card {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 0 12px 0 rgba(21, 17, 148, 0.06);
    max-width: 650px;
    margin: 0px auto;
}

.account-card .account-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 30px;
}

.account-header h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0px;
}

.account-header h2>i {
    font-size: 18px;
}

.account-header p {
    font-size: 15px;
    margin: 0px;
    color: rgb(0 0 0 / 75%);
}

.account-header p>a {
    text-decoration: none;
    font-weight: 600;
    color: #3e7ee9;
}

.account-card .account-body {
    padding: 30px;
}

.form-group label {
    color: rgb(0 0 0 / 75%);
}

.form-group label>span {
    color: red;
}

.account-body .form-group .form-control {
    color: #000000;
    font-size: 16px;
    padding: 15px 15px;
}

.account-body .form-group .get-otp {
    height: 56px;
    padding: 0px 15px;
    font-size: 15px;
    border: 0px;
    background: transparent;
    color: #000;
    font-weight: 500;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-left: 1px solid rgba(107, 107, 107, 0.1);
}

.account-body .form-group .get-otp[disabled] {
    opacity: .5;
    cursor: no-drop;
}

.account-body .form-group>.account-ico {
    font-size: 20px;
    position: absolute;
    bottom: 18px;
    right: 15px;
    cursor: pointer;
    color: rgb(0 0 0 / 75%);
}

.lost_password>a {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #3e7ee9;
}

.account-body .form-check-input {
    width: 20px;
    height: 20px;
    background-color: #eee;
    border: 0px;
}

.account-body .form-check-input:checked {
    background-color: #3e7ee9;
    border-color: #3e7ee9;
}

.account-body .form-check .form-check-label {
    vertical-align: middle;
    margin-left: 5px;
    color: rgb(0 0 0 / 75%);
    font-size: 15px;
    margin-top: 1px;
    font-weight: 500;
}

.account-body .form-check-input:focus {
    box-shadow: none;
}

.account-body .form-group .nice-select {
    width: 100%;
    float: none;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    padding: 7px 15px;
    background: #FAFAFA;
    border: 1px solid rgba(107, 107, 107, 0.1);
    border-radius: 10px;
    outline: 0;
    box-shadow: none;
    height: auto;
}

.account-body .form-group .nice-select .list {
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
}

/* Login css */


.otp-field {
    flex-direction: row;
    column-gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-field input {
    height: 45px;
    width: 42px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
}

.otp-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.otp-field input::-webkit-inner-spin-button,
.otp-field input::-webkit-outer-spin-button {
    display: none;
}

.otp-verification h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.otp-verification>p {
    margin-bottom: 20px;
    font-size: 15px;
    color: rgb(0 0 0 / 50%);
}

.otp-verification>p>a {
    text-decoration: none;
    font-weight: 600;
    color: #3e7ee9;
}

.modal-dialog .modal-content {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 0 12px 0 rgba(21, 17, 148, 0.06);
    padding: 30px 20px;
    position: relative;
}

.modal-dialog .modal-content .modal-body {
    padding: 0px;
    position: static;
}

.modal-body .close-btn {
    padding: 0px;
    height: 30px;
    width: 30px;
    border-radius: 5px;
    font-size: 18px;
    position: absolute;
    top: 15px;
    right: 15px;
    border: 0px;
    padding: 0px;
    outline: 0 !important;
    background-color: transparent;
    z-index: 1;
}

.modal-backdrop {
    opacity: .9 !important;
}

.cart-text h2 {
    font-size: 26px;
    max-width: 280px;
    margin: 0px auto 16px;
    text-align: center;
}

.modal-btn .btn {
    margin-right: 5px;
}

.modal-btn .btn:last-child {
    margin-right: 0px;
}


/* User css */
.orders-area {
    padding: 50px 0px;
}

.orders-list-item {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 0 12px 0 rgba(21, 17, 148, 0.06);
    margin-bottom: 25px;
}

.orders-list-item .order-header {
    background-color: rgba(225, 231, 233, .4);
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 20px;
}

.order-header li {
    font-size: 15px;
    color: #555f64;
    margin-right: 30px;
}

.order-header li:last-child {
    margin-right: 0px;
}

.order-header li>strong {
    color: rgb(0 0 0 / 50%);
    font-weight: 600;
}

.order-header li>strong.text-green {
    color: #008000;
}

.orders-list-item .order-template {
    padding: 20px;
}

.order-media img {
    max-width: 160px;
}

.order-info .order-text {
    margin-left: 20px;
}

.order-text h3 {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 8px;
}

.od-purchase>span {
    background: rgb(62 126 233 / 10%);
    border-radius: 3px;
    font-size: 14px;
    line-height: 16px;
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 12px;
    font-style: italic;
}

.order-text .shop_author {
    font-size: 15px;
    color: rgb(0 0 0 / 50%);
}

.order-action {
    border-left: 1px solid #e5e5e5;
    padding-left: 30px;
}

.order-btn h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    margin-right: 30px;
}

.order-btn .btn {
    float: left;
}

.order-btn .btn.btn-primary {
    background-color: #3e7ee9;
    border-color: #3e7ee9;
    color: #fff;
}

.order-btn .btn.btn-primary svg {
    margin-right: 6px;
}

.order-btn .btn.btn-primary svg path {
    fill: #fff;
}

.order-btn .btn.btn-secondary {
    padding: 0px;
    height: 48px;
    width: 48px;
    background-color: transparent;
    border-color: #e5e5e5;
    margin-left: 10px;
}

/* User css */



.select {
    position: relative;
}

.select .selectBtn {
    padding: 10px;
    box-sizing: border-box;
    border-radius: 3px;
    width: auto;
    text-align: right;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0px;
    padding-right: 15px;
    font-size: 15px;
    text-decoration: none;
    color: rgb(255 255 255 / 95%);
}

.select .selectBtn.append-currency {
    width: 130px;
}

.select .selectBtn img {
    max-width: 20px;
    margin-right: 5px;
}

.select .selectBtn:after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 4px;
    right: 0px;
    transition: 0.2s ease;
}

.select .selectBtn.toggle {
    border-radius: 3px 3px 0 0;
}

.select .selectBtn.toggle:after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
}

.select .selectDropdown {
    position: absolute;
    top: 100%;
    width: 240px;
    margin-top: 10px;
    overflow: hidden;
    background: var(--bg1);
    border-top: 1px solid #eee;
    z-index: 1;
    background: #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    visibility: hidden;
    transition: 0.2s ease;
    border: 1px solid #e5e5e5;
    box-shadow: 0 0 12px 0 rgba(21, 17, 148, 0.06);
    background-color: #fff;
    z-index: 999 !important;
}

.select .selectDropdown .option {
    padding: 9px 12px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 14px;
    color: rgb(0 0 0 / 70%);
    font-weight: 500;
    text-align: left;
}

.select .selectDropdown .option img {
    max-width: 20px;
    margin-right: 6px;
}

.select .selectDropdown .option:hover,
.select .selectDropdown .option.selected {
    background-color: #3e7ee920;
    color: #3e7ee9;
}

.select .selectDropdown.toggle {
    visibility: visible;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}


/* Error css */
.error-area {
    display: flex;
    align-items: center;
    height: 100vh;
    background-image: url(../images/error-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.error-area .error-content {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
}

.error-area .error-content h3 {
    margin-bottom: 18px;
    font-size: 48px;
    font-weight: 600;
}

.error-area .error-content p {
    max-width: 550px;
    margin: auto;
    margin-bottom: 20px;
    font-size: 16px;
    color: rgb(0 0 0 / 50%);
}

/* Error css */

/* Toast Message */
#toast {
    position: fixed;
    bottom: 15px;
    right: 15px;
    top: inherit !important;
    font-size: 15px;
    background-color: #3e7ee9;
    color: #fff;
    padding: 12px 15px;
    max-width: 280px;
    z-index: 99999;
}

#toast.is-success {
    background-color: #009923;
}

#toast.is-danger {
    background-color: #b50011;
}

#toast.is-warning {
    background-color: #c59305;
}

.h-search form {
    overflow: hidden;
    position: relative;
    border: 1px solid #eeeeee;
    border-radius: 5px;
}

.h-search .form-group .form-control {
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    color: #222222;
    background: transparent;
    border: none;
    border-radius: 5px;
    padding: 12px 34px 12px 12px;
    display: flex;
    cursor: pointer;

}

.h-search .searchBtn {
    font-size: 15px;
    color: rgb(34 34 34 / 75%);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 0px;
    padding: 0px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    background-color: #fff;
    pointer-events: none;

}

.input-search {
    width: 44px;
    transition: all .5s ease-in-out;
}

.input-search:focus {
    width: 260px;
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.input-search:focus~.searchBtn {
    pointer-events: all;
}

.h-right {
    display: flex;
    gap: 8px;
}

.h-right>div {
    float: inherit;
    margin: 0;
}

.h-search .form-group .form-control:-internal-autofill-selected {
    background-color: transparent !important;
}

.privacy-content {
    margin-bottom: 24px;
}

.btn-wrapper, .dark-btn-wrapper {
    position: relative;
    width: fit-content;
    padding: 2px;
    border-radius: 12px;
    overflow: hidden;
}

.btn-wrapper .btn-primary {
    border-color: #fff !important;
}

.dark-btn-wrapper .btn-primary {
    border-color: #fff !important;
}

.btn-wrapper::before {
    content: "";
    background-image: conic-gradient(#ffffff 90deg, #3e7ee9 90deg, #ffffff 90deg, #3e7ee9 90deg);
    animation: rotate 3s infinite;
    animation-timing-function: linear;
    width: 110%;
    aspect-ratio: 1/1;
    position: absolute;
    transform-origin: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.dark-btn-wrapper::before {
    content: "";
    background-image: conic-gradient(#ffffff 90deg, #000000 90deg, #ffffff 90deg, #000000 90deg);
    animation: rotate 3s infinite;
    animation-timing-function: linear;
    width: 110%;
    aspect-ratio: 1/1;
    position: absolute;
    transform-origin: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {

        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.privacy-policy {
    max-width: 1080px;
    margin: 0 auto;
}

.fs-18 {
    font-size: 18px;
}

.login-dropdown .selectDropdown>ul>li .user-details {
    width: 100%;
    display: block;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-details .user-img {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    background-color: #d8d8d855;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.login-dropdown .selectDropdown>ul>li .user-details .user-del>h5 {
    font-size: 14px !important;
    font-weight: 600;
}

.login-dropdown .selectDropdown>ul>li .user-details .user-del>span {
    font-size: 12px !important;
    font-weight: 500;
}

.form-group form {
    margin-block-end: 0 !important;

}