@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    text-transform: inharit;
}
:root {
    --inputBg: #232f47;
    --inputBgLight: #fff;

    --inputText: #979797;
    --inputTextLight: #979797;
    --fontFamily: 'Roboto', sans-serif;
}
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
@media only screen and (max-width: 62em) {
    html {
        font-size: 55%;
    }
}
@media only screen and (max-width: 35.9375em) {
    html {
        font-size: 50%;
    }
}

body {
    font-family: var(--fontFamily);
    font-size: 1.6rem;
    font-weight: 400;
    color: #000133;
    overflow-x: hidden;
    background-color: #fff;
}

@media only screen and (max-width: 62em) {
    .container {
        padding: 0 4rem !important;
    }
}
@media only screen and (max-width: 30em) {
    .container {
        padding: 0 2rem !important;
    }
}

.section {
    margin-bottom: 100px;
}
@media only screen and (max-width: 62em) {
    .section {
        margin-bottom: 50px;
    }
}

.nav__links.header-sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 999;
}
.brand-color-mx {
    color: #121f36;
}
.dark .brand-color-mx {
    color: #00ffe2;
}
/* h1{
    font-size: 100px !important;
}
h2{
    font-size: 90px !important;
}
h3{
    font-size: 80px !important;
}
h4{
    font-size: 70px !important;
} */

/* start date 19-9-23 */

/* .item{
    position: relative !important;
} */
.small-reply-btn {
    padding: 10px 30px !important;
    margin-bottom: 20px;
    /* position: absolute !important;
  bottom: 0 !important;
  right: 0 !important; */
}
.text-area-tow {
    display: flex;
    width: 80%;
    justify-content: flex-end;
    background: #06132d;
    border: 1px solid #00ffe2;
    border-radius: 10px;
    padding: 20px 16px;
    color: #fff;
    margin-bottom: 20px;
}
#textarea {
    display: none;
}
.reply-command {
    display: flex;
    justify-content: space-between;
    width: 85%;
    padding: 20px 15px;
    background: #19212f;
    border-radius: 10px;
    margin-bottom: 30px;
}
.userImg {
    width: 20%;
}
.replyImg {
    width: 100%;
}
.userImgtextwp {
    display: flex;
    gap: 20px;
    align-items: center;
}
.rightSideReply {
    display: flex;
    justify-content: end;
}
.userDetails h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}
.userDetails span {
    font-size: 13px;
    color: #9f9f9f;
}

.notificationBtnForNav {
    padding: 8px 20px !important;
    margin: 10px 0 !important;
    font-size: 12px !important;
}

input#imageInput {
    background: #232f47;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 37px;
    height: 16px;
    margin-top: 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: '';
    height: 10px;
    width: 13px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked + .slider {
    background-color: #109196;
}

input:focus + .slider {
    box-shadow: 0 0 1px #109196;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* end date 19-9-23 */

h1.heading {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.5;
    color: #000133;
    font-family: var(--fontFamily);
}
@media only screen and (max-width: 62em) {
    h1.heading {
        font-size: 4rem !important;
    }
}
@media only screen and (max-width: 35.9375em) {
    h1.heading {
        font-size: 3.2rem !important;
    }
}

h2.heading {
    font-size: 36px;
    color: #000133;
    font-weight: 700;
    font-family: var(--fontFamily);
    line-height: 1.5;
    margin-bottom: 10px;
}
@media only screen and (max-width: 62em) {
    h2.heading {
        font-size: 1.8rem;
        line-height: 3rem;
        margin-bottom: 5px;
    }
}

h3.heading {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.5;
    font-family: var(--fontFamily);
}

h4.heading {
    font-size: 1.8rem;
    color: #000133;
    line-height: 2.5rem;
    font-weight: 600;
}

h5.heading {
    font-size: 1.4rem;
    color: #000133;
    line-height: 1.8rem;
    font-weight: 400;
}

.text {
    font-size: 1.6rem;
    font-weight: 400;
    font-family: var(--fontFamily);
    color: #444444;
}
@media only screen and (max-width: 62em) {
    .text {
        font-size: 1.4rem;
    }
}

a:link,
a:visited {
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    /* color: #fff; */
    font-family: var(--fontFamily);
}
.dark a:link,
.dark a:visited {
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    color: #000133;
    font-family: var(--fontFamily);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a:hover {
    text-decoration: none;
}

.bold {
    font-weight: 700 !important;
}

.bolder {
    font-weight: 800 !important;
}

.semi-bold {
    font-weight: 600 !important;
}

.icon {
    height: 3rem;
    width: 3rem;
    fill: #fff;
}

.white {
    color: #fff !important;
}

.black {
    color: #000133 !important;
}

.primary-color {
    color: #00ffe2 !important;
}

.red {
    color: #00ffe2 !important;
}

.orenge {
    color: #00ffe2 !important;
}

.laptop-land-show {
    display: none !important;
}
@media only screen and (max-width: 75em) {
    .laptop-land-show {
        display: block !important;
    }
}

@media only screen and (max-width: 75em) {
    .laptop-land-hide {
        display: none;
    }
}

.laptop-port-show {
    display: none;
}
@media only screen and (max-width: 64em) {
    .laptop-port-show {
        display: block;
    }
}

@media only screen and (max-width: 64em) {
    .laptop-port-hide {
        display: none;
    }
}

.tablet-land-show {
    display: none !important;
}
@media only screen and (max-width: 62em) {
    .tablet-land-show {
        display: block !important;
    }
}

@media only screen and (max-width: 62em) {
    .tablet-land-hide {
        display: none !important;
    }
}

.tablet-port-show {
    display: none !important;
}
@media only screen and (max-width: 48em) {
    .tablet-port-show {
        display: block !important;
    }
}

@media only screen and (max-width: 48em) {
    .tablet-port-hide {
        display: none !important;
    }
}

@media only screen and (max-width: 35.9375em) {
    .mbl-land-hide {
        display: none !important;
    }
}

.mbl-land-show {
    display: none !important;
}
@media only screen and (max-width: 35.9375em) {
    .mbl-land-show {
        display: block !important;
    }
}

@media only screen and (max-width: 23.75em) {
    .mbl-small-hide {
        display: none !important;
    }
}

.mbl-small-show {
    display: none !important;
}
@media only screen and (max-width: 23.75em) {
    .mbl-small-show {
        display: block !important;
    }
}

.hide {
    opacity: 0;
    visibility: hidden;
}

.m--1 {
    margin: 0.5rem !important;
}

.m-1 {
    margin: 1rem !important;
}

.m-2 {
    margin: 2rem !important;
}

.m-3 {
    margin: 3rem !important;
}

.m-3 {
    margin: 3rem !important;
}

.m-4 {
    margin: 4rem !important;
}

.m-5 {
    margin: 5rem !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

.mt-5 {
    margin-top: 5rem !important;
}

.mt-6 {
    margin-top: 6rem !important;
}

.mt-7 {
    margin-top: 7rem !important;
}

.mt-8 {
    margin-top: 8rem !important;
}

.mt-9 {
    margin-top: 9rem !important;
}

.mt-10 {
    margin-top: 10rem !important;
}

.mb-1 {
    margin-bottom: 1rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mb-4 {
    margin-bottom: 4rem !important;
}

.mb-5 {
    margin-bottom: 5rem !important;
}

.mb-6 {
    margin-bottom: 6rem !important;
}

.mb-7 {
    margin-bottom: 7rem !important;
}

.mb-8 {
    margin-bottom: 8rem !important;
}

.mb-9 {
    margin-bottom: 9rem !important;
}

.mb-10 {
    margin-bottom: 10rem !important;
}

.mr-1 {
    margin-right: 1rem !important;
}

.mr-2 {
    margin-right: 2rem !important;
}

.mr-3 {
    margin-right: 3rem !important;
}

.mr-4 {
    margin-right: 4rem !important;
}

.mr-5 {
    margin-right: 5rem !important;
}

.mr-6 {
    margin-right: 6rem !important;
}

.mr-7 {
    margin-right: 7rem !important;
}

.mr-8 {
    margin-right: 8rem !important;
}

.mr-9 {
    margin-right: 9rem !important;
}

.mr-10 {
    margin-right: 10rem !important;
}

.mr-auto {
    margin-right: auto;
}

.ml-1 {
    margin-left: 1rem !important;
}

.ml-2 {
    margin-left: 2rem !important;
}

.ml-3 {
    margin-left: 3rem !important;
}

.ml-4 {
    margin-left: 4rem !important;
}

.ml-5 {
    margin-left: 5rem !important;
}

.ml-6 {
    margin-left: 6rem !important;
}

.ml-7 {
    margin-left: 7rem !important;
}

.ml-8 {
    margin-left: 8rem !important;
}

.ml-9 {
    margin-left: 9rem !important;
}

.ml-10 {
    margin-left: 10rem !important;
}

.mr-auto {
    margin-right: auto;
}

.ml-auto {
    margin-left: auto;
}

.p-1 {
    padding: 1rem !important;
}

.p-2 {
    padding: 2rem !important;
}

.p-3 {
    padding: 3rem !important;
}

.p-4 {
    padding: 4rem !important;
}

.p-5 {
    padding: 5rem !important;
}

.px-1 {
    padding: 0 1rem !important;
}

.px-2 {
    padding: 0 2rem !important;
}

.px-3 {
    padding: 0 3rem !important;
}

.px-4 {
    padding: 0 4rem !important;
}

.px-5 {
    padding: 0 5rem !important;
}

.py-1 {
    padding: 1rem 0 !important;
}

.py-2 {
    padding: 2rem 0 !important;
}

.py-3 {
    padding: 3rem 0 !important;
}

.py-4 {
    padding: 4rem 0 !important;
}

.py-5 {
    padding: 5rem 0 !important;
}

.pt-1 {
    padding-top: 1rem !important;
}

.pt-2 {
    padding-top: 2rem !important;
}

.pt-3 {
    padding-top: 3rem !important;
}

.pt-4 {
    padding-top: 4rem !important;
}

.pt-5 {
    padding-top: 5rem !important;
}

.pt-6 {
    padding-top: 6rem !important;
}

.pt-7 {
    padding-top: 7rem !important;
}

.pt-8 {
    padding-top: 8rem !important;
}

.pt-9 {
    padding-top: 9rem !important;
}

.pt-10 {
    padding-top: 10rem !important;
}

.pb-1 {
    padding-bottom: 1rem !important;
}

.pb-2 {
    padding-bottom: 2rem !important;
}

.pb-3 {
    padding-bottom: 3rem !important;
}

.pb-4 {
    padding-bottom: 4rem !important;
}

.pb-5 {
    padding-bottom: 5rem !important;
}

.pb-6 {
    padding-bottom: 6rem !important;
}

.pb-7 {
    padding-bottom: 7rem !important;
}

.pb-8 {
    padding-bottom: 8rem !important;
}

.pb-9 {
    padding-bottom: 9rem !important;
}

.pb-10 {
    padding-bottom: 10rem !important;
}

.pr-1 {
    padding-right: 1rem !important;
}

.pr-2 {
    padding-right: 2rem !important;
}

.pr-3 {
    padding-right: 3rem !important;
}

.pr-4 {
    padding-right: 4rem !important;
}

.pr-5 {
    padding-right: 5rem !important;
}

.pr-6 {
    padding-right: 6rem !important;
}

.pr-7 {
    padding-right: 7rem !important;
}

.pr-8 {
    padding-right: 8rem !important;
}

.pr-9 {
    padding-right: 9rem !important;
}

.pr-10 {
    padding-right: 10rem !important;
}

.pl-1 {
    padding-left: 1rem !important;
}

.pl-2 {
    padding-left: 2rem !important;
}

.pl-3 {
    padding-left: 3rem !important;
}

.pl-4 {
    padding-left: 4rem !important;
}

.pl-5 {
    padding-left: 5rem !important;
}

.pl-6 {
    padding-left: 6rem !important;
}

.pl-7 {
    padding-left: 7rem !important;
}

.pl-8 {
    padding-left: 8rem !important;
}

.pl-9 {
    padding-left: 9rem !important;
}

.pl-10 {
    padding-left: 10rem !important;
}

.ch-1 {
    max-width: 1ch;
}

.ch-2 {
    max-width: 2ch;
}

.ch-3 {
    max-width: 3ch;
}

.ch-4 {
    max-width: 4ch;
}

.ch-5 {
    max-width: 5ch;
}

.ch-6 {
    max-width: 6ch;
}

.ch-7 {
    max-width: 7ch;
}

.ch-8 {
    max-width: 8ch;
}

.ch-9 {
    max-width: 9ch;
}

.ch-10 {
    max-width: 10ch;
}

.ch-11 {
    max-width: 11ch;
}

.ch-12 {
    max-width: 12ch;
}

.ch-13 {
    max-width: 13ch;
}

.ch-14 {
    max-width: 14ch;
}

.ch-15 {
    max-width: 15ch;
}

.ch-16 {
    max-width: 16ch;
}

.ch-17 {
    max-width: 17ch;
}

.ch-18 {
    max-width: 18ch;
}

.ch-19 {
    max-width: 19ch;
}

.ch-20 {
    max-width: 20ch;
}

.ch-21 {
    max-width: 21ch;
}

.ch-22 {
    max-width: 22ch;
}

.ch-23 {
    max-width: 23ch;
}

.ch-24 {
    max-width: 24ch;
}

.ch-25 {
    max-width: 25ch;
}

.ch-26 {
    max-width: 26ch;
}

.ch-27 {
    max-width: 27ch;
}

.ch-28 {
    max-width: 28ch;
}

.ch-29 {
    max-width: 29ch;
}

.ch-30 {
    max-width: 30ch;
}

.ch-31 {
    max-width: 31ch;
}

.ch-32 {
    max-width: 32ch;
}

.ch-33 {
    max-width: 33ch;
}

.ch-34 {
    max-width: 34ch;
}

.ch-35 {
    max-width: 35ch;
}

.ch-36 {
    max-width: 36ch;
}

.ch-37 {
    max-width: 37ch;
}

.ch-38 {
    max-width: 38ch;
}

.ch-39 {
    max-width: 39ch;
}

.ch-40 {
    max-width: 40ch;
}

.ch-41 {
    max-width: 41ch;
}

.ch-42 {
    max-width: 42ch;
}

.ch-43 {
    max-width: 43ch;
}

.ch-44 {
    max-width: 44ch;
}

.ch-45 {
    max-width: 45ch;
}

.ch-46 {
    max-width: 46ch;
}

.ch-47 {
    max-width: 47ch;
}

.ch-48 {
    max-width: 48ch;
}

.ch-49 {
    max-width: 49ch;
}

.ch-50 {
    max-width: 50ch;
}

.ch-51 {
    max-width: 51ch;
}

.ch-52 {
    max-width: 52ch;
}

.ch-53 {
    max-width: 53ch;
}

.ch-54 {
    max-width: 54ch;
}

.ch-55 {
    max-width: 55ch;
}

.ch-56 {
    max-width: 56ch;
}

.ch-57 {
    max-width: 57ch;
}

.ch-58 {
    max-width: 58ch;
}

.ch-59 {
    max-width: 59ch;
}

.ch-60 {
    max-width: 60ch;
}

.ch-61 {
    max-width: 61ch;
}

.ch-62 {
    max-width: 62ch;
}

.ch-63 {
    max-width: 63ch;
}

.ch-64 {
    max-width: 64ch;
}

.ch-65 {
    max-width: 65ch;
}

.ch-66 {
    max-width: 66ch;
}

.ch-67 {
    max-width: 67ch;
}

.ch-68 {
    max-width: 68ch;
}

.ch-69 {
    max-width: 69ch;
}

.ch-70 {
    max-width: 70ch;
}

.ch-71 {
    max-width: 71ch;
}

.ch-72 {
    max-width: 72ch;
}

.ch-73 {
    max-width: 73ch;
}

.ch-74 {
    max-width: 74ch;
}

.ch-75 {
    max-width: 75ch;
}

.ch-76 {
    max-width: 76ch;
}

.ch-77 {
    max-width: 77ch;
}

.ch-78 {
    max-width: 78ch;
}

.ch-79 {
    max-width: 79ch;
}

.ch-80 {
    max-width: 80ch;
}

.ch-81 {
    max-width: 81ch;
}

.ch-82 {
    max-width: 82ch;
}

.ch-83 {
    max-width: 83ch;
}

.ch-84 {
    max-width: 84ch;
}

.ch-85 {
    max-width: 85ch;
}

.ch-86 {
    max-width: 86ch;
}

.ch-87 {
    max-width: 87ch;
}

.ch-88 {
    max-width: 88ch;
}

.ch-89 {
    max-width: 89ch;
}

.ch-90 {
    max-width: 90ch;
}

.ch-91 {
    max-width: 91ch;
}

.ch-92 {
    max-width: 92ch;
}

.ch-93 {
    max-width: 93ch;
}

.ch-94 {
    max-width: 94ch;
}

.ch-95 {
    max-width: 95ch;
}

.ch-96 {
    max-width: 96ch;
}

.ch-97 {
    max-width: 97ch;
}

.ch-98 {
    max-width: 98ch;
}

.ch-99 {
    max-width: 99ch;
}

.ch-100 {
    max-width: 100ch;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}

.btn {
    padding: 1.7rem 4rem;
    border: none;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: -1px;
    transition: all 0.3s;
    line-height: 1;
}

.btn-one {
    display: inline-block;
    padding: 15px 30px;
    background-color: #20234a;
    color: #fff !important;
    font-size: 16px;
    font-family: var(--fontFamily);
    border-radius: 30px;
    text-transform: uppercase !important;
}
.viewMoreBtn {
    margin-bottom: 40px;
}

.dark .btn-one {
    background-color: transparent;
    border: 1px solid #00ffe2;
    transition: 0.3s all linear;
}
.dark .btn-one:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a !important;
}

.btn-two {
    display: inline-block;
    padding: 8px 20px;
    color: #fff !important;
    font-size: 16px;
    font-family: var(--fontFamily);
    border-radius: 5px;
    text-transform: uppercase !important;
    border: 1px solid #00ffe2;
    background-color: transparent;
}
.btn-two:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a !important;
}

.btn-three {
    display: block;
    padding: 8px 20px;
    background-color: #fff;
    color: #000133 !important;
    font-size: 16px;
    font-family: var(--fontFamily);
    border-radius: 5px;
    text-transform: uppercase !important;
    margin-top: 15px;
    width: 100%;
}

button.btn-one.btn-request {
    border-radius: 12px;
    margin-top: 60px;
    border-radius: 50px;
}

.custom-btn2 {
    text-transform: capitalize;
    display: inline-block;
    background-color: #20234a;
    color: #fff;
    padding: 10px 30px;
    margin-top: 20px;
}

.dark .custom-btn2 {
    border: 1px solid #00ffe2;
    background-color: transparent;
    filter: drop-shadow(0px 0px 30px #00ffe2);
    backdrop-filter: blur(7.5px);
    transition: 0.3s linear;
}
.dark .custom-btn2:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a !important;
}

.review-login-btn {
    background: #20234a;
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
    line-height: 2;
    text-transform: capitalize;
    color: #fff;
    display: block;
    text-align: center;
    padding: 10px;
    width: 100%;
}

.dark .review-login-btn {
    background: transparent;
    /* neon */
    border: 1px solid #00ffe2;
    color: #fff;
    box-shadow: 0px 0px 30px rgba(0, 255, 225, 0.377);
    backdrop-filter: blur(7.5px);
    transition: all 0.3s;
}
.dark .review-login-btn:hover {
    background: #00ffe2;
    color: #20234a;
}

@media only screen and (max-width: 62em) {
    .nav .container {
        max-width: 100%;
    }
}
.nav .main-nav {
    background-color: #090b26;
    padding: 1rem 0;
    width: 100%;
}
.nav__right {
    gap: 6rem;
}
@media only screen and (max-width: 62em) {
    .nav__right {
        gap: 3rem;
    }
}
.nav__right .login {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.5rem;
    text-transform: capitalize;
    color: #fff;
}

.nav__right .wishlist,
.nav__right .cart {
    position: relative;
    cursor: pointer;
}

.nav__right .wishlist:hover .hovercart,
.nav__right .cart:hover .hovercart {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.nav__right .wishlist__number,
.nav__right .cart__number {
    position: absolute;
    right: -1rem;
    top: -1rem;
    height: 2.1rem;
    width: 2.1rem;
    font-weight: 900;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    color: #20234a;
    background-color: #00ffe2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #20234a;
}
.nav__icon i {
    font-size: 2rem;
    color: #fff;
}
.nav .btn {
    padding: 0;
    background-color: transparent;
    height: 2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav .btn .icon {
    fill: #fff;
    height: 100%;
    width: 100%;
}
.nav .btn-light {
    display: none;
}
.nav .btn-dark {
    display: flex;
}
.nav__links {
    background-color: #fff;
    box-shadow: 0px 0px 25px 10px rgba(0, 1, 51, 0.25);
    width: 100%;
}
@media only screen and (max-width: 62em) {
    .nav__links {
        display: none;
    }
}
.nav__list {
    list-style: none;
}

.nav__item {
    position: relative;
}

.nav__dropdown {
    font-size: 16px;
    background: #090b26;
    list-style: none;
    min-width: 200px;
    border-radius: 5px;
    padding: 10px 0px;
    position: absolute;
    top: 75%;
    z-index: 99999;
    transition: linear 0.2s;
    opacity: 0;
    visibility: hidden;
    left: 0px;
}
.nav__item .nav__dropdown {
    transition: 0.5s;
}
.nav__item:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.nav__dropdown li {
    padding: 4px 10px;
}
.nav__dropdown li a {
    padding: 4px 4px 4px 10px;
    border-radius: 5px;

    font-size: 1.4rem !important;
    color: #fff !important;
    /* background-color: #00ffe2; */
    display: block;
    transition: 0.3s;
}
.nav__dropdown li a:hover {
    background: #19212f;
    /* box-shadow: 0px 0px 30px rgb(0 255 226 / 80%);
	backdrop-filter: blur(3.5px); */
    color: #00ffe2 !important;
}
.nav__link {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.9rem;
    text-transform: uppercase;
    color: #000133;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.5rem;
    transition: all 0.3s;
    padding: 3.7rem 0;
    display: block;
}
@media only screen and (max-width: 75em) {
    .nav__link {
        font-size: 11px !important;
    }
}
.nav__link:hover,
.nav .active {
    border-bottom: 2px solid #000133;
}

@media only screen and (max-width: 35.9375em) {
    .nav__logo img {
        max-width: 80px;
    }
}

.dark .nav__link:hover,
.dark .active {
    border-bottom: 2px solid #00ffe2;
}

@media only screen and (max-width: 35.9375em) {
    .footer-section .footer__item {
        text-align: center;
    }
    .Payment-Partners {
        text-align: center;
    }
    .Payment-Partners svg {
        width: 220px;
        display: inline-block;
    }
}
.footer-section .footer__item h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    color: #fff;
}
.footer-section .footer__item .btn {
    font-size: 1.6rem;
    font-weight: 400;
    border: 1px solid #000133;
    border-radius: 3rem;
    padding: 1.5rem 3.5rem;
}
.footer-section .footer__item .btn-docs {
    background-color: #000133;
    color: #fff;
}
.footer-section .footer__item .btn-docs:hover {
    background-color: transparent;
    color: #000133;
}
.footer-section .footer__item .btn-api {
    background-color: transparent;
    color: #000133;
}
.footer-section .footer__item .btn-api:hover {
    background-color: #000133;
    color: #fff;
}
.footer-section .footer .logo-area .logo-white {
    display: none;
}
.footer-section .footer .logo-area .logo-black {
    display: block;
}
.footer-section .footer .logo-area .social {
    list-style: none;
}
@media only screen and (max-width: 35.9375em) {
    .footer-section .footer .logo-area .social {
        justify-content: center;
    }
}
.footer-section .footer .logo-area .social__link {
    background-color: #00ffe2;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.footer-section .footer .logo-area .social__link i {
    color: #fff;
    font-size: 1.6rem;
}
.dark .footer-section .footer .logo-area .social__link i {
    color: #fff;
    font-size: 1.6rem;
}
.footer-section .footer .list {
    list-style: none;
}
.footer-section .footer .list .item:not(:last-child) {
    margin-bottom: 1rem;
}
.footer-section .footer .list .item .link {
    font-size: 14px;
    line-height: 25px;
    color: #eeeeee;
}
@media only screen and (max-width: 35.9375em) {
    .footer-section .footer__btns {
        justify-content: center;
    }
}

.copyright p {
    background: #1e1e1e;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    padding: 25px 0;
    text-transform: capitalize;
}

.footer-section {
    background: linear-gradient(180deg, #17202e 0%, rgba(23, 32, 46, 0.9) 100%);
    padding: 100px 0;
}

@media only screen and (max-width: 35.9375em) {
    button.btn-one.btn-request {
        border-radius: 12px;
        margin-top: 20px;
    }
}
.header__wrapper {
    min-height: 78vh;
    align-items: center;
}
@media only screen and (max-width: 75em) {
    .header__wrapper {
        min-height: 48vh !important;
    }
}
@media only screen and (max-width: 62em) {
    .header__wrapper {
        display: block;
        padding: 100px 0;
    }
}
@media only screen and (max-width: 35.9375em) {
    .header__wrapper {
        padding: 20px 0;
        text-align: center;
    }
}
.header__content {
    padding-right: 4rem;
}
@media only screen and (max-width: 35.9375em) {
    .header__content {
        padding-right: 0;
    }
    .header__content h1.heading {
        font-size: 18px;
    }
    .header__content .text {
        margin-bottom: 30px !important;
    }
    .header__content h2.heading {
        font-size: 2rem !important;
    }
}
.header__content .text {
    font-size: 1.8rem;
    line-height: 180%;
    color: #999999;
    margin-bottom: 35px;
}
.header__search {
    border: 1px solid #000133;
    border-radius: 40px;
    border-radius: 10rem;
    padding-right: 2rem;
    border-radius: 40px;
}
.header__search input {
    border: none;
    outline: none;
    background-color: transparent;
    padding: 2rem 1rem 2rem 1rem;
}
.header__search label {
    padding-left: 3.2rem;
}
.header__search select {
    background: transparent;
    border: none;
    outline: none;
    color: #000133;
}
.header__search select option {
    background-color: transparent;
}
.header .account__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .account__wrapper img {
    height: 36rem;
    width: 36rem;
}
.header .account__dotted {
    height: 27.3rem;
    width: 27.3rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header .account__gredient {
    height: 27.3rem;
    width: 27.3rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.header .account__profile {
    height: 5.9rem;
    width: 5.9rem;
    border-radius: 50%;
    background-color: #00ffe2;
    position: absolute;
    top: 66%;
    left: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
}
.header .account__profile img {
    height: 2.8rem;
    width: 2.8rem;
    border-radius: 50%;
}
.header .account__profile::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.4);
    border-radius: 50%;
    z-index: 3;
}
.header .account__text {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-wrapper {
    position: relative;
    display: block;
    height: 270px;
    width: 270px;
    background: transparent;
    border-radius: 50%;
    position: absolute;
}

.circle-wrapper__circle {
    width: 100%;
    height: 100%;
    animation: rotate 43.33s linear infinite;
}

.circle-wrapper__circle:after,
.circle-wrapper__circle:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 50%;
}

.circle-wrapper__circle:before {
    transform: translateY(-50%);
    transform: translateX(-50%);
    animation-name: r1;
    animation-duration: 5000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation: rotate 53.33s linear infinite;
}

.circle-wrapper__circle:after {
    top: 50%;
    border-radius: 0 0 200px 200px;
    background-image: linear-gradient(90deg, #6934d1 0.01%, #00ffe2 100.03%);
}

.circle-wrapper__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    height: 90%;
    width: 90%;
    background: linear-gradient(90deg, #080a24 0.01%, #1a1e42 99.99%);
    border-radius: 50%;
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.description {
    margin-bottom: 15px;
}

.time {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.time__value,
.time__unit {
    display: block;
    text-align: center;
    line-height: 1;
}

.time__value {
    font-size: 36px;
}

.time__unit {
    font-size: 24px;
}

.hovercart-total.bg-total {
    background-color: #2e326d;
}
.hovercart-total.bg-total span {
    font-size: 16px;
}

.hovercart {
    width: 365px;
    background-color: #20234a;
    border-radius: 6px;
    padding: 30px;
    position: absolute;
    z-index: 99999;
    top: 115%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s linear;
    left: -150px;
}
@media only screen and (max-width: 62em) {
    .hovercart {
        left: -165px;
    }
}
.hovercart-hoverwrapper {
    display: flex;
    gap: 10px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #090b26;
}
.hovercart-hoverwrapper:last-of-type {
    border-bottom: 0;
}
.hovercart-hoverwrapper strong {
    font-size: 14px;
    color: #999999;
}
.hovercart-hoverwrapper p {
    font-size: 12px;
}
.hovercart-hoverwrapper span {
    font-size: 18px;
}
.hovercart-thumb {
    background-color: #d9d9d9;
    padding: 7px 5px;
    align-self: flex-start;
}
.hovercart-thumb img {
    width: 43px;
    height: 43px;
}
.hovercart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 15px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
}
.hovercart-total a {
    color: #fff !important;
}

.hctitle {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.hovercart.hovercart-wishlist {
    width: 540px;
}

.hovercart-wishlistwrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #545454;
}

.hovercart-wishthumb {
    display: flex;
    font-size: 12px;
}

img.wishthumb {
    width: 34px;
    margin-right: 10px;
    background-color: #d9d9d9;
    padding: 7px 5px;
    align-self: flex-start;
}

.hover-close {
    position: absolute;
    right: 15px;
    filter: brightness(100);
    top: 0;
    width: 10px;
    right: 0;
}

img.hover-wish {
    filter: brightness(100);
    align-self: flex-start;
    align-content: center;
    padding-top: 10px;
    padding-right: 10px;
}

.hovercart-content p {
    font-size: 16px;
    padding: 3px 0;
}

.openacount {
    font-size: 24px;
    text-align: center;
}
.openacount a {
    line-height: 1.5 !important;
    color: #fff;
}

.hovercart-content strong {
    color: #999999;
    font-size: 14px;
}

.cart-title-5 {
    font-size: 18px;
    color: #fff;
}

.hero-circle-doted {
    background: linear-gradient(90deg, #080a24 0.01%, #1a1e42 99.99%);
    border-radius: 50%;
    padding: 50px;
}
@media only screen and (max-width: 62em) {
    .hero-circle-doted {
        padding: 25px !important;
    }
}
@media only screen and (max-width: 35.9375em) {
    .hero-circle-doted {
        padding: 14px !important;
    }
}

.nav__right .login-two {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 2.5rem;
    text-transform: capitalize;
    color: #fff !important;
}

@keyframes r {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes r1 {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}
.roatate_me {
    width: 270px;
    height: 270px;
    position: absolute;
    border-radius: 100%;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    transform: translateX(-50%);
    z-index: 99;
    animation-name: r;
    animation-duration: 45.33s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.roatate_me img {
    position: absolute;
    left: 10%;
    top: 0;
    width: 60px !important;
    height: 60px !important;
    transform: translateY(-50%);
    transform: translateX(-50%);
    animation-name: r1;
    animation-duration: 45.33s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

/*
    mobile menu css
*/
@media (min-width: 991px) {
    .responsive_mobile_menu {
        display: none;
    }
}
.mobile_right i {
    font-size: 30px;
}

.responsive_mobile_menu {
    background-color: #00ffe2;
}

.mobile_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.mobile_info_open {
    max-width: 300px;
    background: #fff;
    padding: 23px;
    position: fixed;
    top: 0;
    height: 100%;
    width: 350px;
    left: -300px;
    z-index: 9999;
    transition: 0.3s ease;
}

.mobile_info_open.show {
    left: 0;
}

.mobile_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-logo img {
    width: 100px;
}

.mobile-menu li {
    display: block;
    margin-bottom: 15px;
    border-bottom: 1px solid #ededed;
    padding-bottom: 10px;
}

.mobile-menu li a {
    color: var(--black-2);
}

.mobile_info_open.show .nav__link {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.9rem;
    text-transform: uppercase;
    color: #000133;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.5rem;
    transition: all 0.3s;
    padding: 0 0;
}
.mobile_info_open.show .container {
    padding: 0 !important;
}

@media (max-width: 991px) {
    .nav__logo {
        display: none !important;
    }

    .nav__wrapper {
        justify-content: center !important;
    }
}
.mobile_left .logo img {
    max-width: 110px;
}

.header-sticky.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 99;
    padding: 15px 0;
}

.offcanvas-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.offcanvas-overlay.overlay-open {
    opacity: 1;
    visibility: visible;
}

.mobile-logo img {
    width: 70px;
}

.overflow-h {
    overflow: hidden;
}

.hello {
    height: 350px;
    width: 350px;
    margin: auto;
    position: relative;
}

.loader {
    position: relative;
    width: 300px;
    height: 300px;
    padding: 50px;
    border-radius: 50%;
    background: #00ffe2;
    background: linear-gradient(90deg, #00ffe2 0%, white 49%, #6934d1 100%);
    animation: animate 2s linear infinite;
    margin: auto;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        filter: hue;
        transform: rotate(360deg);
    }
}
.loader:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: linear-gradient(90deg, #080a24 0.01%, #1a1e42 99.99%);
    border-radius: 50%;
    z-index: 1000;
}

.loader:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #00ffe2;
    background: linear-gradient(90deg, #00ffe2 0%, white 49%, #6934d1 100%);
    border-radius: 50%;
    z-index: 1000;
    z-index: 1;
    filter: blur(20px);
}

.hello .text {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 197px;
    height: 99px;
    z-index: 998;
}

.hero-dis {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    line-height: 33px;
    font-weight: 400;
    text-align: center;
    font-family: 'Merriweather', serif;
}

.about-section .about__item {
    text-align: center;
}

.about__store,
.pageWrap {
    margin-bottom: 100px;
    padding-top: 100px;
}

@media only screen and (max-width: 62em) {
    .about__store,
    .pageWrap {
        margin-bottom: 50px;
        padding-top: 50px;
    }
}
.about__store-left {
    max-width: 690px;
}
.about__store-thumb {
    text-align: right;
}
.about__store-thumb img {
    max-width: 100%;
}
@media only screen and (max-width: 64em) {
    .about__store-thumb {
        text-align: left;
    }
}
.about__store-subtitle {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: #20234a;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.dark .about__store-subtitle {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: #00ffe2;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.about__store-title {
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;
    color: #20234a;
    margin-bottom: 10px;
    text-transform: uppercase;
}
@media only screen and (max-width: 35.9375em) {
    .about__store-title {
        font-size: 25px;
        line-height: 1;
    }
}
.about__store p {
    font-size: 18px;
    line-height: 1.7;
    color: #545454;
    margin-bottom: 20px;
}
.about__features {
    margin-bottom: 100px;
}
@media only screen and (max-width: 62em) {
    .about__features {
        margin-bottom: 50px;
    }
}
.about__features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 90px;
}
@media only screen and (max-width: 48em) {
    .about__features-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 50px;
    }
}
@media only screen and (max-width: 35.9375em) {
    .about__features-wrapper {
        grid-template-columns: auto;
        grid-gap: 30px;
    }
}
.about__features-item {
    background-color: #20234a;
    box-shadow: 0px 0px 30px 5px rgba(0, 255, 226, 0.25);
    border-radius: 12px;
    padding: 30px 50px;
    text-align: center;
}
.about__features-thumb {
    margin-bottom: 10px;
}
.about__features-thumb img {
    max-width: 100%;
}
.about__features-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 10px;
}
.about__features-dis {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #c6c2c2;
}
@media only screen and (max-width: 62em) {
    .about__have {
        margin-bottom: 50px;
        padding-top: 50px;
    }
}
@media only screen and (max-width: 62em) {
    .about__have {
        margin-top: 0;
        padding-top: 0;
    }
}
.about__have-section {
    text-align: center;
    max-width: 824px;
    margin: auto;
    margin-bottom: 60px;
}
.about__have-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    color: #20234a;
    text-transform: uppercase;
    margin-bottom: 10px;
}
@media only screen and (max-width: 35.9375em) {
    .about__have-title {
        font-size: 25px;
        line-height: 1;
    }
}
.about__have-item {
    border: 0.5px solid #20234a;
    box-shadow: 0px 0px 10px 1px rgba(32, 35, 74, 0.25);
    border-radius: 12px;
    padding: 47px 90px;
    padding-bottom: 30px;
    text-align: center;
}
@media only screen and (max-width: 35.9375em) {
    .about__have-item {
        padding: 30px;
    }
}
@media only screen and (max-width: 48em) {
    .about__have-item {
        margin-bottom: 30px;
    }
}
.about__have-dis {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #545454;
    margin-bottom: 5px;
}
.about__have-btn {
    font-size: 16px;
    line-height: 1.5;
    color: #00ffe2 !important;
}
.about__have-btn i {
    display: inline-block;
    padding-left: 10px;
}
.about__newsletter {
    background-color: #20234a;
    padding: 50px 0;
}
.about__newsletter-wrapper {
    max-width: 600px;
    margin: auto;
    text-align: center;
}
.about__newsletter-title {
    font-weight: 600;
    font-size: 42px;
    line-height: 0.9;
    color: #00ffe2;
    display: block;
    margin-bottom: 15px;
}
@media only screen and (max-width: 35.9375em) {
    .about__newsletter-title {
        font-size: 25px;
    }
}
.about__newsletter-dis {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #c9c9c9;
    margin-bottom: 15px;
}
.about__newsletter form input {
    height: 53px;
    padding: 15px;
    width: 100%;
    max-width: 420px;
    background-color: transparent;
    border: 1px solid #00ffe2;
    color: #fff;
}
.about__newsletter-btn {
    color: #20234a;
    background-color: #00ffe2;
    display: inline-block;
    height: 53px;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 30px;
    transition: 0.3s;
}
@media only screen and (max-width: 35.9375em) {
    .about__newsletter-btn {
        margin-top: 30px;
    }
}
.about__newsletter-btn:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgb(0 255 226 / 80%);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}

.dark .about__store-title {
    color: #fff;
}
.dark .about__store p {
    color: #fff;
}
.dark .about__have-title {
    color: #fff;
}
.dark .about__have-dis {
    color: #fff;
}
.dark .about__store-title {
    color: #00ffe2;
}
.dark .about__features-item {
    background-color: #19212f;
    box-shadow: none;
}
.dark .about__features-title {
    color: #00ffe2;
}
.dark .contact__form-field input {
    background-color: transparent;
}
.dark .contact__form-field input ::placeholder {
    color: #fff !important;
}
.dark .contact__form-submit {
    border: 1px solid #00ffe2;
    background-color: transparent;
}
.dark .contact__form-submit:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.dark .contact__form-title2 {
    color: #00ffe2 !important;
}
.dark .contact__form-item {
    background: #19212f;
    border: 1px solid rgba(0, 255, 226, 0.25);
    border-radius: 12px;
}
.dark .contact__form-btitle span {
    color: #00ffe2 !important;
}

/* .about__img {
  background-image: url('../img/service-shape.png');
} */

.about__have {
    margin-top: 100px;
}

.items {
    padding-top: 50px;
}
.items .col-12,
.items .col-sm-6,
.items .col-xl-4,
.items .col-xxl-3 {
    height: 370px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 15px;
}
@media only screen and (max-width: 35.9375em) {
    .items .col-12,
    .items .col-sm-6,
    .items .col-xl-4,
    .items .col-xxl-3 {
        height: auto !important;
    }
    .items__item .items__bottom {
        display: block !important;
    }
    .items__item .btn-wishlist {
        display: block !important;
    }
}
.items__item {
    background-color: #fff;
    border-radius: 1.2rem;
    padding: 2rem 0;
    transition: all 0.5s;
    text-align: center;
    padding: 5rem 2.6rem 2rem 2.6rem;
    transition: all 0.5s;
    border: 2px solid transparent;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0px 0px 10px 2px rgba(32, 35, 74, 0.25);
}
.items__item:hover {
    border: 2px solid #00ffe2;
    box-shadow: 0px 0px 25px 2px rgba(0, 255, 226, 0.25);
    position: relative;
    z-index: 5;
}
.items__item:hover .price-list .discount,
.items__item:hover .price-list .old-price {
    display: block;
}
.items__item:hover .items__bottom {
    display: block;
}
.items__item:hover .items__bottom .btn-wishlist i {
    color: #20234a;
}
.items__item:hover .items__bottom .btn-search {
    color: #20234a;
}
.items__img {
    max-width: 100%;
    height: 100%;
    max-height: 18rem;
}
.items .name {
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 0.7rem;
    font-size: 1.4rem;
    color: #979797;
}
.items .title {
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 0.8rem;
    font-size: 18px;
    color: #20234a;
    line-height: 1.5;
}
.items .price-list .discount,
.items .price-list .old-price {
    font-size: 1.4rem;
    color: #000133;
    display: none;
    transition: all 0.5s;
}
.items .price-list .price {
    font-size: 22px;
    color: #979797;
    font-weight: 700;
    text-decoration: line-through;
}
.items__btn {
    text-align: center;
    margin-top: 65px;
}
.items__btn .btn {
    padding: 1rem 4rem;
    background: #000133;
    border-radius: 3rem;
    color: #fff;
    text-transform: uppercase;
}
.items__bottom {
    display: none;
    transition: 0.3s linear;
}
.items__bottom .text {
    font-size: 1.4rem;
}
.items__bottom .btn-search,
.items__bottom .btn-wishlist {
    padding: 0;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 27px;
    right: 18px;
}
.items__bottom .btn-search i,
.items__bottom .btn-wishlist i {
    font-size: 2rem;
}
.items__bottom .btn-cart {
    padding: 10px 20px;
    background-color: #000133;
    color: #fff;
    border-radius: 10rem;
    font-size: 14px;
    text-transform: capitalize;
    display: block;
    margin: auto;
}

.free-items .text {
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
}
.free-items h3 {
    color: #444444;
    font-weight: 400;
    font-size: 16px;
    max-width: 680px;
    margin: auto;
}

.price.newprice {
    color: #20234a !important;
    text-decoration: none !important;
}

.price-list {
    gap: 15px !important;
}

.dark .items__item {
    background-color: #19212f;
}
.dark .shop-page .shop .categories__list--item:hover .item-number {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.dark .shop-page .shop .categories__list--item:hover .text {
    color: #00ffe2;
}
.dark .shop-page .pagination .btn:hover {
    background-color: #00ffe2;
}
.dark .shop-page .pagination .btn {
    border: 1px solid #00ffe2;
    color: #00ffe2;
}
.dark .items__bottom .btn-cart {
    border: 1px solid #00ffe2;
    background-color: transparent;
}
.dark .items__bottom .btn-cart:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.dark .shop-page .shop .categories__btns .btn:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.dark .shop-page .shop .categories__item h4 {
    color: #00ffe2;
}
.dark .shop-page .shop .categories .range-wrapper .slider {
    background-color: #00ffe2;
}
.dark .shop-page .shop .categories__item h4 {
    border-bottom: 1px solid #00ffe2;
}

.dark .items__item:hover .items__bottom .btn-wishlist i {
    color: #ffffff;
}
.dark .price-list p {
    color: #00ffe2a6 !important;
}

.membership-section .membership__item {
    padding: 2.8rem 2rem 5rem 2rem;
    background: #ffffff;
    border: 0.5px solid #20234a;
    box-shadow: 0px 0px 10px 1px rgba(32, 35, 74, 0.25);
    border-radius: 12px;
    height: 100%;
    position: relative;
    transition: all 0.3s;
    z-index: 1;
    padding-left: 30px;
}
.membership-section .membership__item:hover {
    transform: scaleY(1.1) scaleX(1.2);
    box-shadow: 0px 0px 10px 2px rgba(32, 35, 74, 0.25);
    position: relative;
    z-index: 2;
    background-color: #20234a;
}
.membership-section .membership__item:hover h4 {
    color: #fff;
}
.membership-section .membership__item:hover .text {
    color: #fff;
}
.membership-section .membership__item:hover .btn {
    background-color: #00ffe2;
}
.membership-section .membership__item:hover h2 {
    color: #33a2ff;
}
.membership-section .membership__item:hover h3 .price {
    color: #00ffe2;
}
.membership-section .membership__item:hover h3 .month {
    color: #00ffe2;
}
.membership-section .membership__item h2 {
    font-size: 22px;
    line-height: 2.9rem;
    margin-bottom: 0 !important;
    padding-top: 15px;
}
.membership-section .membership__item h3 .price {
    font-size: 48px;
    color: #20234a;
    font-weight: 600;
}
.membership-section .membership__item h3 .month {
    font-size: 16px;
    color: #00ffe2;
}
.membership-section .membership__top {
    text-align: center;
    padding-bottom: 2rem;
}
.membership-section .membership__icon {
    height: 3.5rem;
    width: 3.5rem;
    margin: 0 auto;
}
.membership-section .membership__icon-1 {
    display: block;
}
.membership-section .membership__icon-2 {
    display: none;
}
.membership-section .membership__list {
    padding-bottom: 2rem;
    list-style: none;
}
.membership-section .membership__list li {
    text-align: left;
    border-bottom: 1px solid rgba(201, 190, 190, 0.37);
    padding: 1rem;
    text-indent: -10px;
}
.membership-section .membership__list li span {
    font-size: 14px !important;
    color: #666666;
}
.membership-section .membership__list li i {
    color: #00ffe2;
}
.membership-section .membership .btn {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    color: #545454 !important;
    width: 80%;
    border-radius: 1rem;
    padding: 12px;
    background: #fff;
    border: 0.5px solid #20234a;
    box-shadow: 0px 0px 10px 1px rgba(32, 35, 74, 0.25);
    border-radius: 12px;
}

.dark .price {
    color: #00ffe2 !important;
}

.request-sction .request {
    max-width: 100rem;
    margin: 0 auto;
}
.request-sction .request__form-item {
    margin-bottom: 15px;
}
.request-sction .request__form input,
.request-sction .request__form textarea {
    width: 100%;
    padding: 1rem 2rem;
    background: #ffffff;
    border: 0.5px solid #999999;
    border-radius: 12px;
    outline: none;
    height: 54px;
    border-radius: 12px;
    text-transform: lowercase;
}
.request-sction .request__form input:focus,
.request-sction .request__form textarea:focus {
    box-shadow: 0px 0px 10px 2px rgba(32, 35, 74, 0.25);
    border: 0.5px solid #545454;
}
.request-sction .request__form input::placeholder,
.request-sction .request__form textarea::placeholder {
    font-weight: 600;
    color: #545454;
}
.request-sction .request__form textarea {
    max-width: 100%;
    height: 222px;
}
.request-sction .request__form .btn {
    padding: 1rem 2rem;
    background: #000133;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 2.5rem;
    color: #fff;
    text-transform: capitalize;
}
@media only screen and (max-width: 35.9375em) {
    .request-sction .request .d-flex {
        flex-direction: column;
    }
}

.custom__area {
    padding: 70px 0;
}
.custom__area-subtitle {
    font-size: 16px;
    display: block;
    color: #06132d;
    margin-bottom: 10px;
}
.custom__area-title {
    font-size: 48px;
    display: block;
    color: #20234a;
    font-weight: 700;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .custom__area-title {
        font-size: 30px;
    }
}
.custom__area-dis {
    color: #20234a;
    margin-bottom: 25px;
    line-height: 1.5;
}
.custom__area-item {
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .custom__area-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        margin-bottom: 20px;
    }
}
.custom__area-thumb {
    margin-right: 20px;
}
@media (max-width: 991px) {
    .custom__area-thumb {
        margin-bottom: 12px;
    }
}
.custom__area-thumb span {
    font-size: 30px;
    color: #20234a;
    height: 70px;
    width: 70px;
    font-weight: 700;
    border-radius: 100px;
    background-color: #d7d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom__area-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}
.custom__area-content p {
    font-size: 12px;
}
.custom__area-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
    margin-bottom: 30px;
}
@media (max-width: 991px) {
    .custom__area-items {
        grid-template-columns: auto;
    }
}
@media (max-width: 991px) {
    .custom__area-right {
        margin-top: 50px;
    }
}
.custom__form {
    margin-top: 80px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f7f7f7;
    padding-left: 40px;
    padding-right: 15px;
}
@media (max-width: 991px) {
    .custom__form {
        background-color: transparent !important;
        padding-left: 0;
    }
}
.custom__form-title {
    font-size: 24px;
    color: #20234a;
    font-weight: 600;
    margin-bottom: 30px;
}
.custom__form-mark {
    font-size: 18px;
    color: #20234a;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 10px;
}
.custom__form-markcheck {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.custom__form-markcheck label {
    position: relative;
    display: inline-block;
    padding-left: 26px;
}
.custom__form-markcheck label::before {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 1px solid #20234a;
    left: 0;
    top: 2px;
    position: absolute;
}
.dark .custom__form-markcheck label::before {
    content: '';
    display: inline-block;
    height: 20px;
    width: 20px;
    border: 1px solid #00ffe2;
    left: 0;
    top: 2px;
    position: absolute;
}
.custom__form-markcheck label::after {
    position: absolute;
    height: 8px;
    width: 11px;
    border-left: 1px solid #20234a;
    border-bottom: 1px solid #20234a;
    content: '';
    top: 5px;
    left: 3px;
    transform: rotate(-54deg);
    opacity: 0;
    transition: 0.3s linear;
}
.dark .custom__form-markcheck label::after {
    position: absolute;
    height: 10px;
    width: 15px;
    border-left: 2px solid #00ffe2;
    border-bottom: 3px solid #00ffe2;
    content: '';
    top: 5px;
    left: 3px;
    transform: rotate(-54deg);
    opacity: 0;
    transition: 0.3s linear;
}
.custom__form-markcheck input {
    appearance: none;
}
.custom__form-markcheck input:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#b:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#c:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#d:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#e:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#f:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#g:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#h:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#i:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#j:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#k:checked ~ label::after {
    opacity: 1;
}
.custom__form-markcheck input#l:checked ~ label::after {
    opacity: 1;
}
.custom__form-field {
    margin-bottom: 10px;
}
.custom__form-field label {
    display: block;
    color: #20234a;
    margin-bottom: 7px;
    font-size: 16px;
    display: block;
    padding-bottom: 10px;
}
.custom__form-field label span {
    color: #fa0304;
}
.custom__form-field input {
    width: 100%;
    border: 1px solid #d3d3d3;
    padding: 0 10px;
    height: 50px;
    font-size: 14px;
    border-radius: 5px;
}

.custom__form-field textarea {
    height: 190px;
    width: 100%;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    padding: 15px;
}

.custom__form-field .input-file {
    padding-top: 10px;
}

.custom__form-field .input-file::file-selector-button {
    border: none;
    border-radius: 4px;
    color: white;
    background-color: #565a90;
    border: 1px solid #565a90;
    height: 30px;
    cursor: pointer;
    transition: all 0.25s ease-in;
    cursor: pointer;
}
.custom__form-field .input-file::file-selector-button:hover {
    background-color: #fff;
    color: #565a90;
    transition: all 0.25s ease-in;
}

.dark .custom__form-field .input-file {
    padding-top: 10px;
}

.dark .custom__form-field .input-file::file-selector-button {
    border: none;
    border-radius: 4px;
    color: white;
    background-color: #00ffe174;
    border: 1px solid #00ffe2;
    height: 30px;
    cursor: pointer;
    transition: all 0.25s ease-in;
    cursor: pointer;
}
.dark .custom__form-field .input-file::file-selector-button:hover {
    background-color: #fff;
    color: #565a90;
    transition: all 0.25s ease-in;
}

.custom__sidebar-title {
    font-size: 24px;
    color: #20234a;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}
@media (max-width: 991px) {
    .custom__sidebar-title {
        margin-top: 50px;
    }
}
.custom__sidebar-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ddd;
    width: 185px;
    height: 1px;
}
@media (max-width: 991px) {
    .custom__sidebar-title::before {
        width: 120px;
    }
}
.custom__sidebar-dis {
    font-size: 13px;
    color: #20234a;
    line-height: 1.5;
    margin-bottom: 30px;
}
.custom__item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.custom__item i {
    display: inline-block;
    margin-right: 20px;
    font-size: 50px;
    color: #20234a;
}
.custom__item p {
    font-size: 14px;
}
.custom__item p span {
    color: #20234a;
    font-weight: 600;
}

.dark .custom__area-field {
    margin-bottom: 10px;
}
.dark .custom__area-field label {
    color: #00ffe2;
}
.dark .custom__area-field label span {
    color: #fa0304;
}
.dark .custom__area-subtitle {
    color: #fff;
}
.dark .custom__area-title {
    color: #fff;
}
.dark .custom__area-dis {
    color: #fff;
}
.dark .custom__area-thumb span {
    color: #20234a;
    background-color: #00ffe2;
}
.dark .custom__area-content h3 {
    color: #00ffe2;
}
.dark .custom__area-content p {
    color: #fff;
}
.dark .custom__form {
    background-color: transparent;
}
.dark .custom__form-title {
    color: #00ffe2;
}
.dark .custom__form-field label {
    color: #00ffe2;
}
.dark .custom__form-field label span {
    color: #00ffe2;
}
.dark .custom__form-field input {
    color: #fff;
    background-color: transparent;
    background: #19212f;
    border: 1px solid transparent;
    transition: 0.3s linear;
}
.dark .custom__form-field input:focus {
    border: 1px solid #00ffe2;
}
.dark .custom__form-field textarea {
    border: 1px solid transparent;
    color: #fff;
    background-color: transparent;
    transition: 0.3s linear;
    background-color: #19212f;
}
.dark .custom__form-field textarea:focus {
    border: 1px solid #00ffe2;
}
.dark .custom__sidebar-title {
    color: #00ffe2;
}
.dark .custom__sidebar-title::before {
    background-color: #00ffe2;
}
.dark .custom__sidebar-dis {
    color: #fff;
}
.dark .custom__item i {
    color: #00ffe2;
}
.dark .custom__item p span {
    color: #00ffe2;
}
.dark .custom__form-mark {
    color: #00ffe2;
}

@media (max-width: 768px) {
    .custom__form {
        padding-left: 0;
        background-color: transparent;
        padding-top: 0;
        padding-bottom: 0;
    }

    .custom__form-field {
        margin-bottom: 0;
    }

    .btn-one.custom-btn {
        margin-bottom: 20px;
    }
}
.mt-space {
    margin-top: 30px;
}

.client-section .client .swiper {
    width: 100%;
    height: auto;
}
.client-section .client .swiper .swiper-button-next:after,
.client-section .client .swiper .swiper-button-prev:after {
    display: none !important;
}
.client-section .client .swiper .swiper-button-next i,
.client-section .client .swiper .swiper-button-prev i {
    font-size: 2.2rem;
    color: #444444;
    display: inline-block;
    height: 60px;
    width: 60px;
    background: #ffffff;
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
    border-radius: 30px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 10px;
}
@media only screen and (max-width: 35.9375em) {
    .client-section .client .swiper .swiper-button-next i,
    .client-section .client .swiper .swiper-button-prev i {
        display: none;
    }
}
.client-section .client__item {
    text-align: center;
    background: transparent;
    border-radius: 2.5rem;
    padding: 6rem;
    max-width: 90rem;
    width: 100%;
    margin: 0 auto;
}
@media only screen and (max-width: 35.9375em) {
    .client-section .client__item {
        padding: 1rem;
    }
}
.client-section .client__item .symbol {
    font-size: 8rem;
    margin-top: -3rem;
    color: #00ffe2;
}
.client-section .client__item .desc {
    display: flex;
    align-items: flex-start;
}
.client-section .client__item .desc .text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: #666666;
    text-transform: lowercase;
}
.client-section .client__item h3 {
    color: #222222;
    font-size: 24px;
}
.client-section .client__item .title {
    color: #444444;
    font-size: 16px;
}
@media only screen and (max-width: 62em) {
    .client-section .client__img {
        display: none;
    }
}
.client-section .client__profile {
    height: 6.4rem;
    width: 6.4rem;
    margin: 0 auto;
}
.client-section .client__profile img {
    height: 100%;
    width: 100%;
}

.membership.membership-plan {
    padding-top: 50px;
}

.membership-section.membership-section-bottom {
    padding-top: 100px;
}

.dark .swiper-button-next i,
.dark .swiper-button-prev i {
    background-color: #00ffe2 !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 75px !important;
    right: auto;
}

.bredcrumb {
    text-align: center;
    padding: 50px 0;
    box-shadow: 0px 0px 15px 2px rgba(32, 35, 74, 0.4);
}
.bredcrumb__items li {
    display: inline-block;
}
.bredcrumb__items li a {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
}
@media only screen and (max-width: 35.9375em) {
    .bredcrumb__items li a {
        font-size: 13px;
    }
}
.bredcrumb__title {
    font-weight: 600;
    font-size: 80px;
    line-height: 1.5;
    color: #20234a;
    text-transform: uppercase;
}
@media only screen and (max-width: 62em) {
    .bredcrumb__title {
        font-size: 40px;
    }
}

@media only screen and (max-width: 35.9375em) {
    .bredcrumb__title {
        font-size: 20px;
    }
}

.dark .bredcrumb {
    background-color: #19212f;
}
.dark .bredcrumb__title {
    color: #fff;
}

.contact__form-wrapper {
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid #20234a;
    box-shadow: 0px 0px 15px 2px rgba(32, 35, 74, 0.4);
    border-radius: 12px;
    padding: 35px;
    margin: 130px 0;
}
@media only screen and (max-width: 62em) {
    .contact__form-wrapper {
        margin-top: 30px;
    }
}
@media only screen and (max-width: 35.9375em) {
    .contact__form-wrapper {
        border: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 10px;
        margin-bottom: 50px;
    }
}
.contact__form-title {
    display: block;
    font-weight: 600;
    font-size: 42px;
    line-height: 50px;
    color: #20234a;
    margin-bottom: 10px;
}
.contact__form-dis {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.contact__form-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 70px;
    padding-top: 40px;
}
@media only screen and (max-width: 48em) {
    .contact__form-inner {
        grid-template-columns: auto;
    }
}
.contact__form-field {
    text-align: left;
    margin-bottom: 25px;
}
.contact__form-field label {
    display: block;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.contact__form-field input {
    border: 1px solid rgba(151, 151, 151, 0.48);
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
    border-radius: 6px;
    height: 43px;
    width: 100%;
    padding: 15px;
}
.contact__form-field textarea {
    width: 100%;
    height: 138px;
    border: 1px solid rgba(151, 151, 151, 0.48);
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.25));
    border-radius: 6px;
    padding: 15px;
}
.contact__form-submit {
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    background-color: #20234a;
    border-radius: 6px;
    text-transform: uppercase;
}
.contact__form-right {
    text-align: left;
}
.contact__form-title2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.6;
    color: #20234a;
    display: inline-block;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.contact__form-dis2 {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #545454;
    margin-bottom: 15px;
}
.contact__form-dis2:last-of-type {
    margin-bottom: 40px;
}
.contact__form-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
}
@media only screen and (max-width: 35.9375em) {
    .contact__form-bottom {
        grid-template-columns: auto;
    }
}
.contact__form-item {
    text-align: center;
    border: 0.5px solid #20234a;
    box-shadow: 0px 0px 10px 1px rgba(32, 35, 74, 0.25);
    border-radius: 12px;
    padding: 30px;
}
.contact__form-item span {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
}
.contact__form-item a {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.contact__form-item img {
    display: inline-block;
    margin: auto;
    margin-bottom: 2px;
}
.contact__form-item * {
    display: block;
    margin-bottom: 5px;
    color: #545454;
}
.contact__form-btitle {
    font-weight: 600;
    font-size: 22px;
    padding-top: 60px;
}
.contact__form-btitle span {
    color: #20234a;
}

.dark .contact__form-title {
    color: #00ffe2;
}
.dark .contact__form-title2 {
    color: #fff;
}
.dark .contact__form-dis2 {
    color: #fff;
}
.dark .contact__form-item img {
    filter: brightness(100);
}
.dark .contact__form-item * {
    color: #fff;
}
.dark .contact__form-btitle span {
    color: #fff;
}

.privicey__content {
    padding: 100px 0;
}
@media only screen and (max-width: 35.9375em) {
    .privicey__content {
        padding-top: 30px;
    }
}
.privicey__content-item {
    border-bottom: 1px solid #979797;
    margin-bottom: 30px;
}
.privicey__content-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: #20234a;
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 1px;
}
.privicey__content-dis {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #545454;
    margin-bottom: 20px;
}

.dark .privicey__content-title {
    color: #00ffe2;
}
.dark .privicey__content-dis {
    color: #fff;
}

.error__page {
    text-align: center;
}
.error__page-inner {
    border-radius: 12px;
    padding: 80px;
    position: relative;
}
@media only screen and (max-width: 35.9375em) {
    .error__page-inner {
        padding: 30px 15px;
    }
}
.error__page-inner img {
    max-width: 100%;
}
.error__page-title {
    font-weight: 400;
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #455a64;
    display: block;
    font-family: var(--fontFamily);
}
@media only screen and (max-width: 35.9375em) {
    .error__page-title {
        font-size: 30px;
    }
}
.error__page-btitle {
    font-weight: 400;
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    font-family: var(--fontFamily);
    color: #455a64;
    margin-bottom: 90px;
}
@media only screen and (max-width: 35.9375em) {
    .error__page-btitle {
        font-size: 30px;
    }
}
.error__page-btn {
    display: inline-block;
    padding: 20px 100px;
    background-color: #20234a;
    font-size: 16px !important;
    line-height: 1;
    color: #f0f2f1 !important;
    text-transform: uppercase !important;
    box-shadow: 8px 8px 2px rgba(32, 35, 74, 0.25);
    border: 1px solid #00ffe2;
    background-color: transparent;
}
.error__page-btn:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a !important;
}
@media only screen and (max-width: 35.9375em) {
    .error__page-btn {
        padding: 20px 50px;
    }
}

.error-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.dark .error__page-title {
    color: #fff;
}
.dark .error__page-btitle {
    color: #fff;
}

.dashboard {
    margin-top: 100px;
    margin-bottom: 100px;
}
.dashboard__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.dashboard__header-left {
    display: flex;
}
.dashboard__header-thumb {
    margin-right: 25px;
}
@media only screen and (max-width: 30em) {
    .dashboard__header-thumb {
        margin-right: 5px;
    }
}
@media only screen and (max-width: 30em) {
    .dashboard__header-thumb img {
        width: 50px;
    }
}
.dashboard__header-name {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.4;
    color: #20234a;
    margin-bottom: 5px;
}
@media only screen and (max-width: 30em) {
    .dashboard__header-name {
        font-size: 16px;
    }
}
.dashboard__header-location {
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #545454;
    margin-bottom: 5px;
}
.dashboard__header-balance {
    display: inline-block;
    padding: 6px 60px;
    /* color: #fff; */
    /* background-color: #20234a; */
    font-size: 18px;
    color: #20234a;
    background-color: #00ffe2;
    border-radius: 4px;
    font-weight: bold;
}
.dashboard__header-btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #20234a;
    color: #fff;
    border-radius: 4px;
}
.dashboard__header-btn img {
    padding-right: 5px;
    filter: brightness(0);
}
.dashboard__main-left {
    background: #ffffff;
    border: 1px solid #20234a;
    box-shadow: 0px 0px 15px 2px rgba(32, 35, 74, 0.4);
    padding-bottom: 20px;
    border-radius: 8px;
}
@media only screen and (max-width: 64em) {
    .dashboard__main-left {
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 30em) {
    .dashboard__main-left {
        box-shadow: none;
        border-radius: 0;
    }
}
.dashboard__main-count {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: 26px;
    border-radius: 50px;
    background-color: #929191;
    font-size: 16px;
    text-align: center;
    color: #fff;
    /* margin-left: 50px; */
}
.dashboard__main .nav-pills .nav-link {
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #929191;
    text-transform: capitalize;
    padding: 13px 10px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.dashboard__main .nav-pills .nav-link img {
    padding-right: 10px;
    padding-left: 10px;
}
@media only screen and (max-width: 35.9375em) {
    .dashboard__main .nav-pills .nav-link img {
        max-width: 33px;
        padding-right: 5px;
    }
}
.dashboard__main .nav-pills .nav-link.active,
.dashboard__main .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #20234a;
    border-radius: 0;
}
.dashboard__profile-thumb {
    margin-bottom: 30px;
}
.dashboard__profile-header {
    display: flex;
    justify-content: space-between;
}
.dashboard__profile-body * {
    text-transform: capitalize;
}
.dashboard__profile-body span {
    display: block;
    margin-bottom: 5px;
}
.dashboard__profile-body h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #545454;
}
.dashboard__profile-item {
    border-bottom: 1px solid #979797;
    max-width: 208px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.dashboard__profile-orderheading {
    border-bottom: 1px solid #979797;
    display: block;
    margin-bottom: 30px;
}
.dashboard__profile-order {
    position: relative;
    min-width: 650px;
    overflow-x: auto;
}
.dashboard__profile-content {
    overflow-x: auto;
}
.dashboard__profile-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    padding-left: 25px;
    white-space: nowrap;
}
@media only screen and (max-width: 35.9375em) {
    .dashboard__profile-wrapper {
        /* grid-template-columns: auto; */
        margin-bottom: 30px;
    }
}
.dashboard__profile-wrapper:hover .order-close-icon {
    display: block;
}
.dashboard__profile-wrapper2 {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    padding-left: 25px;
    border-bottom: 1px solid rgba(151, 151, 151, 0.5);
    padding: 15px 0;
    margin-bottom: 10px;
}
@media only screen and (max-width: 35.9375em) {
    .dashboard__profile-wrapper2 {
        /* grid-template-columns: auto; */
        margin-bottom: 30px;
    }
}
.dashboard__profile-wrapper2 .dashboard__profile-itemm {
    margin-bottom: 0;
}
.dashboard__profile-wrapper3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding-left: 25px;
    border-bottom: 1px solid rgba(151, 151, 151, 0.5);
    padding: 15px 0;
    margin-bottom: 10px;
}
@media only screen and (max-width: 35.9375em) {
    .dashboard__profile-wrapper3 {
        grid-template-columns: auto;
        margin-bottom: 30px;
    }
}
.dashboard__profile-wrapper3 .dashboard__profile-itemm {
    margin-bottom: 0;
}
.dashboard__profile-itemm {
    margin-bottom: 30px;
}
@media only screen and (max-width: 35.9375em) {
    .dashboard__profile-itemm {
        margin-bottom: 10px;
    }
}
.dashboard__profile-itemm span {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #979797;
}
.dashboard__profile-itemm h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #20234a;
}
.dashboard__profile-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}
.dashboard__profile-bltitle {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #20234a;
    display: block;
    margin-bottom: 10px;
}
.dashboard__profile-total {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    color: #000000;
}
@media only screen and (max-width: 35.9375em) {
    .dashboard__profile-total {
        font-size: 20px;
        line-height: 1;
    }
}
.dashboard__profile-btn2 {
    display: block;
    padding: 5px 30px;
    background-color: #20234a;
    color: #fff;
    border-radius: 6px;
    margin: auto;
}

.wallet__history-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: #20234a;
    margin-bottom: 20px;
}
.wallet__history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
@media only screen and (max-width: 35.9375em) {
    .wallet__history-item {
        flex-wrap: wrap;
        background-color: #20234a;
        padding: 10px;
    }
}
.wallet__history-pname {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #20234a;
}
@media only screen and (max-width: 35.9375em) {
    .wallet__history-pname {
        flex-basis: 100%;
        color: #545454;
    }
}
.wallet__history-date {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #545454;
}
@media only screen and (max-width: 35.9375em) {
    .wallet__history-date {
        flex-basis: 100%;
        color: #fff;
    }
}
.wallet__history-dis {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #545454;
}
@media only screen and (max-width: 35.9375em) {
    .wallet__history-dis {
        flex-basis: 100%;
        color: #fff;
    }
}
.wallet__history-price {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #20234a;
}
@media only screen and (max-width: 35.9375em) {
    .wallet__history-price {
        flex-basis: 100%;
        color: #fff;
    }
}

/* .dashboard__main {
  display: none;
} */

.dashboard-open {
    display: flex;

    justify-content: space-between;
    background-color: #20234a;
    color: #fff;
    padding: 10px 10px;
    width: 100%;
    text-align: left;
    text-transform: capitalize;
    font-size: 20px;
}
.dashboard-open i {
    display: inline-block;
    padding-left: 10px;
}

.dashboard__main.block {
    display: block !important;
}

.container-increment {
    border: 1px solid #000;
    width: 130px;
}
.container-increment button {
    width: 30px;
    background-color: transparent;
}
.container-increment input {
    width: 50px;
    border-top: 0;
    border-bottom: 0;
    padding: 10px;
}

.dashboard__title-info {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    background-color: #f6f7fb;
    padding: 26px 30px;
    margin-bottom: 15px;
}

.dashboard__title-info2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    align-items: center;
    background-color: #f6f7fb;
    padding: 26px 30px;
    margin-bottom: 15px;
}
.dashboard__title-info3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
    background-color: #f6f7fb;
    padding: 26px 30px;
    margin-bottom: 15px;
}

.dashboard__profile-itemm.product-order {
    display: flex;
    align-items: center;
    position: relative;
}
.dashboard__profile-itemm.product-order img {
    margin-right: 14px;
}

.order-close-icon {
    display: none;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    left: -20px;
    cursor: pointer;
}

.dashboard__profile-itemm.wishlist-total {
    display: flex;
    justify-content: space-between;
}

.cart-btn-wishlist {
    display: inline-block;
    background-color: #20234a;
    padding: 5px !important;
    color: #fff !important;
    align-self: flex-start;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 10px !important;
}

.dark .dashboard__header-name {
    color: #fff;
}
.dark .dashboard__header-location {
    color: #fff;
}
.dark .dashboard__profile-body h4 {
    color: #fff;
}
.dark .dashboard__profile-itemm h4 {
    color: #ffffff;
}
.dark .dashboard__profile-itemm .container-increment * {
    color: #fff;
}
.dark .dashboard__profile-bltitle {
    color: #00ffe2;
}
.dark .dashboard__profile-total {
    color: #fff;
}
.dark .wallet__history-title,
.dark .wallet__history-pname,
.dark .wallet__history-date,
.dark .wallet__history-price,
.dark .wallet__history-dis {
    color: #fff;
}

.dark .dashboard__header-balance {
    background-color: #00ffe2;
    color: #20234a;
}

/* common button fist time outline hover to change color  */
.common-btn {
    font-size: 1.6rem !important;
    border-radius: 50px !important;
    font-weight: 600;
    transition: 0.3s;
    padding: 10px 60px;
    text-transform: capitalize;
    display: inline-block;
}
.light .common-btn {
    color: #20234a;
    border: 1px solid #20234a;
    box-shadow: 4px 4px 15px 0px #00013352,
        0px 4px 4px 0px rgba(0, 1, 51, 0.068);
    backdrop-filter: blur(5.5px);
}
.light .common-btn:hover {
    background: #20234a;
    color: #f1f1f1;
}

.dark .common-btn {
    color: #fff;
    border: 1px solid #00ffe2;
    box-shadow: 0px 0px 30px 0px #00ffe167;
    backdrop-filter: blur(7.5px);
    background: #06132d;
}
.dark .common-btn:hover {
    background: #00ffe2;
    color: #20234a !important;
    box-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
}

.top-nav-bar-all-elements-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
/* common button end  */
.top-nav-btn-balance {
    border-radius: 10px;
    border: 1px solid #00ffe2;
    box-shadow: 0px 0px 30px 0px #00ffe167;
    backdrop-filter: blur(7.5px);
    padding: 8px 26px;
    transition: 0.3s;
    color: #fff;
    text-transform: capitalize;
    background: transparent;

    font-family: var(--fontFamily);
    font-size: 19px !important;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.top-nav-btn-balance:hover {
    background: #00ffe2;
    color: #20234a !important;
    box-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
}
.top-nav-btn-pre-order {
    border-radius: 10px;
    border: 1px solid #00ffe2;
    box-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    padding: 12px 20px !important;
    transition: 0.3s;
    color: #fff !important;
    text-transform: capitalize;
    background: #00ffe2;
    font-family: var(--fontFamily);
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: normal;
    backdrop-filter: blur(7.5px);
}
.top-nav-btn-pre-order.download {
    color: #000133 !important;
}
.top-nav-btn-pre-order path {
    fill: #20234a;
    transition: 0.3s;
}
.top-nav-btn-pre-order.popup {
    background: transparent;
}
.top-nav-btn-pre-order.popup:hover {
    background: #00ffe2;
    color: #000133 !important;
}
.common_btn.shop-page-abx {
    border: 1px solid #20234a;
    color: #20234a;
    box-shadow: none;
    background: transparent;
}
.common_btn.shop-page-abx:hover {
    background: #20234a;
    color: #fff !important;
}

/* top nav bar responsive button  */
@media only screen and (max-width: 992px) {
    .top-nav-btn-balance {
        padding: 10px 26px;

        font-size: 1.4rem !important;
    }
    .top-nav-btn-pre-order {
        padding: 10px 15px;
        display: flex;
        gap: 5px;
        align-items: center;
        justify-content: center;
        font-size: 14px !important;
    }
}
@media only screen and (max-width: 700px) {
    .top-nav-bar-all-elements-wrap {
        gap: 20px;
    }
}
@media only screen and (max-width: 550px) {
    .top-nav-btn-balance {
        padding: 7px;
    }
    .top-nav-btn-pre-order {
        padding: 7px;

        font-size: 14px;
    }
}
@media only screen and (max-width: 390px) {
    .top-nav-bar-all-elements-wrap {
        gap: 10px;
    }
}
/* top nav bar end  */
.dark .dashboard__header-btn {
    background-color: #00ffe2;
    color: #20234a;
}
.dark .dashboard__profile-body span {
    color: #00ffe2;
}
.dark .dashboard__main-left {
    background: #19212f;
    border: 2px solid #00ffe2;
    box-shadow: 0px 0px 30px 2px rgba(0, 255, 226, 0.25) !important;
}
.dark .dashboard__main .nav-pills .nav-link.active,
.dark .dashboard__main .nav-pills .show > .nav-link {
    background-color: #00ffe2;
    border: 1px solid #00ffe2;
    background-color: transparent;
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.dark .dashboard__main .dashboard__title-info {
    background-color: #00ffe240;
}
.dark .dashboard__title-info2 {
    background-color: #00ffe240;
}
.dashboard__title-info2 {
    display: block;
}
.dark .dashboard__title-info3 {
    background-color: #00ffe240;
}

.black-img {
    filter: brightness(0) !important;
}

#dashboard-member-product {
    padding-top: 0;
}

.single__product {
    margin: 100px 0;
}
@media only screen and (max-width: 48em) {
    .single__product {
        margin: 18px 0;
    }
}
.single__product-item li .nav-link {
    max-width: 160px;
}
.single__product-bigthumb {
    border: 1px solid #20234a45;
    box-shadow: 0px 0px 15px 2px rgba(32, 35, 74, 0.4);
    border-radius: 12px;
    padding: 100px 50px;
    margin-bottom: 30px;
    max-height: 430px;
}
@media only screen and (max-width: 30em) {
    .single__product-bigthumb {
        padding: 0 50px;
    }
}
.single__product-title {
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    color: #20234a;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.single__product-title .badge {
    font-size: 14px;
}

@media only screen and (max-width: 64em) {
    .single__product-title {
        font-size: 18px;
    }
    .single__product-title .badge {
        font-size: 12px;
    }
}
@media only screen and (max-width: 48em) {
    .single__product-title {
        font-size: 18px;
    }
}
.single__product-pricebtn {
    font-weight: 700;
    font-size: 42px;
    color: #20234a;
    display: inline-block;
    margin-right: 30px;
}
@media only screen and (max-width: 48em) {
    .single__product-pricebtn {
        font-size: 30px;
    }
}
.single__product-pricebtn:first-of-type {
    color: #979797;
}
.single__product-pricebtn:last-of-type {
    margin-right: 0;
}
.single__product .review-star {
    padding-top: 20px;
}
.single__product .review-star i {
    color: #ffb503;
    font-size: 24px;
}
.single__product-star {
    padding: 15px 0;
    color: #ffb503;
    font-size: 22px;
}
.single__product-feature {
    margin-bottom: 20px;
    padding-top: 15px;
}
.single__product-feature p {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #545454;
    margin-bottom: 20px;
}
.single__product-featurlist {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #545454;
}
.single__product-featurlist li {
    list-style: none;
}
.single__product-title2 {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    color: #545454;
    margin-bottom: 30px;
}
.single__product-cart {
    display: inline-block;
    padding: 10px 5px;
    background-color: #20234a;
    color: #fff;
    width: 80px;
}
.single__product-cart2 {
    display: inline-block;
    padding: 14px 43px;
    background-color: #f0f2f1;
    color: #20234a;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
}
.single__product-heart {
    padding: 10px 15px;
    display: inline-block;
    background-color: #20234a;
    color: #fff;
    margin-right: 5px;
}
.single__product-buy {
    display: inline-block;
    color: #fff !important;
    background-color: #20234a;
    padding: 15px 40px;
    margin-top: 30px;
}
.single__product-categories {
    margin-top: 40px;
    display: flex;
}
.single__product-categories ul:first-of-type {
    flex-basis: 180px;
}
.single__product-categories li {
    list-style: none;
    margin-bottom: 15px;
}
.single__product-social span {
    display: inline-block;
    padding-right: 20px;
    font-size: 18px;
}
.single__product-social a {
    display: inline-block;
    margin-right: 15px;
}
.single__product-social a:last-of-type {
    margin-right: 0;
}
.single__product-cat li {
    color: #444444;
    font-weight: 600;
}
.single__additional-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    margin-top: 70px;
}
@media only screen and (max-width: 62em) {
    .single__additional-wrapper {
        grid-template-columns: auto;
        margin-top: 15px;
    }
}
.single__additional-title {
    font-size: 32px;
    color: #20234a;
    margin-bottom: 30px;
}
@media only screen and (max-width: 48em) {
    .single__additional-title {
        font-size: 30px;
    }
}
@media only screen and (max-width: 35.9375em) {
    .single__additional-title {
        font-size: 20px;
    }
}
.single__additional-dis1 {
    font-size: 16px;
    line-height: 1.2;
    color: #545454;
    margin-bottom: 0;
}
.single__additional-dis2 {
    padding: 40px 0;
}
@media only screen and (max-width: 35.9375em) {
    .single__additional-dis2 {
        padding: 22px 0;
    }
}
.single__additional-left p {
    margin-bottom: 40px;
    font-size: 1.1em;
}
@media only screen and (max-width: 35.9375em) {
    .single__additional-left p {
        margin-bottom: 20px;
    }
}
.single__additional-left p:last-child {
    margin-bottom: 0;
}
.single__additional-right img {
    max-width: 100%;
}
@media only screen and (max-width: 62em) {
    .single__additional-right img {
        padding-top: 30px;
    }
}
.single__additional-rules li {
    list-style: none;
    margin-bottom: 10px;
}
.single__additional-rulestitle {
    margin-bottom: 20px;
}
.single__additional .nav-link {
    font-size: 22px;
    color: #545454;
    text-transform: capitalize;
    line-height: 1.5;
    background: transparent;
}
@media only screen and (max-width: 35.9375em) {
    .single__additional .nav-link {
        font-size: 16px;
    }
}
.single__additional .nav-pills .nav-link.active,
.single__additional .nav-pills .show > .nav-link {
    background-color: transparent !important;
    color: #20234a;
    border: 0;
    text-decoration: underline;
    text-underline-offset: 10px;
    font-weight: 700;
}

li.single__product-item.nav-item .nav-link {
    border: 0;
    box-shadow: 0px 0px 10px 1px rgba(32, 35, 74, 0.25);
    border-radius: 12px;
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 0.5px solid #20234a4f;
}
@media only screen and (max-width: 64em) {
    li.single__product-item.nav-item .nav-link {
        width: 200px;
    }
}
@media only screen and (max-width: 62em) {
    li.single__product-item.nav-item .nav-link {
        height: 110px;
        margin-right: 5px;
        width: 150px;
    }
}
@media only screen and (max-width: 35.9375em) {
    li.single__product-item.nav-item .nav-link {
        width: 83px;
        height: 75px !important;
    }
}

li.single__product-item.nav-item .nav-link img {
    width: 117px;
}
@media only screen and (max-width: 35.9375em) {
    li.single__product-item.nav-item .nav-link img {
        width: 50px !important;
    }
}

.full-view {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.full-view img {
    max-width: 100%;
}

.single__product-cart span {
    display: inline-block;
    /* padding: 0 10px; */
}

.related__products {
    margin-top: 100px;
    margin-bottom: 100px;
}
@media only screen and (max-width: 30em) {
    .related__products {
        margin-top: 42px;
        margin-bottom: 70px;
    }
}
.related__products .items__item {
    margin: 7px;
}

.dark .single__product-title {
    color: #00ffe2;
}
.dark .single__product-pricebtn {
    color: #fff;
}
.dark .single__product-feature p {
    color: #fff;
}
.dark .single__product-featurlist {
    color: #fff;
}
.dark .single__product-title2 {
    color: #fff;
}
.dark .single__product-cat li {
    color: #fff;
}
.dark .single__additional .nav-link {
    color: #fff;
}
.dark .single__additional-title {
    color: #00ffe2;
}
.dark .single__additional-left p {
    color: #fff;
}
.dark .single__product-cart {
    background-color: #06132d;
    border: 1px solid #00ffe2;
    color: #fff;
    transition: 0.3s;
}
.dark .single__product-heart {
    border: 1px solid #00ffe2;
    background-color: transparent;
    transition: 0.3s;
}
.dark .single__product-heart:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.dark .single__product-buy {
    background-color: #00ffe2;
    color: #20234a !important;
}
.dark li.single__product-item.nav-item .nav-link {
    background: #19212f;
    border: 1px solid rgba(0, 255, 226, 0.25);
    border-radius: 12px;
}
.dark .single__additional .nav-pills .nav-link.active,
.dark .single__additional .nav-pills .show > .nav-link {
    color: #00ffe2;
}

@media only screen and (max-width: 48em) {
    .single__product-item.nav-item {
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 64em) {
    .single__product-item.nav-item {
        margin-bottom: 15px;
    }
    .single__product-item.nav-item:nth-child(2) button {
        margin-right: 0;
    }
}

@media only screen and (max-width: 64em) {
    ul#dfde {
        justify-content: center;
    }
}
@media only screen and (max-width: 48em) {
    ul#dfde {
        justify-content: center;
    }
}
@media only screen and (max-width: 30em) {
    ul#dfde {
        display: grid;
        grid-template-columns: auto auto auto auto;
    }
}

.related__products-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
@media only screen and (max-width: 48em) {
    .related__products-wrapper {
        grid-template-columns: auto auto;
    }
}
@media only screen and (max-width: 30em) {
    .related__products-wrapper {
        grid-template-columns: auto;
    }
}
.related__products-title {
    font-size: 36px;
    color: #20234a;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}
@media only screen and (max-width: 30em) {
    .related__products-title {
        font-size: 22px;
        margin-bottom: 0;
    }
}

.specefications {
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    padding: 40px;
}
@media only screen and (max-width: 30em) {
    .specefications {
        padding: 10px 0;
    }
}
.specefications__list li {
    display: grid;
    grid-template-columns: auto 500px;
    padding: 0;
    list-style: none;
    font-size: 20px;
    margin-bottom: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #f6f7fb;
    padding-left: 40px;
}
@media only screen and (max-width: 30em) {
    .specefications__list li {
        grid-template-columns: auto;
        padding-left: 20px;
    }
}
.specefications__list li:first-child {
    background-color: #f6f7fb;
    padding: 8px 0;
    padding-left: 40px;
}
@media only screen and (max-width: 30em) {
    .specefications__list li:first-child {
        padding-left: 20px;
    }
}

.single__product-social {
    padding-top: 15px;
}

.dark .single__product-bigthumb {
    background: #19212f;
    border: 2px solid #00ffe2;
    box-shadow: 0px 0px 30px 2px rgba(0, 255, 226, 0.25);
    border-radius: 10.7463px;
}
.dark .tab-pane.fade.show.active {
    border: 0;
}
.dark .breadcrumb-item.active {
    border: 0;
}
.dark .single__product-items {
    box-shadow: none !important;
}
.dark button.increment_decrement {
    background-color: #00ffe2;
    color: #000;
}
.dark .related__products-title {
    color: #00ffe2;
}
.dark .specefications__list li:first-child {
    background-color: #d9d9d9;
}
.dark .specefications__list li:first-child span {
    color: #545454;
}
.dark .specefications {
    background: #19212f;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    padding: 40px;
}
.dark .specefications__list li {
    border: 1px solid #f6f7fb;
}

.single__additional-left {
    padding-right: 30px;
}

.reviews__area-header {
    margin-bottom: 70px;
}
.reviews__area-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    text-transform: capitalize;
    color: #20234a;
    padding-bottom: 10px;
    border-bottom: 1px solid #777777;
}
.reviews__area-item {
    display: grid;
    grid-template-columns: 80px auto 110px;
    background: #fff;
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
    padding: 15px;
    margin-bottom: 30px;
}
.reviews__area-item .thumb img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    max-width: 100%;
}
.reviews__area-item .content h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    text-transform: capitalize;
    color: #000000;
}
.reviews__area-item .content span {
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    color: #777777;
    display: block;
    margin-bottom: 5px;
}
.reviews__area-item .content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #222222;
}
.reviews__area-item .star i {
    color: #ffb503;
}
.reviews__area-login {
    background: #fff;
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
    padding: 25px;
    margin-bottom: 20px;
}
.reviews__area-login h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 20px;
}
.reviews__area-field {
    margin-bottom: 35px;
}
.reviews__area-field label {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-transform: capitalize;
    color: #000000;
    display: block;
    margin-bottom: 10px;
}
.reviews__area-field input {
    display: block;
    height: 46px;
    border: 1px solid #999999;
    border-radius: 10px;
    width: 100%;
    padding: 15px;
}
.reviews__area-field select {
    display: block;
    height: 46px;
    border: 1px solid #999999;
    border-radius: 10px;
    width: 100%;
    padding: 15px;
}
.reviews__area-field textarea {
    height: 100px;
    border: 1px solid #999999;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    resize: none;
}

.dark .reviews__area-title {
    color: #fff;
    border-bottom: 1px solid #999999;
}
.dark .reviews__area-item {
    background: #19212f;
    border: 1px solid rgba(0, 255, 226, 0.2);
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
}
.dark .reviews__area-item .content h3 {
    color: #ffffff;
}
.dark .reviews__area-item .content span {
    color: #ffffff;
}
.dark .reviews__area-item .content p {
    color: #ffffff;
}
.dark .reviews__area-item .star i {
    color: #ffb503;
}
.dark .reviews__area-login {
    background: #19212f;
    border: 1px solid rgba(0, 255, 226, 0.2);
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
}
.dark .reviews__area-login h3 {
    color: #ffff;
}
.dark .reviews__area-field label {
    color: #ffff;
}
.dark .reviews__area-field input {
    border: 1px solid #dddddd;
    background-color: transparent;
}
.dark .reviews__area-field input::placeholder {
    color: #dddddd;
}
.dark .reviews__area-field textarea {
    border: 1px solid #dddddd;
    background-color: transparent;
}
.dark .reviews__area-field textarea::placeholder {
    color: #dddddd;
}

.login__area {
    margin-top: 100px;
    margin-bottom: 100px;
}
@media only screen and (max-width: 48em) {
    .login__area {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}
.login__area-wrapper {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
}
@media only screen and (max-width: 48em) {
    .login__area-wrapper {
        grid-template-columns: auto;
    }
}
.login__area-title {
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #20234a;
    margin-bottom: 20px;
}
@media only screen and (max-width: 30em) {
    .login__area-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
}
.login__area-field {
    position: relative;
    margin-bottom: 25px;
}
.login__area-field input {
    background: rgba(151, 151, 151, 0.25);
    border-radius: 6px;
    width: 100%;
    height: 78px;
    display: flex;
    align-items: center;
    padding-left: 75px;
    border: 0;
}
@media only screen and (max-width: 30em) {
    .login__area-field input {
        padding-left: 15px;
        height: 45px;
    }
}
.login__area-icon {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
}
@media only screen and (max-width: 30em) {
    .login__area-icon {
        display: none;
    }
}
.login__area-submit {
    text-align: center;
}
.login__area-submitbtn {
    display: inline-block;
    font-weight: 600;
    font-size: 22px;
    line-height: 2;
    text-transform: uppercase;
    color: #f0f2f1;
    background: #20234a;
    box-shadow: 8px 8px 2px rgba(32, 35, 74, 0.25);
    padding: 8px 100px;
}
.login__area-lostpass {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: capitalize;
    color: #20234a;
    display: block;
    margin-top: 30px;
}
.login__area-inner {
    padding: 45px 30px;
    border: 1px solid #979797;
}
@media only screen and (max-width: 30em) {
    .login__area-inner {
        max-width: 100%;
        padding: 15px;
    }
}
.login__area-login {
    max-width: 680px;
}
.login__area-sign {
    display: block;
    padding: 12px;
    max-width: 365px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border: 1px solid #20234a;
    margin-top: 50px;
}
.login__area-sign img {
    padding-right: 10px;
}

.dark .login__area-title {
    color: #00ffe2;
}
.dark .login__area-field input {
    background: rgba(0, 255, 226, 0.2);
    color: #fff;
}
.dark .login__area-field input::placeholder {
    color: #fff;
}
.dark .login__area-submitbtn {
    background-color: transparent;
    border: 1px solid #00ffe2;
    transition: 0.3s all linear;
}
.dark .login__area-submitbtn:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a !important;
}

.cart__area {
    margin-top: 100px;
    margin-bottom: 100px;
}
@media only screen and (max-width: 35.9375em) {
    .cart__area {
        margin-top: 50px;
    }
}
.cart__area-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 70px;
}
@media only screen and (max-width: 75em) {
    .cart__area-wrapper {
        gap: 0;
    }
}
@media only screen and (max-width: 62em) {
    .cart__area-wrapper {
        grid-template-columns: auto;
        grid-gap: 40px;
    }
    .cart__area-wrapper.cart-table-kj23 {
        display: block;
    }
}
.cart__area-items {
    display: grid;
    grid-template-columns: 410px 130px 190px auto;
    border-bottom: 1px solid #979797;
    padding: 20px 0;
}
@media only screen and (max-width: 64em) {
    .cart__area-items {
        grid-template-columns: auto auto auto;
    }
}
@media only screen and (max-width: 35.9375em) {
    .cart__area-items {
        grid-template-columns: auto auto;
    }
}
.cart__area-items:first-of-type {
    border-top: 1px solid #979797;
}
.cart__area-item:nth-child(1) {
    order: 1;
}
.cart__area-item:nth-child(2) {
    order: 3;
}
.cart__area-item:nth-child(3) {
    order: 2;
}
.cart__area-item:nth-child(4) {
    order: 4;
}
.cart__area-item:last-child {
    padding-top: 10px;
}
.cart__area-item img {
    padding: 0 18px;
}
.cart__area-headingone {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #000000 !important;
}
.cart__area-inneritem {
    display: flex;
}
.cart__area-inneritem span {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #979797;
}
.cart__area-inneritem p {
    max-width: 200px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #545454;
}
.cart__area-footer {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}
@media only screen and (max-width: 30em) {
    .cart__area-footer {
        flex-wrap: wrap;
    }
}
.cart__area-footer form {
    position: relative;
    display: flex;
    flex: 2;
}
.cart__area-footer form input {
    height: 55px;
    width: 100%;
    max-width: 285px;
    padding: 10px;
}
@media only screen and (max-width: 30em) {
    .cart__area-footer form input {
        width: inherit;
        border: 1px solid #ddd;
    }
}
.cart__area-coupon {
    display: inline-block;
    padding: 17px 33px;
    background-color: #20234a;
    color: #fff;
    text-transform: uppercase;
    border: 1px solid #979797;
    margin-left: 20px;
    font-weight: 600;
}
@media only screen and (max-width: 64em) {
    .cart__area-coupon {
        padding: 11px 18px;
        font-size: 13px;
    }
}
@media only screen and (max-width: 30em) {
    .cart__area-coupon {
        margin-left: 0;
    }
}
.cart__area-innerright div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #979797;
    padding: 14px;
    margin-bottom: 14px;
}
.cart__area-innerright div:last-of-type {
    border: 0;
}
.cart__area-innerright h4 {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #20234a;
    margin-bottom: 30px;
}
.cart__area-innerright span {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #20234a;
}

.increment {
    max-width: 109px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 50px;
    border: 1px solid #1e1e1e;
}
.increment span {
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
    padding: 10px;
}
.increment span:nth-child(2) {
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
}

@media only screen and (max-width: 30em) {
    .cart__area-footer form {
        margin-bottom: 10px;
    }
}

.contact__form-innerr {
    max-width: 930px;
    margin: auto;
    margin-top: 60px;
    display: grid;
    grid-template-columns: auto 473px;
    gap: 30px;
}
@media only screen and (max-width: 62em) {
    .contact__form-innerr {
        grid-template-columns: auto;
    }
}

.checktitle {
    text-align: left;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #20234a;
    margin-bottom: 30px;
}

.contact__form-field.field-2 input {
    border-radius: 12px;
}

.contact__form-field.field-2 label {
    color: #20234a;
}
.contact__form-field.field-2 label span {
    color: #fa0304;
}

.field-two-images {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.field-two-images span {
    display: inline-block;
    width: 130px;
    background-color: #f8f8f8;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 8px 10px;
    margin-right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.field-two-images span:last-of-type {
    margin-right: 0;
}

.checkout-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #20234a;
    display: block;
    margin-bottom: 25px;
    margin-top: 50px;
}

.contact__form-checkbtn {
    padding: 15px 60px;
    color: #fff;
    background-color: #20234a;
    border-radius: 15px;
    margin-top: 70px;
}

.dark .checktitle {
    color: #00ffe2;
}
.dark .contact__form-field.field-2 label {
    color: #fff;
}
.dark .checkout-title {
    color: #00ffe2;
}
.dark .contact__form-checkbtn {
    background-color: #00ffe2;
}
.dark .contact__form-wrapper {
    background: #19212f;
    border: 2px solid #00ffe2;
    box-shadow: 0px 0px 30px 2px rgba(0, 255, 226, 0.25);
    border-radius: 10.7463px;
}
.dark .contact__form-field.field-2 input {
    background-color: transparent;
    color: #fff;
}
.dark .contact__form-field textarea {
    background-color: transparent;
    color: #fff;
}

.dark .cart__area-headingone {
    color: #00ffe2 !important;
}
.dark .cart__area-inneritem p {
    color: #fff;
}
.dark .increment {
    border: 1px solid #fff;
}
.dark .increment span:nth-child(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}
.dark .cart__area-inneritem span {
    color: #fff;
}
.dark .cart__area-coupon {
    background-color: #00ffe2;
    color: #20234a;
}
.dark .cart__area-footer form input {
    border: 1px solid #00ffe2;
}
.dark .cart__area-innerright h4 {
    color: #fff;
}
.dark .cart__area-innerright span {
    color: #fff;
}

.contact__form-wrapper.contact__form-checkout {
    padding-top: 100px;
    padding-bottom: 100px;
    background: #ffffff;
    border: 0.25px solid #20234a;
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
    border-radius: 12px;
}
@media only screen and (max-width: 48em) {
    .contact__form-wrapper.contact__form-checkout {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 35.9375em) {
    .contact__form-wrapper.contact__form-checkout {
        border: 0;
    }
}

.dark .contact__form-wrapper.contact__form-checkout {
    background: #19212f;
    border: 2px solid #00ffe2;
    box-shadow: 0px 0px 30px 2px rgba(0, 255, 226, 0.25);
    border-radius: 10.7463px;
}

.checkout_total {
    background: rgba(74, 77, 116, 0.2);
    border-radius: 10px;
    border: 0 !important;
}
.checkout_total span:first-child {
    font-weight: 700;
}
.checkout_total span:last-child {
    font-weight: 600;
}

.checkout_subtotal {
    padding: 14px 0 !important;
}

.payment-select-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.05em;
    color: #20234a;
    padding: 23px 6px;
}

.payment-logos {
    display: block !important;
    padding: 0 !important;
}
.payment-logos div {
    background: #ffffff !important;
    border: 0.25px solid #999999 !important;
    border-radius: 12px !important;
}

.my-wallet {
    justify-content: flex-start !important;
    gap: 20px !important;
}
.my-wallet img {
    align-self: flex-start !important;
}

.first-disabled {
    background: rgba(32, 35, 74, 0.6);
}

.dark .dashboard__title-info {
    background-color: #19212f;
}
.dark .cart__area-coupon {
    border: 0;
}
.dark .cart__area-innerright {
    border: 1px solid #979797;
    border-radius: 0;
}
.dark .dashboard__profile-itemm span {
    color: #fff;
}
.dark .dashboard__profile-itemm .order-close-icon {
    filter: brightness(100);
}

.cart__area-right .img-btn > input {
    display: none;
}
.cart__area-right .img-btn {
    cursor: pointer;
    border: 5px solid transparent;
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.payment-logos {
    position: relative;
}
.payment-logos img {
    max-width: 100%;
}

.cart__area-right.add-shadow {
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
    border-radius: 12px;
    padding: 28px;
}

.dark .contact__form-field.field-2 input {
    background: rgba(0, 255, 226, 0.2);
    border: 0.5px solid #dddddd;
    border-radius: 12px;
}
.dark .contact__form-field.field-2 input::placeholder {
    color: #fff;
}
.dark .payment-logos {
    background: #19212f;
    border-radius: 12px;
}
.dark .cart__area-right.add-shadow {
    border: 1px solid #979797;
    border-radius: 0;
}
.dark .cart__area-innerright {
    border: 0;
}
.dark .payment-select-title {
    color: #fff;
}

.increment_decrement.input-increment-white {
    height: 100%;
    background: transparent;
    border-left: 1px solid #20234a;
    border-right: 1px solid #20234a;
    color: #20234a;
    width: 34px;
    padding: 0 8px;
}

.dark .increment_decrement.input-increment-white {
    color: #00ffe2;
}
.dark .cart-btn-wishlist {
    background-color: #00ffe2;
    color: #20234a !important;
}

#payment-input,
#payment-input2,
#payment-input3,
#payment-input4 {
    appearance: none;
}

input#payment-input:checked ~ .selected-bg {
    background: #ffb503 !important;
    border: 0 !important;
}

input#payment-input2:checked ~ .selected-bg {
    background: #fff;
    border: 0 !important;
}

input#payment-input3:checked ~ .selected-bg {
    background: #ffb503 !important;
    border: 0 !important;
}

input#payment-input4:checked ~ .selected-bg {
    background: #ffb503 !important;
    border: 0 !important;
}

.selected-bg {
    background: #ffffff !important;
    border: 0.25px solid #999999 !important;
    border-radius: 12px;
    text-align: center;
    padding: 10px !important;
    margin-bottom: 15px;
    height: 60px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.about__have-section p {
    color: #20234a;
}

.pricing__area {
    margin-top: 100px;
    margin-bottom: 100px;
}
.pricing__area-section {
    text-align: center;
    margin-bottom: 150px;
}
.pricing__area-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 54px;
    text-align: center;
    color: #20234a;
    margin-bottom: 10px;
}
.pricing__area-dis {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #979797;
}
.pricing__area-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
}
@media only screen and (max-width: 62em) {
    .pricing__area-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 35.9375em) {
    .pricing__area-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}
.pricing__area-body {
    min-height: 225px;
}
.pricing__area-item {
    background-color: #fff;
    border: 0.5px solid #20234a;
    box-shadow: 0px 0px 10px 1px rgba(32, 35, 74, 0.25);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: linear 0.3s;
    transform: scale(1);
    overflow: hidden;
}
.pricing__area-item:hover {
    transform: scale(1.3);
    background-color: #20234a;
}
.pricing__area-item:hover .pricing__area-title2 {
    color: #fff;
}
.pricing__area-item:hover .pricing__area-service li {
    color: #fff;
}
.pricing__area-item:hover .pricing__area-price {
    color: #00ffe2;
}
.pricing__area-item:hover .pricing__area-duration {
    color: #fff;
}
.pricing__area-item:hover .pricing__area-btn {
    background-color: #00ffe2;
}
.pricing__area-item:hover img {
    filter: sepia(1);
}
.pricing__area-title2 {
    font-weight: 700;
    font-size: 21px;
    line-height: 1.5;
    color: #979797;
    display: block;
    margin-bottom: 10px;
}
.pricing__area-price {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.3;
    color: #979797;
    display: block;
    margin-bottom: 20px;
}
.pricing__area-duration {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    color: #20234a;
    display: block;
    margin-bottom: 20px;
}
.pricing__area-service li {
    font-weight: 600;
    font-size: 10px;
    line-height: 1.3;
    color: #545454;
    list-style: none;
    position: relative;
    padding: 20px 0;
    border-top: 1px solid #979797;
    border-bottom: 1px solid #979797;
}
.pricing__area-btn {
    display: inline-block;
    padding: 7px 26px;
    background-color: #979797;
    color: #fff !important;
    border-radius: 7px;
}

.dark .pricing__area-item {
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 10px 1px rgba(0, 255, 226, 0.25);
    border-radius: 7.11999px;
}
.dark .pricing__area-item:hover {
    background: #19212f;
    border: 2px solid #00ffe2;
    box-shadow: 0px 0px 30px 2px rgba(0, 255, 226, 0.25);
    border-radius: 9.4395px;
}
.dark .pricing__area-title {
    color: #00ffe2;
}
.dark .pricing__area-dis {
    color: #fff;
}

.popup__login {
    margin-bottom: 100px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 999999;
    right: 0;
    display: none;
}
.popup__login-loginone {
    margin: auto;
    background: #fff;
    border: 1px solid #20234a;
    box-shadow: 0px 0px 15px 2px rgba(32, 35, 74, 0.4);
    border-radius: 12px;
    position: relative;
    max-width: 720px;
}
@media only screen and (max-width: 35.9375em) {
    .popup__login-loginone {
        padding-top: 20px;
    }
}
.popup__login-loginone form {
    max-width: 680px;
    margin: auto;
}
.popup__login-footer {
    background: #222654;
    border-radius: 0px 0px 12px 12px;
    text-align: center;
    padding: 40px 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    color: #fff;
}
.popup__login-footer * {
    display: block;
}
.popup__login-footer img {
    margin: auto;
}
.popup__login-footer a {
    color: #fff !important;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.popup__icon {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.popup__register {
    margin-bottom: 100px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 999999;
    right: 0;
    display: none;
}

.mb-100 {
    margin-bottom: 100px;
}
@media only screen and (max-width: 35.9375em) {
    .mb-100 {
        margin-bottom: 50px;
    }
}

.dark .popup__login-loginone {
    background: #19212f;
    border: 2px solid #00ffe2;
    box-shadow: 0px 0px 30px 2px rgba(0, 255, 226, 0.25);
    border-radius: 12px;
}
.dark .popup__login-footer {
    background: #20293a;
}
.dark .popup__login-loginone input {
    background-color: transparent;
    border: 1px solid #eeeeee;
    color: #fff;
}
.dark .login__area-sign {
    background-color: transparent;
    border: 1px solid #00ffe2;
    transition: 0.3s all linear;
}
.dark .login__area-sign:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a !important;
}
.dark .popup__icon {
    filter: brightness(100);
}

.popup__login.block {
    display: block;
}

.popup__register.block {
    display: block;
}

.offcanvas-overlay {
    position: fixed;
    background: rgba(32, 35, 74, 0.5);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.offcanvas-overlay.overlay-open {
    opacity: 1;
    visibility: visible;
}

.page-title {
    padding: 5rem 0;
    font-weight: 600;
}
.page-title h1 {
    font-size: 10rem;
    color: #20234a;
    text-transform: uppercase;
}
@media only screen and (max-width: 62em) {
    .page-title h1 {
        font-size: 6rem;
    }
}
.page-title .title-line {
    height: 0.8rem;
    max-width: 31rem;
    margin: 0 auto;
    text-align: center;
    background-color: #20234a;
}

.shop-page {
    position: relative;
}
.shop-page .shop {
    display: grid;
    grid-template-columns: 25rem 1fr;
    gap: 30px;
}
@media only screen and (max-width: 62em) {
    .shop-page .shop {
        grid-template-columns: 1fr;
    }
}
.shop-page .shop .categories {
    transition: all 0.5s;
    margin-bottom: 35px !important;
}
@media only screen and (max-width: 62em) {
    .shop-page .shop .categories {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
        padding: 4rem;
        max-width: 35rem;
        width: 100%;
        box-shadow: 0px 0px 10px 2px rgba(32, 35, 74, 0.25);
        transform: translateX(-100%);
        z-index: 999;
    }
    .dark .shop-page .shop .categories {
        background-color: #000133;
    }
}
.shop-page .shop .categories .btn-close-categories {
    display: none;
}
@media only screen and (max-width: 62em) {
    .shop-page .shop .categories .btn-close-categories {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background-color: transparent;
        padding: 0;
    }
    .shop-page .shop .categories .btn-close-categories i {
        font-size: 4rem;
        color: #090b26;
    }
    .dark .shop-page .shop .categories .btn-close-categories i {
        color: #00ffe2;
    }
}
.shop-page .shop .categories .btn {
    padding: 0.4rem 1.5rem;
}
.shop-page .shop .categories__item h4 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 2rem;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}
.shop-page .shop .categories__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: circle;
}
.shop-page .shop .categories__list--item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}
.shop-page .shop .categories__list--item .circle {
    height: 4px;
    width: 4px;
    background-color: #808080;
    border-radius: 50%;
}
.shop-page .shop .categories__list--item .text {
    font-size: 1.6rem;
    color: #808080;
    transition: all 0.3s;
    margin-right: auto;
    font-weight: 600;
}
.dark .shop-page .shop .categories__list--item .text {
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.3s;
    margin-right: auto;
}
.shop-page .shop .categories__list--item .item-number {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 50%;
    background-color: #f0f2f1;
    transition: all 0.3s;
    font-size: 1.6rem;
    color: #000133;
    display: flex;
    justify-content: center;
    align-items: center;
}
.shop-page .shop .categories__list--item:hover .item-number {
    background-color: #20234a;
    color: #fff;
}

.shop-page .shop .categories__list--item:hover .text {
    color: #20234a;
}
.shop-page .shop .categories .btn-apply {
    background: #20234a;
    border-radius: 3.77143px;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 25px !important;
}
.shop-page .shop .categories .btn-apply:hover {
    color: #fff;
}
.shop-page .shop .categories .range-wrapper .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    background: rgba(32, 35, 74, 0.5);
    outline: none;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}
.shop-page .shop .categories .range-wrapper .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #20234a;
    cursor: pointer;
}
.shop-page .shop .categories .range-wrapper .slider::-moz-range-thumb {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.shop-page .shop .categories__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.shop-page .shop .categories__btns .btn {
    font-size: 16px;
    background: #ffffff;
    box-shadow: 0px 0px 10px 3px rgba(32, 35, 74, 0.25);
    border-radius: 6px;
    color: #8f8e8e;
    transition: all 0.3s;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 400;
}
.shop-page .shop .categories__btns .btn:hover {
    background-color: #20234a;
    color: #fff;
}
.shop-page .shop__top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.shop-page .shop__top .text {
    border: 1px solid #808080;
    padding: 2rem 0;
    width: 100%;
}
.shop-page .shop .items .btn-search,
.shop-page .shop .items .btn-wishlist {
    display: none;
}
.shop-page .shop .items .btn-cart {
    margin: 0 auto;
}
.shop-page .show-category .categories {
    transform: translateX(0);
}
.shop-page .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.shop-page .pagination .btn {
    padding: 0.7rem 1.7rem;
    background-color: transparent;
    border: 1px solid #20234a;
    color: #20234a;
    font-weight: 400;
    font-size: 22px;
}
.shop-page .pagination .btn:hover {
    background-color: #20234a;
    color: #fff;
}
.shop-page .pagination .active {
    background-color: #20234a;
    color: #fff;
}

.page__shop {
    padding-top: 100px;
    padding-bottom: 100px;
}
.page__shop .items {
    padding-top: 20px;
}

.range-wrapper {
    margin-bottom: 25px;
}

.line-through {
    text-decoration: line-through;
}

.increment_decrement {
    height: 44px;
    width: 28px;
    background: #20234a;
    color: #fff;
    display: inline-block;
    border: 0;
}

input.increment_decrement.input-increment {
    width: 50px;
    padding-left: 13px;
    padding-right: 13px;
}

.dark body {
    background: #06132d;
    color: #fff;
}
.dark .btn-one {
    background-color: transparent;
    border: 1px solid #00ffe2;
    transition: 0.3s all linear;
    filter: drop-shadow(0px 0px 5px #00ffe2);
    backdrop-filter: blur(2.5px);
}
.dark .btn-one:hover {
    background: #00ffe2;
    filter: drop-shadow(0px 0px 5px #00ffe2);
    backdrop-filter: blur(2.5px);
    color: #20234a !important;
}
.dark h2.heading {
    color: #00ffe2 !important;
}
.dark .nav {
    box-shadow: 0px 0px 15px 5px rgba(0, 255, 226, 0.25);
}
.dark .nav .btn-light {
    display: flex;
}
.dark .nav .btn-dark {
    display: none;
}
.dark .nav .nav__links {
    background-color: #20234a;
}
.dark .nav .nav__links a:link,
.dark .nav .nav__links a:visited {
    color: #fff;
}
.dark .header__search {
    border: 1px solid #00ffe2;
    border-radius: 4rem;
}
.dark .header__search input {
    color: #fff;
}
.dark .header__search select {
    color: #fff;
}
.dark .header__search select option {
    background-color: #06132d;
    color: #fff;
}

/* header search light  */
.light .header__search.new-form {
    display: flex;
    padding-right: 0;
    border: 1px solid var(--dark-blue, #000133);
    box-shadow: 4px 4px 15px 0px #00013352, 0px 4px 4px 0px rgba(0, 1, 51, 0.1);
}
.light .header__search.new-form input {
    margin-left: 30px;
}
.light .header__search.new-form select {
    margin-right: 20px;
}
.light .header__search.new-form .button-search {
    width: 125px;
    border-radius: 0px 40px 40px 0px;
    background: #000133;
    font-size: 22px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* header search dark  */
.dark .header__search.new-form {
    display: flex;
    padding-right: 0;
    box-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
}
.dark .header__search.new-form input {
    margin-left: 30px;
}
.dark .header__search.new-form select {
    margin-right: 20px;
}
.dark .header__search.new-form .button-search {
    width: 125px;
    border-radius: 0px 40px 40px 0px;
    background: var(--color-brand, #00ffe2);
    font-size: 22px;
    color: #20234a;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 700px) {
    .header__search.new-form .button-search {
        font-size: 16px !important;
    }
}

/* header search end  */

.dark .items-section .items__btn .btn,
.dark .request-sction .request__form .btn {
    background: #00ffe2;
}
.dark h1.heading {
    color: #00ffe2;
}
.dark h2.heading,
.dark h3.heading,
.dark h5.heading,
.dark h4.heading {
    color: #fff;
}
.dark .text {
    color: #eee;
}
.dark a:link,
.dark a:visited {
    color: #fff;
}
.dark .about-section h2,
.dark .request-sction h2 {
    color: #00ffe2 !important;
}
.dark .membership__item {
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 17.8px 2.96666px rgba(0, 255, 225, 0.174);
    border-radius: 7.11999px;
    position: relative;
    z-index: 1;
}
.dark .membership__item:hover {
    transform: scaleY(1.1) scaleX(1.2);
    box-shadow: 0px 0px 17.8px 2.96666px rgba(0, 255, 225, 0.174);
    position: relative;
    z-index: 2;
    border: 1px solid #00ffe2;
}
.dark .membership__item:hover .btn-membershipt {
    color: #20234a !important;
}
.dark .membership__item:hover .membership__icon-1 {
    display: none;
}
.dark .membership__item:hover .membership__icon-2 {
    display: block;
}
.dark .membership__item .btn {
    background-color: transparent;
    border: 1px solid #00ffe2;
    transition: 0.3s all linear;
    color: #fff !important;
}
.dark .membership__item .btn:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a !important;
}
.dark .request-sction .request__form input,
.dark .request-sction .request__form textarea {
    background: rgba(0, 255, 226, 0.2);
    color: #fff;
}
.dark .request-sction .request__form input::placeholder,
.dark .request-sction .request__form textarea::placeholder {
    color: #eee;
}
.dark .footer-section .logo-area .social__link {
    background-color: transparent;
    border: 1px solid #00ffe2;
    transition: 0.3s all linear;
}
.dark .footer-section .logo-area .social__link:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a !important;
}
.dark .footer-section .footer__item .btn-docs {
    background-color: #00ffe2;
    color: #fff;
}
.dark .footer-section .footer__item .btn-api {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.dark .footer-section .logo-white {
    display: block !important;
}
.dark .footer-section .logo-black {
    display: none !important;
}
.dark .items-section .items__item {
    background: #19212f;
}
.dark .items-section .items__item .price-list .discount {
    color: #d9d9d9;
}
.dark .items-section .items__item .price-list .old-price {
    color: #979797;
}
.dark .items-section .items__item .price-list .price {
    font-size: 2.2rem;
    color: #00ffe2;
}
.dark .items-section .items__item .btn-cart {
    border: 1px solid #00ffe2;
    background-color: transparent;
    filter: drop-shadow(0px 0px 30px #00ffe2);
    backdrop-filter: blur(7.5px);
}
.dark .items-section .items__item .btn-cart:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.dark .client-section .text {
    color: #eee !important;
}
.dark .client-section .swiper .swiper-button-next i,
.dark .client-section .swiper .swiper-button-prev i {
    color: #20234a !important;
}
.dark .client-section .swiper .swiper-button-next i:hover,
.dark .client-section .swiper .swiper-button-prev i:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.dark .membership-section .membership__list li span {
    color: #c9bbbb;
}
.dark .footer-section .footer .list .item .link:hover {
    color: #00ffe2;
}
.dark .single__additional .nav {
    box-shadow: none;
}
.dark .reviews__area-field input {
    color: #fff;
}
.dark .reviews__area-field select {
    background-color: #19212f;
    color: #fff;
}
.dark .reviews__area-field textarea {
    color: #fff;
}
.dark .line-through {
    color: #ffffff8f !important;
    text-decoration: line-through;
}

/*# sourceMappingURL=style.css.map */

/* wish lish hover  */

.items__item:hover .btn-wishlist {
    display: block !important;
}

/* sort by styling  */
#sortArts .select_sort_by {
    font-size: 16px;
}
#sortArts .select_sort_by option:active,
#sortArts .select_sort_by option:hover {
    background-color: red !important;
}

/* filtering  */

.categories__item__filtering .wrapper {
    position: relative;
    width: 100%;
    background-color: transparent;
    /* padding: 50px 40px 20px 40px; */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.categories__item__filtering input[type='range'] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: -50px;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.categories__item__filtering .slider-track {
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: -50px;
    bottom: 0;
    border-radius: 5px;
    background-color: #00ffe2;
}
.categories__item__filtering
    input[type='range']::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}
.categories__item__filtering input[type='range']::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}
.categories__item__filtering input[type='range']::-ms-track {
    appearance: none;
    height: 5px;
}
.categories__item__filtering input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1em;
    width: 1em;
    background-color: #3264fe;
    cursor: pointer;
    margin-top: -5px;
    pointer-events: auto;
    border-radius: 50%;
}
.categories__item__filtering input[type='range']::-moz-range-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
    border: none;
}
.categories__item__filtering input[type='range']::-ms-thumb {
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}
.categories__item__filtering input[type='range']:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 1px solid #3264fe;
}
.categories__item__filtering .values {
    background-color: #3264fe;
    width: 32%;
    position: relative;
    margin: auto;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
    color: #ffffff;
}
.categories__item__filtering .values:before {
    content: '';
    position: absolute;
    height: 0;
    width: 0;
    border-top: 15px solid #3264fe;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    margin: auto;
    bottom: -14px;
    left: 0;
    right: 0;
}

.dark .style_changed {
    background: #06132d !important;
    color: #00ffe2 !important;
}
.style_changed {
    background: white !important;
}

.edit_profile_form input,
.edit_profile_form textarea {
    font-size: 17px;
    background: transparent;
    color: #fff;
    border: 1px solid #20234a;
}

.dark .edit_profile_form input,
.dark .edit_profile_form textarea {
    font-size: 17px;
    background: transparent;
    color: #fff;
    border: 1px solid #00ffe2;
}

.dark .edit_profile_form input:focus {
    color: #fff;
    background-color: transparent;
    border-color: #00ffe2;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}
.edit_profile_form span {
    font-size: 18px !important;
}
.text_area_style {
    border: 1px solid #ced4da !important;
    background: transparent !important;
    font-size: 16px;
}
.dark .text_area_style {
    color: #fff;
    border: 1px solid #ced4da !important;
    background: #06132d !important;
}

.common_btn {
    padding: 10px 20px;
    background-color: #20234a;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: capitalize;
    display: block;
    transition: 0.3s;
    width: fit-content;
}
.dark .common_btn {
    background-color: #00ffe2;
    color: #20234a !important;
}
.dark .common_btn:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgb(0 255 226 / 80%);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.dark .table_style thead tr {
    color: #00ffe2 !important;
}
.dark .table_style tbody tr {
    color: #a7a7a7 !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    color: black !important;
}

.dark .table-striped > tbody > tr:nth-of-type(odd) > * {
    color: #fff !important;
}

.single__product_cart_new {
    display: inline-block;
    padding: 14px 43px;
    background-color: #20234a;
    color: #fff !important;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
}
.dark .single__product_cart_new {
    display: inline-block;
    padding: 14px 43px;
    background-color: transparent;
    border: 1px solid #00ffe2;
    color: #fff;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    transition: 0.3s;
}
.dark .single__product_cart_new:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgb(0 255 226 / 80%);
    backdrop-filter: blur(7.5px);
    color: #20234a !important;
}
.dark .hover_effect:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgb(0 255 226 / 80%);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.cart__area-coupon.hover_style:hover {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgb(0 255 226 / 80%);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}
.custom_change_switch .form-check-input:checked {
    background-color: #20234a;
    border-color: #20234a;
}
.dark .custom_change_switch .form-check-input:checked {
    background-color: #109196;
    border-color: #109196;
}

.form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;

    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out;
}
.dark .form-switch .form-check-input {
    background-image: url('../img/download.svg');
    /* background-image: url('../img/t-round.svg'); */
}

.product_inc_style {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px;
    transition: 0.3s;
}
.product_inc_style span {
    padding: 11px 5px;
    display: inline-block;
    flex: 1;
}
.product_inc_style .will_hov:hover {
    color: #20234a;
    background-color: white !important;
}
.dark .product_inc_style .will_hov:hover {
    background: #00ffe2 !important;
    box-shadow: 0px 0px 30px rgb(0 255 226 / 80%);
    backdrop-filter: blur(7.5px);
    color: #20234a;
}

.slick-active.slick-center button {
    border: 2px solid #00ffe2 !important;
}

.payment_badge {
    background-color: #20234a;
    padding: 2px 8px;
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #fff !important;
    border-radius: 4px;
    width: fit-content;
}
.dark .payment_badge {
    background-color: #00ffe2;
    padding: 2px 8px;
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #000133 !important;
    border-radius: 4px;
    width: fit-content;
}
.add_custom_design {
    display: block !important;
    max-width: 550px !important;
    margin: 0 auto !important;
}
@media only screen and (max-width: 800px) {
    .field-two-images {
        flex-wrap: wrap;
        gap: 8px;
    }
    .field-two-images .payment-select {
        margin-right: 0;
    }
}

/* telegram css  */
/* telegram css  */
.telegram-section {
    background: #070c1f;
    padding: 60px 0;
    margin-bottom: 120px;
}

.telegram-section .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
}
.telegram-section .wrap img {
    width: 200px;
    height: 200px;
}
.telegram-section .wrap h1 {
    font-weight: 600;
    font-size: 36px;
    color: #00ffe2;
    margin-bottom: 40px;
}
.telegram-section .wrap a {
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    border: 1px solid #00ffe2;
    padding: 10px 120px;
    border-radius: 20px;
    transition: 0.3s;
}
.telegram-section .wrap a:hover {
    background: #00ffe2;
    filter: drop-shadow(0px 0px 5px #00ffe2);
    backdrop-filter: blur(2.5px);
    color: #20234a !important;
}
@media screen and (max-width: 850px) {
    .telegram-section .wrap {
        gap: 50px;
    }
}
@media screen and (max-width: 700px) {
    .telegram-section .wrap {
        flex-direction: column;
        gap: 20px;
    }
    .telegram-section .wrap a {
        padding: 10px 0;
        width: 100%;
        text-align: center;
        display: block;
    }
    .telegram-section .wrap h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .telegram-section .wrap img {
        width: 150px;
        height: 150px;
    }
}
/* telegram css end */

/* new delegram section join telegramn  */

.join-telegram-section .wrap {
    flex-shrink: 0;
    background: var(--color-card-color, #121f36);
    display: flex;
    justify-content: center;

    gap: 100px;
    margin-top: 120px;
    margin-bottom: 120px;
    padding: 100px 0;
}
.join-telegram-section .wrap .image-box img {
    width: 300px;
    height: 300px;
}
.join-telegram-section .wrap .content-area {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 650px;
}
.join-telegram-section .wrap .content-area .__title {
    color: var(--color-brand, #00ffe2);
    font-family: var(--fontFamily);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.join-telegram-section .wrap .content-area .button-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    column-gap: 20px;
    row-gap: 40px;
}

/* telegram end  */
/* common-button-full-rounded */
.common-button-full-rounded {
    border-radius: 30px;
    border: 1px solid var(--p, #00ffe2);
    transition: 0.3s;
    display: flex;
    width: 100%;
    padding: 20px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--p, #00ffe2);
    text-align: center;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    box-shadow: 0px 0px 30px 0px #00ffe167;
    backdrop-filter: blur(7.5px);
}
.common-button-full-rounded:hover {
    background: var(--p, #00ffe2);
    box-shadow: 0px 0px 30px 0px #00ffe2;
    backdrop-filter: blur(7.5px);
    color: #06132d !important;
}

/* Latest terminal update */
.latest-terminal-update {
    margin-top: 120px;
    margin-bottom: 120px;
}
.latest-terminal-update .heading {
    max-width: 640px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.latest-terminal-update .heading ._title {
    color: #000133;
    font-family: var(--fontFamily);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}
.latest-terminal-update .heading ._sub-title {
    color: #444444;
    text-align: center;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}
.latest-terminal-update .heading ._sub-title .here {
    color: #000133;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: lowercase;
}
.latest-terminal-update .table-area {
    max-width: 1300px;
    margin: 0 auto;
}
.latest-terminal-update .table-area .table {
    white-space: nowrap;
}
.latest-terminal-update .table-area .table thead tr th {
    color: #565151;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
}
.latest-terminal-update .table-area .table tbody tr td {
    color: #5e5c5c;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
}
.latest-terminal-update .table-area .table .dropdown-toggle {
    border-radius: 20px;
    background: #000133;
    display: flex;
    color: #fff;
    width: 173px;
    height: 34px;
    padding: 7.308px 0px;
    justify-content: center;
    align-items: center;
    gap: 7.308px;
    flex-shrink: 0;
}
.latest-terminal-update .table-area .table .dropdown-menu {
    width: 173px;
    flex-shrink: 0;
    border-radius: 0px 0px 5px 5px;
    background: #080d18;
    padding: 10px 5px 5px 10px;
}
.latest-terminal-update .table-area .table .dropdown-menu .dropdown-item {
    color: #fff;
    text-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
    font-family: var(--fontFamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 5px;
    display: flex;
    padding: 4px 4px 4px 10px;
    align-items: flex-start;
    gap: 50px;
    justify-content: space-between;
    margin-top: 5px;
    transition: 0.3s;
    background-color: #080d18;
}

.latest-terminal-update .table-area .table .dropdown-menu .dropdown-item:hover {
    color: #00ffe2;
    background-color: #19212f;
}
.latest-terminal-update .table-area .table .db-tb {
    width: 200px;
}

.latest-terminal-update
    .table-area
    .table
    .dropdown-menu
    .dropdown-item:hover
    path {
    fill: #00ffe2;
}

/* end dark table  */
/* Latest terminal update */
.dark .latest-terminal-update {
    margin-top: 120px;
    margin-bottom: 120px;
}
.dark .latest-terminal-update .heading {
    max-width: 640px;
    margin: 0 auto;
    margin-bottom: 60px;
}
.dark .latest-terminal-update .heading ._title {
    color: var(--p, #00ffe2);
    font-family: var(--fontFamily);
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}
.dark .latest-terminal-update .heading ._sub-title {
    color: var(--color-text-color, #eee);
    text-align: center;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}
.dark .latest-terminal-update .heading ._sub-title .here {
    color: var(--color-text-color, #eee);
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    text-transform: lowercase;
}
.dark .latest-terminal-update .table-area {
    max-width: 1300px;
    margin: 0 auto;
}
.dark .latest-terminal-update .table-area .table {
    white-space: nowrap;
}
.dark .latest-terminal-update .table-area .table thead tr th {
    color: var(--color-text-color-p, #979797);
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
}
.dark .latest-terminal-update .table-area .table tbody tr td {
    color: var(--color-white, #f1f1f1);
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 25px;
    padding-left: 20px;
    padding-right: 20px;
}
.dark .latest-terminal-update .table-area .table .dropdown-toggle {
    border-radius: 20px;
    background: var(--color-brand, #00ffe2);
    color: #000133;
    display: flex;
    width: 173px;
    height: 34px;
    padding: 7.308px 0px;
    justify-content: center;
    align-items: center;
    gap: 7.308px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 600;
}
.dark .latest-terminal-update .table-area .table .dropdown-menu {
    width: 173px;
    flex-shrink: 0;
    border-radius: 0px 0px 5px 5px;
    background: #080d18;
    padding: 10px 5px 5px 10px;
}
.dark .latest-terminal-update .table-area .table .dropdown-menu .dropdown-item {
    color: #fff;
    text-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
    font-family: var(--fontFamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 5px;
    display: flex;
    padding: 8px 10px 8px 10px;
    align-items: flex-start;
    gap: 50px;
    justify-content: space-between;
    margin-top: 5px;
    transition: 0.3s;
}
.dark
    .latest-terminal-update
    .table-area
    .table
    .dropdown-menu
    .dropdown-item:hover {
    color: #00ffe2;
    background-color: #19212f;
}
.dark .latest-terminal-update .table-area .table .db-tb {
    width: 200px;
}
.dark
    .latest-terminal-update
    .table-area
    .table
    .dropdown-menu
    .dropdown-item:hover
    path {
    fill: #00ffe2;
}

/* end dark table  */

/* notification box */
.notification-wrap {
    position: relative;
    cursor: pointer;
}
.notification-wrap .notification-count {
    position: absolute;
    right: -1rem;
    top: -1rem;
    height: 2.1rem;
    width: 2.1rem;
    font-weight: 900;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    color: #20234a;
    background-color: #00ffe2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #20234a;
}
.notification-wrap .get-all-notification {
    position: absolute;
    width: 285px;
    display: none;
    background: var(--color-card-color, #121f36);
    top: 20px;
    left: -115px;
    z-index: 999;
}
.notification-wrap .get-all-notification .all-notify-box {
    overflow-y: auto;
    height: 333px;
}
/* Customize the scrollbar thumb */
.notification-wrap
    .get-all-notification
    .all-notify-box::-webkit-scrollbar-thumb {
    background-color: #1f2e48; /* color of the thumb */
}

/* Customize the scrollbar thumb on hover */
.notification-wrap
    .get-all-notification
    .all-notify-box::-webkit-scrollbar-thumb:hover {
    background-color: #1f2e48; /* color of the thumb on hover */
}

/* Customize the scrollbar thumb when active (being clicked/dragged) */
.notification-wrap
    .get-all-notification
    .all-notify-box::-webkit-scrollbar-thumb:active {
    background-color: #1f2e48; /* color of the thumb when active */
}

/* Customize the scrollbar track */
.notification-wrap
    .get-all-notification
    .all-notify-box::-webkit-scrollbar-track {
    background-color: #06132d; /* color of the track */
}

/* Customize the scrollbar track on hover */
.notification-wrap
    .get-all-notification
    .all-notify-box::-webkit-scrollbar-track:hover {
    background-color: #06132d; /* color of the track on hover */
}
.notification-wrap .get-all-notification .notify-title {
    color: #fafafa;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    padding: var(--padding-s, 8px) var(--padding-mm, 12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px 8px 0px 0px;
    background: #1f2e48;
}
.notification-wrap .all-notify-box .item {
    display: flex;
    padding: var(--padding-mm, 12px) var(--padding-l, 24px)
        var(--padding-mm, 12px) var(--padding-mm, 12px);
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    border-bottom: 1px solid var(--color-input-1, #232f47);
    gap: 26px;
    background-color: #131f37;
}
.notification-wrap .all-notify-box .item .notify-txt {
    color: var(--color-text-color, #eee);
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.notification-wrap .all-notify-box .item .notify-time {
    color: var(--color-disable-h-1-text, #979797);
    font-family: var(--fontFamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.notification-wrap:hover .get-all-notification {
    display: block;
}
@media screen and (max-width: 920px) {
    .join-telegram-section .wrap {
        height: auto;
        flex-shrink: 0;
        background: var(--color-card-color, #121f36);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 50px;
        margin-top: 60px;
        margin-bottom: 60px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .join-telegram-section .wrap .image-box img {
        width: 200px;
        height: 200px;
        object-fit: cover;
    }
    .join-telegram-section .wrap .content-area {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 650px;
    }
    .join-telegram-section .wrap .content-area .__title {
        color: var(--color-brand, #00ffe2);
        font-family: var(--fontFamily);
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .join-telegram-section .wrap .content-area .button-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        column-gap: 10px;
        row-gap: 20px;
    }

    .latest-terminal-update .table-area .table thead tr th {
        font-size: 14px;
    }
    .latest-terminal-update .table-area .table tbody tr td {
        font-size: 14px;
    }
    .notification-wrap .get-all-notification .notify-title {
        font-size: 14px;
    }
    .notification-wrap .all-notify-box .item .notify-txt {
        font-size: 12px;
    }
    .notification-wrap .all-notify-box .item .notify-time {
        font-size: 10px;
    }
}

/* top search box  */
.search-wrap-box {
    background-color: #19212f;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999999999;
    top: 999px;
    opacity: 0;
    visibility: hidden;
    border-bottom: none !important;
    transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.search-wrap-box.active {
    top: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.search-wrap-box .search-field {
    background: #232f47;
    height: 130px;
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #00ffe2;
}
.search-wrap-box .search-field .close-btn {
    position: absolute;
    right: 20px;
    top: 25%;
    background: transparent;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.search-wrap-box .search-field .in-search {
    color: var(--color-text-color-p, #979797);
    font-family: var(--fontFamily);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    text-align: center;
}
.search-wrap-box .search-field i {
    font-size: 40px;
    color: var(--color-text-color-p, #979797);
}
.search-wrap-box .search-result {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px;
}
.search-wrap-box .search-result ._title {
    color: var(--color-brand, #00ffe2);
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.search-wrap-box .search-result .items-box {
    list-style: none;
}
.search-wrap-box .search-result .items-box .item {
    display: flex;
    align-items: center;
    gap: 17px;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #979797;
}
.search-wrap-box .search-result .items-box .item img {
    border-radius: 5px;
    object-fit: cover;
    background: white;
    width: 50px;
    height: 50px;
}
.search-wrap-box .search-result .items-box .item .res-text {
    color: var(--color-text-color, #eee);
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: 0.3s;
}
.search-wrap-box .search-result .items-box .item .res-text:hover {
    color: #00ffe2;
}

@media screen and (max-width: 992px) {
    /* .search-wrap-box.active {
		top: 57px;
	} */
    .search-wrap-box .search-field {
        height: 80px;
    }
    .search-wrap-box .search-field i {
        font-size: 24px;
    }
    .search-wrap-box .search-field .in-search {
        font-size: 24px;
    }
    .search-wrap-box .search-result .items-box .item .res-text {
        font-size: 16px;
    }
    .search-wrap-box .search-result .items-box .item img {
        width: 40px;
        height: 40px;
    }
}
@media screen and (max-width: 600px) {
    .search-wrap-box .search-result .items-box .item .res-text {
        font-size: 14px;
    }
    .search-wrap-box .search-result .items-box .item img {
        width: 30px;
        height: 30px;
    }
}

/* offer-notify */
.offer-notify {
    background: #00ffe2;
}
.offer-notify ._content {
    padding: 20px;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    padding-right: 40px;
}
.offer-notify ._content .__text {
    color: #090b26;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-weight: 800;
}
.offer-notify ._content .__close {
    font-size: 16px;
    width: 40px;
    height: 40px;
    color: #000000;
    background: transparent;
    line-height: 60px;
    position: absolute;
    right: 0;
    top: 0;
}
@media screen and (max-width: 670px) {
    .join-telegram-section .wrap {
        gap: 30px;
    }
    .notification-wrap .get-all-notification {
        width: 245px;
    }
    .notification-wrap .get-all-notification .all-notify-box {
        height: 270px;
    }

    .join-telegram-section .wrap .content-area .__title {
        color: var(--color-brand, #00ffe2);
        font-family: var(--fontFamily);
        font-size: 28px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .join-telegram-section .wrap .content-area {
        flex-direction: column;

        width: 100%;
    }
    .join-telegram-section .wrap .content-area .button-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        column-gap: 10px;
        row-gap: 20px;
    }
}
@media screen and (max-width: 500px) {
    .join-telegram-section .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
    .join-telegram-section .wrap .image-box img {
        width: 150px;
        height: 150px;
    }

    .join-telegram-section .wrap .content-area .__title {
        font-size: 22px;
    }
}
@media screen and (max-width: 400px) {
    .join-telegram-section .wrap .content-area .button-box {
        grid-template-columns: 1fr;
    }
}

/* email subscribe start */
.email_sub_modal {
    position: fixed;
    top: 50%;
    z-index: 99999;
    left: 50%;
    transform: translate(-50%, -50%);
}
.email_sub_modal .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #19212f;
    border: 1px solid #00ffe2;
    border-radius: 20px;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    max-width: 840px;
    height: 600px;
    justify-content: center;
    padding-left: 120px;
    padding-right: 120px;
    gap: 15px;
    position: relative;
    overflow: hidden;
}
.email_sub_modal .wrap h1 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-top: 15px;
}
.email_sub_modal .wrap p {
    font-size: 18px;
    font-weight: 400;
    color: #cdcdcd;
    text-align: center;
}
.email_sub_modal .wrap .sub {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}
.email_sub_modal .wrap .sub input {
    font-size: 18px;
    padding: 14px 30px;
    border: 1px solid #00ffe2;
    background: transparent;
    border-radius: 15px;
    flex-grow: 1;
    color: #fff;
}
.email_sub_modal .wrap .sub button {
    font-size: 20px;
    font-weight: 600;
    padding: 14px 30px;
    border: none;
    background: #00ffe2;
    border-radius: 15px;
    transition: 0.3s;
}
.email_sub_modal .wrap .sub button:hover {
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
}
.email_sub_modal .wrap .modal_close {
    position: absolute;
    right: 0;
    top: 0;
    background: #20234a;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.email_sub_modal .wrap .modal_close svg {
    margin-bottom: 30px;
    margin-left: 30px;
    cursor: pointer;
}
.email_sub_modal .wrap .modal_close::before {
    position: absolute;
    content: '';
    width: 200%;
    height: 100%;
    top: 22px;
    left: -55px;
    background-color: #19212f;
    /* background-color: red; */
    transform: rotate(45deg);
}

@media only screen and (max-width: 950px) {
    .email_sub_modal .wrap {
        padding-left: 60px;
        padding-right: 60px;
        height: 500px;
    }
    .email_sub_modal .wrap h1 {
        font-size: 26px;
    }
    .email_sub_modal .wrap p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 620px) {
    .email_sub_modal .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
    .email_sub_modal .wrap .sub {
        flex-direction: column;
    }
    .email_sub_modal .wrap .sub input {
        font-size: 16px;
        padding: 14px 20px;
    }
    .email_sub_modal .wrap .sub button {
        font-size: 16px;
        font-weight: 600;
        padding: 14px 30px;
        width: 100%;
    }
}
/* email subscribe end */

/* login page checkbox  */
.dark .login-page .custom_change_switch input {
    background-color: transparent;
    border: 1px solid #eeeeee;
    color: #fff;
}

.new_change-form input {
    color: #000;
}

.dark .new_change-form input {
    color: #fff;
}
/* more-sub-dropdown */
.more_category_list {
    transition: 0.3s;
    position: relative;
}
.more-sub-dropdown {
    list-style: none;
    display: none;
    margin-left: 20px;
    position: absolute;
    top: 0;
    right: 0;
    left: 90%;
    box-shadow: 1px 1px 10px #1b1c1c;
    transition: linear 0.3s;
    background-color: #090b26;
    min-width: 200px;
    border-radius: 5px;
    padding: 10px 0;
}
.more_category_list:hover .more-sub-dropdown {
    display: block;
    transition: 0.3s;
}

/* add to cart btn center */
.change-style-btn-add-cart a {
    width: 100%;
}

/* responsive cart page  */
.dashboard__profile-wrapper.change-ab {
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
}

.dashboard__title-info.change-ab {
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #6d6d6d;
}

@media only screen and (max-width: 650px) {
    .cart_page_mobile {
        width: 580px;
        overflow-x: auto;
    }
    .dashboard__profile-wrapper.change-ab {
        width: 580px;
    }

    .dashboard__title-info.change-ab {
        width: 580px;
    }
}
@media only screen and (max-width: 600px) {
    .cart_page_mobile {
        width: 500px;
    }
}
@media only screen and (max-width: 500px) {
    .cart_page_mobile {
        width: 400px;
    }
}
@media only screen and (max-width: 400px) {
    .cart_page_mobile {
        width: 360px;
    }
}
@media only screen and (max-width: 360px) {
    .cart_page_mobile {
        width: 320px;
    }
}
@media only screen and (max-width: 330px) {
    .cart_page_mobile {
        width: 300px;
    }
}
@media only screen and (max-width: 310px) {
    .cart_page_mobile {
        width: 280px;
    }
}
@media only screen and (max-width: 300px) {
    .cart_page_mobile {
        width: 280px;
    }
}

/* for  add to nav cart responsive  */
@media only screen and (max-width: 640px) {
    .hovercart {
        left: -130px;
    }
}
@media only screen and (max-width: 500px) {
    .hovercart {
        left: -50px !important;
        width: 300px;
    }
}
@media only screen and (max-width: 400px) {
    .hovercart {
        left: 0px !important;
        width: 250px;
    }
}
/* for cart responsive end  */

.field-two-images.add-custom-pay-logo .payment-select {
    height: 60px;
}

@media only screen and (max-width: 500px) {
    .dark .single__product_cart_new {
        padding: 10px 20px;
    }
    .single__product_cart_new {
        padding: 10px 20px;
    }

    .field-icon {
        margin-top: -29px;
    }
}

@media only screen and (max-width: 370px) {
    .dark .single__product_cart_new {
        padding: 10px 10px;
    }
    .single__product_cart_new {
        padding: 10px 10px;
    }
}

.field-icon {
    float: right;
    margin-top: -48px;
    position: relative;
    z-index: 2;
    margin-right: 20px;
}

.field-icon-profile {
    float: right;
    margin-top: -28px;
    position: relative;
    z-index: 2;
    margin-right: 20px;
}

/* new nav bar  */
.top-nav-bar-add {
    width: 100%;
    background: #090b26;
    padding: 25px 5px;
}
.top-nav-bar-add .main-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-nav-bar-add .icon-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.top-nav-bar-add .icon-items {
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-nav-bar-add ._right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.top-nav-bar-add ._right button {
    background: transparent;
    color: #fff;
    font-size: 22px;
}
.top-nav-bar-add ._right ._items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* shop cards  */
.cards-wrap-ab {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.cards-wrap-ab .card-main {
    height: 333px;
}
.cards-wrap-ab .card-item {
    min-width: 228px;
    min-height: 100%;
    padding: 20px 12px 20px;
    align-items: center;
    gap: 13px;
    flex-shrink: 0;
    border-radius: var(--padding-mm, 12px);
    border: 1px solid #121f36;
    box-shadow: 0px 0px 10px 2px rgba(32, 35, 74, 0.25);
    background: var(--color-shop-cards, #fff);
    position: relative;
    transition: 1s;
}
.dark .cards-wrap-ab .card-item {
    background: #121f36;
    transition: 0.3s;
    border: 1px solid #00ffe25e;
}

.dark .cards-wrap-ab .card-item:hover {
    border: 1px solid #00ffe25e;
    box-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
}
.cards-wrap-ab .card-item ._hart-icon {
    background-color: transparent;
    color: #19212f;
    position: absolute;
    right: 13px;
    top: 11px;
    transition: 0.3s;
    /* display: none; */
}
.cards-wrap-ab .card-item ._hart-icon .fa-regular.fa-heart {
    display: flex;
}

.dark .cards-wrap-ab .card-item ._hart-icon {
    color: #00ffe2;
}
.dark .cards-wrap-ab .card-item ._hart-icon:hover .fa-solid.fa-heart {
    display: flex;
}
.cards-wrap-ab .card-item .image {
    text-align: center;
    margin-bottom: 13px;
}
.cards-wrap-ab .card-item .image img {
    /* width: 190px;
    height: 160px; */
    width: 205px;
    height: 175px;
    object-fit: cover;
    text-align: center;
    vertical-align: middle;
    background-color: #00000036;
    border-radius: 5px;
}

.cards-wrap-ab .card-item .heading-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.cards-wrap-ab .card-item .heading-content ._title {
    color: #20234a;
    text-align: center;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.dark .cards-wrap-ab .card-item .heading-content ._title {
    color: #fff;
}
.cards-wrap-ab .card-item .heading-content .price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.cards-wrap-ab .card-item .heading-content .old_price {
    color: var(--color-disable-h-1-text, #979797);
    font-family: var(--fontFamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: line-through;
    /* display: none; */
}
.cards-wrap-ab .card-item .heading-content .new_price {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.dark .cards-wrap-ab .card-item .heading-content .new_price {
    color: #00ffe2;
}
.cards-wrap-ab .card-item .deliver-txt {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 16.096px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
}
.dark .cards-wrap-ab .card-item .deliver-txt {
    color: var(--color-brand, #00ffe2);
}
.cards-wrap-ab .card-item .sub-content .detail {
    color: #444444;
    text-align: center;
    font-family: var(--fontFamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 300px;
}
.dark .cards-wrap-ab .card-item .sub-content .detail {
    color: #ffffff;
}
.cards-wrap-ab .card-item .sub-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 13px;
    margin-top: 5px;
    display: none;
    transition: 1s;
}
.cards-wrap-ab .card-item .sub-content .common-btn {
    padding: 8px 35px;
    color: #20234a;
    text-align: center;
    font-size: 14px;
}
.cards-wrap-ab .card-item .sub-content .common-btn:hover {
    color: #fff;
    background-color: #20234a;
}
.dark .cards-wrap-ab .card-item .sub-content .common-btn {
    color: #eee;
}
.dark .cards-wrap-ab .card-item .sub-content .common-btn:hover {
    color: #19212f;
    background-color: #00ffe2;
}
/* .cards-wrap-ab .card-item:hover ._hart-icon {
  display: block;
} */
.cards-wrap-ab .card-item:hover .sub-content {
    display: flex;
    z-index: 9;
}
.cards-wrap-ab .card-item:hover {
    z-index: 9;
}

/* card responive  */
@media only screen and (min-width: 600px) {
    .cards-wrap-ab {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media only screen and (min-width: 1200px) {
    .cards-wrap-ab {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media only screen and (min-width: 1401px) {
    .cards-wrap-ab {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}
@media only screen and (max-width: 992px) {
    .cards-wrap-ab .card-item ._hart-icon {
        display: block;
    }
    .cards-wrap-ab .card-item .sub-content {
        display: flex;
    }
    .cards-wrap-ab .card-main {
        height: auto;
    }
}

/* card end  */

/* search field  */
.search-bar-shop-page {
    margin-bottom: 60px;
}
.search-bar-shop-page .from-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.search-bar-shop-page .search-wrap {
    display: flex;
    flex: 1;
    flex-direction: column;
    border-radius: 12px;

    outline: 1px solid var(--p, #121f36);
    outline-offset: -1px;
    position: relative;
}
.dark .search-bar-shop-page .search-wrap {
    outline: 1px solid var(--p, #00ffe2);
    outline-offset: -1px;
    background: #121f36;
}
.search-bar-shop-page .search-wrap .input-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 14px 20px;
}
.search-bar-shop-page .input-wrap .input-txt {
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    flex: 1;
    background: transparent;
    outline: none;
    border: none;
    color: #121f36;
}
.dark .search-bar-shop-page .input-wrap .input-txt {
    color: #fff;
}
.search-bar-shop-page .input-wrap .form-select {
    width: 150px;
    /* color: #fff; */
    color: #141e3b;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    background: transparent;
    outline: none;
    border: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -3 15 18'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 5 5 5-5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right;
}
.search-bar-shop-page .input-wrap .form-select option {
    color: #000133;
}
.dark .search-bar-shop-page .input-wrap .form-select {
    color: #fff;
}
.dark .search-bar-shop-page .input-wrap .form-select option {
    color: #fff;
    background-color: #06132d;
}
.search-bar-shop-page .input-wrap .form-select:focus {
    box-shadow: none;
}
.search-bar-shop-page .result-wrap {
    position: absolute;
    top: 48px;
    width: 100%;
    z-index: 99;
    background: #fff;
    border-left: 1px solid #141e3b;
    border-right: 1px solid #141e3b;
    border-bottom: 1px solid #141e3b;
    /* border-top: none; */
    border-radius: 0 0 12px 12px;
}
.dark .search-bar-shop-page .result-wrap {
    background: #121f36;
    border-left: 1px solid #00ffe2;
    border-right: 1px solid #00ffe2;
    border-bottom: 1px solid #00ffe2;
}

.search-bar-shop-page .result-wrap .title {
    color: #000133;
    /* color: var(--color-text-color-p, #979797); */
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 14px;
}
.dark .search-bar-shop-page .result-wrap .title {
    color: var(--color-text-color-p, #979797);
}
.search-bar-shop-page .result-wrap .items {
    padding: 13px;
    padding-top: 0;
}
.search-bar-shop-page .result-wrap .items .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #838383;
    gap: 17px;
}
.search-bar-shop-page .result-wrap .items .item .img img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
    background-color: #eee;
}
.search-bar-shop-page .result-wrap .items .item .name {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.dark .search-bar-shop-page .result-wrap .items .item .name {
    color: #eee;
}
.search-bar-shop-page .search-btn-shop .common-btn {
    border-radius: 10px;
    border: 1px solid #20234a;

    padding: 16px 60px;
    transition: 0.3s;
    height: 100%;
}
.dark .search-bar-shop-page .search-btn-shop .common-btn {
    border-radius: 10px;
    border: 1px solid #00ffe2;

    color: #fff;
}
.dark .search-bar-shop-page .search-btn-shop .common-btn:hover {
    background-color: #00ffe2;
    color: #20234a;
}
.search-bar-shop-page .search-btn-shop .common-btn .i {
    display: none;
}
.col-form-label {
    width: 218px;
    margin-bottom: 20px;
}
.form-group {
    margin: 28px 0px;
}
.new-row {
    display: block;
}
.new-btn {
    font-size: 16px;
    font-weight: 600;
}

.replyBtn {
    padding: 7px 25px !important;
    font-size: 12px;
}
.reply-area {
    background: #19212f;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #00ffe2;
    margin-top: 22px;
    font-family: var(--fontFamily);
    font-size: 16px;
    color: #fff;
}
.hide-reply {
    display: none;
    transition: all linear 0.3s;
}
.submitBtn {
    margin-top: 20px;
}
.comment-reply-box {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}
.reply-box {
    width: 80%;
    display: flex;
    gap: 15px;
    background: #19212f;
    padding: 20px 14px;
    border-radius: 10px;
    margin-right: 0;
    position: relative;
}
.reply-name {
    font-size: 16px;
    font-family: var(--fontFamily);
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    text-transform: capitalize;
}
.reply-data {
    color: #6a6a6a;
    font-family: var(--fontFamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: capitalize;
    margin-top: 10px;
}
.reply-comment {
    font-family: var(--fontFamily);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
    margin-top: 8px;
}
.reply-box-left {
    width: 18%;
}
.reply-box-left img {
    width: 100%;
}
.delete-icon {
    width: 8%;
    position: absolute;
    top: 15px;
    right: 10px;
}

/* responsive  */
@media only screen and (max-width: 992px) {
    .search-bar-shop-page .search-btn-shop .common-btn {
        padding: 16px 30px;
    }
    .search-bar-shop-page .result-wrap .items .item .name {
        font-size: 14px;
    }
    .search-bar-shop-page {
        margin-bottom: 30px;
    }
    .input-control-ibx {
        width: 100% !important;
    }
}

@media only screen and (max-width: 550px) {
    .search-bar-shop-page .input-wrap .input-txt {
        font-size: 12px;
        width: 90%;
    }

    .search-bar-shop-page .input-wrap .form-select {
        font-size: 12px;
    }
    .search-bar-shop-page .input-wrap .form-select {
        width: 93%;
    }
    .search-bar-shop-page .from-wrap {
        gap: 10px;
    }
    .search-bar-shop-page .search-btn-shop .common-btn .t {
        display: none;
    }
    .search-bar-shop-page .search-btn-shop .common-btn .i {
        display: block;
    }
    .common-btn {
        padding: 8px 20px !important;
        font-size: 13px !important;
        font-weight: 800 !important;
    }
    .common-btn:hover {
        font-weight: 800 !important;
    }
    .extra-padding {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }
    .font-size {
        padding: 8px 12px !important;
        font-size: 10px !important;
    }
}
@media only screen and (max-width: 450px) {
    .search-bar-shop-page .search-btn-shop .common-btn {
        padding: 16px 15px;
    }
    .search-bar-shop-page .search-wrap .input-wrap {
        padding: 14px 8px 14px 8px;
    }
    .search-bar-shop-page .search-wrap .input-wrap {
        flex-direction: column;
        gap: 2px;
    }
    .search-bar-shop-page .search-wrap {
        border-radius: 8px;
    }
    .search-bar-shop-page .result-wrap {
        top: 63px;
    }
}

/* shop-page-tab-bar-ab */
.shop-page-tab-bar-ab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
}

.shop-page-tab-bar-ab .__left .text {
    color: #000133;
}
.dark .shop-page-tab-bar-ab .__left .text {
    color: var(--color-disable-h-1-text, #979797);
}
.shop-page-tab-bar-ab .__right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.shop-page-tab-bar-ab .__right .btn-tab {
    display: flex;
    height: 40px;
    padding: 8px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #20234a;
}
.dark .shop-page-tab-bar-ab .__right .btn-tab {
    background: transparent;
    border: 1px solid #00ffe2;
}
.dark .shop-page-tab-bar-ab .__right .btn-tab path,
.dark .shop-page-tab-bar-ab .__right .btn-tab rect {
    fill: #00ffe2;
}

.shop-page-tab-bar-ab .__right .btn-tab.active {
    background-color: #20234a;
}
.dark .shop-page-tab-bar-ab .__right .btn-tab.active {
    background-color: #00ffe2;
}
.shop-page-tab-bar-ab .__right .btn-tab.active path,
.shop-page-tab-bar-ab .__right .btn-tab.active rect {
    fill: #fff;
}

.dark .shop-page-tab-bar-ab .__right .btn-tab.active path,
.dark .shop-page-tab-bar-ab .__right .btn-tab.active rect {
    fill: #000133;
}

/* tab bar control  */

.shop-page-tab-result {
    display: none;
}
.shop-page-tab-result.active {
    display: block;
    border-bottom: none;
}

@media only screen and (max-width: 550px) {
    .shop-page-tab-bar-ab .__right .btn-tab {
        height: 30px;
        padding: 7px 8px;
    }
    .shop-page-tab-bar-ab {
        flex-direction: column;
        gap: 15px;
    }
}

/* shop filter contorl mobile  */
.shop-page .shop__top {
    position: flex;
    justify-content: center;
}
.shop-page .shop__top .btn-category {
    background-color: transparent;
    display: none;
    color: #090b26;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
}
.dark .shop-page .shop__top .btn-category {
    color: #00ffe2;
}
@media only screen and (max-width: 62em) {
    .shop-page .shop__top .btn-category {
        display: block;
    }
}
.shop-page .shop__top .btn-category .icon {
    fill: #000133;
}

/* -------- cards-wrap-style-2 --------------------------*/
.cards-wrap-style-2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.cards-wrap-style-2 .item {
    display: flex;
    align-items: center;
    border-radius: 15px;
    padding: 20px;
    gap: 20px;
    border: 0.5px solid var(--p, #000133);
    transition: 0.3s;
    position: relative;
}
.badge-product-3k3ch {
    position: absolute;
    top: 0;
    left: 50%;
    background: #121f36;
    padding: 5px 10px;
    color: #fff;
}
.dark .badge-product-3k3ch {
    background: #00ffe2;
    color: #121f36;
}
.dark .cards-wrap-style-2 .item {
    border: 0.5px solid var(--p, #00ffe2);
}
.dark .cards-wrap-style-2 .item:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
}
.cards-wrap-style-2 .item .img img {
    border-radius: 12px;
    border: 1px solid rgb(31 33 73 / 19%);
    background: #eee;
    object-fit: cover;
    width: 248px;
    height: 184px;
}
.dark .cards-wrap-style-2 .item .img img {
    border: 1px solid rgba(0, 255, 226, 0.25);
}
.cards-wrap-style-2 .item .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 20px;
}
.cards-wrap-style-2 .item .content .cart-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 5px;
}

.cards-wrap-style-2 .item .title-box .__title {
    color: #000133;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}
.dark .cards-wrap-style-2 .item .title-box .__title {
    color: #f1f1f1;
}
.cards-wrap-style-2 .item .title-box .__stars {
    color: #ffb503;
    font-size: 20px;
}
.cards-wrap-style-2 .item .__price {
    color: #000133;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.dark .cards-wrap-style-2 .item .__price {
    color: #f1f1f1;
}

.cards-wrap-style-2 .item .action .common-btn {
    border: 1px solid #20234a;
    color: #20234a;
    box-shadow: 0px 0px 10px 2px rgba(32, 35, 74, 0.25);
    backdrop-filter: blur(7.5px);
    display: flex;
    width: 198px;
    padding: 10px 20px;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.dark .cards-wrap-style-2 .item .action .common-btn {
    box-shadow: 0px 0px 30px 0px #00ffe2;
}
.cards-wrap-style-2 .item .action .common-btn:hover {
    color: #fff;
    line-height: normal;
}
.dark .cards-wrap-style-2 .item .action .common-btn {
    color: #fff;
    border: 1px solid var(--p, #00ffe2);
}
.dark .cards-wrap-style-2 .item .action .common-btn:hover {
    color: #20234a;
}

@media only screen and (max-width: 1200px) {
    .cards-wrap-style-2 .item .content .cart-box {
        flex-direction: column;
        gap: 10px;
    }
    .cards-wrap-style-2 .item .img img {
        width: 190px;
        height: 140px;
    }

    .cards-wrap-style-2 {
        gap: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .dark .shop-page .shop__top .btn-category {
        margin-top: 50px;
    }
    .cards-wrap-style-2 .item .__price {
        font-size: 16px;
    }
    .cards-wrap-style-2 .item .action .common-btn {
        font-size: 13px;
        width: 120px;
    }
    .cards-wrap-style-2 .item .title-box .__stars {
        font-size: 12px;
    }
    .cards-wrap-style-2 .item .title-box .__title {
        font-size: 16px;
    }
    .cards-wrap-style-2 .item .img img {
        width: 130px;
        height: 100px;
    }
}
@media only screen and (max-width: 576px) {
    .cards-wrap-style-2 .item .content {
        gap: 4px;
        flex-direction: column;
    }
    .cards-wrap-style-2 .item .title-box {
        text-align: center;
    }
    .cards-wrap-style-2 .item .action .common-btn {
        width: auto;
    }
}
@media only screen and (max-width: 400px) {
    .cards-wrap-style-2 .item .img img {
        width: 100px;
        height: 80px;
    }
    .cards-wrap-style-2 .item .title-box .__title {
        font-size: 14px;
    }
    .cards-wrap-style-2 .item .title-box .__stars {
        font-size: 8px;
    }
    .cards-wrap-style-2 .item .__price {
        font-size: 14px;
    }
    .cards-wrap-style-2 .item .action .common-btn {
        font-size: 10px;
    }
    .cards-wrap-style-2 .item .content .cart-box {
        gap: 5px;
    }
}
@media only screen and (min-width: 1200px) {
    .cards-wrap-style-2 .item .title-box {
        width: 300px;
    }
}

/* ---------.cards-wrap-style-3---------------- */
.cards-wrap-style-3 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cards-wrap-style-3 .item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 17px;
    border: 0.25px solid #000133;
    padding: 10px 11px 10px 20px;
    align-items: center;
    transition: 0.3s;
}
.dark .cards-wrap-style-3 .item {
    border: 0.25px solid var(--color-brand, #00ffe2);
    backdrop-filter: blur(7.5px);
}
.dark .cards-wrap-style-3 .item:hover {
    box-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
}

.cards-wrap-style-3 .item .__title {
    color: #000133;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
}
.cards-wrap-style-3 .item .d-txt {
    color: #000133;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.dark .cards-wrap-style-3 .item .d-txt {
    color: var(--color-brand, #00ffe2);
}
.dark .cards-wrap-style-3 .item .__title {
    color: var(--color-white, #f1f1f1);
}
.cards-wrap-style-3 .item .__price {
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    color: #000133;
}
.dark .cards-wrap-style-3 .item .__price {
    background: var(--p, var(--p, #00ffe2));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cards-wrap-style-3 .item .action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.cards-wrap-style-3 .item .action .common-btn {
    color: #070c1f;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 11px;
    text-align: center;
}
.cards-wrap-style-3 .item .action .common-btn:hover {
    color: #fff;
}
.dark .cards-wrap-style-3 .item .action .common-btn {
    color: #fff;
}
.dark .cards-wrap-style-3 .item .action .common-btn:hover {
    color: #070c1f;
}

.cards-wrap-style-3 .tr,
.cards-wrap-style-3 .tr a {
    color: #121f36;
}
.dark .cards-wrap-style-3 .tr a,
.dark .cards-wrap-style-3 .tr {
    color: #fff;
}
.cards-wrap-style-3 .tr .__price {
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    color: #000133;
}
.dark .cards-wrap-style-3 .tr .__price {
    color: #00ffe2;
}
.cards-wrap-style-3 .tr td {
    border-top: 0.25px solid #000133;
    border-bottom: 0.25px solid #000133;
    padding: 20px 14px 20px 24px;
}
.cards-wrap-style-3 .tr td .common-btn {
    white-space: nowrap;
}

.cards-wrap-style-3 .tr td:first-child {
    border-left: 0.25px solid #000133;
    border-radius: 50px 0 0 50px;
}
.cards-wrap-style-3 .tr td:last-child {
    border-right: 0.25px solid #000133;
    position: relative;
    border-radius: 0px 50px 50px 0;
    padding: 15px 10px;
}

.dark .cards-wrap-style-3 .tr td {
    border-top: 0.25px solid #00ffe2;
    border-bottom: 0.25px solid #00ffe2;
}
.dark .cards-wrap-style-3 .tr td:first-child {
    border-left: 0.25px solid #00ffe2;
}
.dark .cards-wrap-style-3 .tr td:last-child {
    border-right: 0.25px solid #00ffe2;
}

.cards-wrap-style-3.corner-shape .tr td {
    padding: 12px 30px;
}
.cards-wrap-style-3.corner-shape .tr td .price {
    color: #121f36;
}
.dark .cards-wrap-style-3.corner-shape .tr td .price {
    color: #00ffe2;
}

.badge-badge-1ctx {
    background: #121f36;
    padding: 2px 7px;
    display: inline-block;
    border-radius: 7px;
    color: #fff;
    white-space: nowrap;
    font-size: 12px;
}
.dark .badge-badge-1ctx {
    background: #00ffe2;
    color: #121f36;
}
@media only screen and (max-width: 1200px) {
    .cards-wrap-style-3 .item .action .common-btn {
        padding: 16px 30px;
    }
}
@media only screen and (max-width: 768px) {
    .cards-wrap-style-3 .item .action .common-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
    .cards-wrap-style-3 .item .__price {
        font-size: 14px;
    }
    .cards-wrap-style-3 .item .__title {
        font-size: 14px;
    }
    .cards-wrap-style-3 .item .d-txt {
        font-size: 14px;
    }
}
@media only screen and (max-width: 500px) {
    .cards-wrap-style-3 .item .action {
        grid-column: 5/3;
        min-width: 110px;
    }
    .cards-wrap-style-3 .item .action {
        justify-content: center;
    }

    .cards-wrap-style-3 .item .__title {
        grid-column: 1/3;
        grid-row: 1/3;
    }
}

/* ---------- new  pagination------------- */

.pagination-wrap-ab .items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    list-style: none;
    flex-wrap: wrap;
}

.pagination-wrap-ab .items li .common-btn {
    border-radius: 0;
    padding: 0;
    font-size: 18px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination-wrap-ab .items li .common-btn.active {
    background-color: #19212f;
    color: #fff;
}
.dark .pagination-wrap-ab .items li .common-btn.active {
    background-color: #00ffe2;
    color: #19212f;
}
@media only screen and (max-width: 1200px) {
    .pagination-wrap-ab .items li .common-btn {
        font-size: 14px;
        height: 40px;
        width: 40px;
    }
}
/* ---------- new  pagination end------------- */

/* discussion page  */

/* main wrap  */
.wrapper-post-form {
    max-width: 1320px;
    margin: 0 auto;
}
.dis-form-wrap-ab {
    border-radius: 10px;
    background: #eeeeee;
    display: flex;
    padding: 40px;
    gap: 20px;
    margin-top: 80px;
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 10px;
}
.dark .dis-form-wrap-ab {
    background: #121f36;
}

.dis-form-wrap-ab ._left .user-img img {
    border-radius: 70px;
    background: #d9d9d9;
    width: 70px;
    height: 70px;
}
.dark .dis-form-wrap-ab ._left .user-img img {
    background: #eee;
}
.dis-form-wrap-ab ._right .search-input {
    border-radius: 40px;
    background: #fafafa;
    width: 100%;
    height: 70px;
    flex-shrink: 0;
    color: #545454;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 30px;
    padding-right: 30px;
    border: none;
    outline: none;
}
.dark .dis-form-wrap-ab ._right .search-input {
    background: #232f47;
    color: #fff;
}
.dis-form-wrap-ab ._right {
    flex: 1;
}
.dis-form-wrap-ab ._right .handler {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.dis-form-wrap-ab ._right .handler .file-input {
    border-radius: var(--padding-m, 16px);
    background: rgb(254 254 254 / 57%);
    display: flex;
    padding: 12px 20px;
    align-items: flex-start;
    gap: 10px;
}
.dark .dis-form-wrap-ab ._right .handler .file-input {
    background: rgba(254, 254, 254, 0.14);
}
.dis-form-wrap-ab ._right .handler .file-input #post-file {
    display: none;
}
.dis-form-wrap-ab ._right .handler .common-btn {
    color: #20234a;
}
.dis-form-wrap-ab ._right .handler .common-btn:hover {
    color: #fff;
}
.dark .dis-form-wrap-ab ._right .handler .common-btn {
    color: #fff;
}
.dark .dis-form-wrap-ab ._right .handler .common-btn:hover {
    color: #20234a;
}

@media only screen and (max-width: 700px) {
    .dis-form-wrap-ab {
        padding: 15px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .dis-form-wrap-ab ._right .search-input {
        height: 50px;
        font-size: 14px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .dis-form-wrap-ab ._left .user-img img {
        width: 50px;
        height: 50px;
    }
    .dis-form-wrap-ab ._right .handler .common-btn {
        padding: 10px 60px;
    }
    .dis-form-wrap-ab ._right .handler .file-input {
        padding: 8px 15px;
    }
}
/* form end  */
/* all-discussion */
.all-discussion {
    max-width: 1320px;
    margin: 0 auto;
}
.all-discussion .item {
    border-radius: 10px;
    background: #eeeeee;
    padding: 40px 70px;
    margin-bottom: 40px;
    margin-left: 10px;
    margin-right: 10px;
    transition: 0.3s;
}
.all-discussion .item:hover {
    box-shadow: 4px 4px 15px 0px #00013352,
        0px 4px 4px 0px rgba(0, 1, 51, 0.068);
    backdrop-filter: blur(5.5px);
}
.dark .all-discussion .item:hover {
    box-shadow: 0px 0px 30px 0px #00ffe167;
    backdrop-filter: blur(7.5px);
}
.dark .all-discussion .item {
    background: var(--color-card-color, #121f36);
}
.all-discussion .item .header {
    display: flex;
    justify-content: space-between;
}

.all-discussion .item .header .user-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.all-discussion .item .header .user-box .img img {
    width: 60px;
    height: 60px;
    background: #d9d9d9;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 50%;
}
.dark .all-discussion .item .header .user-box .img img {
    background: #d9d9d9;
}

.all-discussion .item .header .user-box .user .name {
    color: #545454;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.dark .all-discussion .item .header .user-box .user .name {
    color: #979797;
}
.all-discussion .item .header .user-box .user .date {
    color: #6a6a6a;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.dark .all-discussion .item .header .user-box .user .date {
    color: #6a6a6a;
}
.all-discussion .item .pra-content {
    color: #545454;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: justify;
}
.dark .all-discussion .item .pra-content {
    color: var(--color-text-color-p, #979797);
}
.all-discussion .item .pra-content .__more {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.dark .all-discussion .item .pra-content .__more {
    color: var(--color-brand, #00ffe2);
}
.all-discussion .item .photo-warp {
    text-align: center;
    margin-bottom: 40px;
}
.all-discussion .item .photo-warp {
    aspect-ratio: 16 / 9;
    max-width: 964px;
    max-height: 523px;
    object-fit: cover;
    margin: 40px auto;
}
.all-discussion .item .photo-warp img {
    /* max-width: 964px;
  height: 523px; */
    background: #d9d9d9;
    vertical-align: middle;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.all-discussion .item .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.all-discussion .item .bottom .comment {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dark .all-discussion .item .bottom .comment {
    color: var(--color-brand, #00ffe2);
}
.all-discussion .item .bottom .comment .l-comm {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dark .all-discussion .item .bottom .comment .l-comm {
    color: var(--color-brand, #00ffe2);
}
.all-discussion .item .bottom .res-comment {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.dark .all-discussion .item .bottom .res-comment {
    color: var(--color-text-color, #eee);
}
.all-discussion.details {
    margin-top: 80px;
}

@media only screen and (max-width: 700px) {
    .all-discussion.details {
        margin-top: 30px;
    }

    .all-discussion .item .header .user-box .user .name {
        font-size: 16px;
    }
    .all-discussion .item .header .user-box .user .date {
        font-size: 14px;
    }
    .all-discussion .item .header .user-box .img img {
        width: 50px;
        height: 50px;
    }
    .all-discussion .item {
        padding: 25px 25px;
    }
    .all-discussion .item .pra-content .__more {
        font-size: 15px;
    }
    .all-discussion .item .pra-content {
        font-size: 15px;
    }
    .all-discussion .item .bottom .comment .l-comm {
        font-size: 16px;
    }
    .all-discussion .item .bottom .res-comment {
        font-size: 16px;
    }
    .all-discussion .item .photo-warp {
        margin: 20px auto;
    }
}
@media only screen and (max-width: 400px) {
    .dis-form-wrap-ab {
        gap: 10px;
    }
    .dis-form-wrap-ab ._right .handler .common-btn {
        padding: 6px 30px;
    }
    .dis-form-wrap-ab ._right .handler {
        margin-top: 15px;
    }
    .all-discussion .item .bottom .res-comment {
        font-size: 14px;
    }
    .all-discussion .item .bottom .comment .l-comm {
        font-size: 14px;
    }
    .all-discussion .item .bottom .comment {
        font-size: 15px;
        gap: 4px;
    }

    .all-discussion .item .pra-content {
        margin-top: 20px;
        margin-bottom: 25px;
    }
    .all-discussion .item {
        padding: 20px 15px;
    }
}

/* comment box  */
.dis-comment-box,
.discussion-pagination {
    max-width: 1320px;
    margin: 0 auto;
}
.dis-comment-box .comment-up {
    margin-left: 10px;
    margin-right: 10px;
}
.dis-comment-box .comment-up .head {
    display: flex;
    gap: 12px;
}
.dis-comment-box .comment-up .head .usr-photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background-color: #eee;
    border-radius: 50%;
}
.dis-comment-box .comment-up .head .in-box {
    flex: 1;
}
.dis-comment-box .comment-up .head .in-box textarea {
    border: 0.5px solid #6a6a6a;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    resize: none;
    color: #6a6a6a;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    padding: 10px;
    text-transform: capitalize;
}
.dark .dis-comment-box .comment-up .head .in-box textarea {
    border: 0.5px solid #fff;
    background: #06132d;
    color: #6a6a6a;
}
.dis-comment-box .comment-up .sub-button-box {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.dis-comment-box .comment-up .sub-button-box .common-btn {
    border-radius: 10px;
    color: #20234a;
}
.dis-comment-box .comment-up .sub-button-box .common-btn:hover {
    color: #fff;
}
.dark .dis-comment-box .comment-up .sub-button-box .common-btn {
    color: #fff;
}
.dark .dis-comment-box .comment-up .sub-button-box .common-btn:hover {
    color: #20234a;
}

@media only screen and (max-width: 700px) {
    .dis-comment-box .comment-up .head .usr-photo img {
        width: 50px;
        height: 50px;
    }
    .dis-comment-box .comment-up .head .in-box textarea {
        height: 90px;
    }
    .dis-comment-box .comment-up .sub-button-box {
        margin-top: 20px;
    }
    .dis-comment-box .comment-up .sub-button-box .common-btn {
        padding: 12px 50px;
    }
}

/* dropdown  */
.abs-cus-dp-item .dropdown-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #20234a;
    color: #fff;
}
.dark .abs-cus-dp-item .dropdown-toggle {
    background-color: #fff;
    color: #20234a;
}
.abs-cus-dp-item .dropdown-menu {
    border-radius: 5px;
    background: #fff;
    padding: 6px;
}
.abs-cus-dp-item .dropdown-menu .dropdown-item {
    color: var(--hover-color, var(--hover-color, #19212f));
    font-family: var(--fontFamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 14.4px */
    text-transform: capitalize;
}
.abs-cus-dp-item .dropdown-menu .dropdown-item:active {
    background-color: #e9ecef;
}
.abs-cus-dp-item .dropdown-menu .dropdown-item i {
    font-size: 14px;
    margin-right: 5px;
}
.abs-cus-dp-item .dropdown-toggle::after {
    display: none;
}

/* all comments  */

.all-comments-wrap {
    max-width: 1320px;
    margin: 0 auto;
}
.all-comments-wrap .comments-items {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 60px;
}
.all-comments-wrap .comments-items .comment {
    border-radius: 10px;
    border: 1px solid var(--input, rgba(11, 27, 60, 0.2));
    background: #eeeeee;
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
    padding: 20px 14px;
    display: flex;
    gap: 17px;
    margin-bottom: 40px;
}
.dark .all-comments-wrap .comments-items .comment {
    border: 1px solid var(--input, rgba(11, 27, 60, 0.2));
    background: #19212f;
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
}
.all-comments-wrap .comments-items .comment .__left img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d9d9d9;
}
.all-comments-wrap .comments-items .comment .__right {
    flex: 1;
}
.all-comments-wrap .comments-items .comment .__right .__top {
    display: flex;
    justify-content: space-between;
}
.all-comments-wrap .comments-items .comment .__right .name {
    color: #545454;
    font-family: var(--fontFamily);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 145.455% */
    text-transform: capitalize;
}
.dark .all-comments-wrap .comments-items .comment .__right .name {
    color: #fff;
}
.all-comments-wrap .comments-items .comment .__right .date {
    color: #6a6a6a;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 14px */
    text-transform: capitalize;
    margin-top: 10px;
}
.dark .all-comments-wrap .comments-items .comment .__right .date {
    color: #9f9f9f;
}
.all-comments-wrap .comments-items .comment .__right .__com {
    color: #545454;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
    text-transform: capitalize;
    margin-top: 15px;
}
.dark .all-comments-wrap .comments-items .comment .__right .__com {
    color: #ddd;
}
@media only screen and (max-width: 700px) {
    .all-comments-wrap .comments-items .comment .__right .date {
        font-size: 12px;
        margin-top: 5px;
    }
    .all-comments-wrap .comments-items .comment .__right .__com {
        font-size: 12px;
        margin-top: 10px;
    }
    .all-comments-wrap .comments-items .comment .__right .name {
        font-size: 16px;
    }
    .all-comments-wrap .comments-items .comment .__left img {
        width: 40px;
        height: 40px;
    }
    .all-comments-wrap .comments-items .comment {
        gap: 10px;
    }
}

/* shop  membership shop-membership-buttons */
.shop-membership-buttons .common-btn {
    border-radius: 6px;
    padding: 15px 10px;
    width: 100%;
    text-align: center;
}
.shop-membership-buttons .common-btn.active {
    background: #20234a;
    color: #f1f1f1;
}
.dark .shop-membership-buttons .common-btn.active {
    background: #00ffe2;
    color: #20234a;
    box-shadow: 0px 0px 30px 0px #00ffe167;
    backdrop-filter: blur(7.5px);
}

/* Product categories active buttons  */
.product-categories-list .categories__list--item.active .text {
    color: #20234a;
}
.product-categories-list .categories__list--item.active .item-number {
    background-color: #20234a;
    color: #fff;
}
.dark .product-categories-list .categories__list--item.active .text {
    color: #00ffe2;
}
.dark .product-categories-list .categories__list--item.active {
    border-bottom: none;
}
.dark .product-categories-list .categories__list--item.active .item-number {
    background: #00ffe2;
    box-shadow: 0px 0px 30px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
    color: #20234a;
    border-bottom: none;
}

.add-to-cart-by-now-ab .common-btn {
    padding: 6px 40px;
    border-radius: 0;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 200% */
    text-transform: capitalize;
}
.add-to-cart-by-now-ab .add-to-wish.common-btn {
    padding: 6px 20px;
    margin-right: 20px;
    margin-left: 18px;
}
.add-to-cart-by-now-ab .common-btn.active {
    background: #20234a;
    color: #f1f1f1;
}
.dark .add-to-cart-by-now-ab .common-btn {
    color: #fff;
}
.dark .add-to-cart-by-now-ab .common-btn:hover {
    color: #06132d;
}
.dark .add-to-cart-by-now-ab .common-btn.active {
    color: #06132d;
    background: #00ffe2;
    box-shadow: 0px 0px 30px 0px rgba(0, 255, 226, 0.8);
    backdrop-filter: blur(7.5px);
}
@media only screen and (max-width: 575px) {
    .add-to-cart-by-now-ab .add-to-wish.common-btn {
        margin-right: 6px;
        margin-left: 6px;
    }
    .add-to-cart-by-now-ab .common-btn {
        padding: 6px 25px;
        font-size: 15px;
        line-height: 20px;
    }
}
@media only screen and (max-width: 400px) {
    .add-to-cart-by-now-ab .common-btn {
        padding: 6px 18px !important;
        font-size: 12px;
        font-weight: 700;
        line-height: 20px;
    }
    .add-to-cart-by-now-ab .common-btn.preorder {
        padding: 6px 25px !important;
    }
    .add-to-cart-by-now-ab .common-btn:hover {
        font-weight: 700 !important;
    }
    .add-to-cart-by-now-ab .add-to-wish.common-btn {
        padding: 6px 13px;
        margin: 0 10px;
    }
}
.single__additional-left iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.single__additional-left u {
    text-decoration: underline;
}

/* specefications__list for-shop */
.specefications__list.for-shop {
    max-width: 880px;
    margin: 0 auto;
}
.specefications__list.for-shop li {
    grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
    .specefications__list.for-shop li {
        font-size: 12px;
    }
    .specefications {
        padding: 20px;
    }
    .dark .specefications {
        padding: 20px;
    }
    ul.specefications__list li span {
        font-size: 12px !important;
    }
}
@media only screen and (max-width: 500px) {
    .specefications {
        padding: 0px;
    }
    .dark .specefications {
        padding: 0px;
    }
}

.discussion-wrap {
    display: flex;
    gap: 80px;
}
.discussion-wrap .all-comments-wrap {
    flex: 1;
}
.discussion-wrap .discussion-comment {
    flex: 1;
}
.discussion-wrap .all-comments-wrap .comments-items .comment {
    margin-bottom: 30px;
}
.discussion-wrap .all-comments-wrap .comments-items {
    margin-top: 0px;
}

.discussion-comment-ab {
    flex: 1;
    /* align-self: baseline; */
}
.discussion-comment-ab .boxs-ab {
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    border-radius: 10px;
    border: 1px solid var(--input, rgba(11, 27, 60, 0.2));
    background: #eeeeee;
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
    flex: 1;
    /* align-self: baseline; */
}
.dark .discussion-comment-ab .boxs-ab {
    border: 1px solid var(--input, rgba(11, 27, 60, 0.2));
    background: var(--color-shop-cards, #19212f);
    box-shadow: 0px 0px 20px 2px rgba(32, 35, 74, 0.1);
}
.discussion-comment-ab .boxs-ab label {
    color: #545454;
    font-family: var(--fontFamily);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 100% */
    text-transform: capitalize;
}
.dark .discussion-comment-ab .boxs-ab label {
    color: var(--color-white, #f1f1f1);
}
.discussion-comment-ab .boxs-ab textarea {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px;
    width: 100%;
    background: transparent;
    border-radius: 10px;
    border: 1px solid var(--p, #20234a);
    height: 200px;
    resize: none;
}
.dark .discussion-comment-ab .boxs-ab textarea {
    color: var(--color-disable-h-1-text, #979797);
    border: 1px solid var(--p, #00ffe2);
}
.discussion-comment-ab .boxs-ab .common-btn {
    width: 100%;
    text-align: center;
    border-radius: 10px;
    color: #20234a;
}
.discussion-comment-ab .boxs-ab .common-btn:hover {
    color: #fff;
}
.dark .discussion-comment-ab .boxs-ab .common-btn {
    color: #fff;
}
.dark .discussion-comment-ab .boxs-ab .common-btn:hover {
    color: #20234a;
}
@media only screen and (max-width: 1200px) {
    .discussion-wrap {
        display: flex;
        gap: 40px;
    }
}
@media only screen and (max-width: 992px) {
    .discussion-wrap {
        flex-direction: column;
    }
}
@media only screen and (max-width: 768px) {
    .discussion-comment-ab .boxs-ab {
        padding: 25px;
        gap: 20px;
    }
    .discussion-comment-ab .boxs-ab textarea {
        font-size: 13px;
        height: 150px;
    }
    .discussion-comment-ab .boxs-ab label {
        font-size: 24px;
    }
}
@media only screen and (max-width: 450px) {
    .discussion-comment-ab .boxs-ab {
        padding: 15px;
        gap: 10px;
    }
    .discussion-comment-ab .boxs-ab label {
        font-size: 20px;
    }
}

.breadcrumb .breadcrumb-item a,
.breadcrumb .breadcrumb-item.active {
    color: #69727a;
    text-transform: lowercase;
}

/* checkout page dropdown  */
.items-dp .dropdown-btn-change-text {
    display: flex;
    width: 100%;
    padding: 14px 15px;
    align-items: center;
    gap: 60px;
    border-radius: 10px;
    background: rgba(74, 77, 116, 0.2);
    color: rgb(35 41 61);
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.9px;
    justify-content: space-between;
    color: rgb(35 41 61);
}
.dark .items-dp .dropdown-btn-change-text {
    background: rgba(74, 77, 116, 0.2);
    color: var(--color-white, #f1f1f1);
}

.items-dp .dropdown-btn-change-text::after {
    display: none;
}

.items-dp .dropdown-menu {
    width: 100%;
}
.items-dp .dropdown-menu .list-pay-drop {
    position: relative;
    height: 60px;
    background-color: transparent;
    margin-bottom: 10px;
}
/* .items-dp .dropdown-menu .list-pay-drop .payment-logos {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  background-color: transparent;
} */
.items-dp .dropdown-menu .list-pay-drop .dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    /* background-color: #ac1616; */
    border: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-37%, -15%); */
    opacity: 0;
}
.items-dp .dropdown-menu .list-pay-drop .payment-logos {
    background: transparent;
}
.items-dp .dropdown-menu {
    width: 100%;
    background: rgb(35 41 61);
    padding: 15px;
}
.items-dp .dropdown-menu .list-pay-drop .ab-x {
    color: #000133;
    opacity: 1;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.9px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
}
.items-dp .dropdown-menu .list-pay-drop .ab-x:hover {
    color: #000133;
}
.items-dp .dropdown-menu .list-pay-drop .ab-x:active {
    color: #000133;
    background: #fff;
}
.checkout_subtotal.x {
    padding: 14px 14px !important;
}
.items-dp .dropdown-btn-change-text {
    gap: 0;
}
.order-place-sub-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}
.order-place-sub-btn .common-btn {
    border-radius: 15px;
    color: #000133;
}
.dark .order-place-sub-btn .common-btn {
    color: #fff;
}
.dark .order-place-sub-btn .common-btn:hover {
    color: #000133;
}
@media only screen and (max-width: 768px) {
    .cart__area-right.add-shadow {
        padding: 10px;
    }
    .cart__area-innerright h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .checkout_subtotal .__tx,
    .checkout_total .__tx,
    .items-dp .dropdown-btn-change-text {
        font-size: 14px;
    }
    .order-place-sub-btn {
        margin-top: 30px;
    }
}
@media only screen and (max-width: 576px) {
    .contact__form-wrapper.contact__form-checkout {
        padding: 12px;
    }
    .checkout_subtotal .__tx,
    .checkout_total .__tx,
    .items-dp .dropdown-btn-change-text {
        font-size: 12px;
    }
}

.contact__form-right .accordion-item {
    border-radius: 10px;
    border: 1px solid #000133;
    background: transparent;
    box-shadow: 4px 4px 15px 0px #00013352,
        0px 4px 4px 0px rgba(0, 1, 51, 0.068);
    backdrop-filter: blur(5.5px);
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}
.dark .contact__form-right .accordion-item {
    border: 1px solid var(--p, #00ffe2);
    background: #19212f;
    box-shadow: 0px 0px 30px 0px #12918180;
    backdrop-filter: blur(7.5px);
}
.contact__form-right .accordion-item .accordion-header {
    width: 100%;
}
.contact__form-right .accordion-item .accordion-button {
    color: #000133;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 18px */
    letter-spacing: 0.18px;
    background-color: transparent;
    width: 100%;
    box-shadow: none;
}
.dark .contact__form-right .accordion-item .accordion-button {
    color: #fafafa;
}

.contact__form-right .accordion-item .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}
.contact__form-right .accordion-item .faq-ans {
    color: #000133;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 16.8px */
}
.dark .contact__form-right .accordion-item .faq-ans {
    color: #d9d9d9;
}
@media only screen and (max-width: 992px) {
    .contact__form-inner.new_change-form {
        grid-template-columns: 1fr;
    }
}

.dashboard__header-name.name-ab {
    color: #000133;
    font-family: var(--fontFamily);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.dark .dashboard__header-name.name-ab {
    color: #00ffe2;
}
.dashboard__header-name.role-ab {
    color: #061d35;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.dark .dashboard__header-name.role-ab {
    color: #f0f2f1;
}
.dashboard__header-btn-box {
    gap: 15px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}
.dashboard__header-btn-box .__pp {
    color: #fff;
    font-family: var(--fontFamily);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-radius: 10px;
    background: #061d35;
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
}
.dark .dashboard__header-btn-box .__pp {
    color: #061d35;
    background: var(--p, #00ffe2);
}
.dashboard__header-btn-box .common-btn {
    border-radius: 10px;
    padding: 10px 15px;
}
.dashboard__header-btn-box .common-btn path {
    fill: #061d35;
    transition: 0.3s;
}
.dashboard__header-btn-box .common-btn:hover path {
    fill: #fff;
}
.dark .dashboard__header-btn-box .common-btn path {
    fill: #fff;
}
.dark .dashboard__header-btn-box .common-btn:hover path {
    fill: #061d35;
}

.dashboard__profile-content.home-profile {
    overflow-x: inherit;
}

.dashboard__profile-body .__details {
    color: #061d35;
    font-family: var(--fontFamily);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 19px;
}
.dark .dashboard__profile-body .__details {
    color: #00ffe2;
}

.dashboard__profile-item.abx {
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.dashboard__profile-item .__head {
    color: #061d35;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 0;
}
.dark .dashboard__profile-item .__head {
    color: #fff;
}
.dashboard__profile-item .__res {
    color: #061d35;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.dark .dashboard__profile-item .__res {
    color: #979797;
}

.payment-select {
    transition: all linear 0.3s;
}
.payment-select.bg-info {
    background-color: #20234a !important;
    border: 2px solid #00ffe2;
    color: #fff;
}
.payment-select:hover {
    background-color: #20234a !important;
    color: #fff;
    border: 2px solid #00ffe2;
}
.dark .payment-select.bg-info {
    background-color: #121f36 !important;
    border: 2px solid #00ffe2;
    color: #fff;
}
.dark .payment-select:hover {
    background-color: #121f36 !important;
    color: #fff;
    border: 2px solid #00ffe2;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000133'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000133'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.dark .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ffe2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.dark .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300ffe2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.ab-table-wrap .table thead tr {
    background: #20234a;
    color: #fff;
}
.ab-table-wrap .table thead {
    white-space: nowrap;
}
.ab-table-wrap .table thead tr th {
    padding: 25px 30px;
}
.dark .ab-table-wrap .table thead tr {
    background: rgba(0, 255, 226, 0.25);
    color: #fff;
}
.ab-table-wrap.order .table thead tr th:not(:first-child) {
    text-align: center;
}
.ab-table-wrap.order .table tbody tr td:not(:first-child) {
    text-align: center;
}
.ab-table-wrap.order .table thead tr th:first-child {
    min-width: 285px;
    max-width: 285px;
}
.ab-table-wrap.order .table tbody tr td:first-child {
    min-width: 285px;
    max-width: 285px;
    padding-left: 30px;
}
.ab-table-wrap.order .table tbody tr td {
    padding-top: 15px;
    padding-bottom: 15px;
}
.ab-table-wrap.order .table tbody tr td .product-rp {
    display: flex;
    align-items: center;
}
.ab-table-wrap.order .table tbody tr td .product-rp .img img {
    width: 80px;
    height: 82px;
    object-fit: cover;
    vertical-align: middle;
    background: #d9d9d9;
}
.ab-table-wrap.order .table tbody tr {
    border-bottom: 1px solid rgba(151, 151, 151, 0.5);
}
.ab-table-wrap.order .table tbody tr td .product-rp .__name {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-left: 10px;
}
.dark .ab-table-wrap.order .table tbody tr td .product-rp .__name {
    color: #d9d9d9;
}
.ab-table-wrap.order .table tbody .__pp {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
}
.dark .ab-table-wrap.order .table tbody .__pp {
    color: #00ffe2;
}
.ab-table-wrap.order .table tbody .common-btn {
    padding: 10px 60px;
}

.ab-table-wrap.wallet tbody tr {
    border-bottom: 1px solid rgba(151, 151, 151, 0.5);
}
.ab-table-wrap.wallet tbody tr td {
    color: #19212f;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-left: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
}
.dark .ab-table-wrap.wallet tbody tr td {
    color: #d9d9d9;
}

.ab-table-wrap.wish-list tbody tr td:first-child {
    position: relative;
}
.ab-table-wrap.wish-list tbody tr .delete-list-i {
    position: absolute;
    top: 50%;
    left: 10px;
    color: #20234a;
    transform: translate(0, -50%);
    cursor: pointer;
    /* height: 25px; */
    font-size: 24px;
}
.dark .ab-table-wrap.wish-list tbody tr .delete-list-i {
    color: #fff;
}
.ab-table-wrap.wish-list tbody tr .add-to-cart-btn {
    border-radius: 6px;
    color: #20234a;
    border: 1px solid #20234a;
    box-shadow: 4px 4px 15px 0px #00013352,
        0px 4px 4px 0px rgba(0, 1, 51, 0.068);
    backdrop-filter: blur(5.5px);
    display: inline-flex;
    padding: 10px;
    align-items: flex-start;
    gap: 10px;
    transition: 0.3s;
}
.ab-table-wrap.wish-list tbody tr .add-to-cart-btn:hover {
    background-color: #20234a;
    color: #fff;
}
.dark .ab-table-wrap.wish-list tbody tr .add-to-cart-btn {
    border: 1px solid var(--p, #00ffe2);
    box-shadow: 0px 0px 30px 0px #00ffe167;
    backdrop-filter: blur(7.5px);
    color: #fff;
}
.dark .ab-table-wrap.wish-list tbody tr .add-to-cart-btn:hover {
    background: #00ffe2;
    color: #20234a;
}

.ab-table-wrap.wish-list .table tbody tr td:first-child {
    padding-left: 45px;
}

@media only screen and (max-width: 768px) {
    .ab-table-wrap.order .table tbody tr td {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .ab-table-wrap.wish-list tbody tr .add-to-cart-btn {
        font-size: 10px;
    }
    .ab-table-wrap.wish-list tbody tr .delete-list-i {
        font-size: 16px;
    }
    .ab-table-wrap.order .table tbody tr td .product-rp .__name {
        font-size: 12px;
        font-weight: 600;
    }
    .ab-table-wrap.order .table tbody tr td .product-rp .img img {
        width: 50px;
        height: 50px;
    }
    .ab-table-wrap.order .table tbody .__pp {
        font-size: 13px;
    }
    .ab-table-wrap.wallet tbody tr td {
        font-size: 12px;
    }
}

/* user-order-details */
.u-order-details {
    display: flex;
    gap: 20px;
}
.u-order-details .content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.u-order-details ._left .img img {
    width: 381px;
    height: 312px;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 10px;
    background-color: #eee;
}
.u-order-details ._right .common-btn {
    display: inline-block;
    margin-top: 40px;
    border-radius: 0;
}
.u-order-details .content ._name {
    color: #19212f;
    font-family: var(--fontFamily);
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.dark .u-order-details .content ._name {
    color: #fff;
}
.u-order-details .content .text {
    color: #7f7f7f;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.dark .u-order-details .content .text {
    color: #afafaf;
}
.u-order-details .content .__res {
    color: #19212f;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.dark .u-order-details .content .__res {
    color: var(--w, #fff);
}
.u-order-details .content .__p {
    color: #19212f;
    font-family: var(--fontFamily);
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.dark .u-order-details .content .__p {
    color: var(--p, #00ffe2);
}

.ab-table-wrap.details-p {
    margin-top: 60px;
}
.ab-table-wrap.details-p .table {
    text-align: center;
}
.ab-table-wrap.details-p tbody tr td {
    padding-left: 0;
}
.ab-table-wrap.details-p tbody .common-btn {
    color: #19212f;
    padding: 8px 50px;
}
.ab-table-wrap.details-p tbody .common-btn:hover {
    color: #fff;
}
.dark .ab-table-wrap.details-p tbody .common-btn {
    color: #fff;
}
.dark .ab-table-wrap.details-p tbody .common-btn:hover {
    color: #19212f;
}
.contact__form-field-2 .common-btn {
    color: #20234a;
    font-weight: bold;
}
.contact__form-field-2 .common-btn:hover {
    color: #fff;
}
.dark .contact__form-field-2 .common-btn {
    color: #fff;
}
.dark .contact__form-field-2 .common-btn:hover {
    color: #20234a;
}

@media only screen and (max-width: 1400px) {
    .u-order-details ._left .img img {
        width: 304px;
        height: 259px;
    }
}
@media only screen and (max-width: 992px) {
    .u-order-details .content {
        gap: 10px;
    }
    .u-order-details .content .__p {
        font-size: 24px;
    }
    .u-order-details .content .text {
        font-size: 16px;
    }
    .u-order-details .content .__res {
        font-size: 16px;
    }
    .u-order-details .content ._name {
        font-size: 28px;
    }
}

.renew-membership-wrap {
    max-width: 1320px;
    margin: 120px auto;
    padding: 0 15px;
}

.renew-membership-wrap .content {
    border: 1px solid #20234a;
    box-shadow: 4px 4px 15px 0px #00013352,
        0px 4px 4px 0px rgba(0, 1, 51, 0.068);
    backdrop-filter: blur(5.5px);
    border-radius: 10.7463px;
    padding: 15px;
}
.dark .renew-membership-wrap .content {
    background: #19212f;
    border: 2px solid #00ffe2;
    box-shadow: 0px 0px 30px 2px rgba(0, 255, 226, 0.25);
}
.renew-membership-wrap .__title {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px; /* 119.048% */
    letter-spacing: 2.1px;
    margin-top: 85px;
    text-align: center;
}
.dark .renew-membership-wrap .__title {
    color: #00ffe2;
}
.renew-membership-wrap .__sub-title {
    color: #20234a;
    text-align: center;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px;
    max-width: 732px;
    margin: 15px auto;
    padding: 0 7px;
}
.dark .renew-membership-wrap .__sub-title {
    color: #fff;
}
.renew-membership-wrap .date-month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 60px;
    gap: 40px;
}
.renew-membership-wrap .date-month ._left {
    flex: 1;
}
.renew-membership-wrap .date-month ._right {
    flex: 1;
}
.renew-membership-wrap .date-month label {
    display: block;
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 18px;
}
.dark .renew-membership-wrap .date-month label {
    color: #fff;
}
.renew-membership-wrap .date-month .fields {
    border: 1px solid #20234a;
    box-shadow: 4px 4px 15px 0px #00013352,
        0px 4px 4px 0px rgba(0, 1, 51, 0.068);
    backdrop-filter: blur(5.5px);
    background: transparent;
    border-radius: 10px;
    color: #fff;
    width: 100%;
    padding: 16px;
    color: #20234a;
}
.dark .renew-membership-wrap .date-month .fields {
    box-shadow: 0px 0px 30px 0px #00ffe167;
    backdrop-filter: blur(7.5px);
    border: 1px solid #00ffe2;
    background: transparent;
    color: #fff;
}
.renew-membership-wrap .date-month .fields::placeholder {
    color: #20234a;
}
.dark .renew-membership-wrap .date-month .fields::placeholder {
    color: #fff;
}
.renew-membership-wrap .date-month .fields option {
    color: #000;
}
.renew-membership-wrap .pic-pay-method .__text {
    color: var(--w, #fff);
    font-family: var(--fontFamily);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px; /* 192.308% */
    letter-spacing: 1.3px;
    text-align: center;
    margin-bottom: 40px;
}
.renew-membership-wrap .pic-pay-method .common-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: #20234a;
    margin-top: 60px;
    margin-bottom: 80px;
}
.renew-membership-wrap .pic-pay-method .common-btn:hover {
    color: #fff;
}
.dark .renew-membership-wrap .pic-pay-method .common-btn {
    color: #fff;
}
.dark .renew-membership-wrap .pic-pay-method .common-btn:hover {
    color: #20234a;
}
.renew-membership-wrap .pic-pay-method .field-two-images {
    gap: 20px;
}
.recharge-abx span {
    gap: 20px;
}
.renew-membership-wrap .pic-pay-method .field-two-images span,
.recharge-abx span {
    margin-right: 0;
}
@media only screen and (max-width: 992px) {
    .mt-1 svg {
        width: 100%;
        margin-top: 28px;
    }
    .renew-membership-wrap {
        margin: 70px auto;
    }
    .renew-membership-wrap .__sub-title {
        font-size: 15px;
        margin: 10px auto;
    }
    .renew-membership-wrap .__title {
        font-size: 35px;
        margin-top: 45px;
    }
    .renew-membership-wrap .date-month {
        margin-top: 30px;
        margin-bottom: 45px;
        gap: 20px;
    }
    .renew-membership-wrap .pic-pay-method .__text {
        font-size: 22px;
        margin-bottom: 24px;
        line-height: 35px;
    }
    .renew-membership-wrap .pic-pay-method .common-btn {
        margin-top: 40px;
        margin-bottom: 35px;
    }
}
@media only screen and (max-width: 768px) {
    .u-order-details {
        flex-direction: column;
    }
    .u-order-details ._left .img img {
        width: 254px;
        height: 205px;
    }
}
@media only screen and (max-width: 576px) {
    .renew-membership-wrap .date-month {
        flex-direction: column;
    }
    .renew-membership-wrap .date-month ._right {
        width: 100%;
    }
    .renew-membership-wrap .date-month ._left {
        width: 100%;
    }
}
.field-two-images.add-custom-pay-logo.recharge-abx {
    gap: 20px;
}

.dashboard__profile-content.oder-details-ov-control {
    overflow-x: inherit;
}
.dashboard__profile-content.oder-details-ov-control .dashboard__profile-order {
    overflow-x: inherit;
    min-width: 100%;
}

.shop-page-tab-bar-ab.preorder {
    margin-top: 42px;
    justify-content: flex-end;
}
.progress-bar-wrap-pre .progress {
    background: #d9d9d9;
    position: relative;
    height: 30px;
}
.progress-bar-wrap-pre .progress .progress-bar {
    background-color: #19212f;
}
.progress-bar-wrap-pre .progress .progress-bar .porgressTxt-3k3l {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
.dark .progress-bar-wrap-pre .progress .progress-bar .porgressTxt-3k3l {
    color: #121f36;
}
.dark .progress-bar-wrap-pre .progress .progress-bar {
    background-color: #00ffe2;
}
.progress-bar-wrap-pre .-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.progress-bar-wrap-pre .__title {
    color: #19212f;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.progress-bar-wrap-pre {
    width: 100%;
}
.dark .progress-bar-wrap-pre .__title {
    color: #fff;
}

.pre-ord-cars.cards-wrap-ab .card-item .sub-content {
    margin-top: 40px;
}

/* @media only screen and (min-width: 992px) {
    .pre-ord-cars.cards-wrap-ab .card-main {
        height: 320px;
    }
}

@media only screen and (min-width: 1401px) {
    .pre-ord-cars.cards-wrap-ab .card-main {
        height: 373px;
    }
    .pre-ord-cars.cards-wrap-ab .card-main .card-item {
        min-height: 373px;
    }
}
@media only screen and (max-width: 992px) {
    .pre-ord-cars.cards-wrap-ab .card-main {
        min-height: 400px;
    }
    .pre-ord-cars.cards-wrap-ab .card-item .sub-content {
        margin-top: 20px;
    }
} */

.order-details-main {
    max-width: 1310px;
    padding: 10px;
    margin: 0 auto;
}
.order-details-main .order-details-wrap {
    display: flex;
    gap: 45px;
}
.order-details-main .order-details-wrap .__left-img-box .sub-imgs {
    display: flex;
    gap: 15px;
}

.slider-main-pro {
    position: relative;
}
.slider-main-pro .expected_delivary_text {
    position: absolute;
    bottom: 19%;
    left: 0;
    height: 40px;
    width: 100%;
    background: #00ffe2;
    z-index: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.slider-main-pro .expected_delivary_text p {
    color: #000133;
    line-height: 40px;
    font-family: var(--fontFamily);
    font-weight: 700;
}
.slider-main-pro .cashback-p {
    position: absolute;
    right: 0;
    top: 30px;
    color: var(--color-card-color, #fff);
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    background: #20234a;
    z-index: 1;
    padding: 8px 20px;
}
.dark .slider-main-pro .cashback-p {
    color: #20234a;
    background: #00ffe2;
}
.slider-main-pro .cashback-p::before {
    content: '';
    background: #20234ae6;
    width: 45px;
    position: absolute;
    top: 100%;
    height: 27px;
    -webkit-clip-path: polygon(0 0, 41% 26%, 48% 0);
    clip-path: polygon(0 0, 85% 100%, 100% 0);
    left: 0px;
}
.dark .slider-main-pro .cashback-p::before {
    background: #00ffe2bf;
}

.slider-main-pro .img-view {
    border-radius: 10.746px;
    border: 2px solid #19212f;
    background: #eee;
    box-shadow: 4px 4px 15px 0px #00013352,
        0px 4px 4px 0px rgba(0, 1, 51, 0.068);
    backdrop-filter: blur(5.5px);
    width: 100%;
    height: 540px;
    flex-shrink: 0;
    text-align: center;
}
.dark .slider-main-pro .img-view {
    border: 2px solid #00ffe2;
    background: #19212f;
    box-shadow: 0px 0px 30px 2px rgba(0, 255, 226, 0.25);
}
.slider-main-pro .img-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align: center;
    vertical-align: middle;
    /* background-color: #19212f; */
    border-radius: 10.746px;
}
.slider-main-pro .img-view .slick-list.draggable {
    height: 100%;
}
.slider-main-pro .img-view .slick-track {
    height: 100%;
}
.slider-main-pro .img-lists {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-top: 32px;
}
.slider-main-pro .slider-nav {
    margin-top: 30px;
}
.slider-main-pro .img-list {
    height: 100px;
    padding: 10px;
    border-radius: var(--radius-m, 10px);
    border: 0.25px solid var(--color-brand, #19212f);
    background: var(--color-hover, #eee);
    margin-left: 10px;
}
.dark .slider-main-pro .img-list {
    border: 0.25px solid var(--color-brand, #00ffe2);
    background: var(--color-hover, #19212f);
}
.slider-main-pro .img-list.slick-active.slick-current {
    border: 3px solid #19212f;
}
.dark .slider-main-pro .img-list.slick-active.slick-current {
    border: 3px solid #00ffe2;
}
.slider-main-pro .img-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.slider-main-pro .slick-list.draggable {
    height: 100px;
}
.slick-next:before {
    font-family: var(--fontFamily);
    font-weight: 900 !important;
    color: #19212f !important;
    /* content: '\f061' !important; */
}
.dark .slick-next:before {
    color: #00ffe2 !important;
}
.slick-prev:before {
    font-family: var(--fontFamily);
    font-weight: 900 !important;
    color: #19212f !important;
    /* content: '\f060' !important; */
}
.dark .slick-prev:before {
    color: #00ffe2 !important;
}

.progress-bar-wrap-pre.details {
    margin-top: 40px;
    margin-bottom: 40px;
}

.progress-bar-wrap-pre.details .-box {
    margin-bottom: 20px;
}
.progress-bar-wrap-pre.details .__title {
    font-size: 16px;
}

.add-to-cart-by-now-ab.pre-details {
    margin-bottom: 25px;
}
.add-to-cart-by-now-ab.pre-details .common-btn {
    padding: 7px 55px;
}

@media only screen and (max-width: 768px) {
    .slider-main-pro .img-view {
        height: 390px;
    }
}
@media screen and (max-width: 576px) {
    .imgPreviewItem {
        display: block !important;
    }
    .previewImgPostBtn {
        margin-top: 30px !important;
    }
}
@media only screen and (max-width: 400px) {
    .slider-main-pro .img-view {
        height: 290px;
    }
    .slider-main-pro .expected_delivary_text {
        bottom: 31%;
    }
}

.mobile-version-menu {
    overflow-x: scroll;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.mobile-version-menu ul {
    list-style: none;
    display: flex;
    /* flex-wrap: wrap; */
    gap: 10px;
    align-items: center;
}
.mobile-version-menu ul li {
    display: inherit;
}

.mobile-version-menu .item.common-btn {
    padding: 6px 12px;
    border-radius: 5px;
    border: none;
    border-bottom: 3px solid transparent;
    /* box-shadow: 0px 0px 7px 0px #19212f; */
    width: max-content;
}
.dark .mobile-version-menu .item.common-btn {
    border-bottom: 3px solid transparent;
    box-shadow: 0px 0px 7px 0px #00ffe16b;
}
.mobile-version-menu .item.common-btn.active {
    border-bottom: 3px solid #19212f;
}
.dark .mobile-version-menu .item.common-btn.active {
    border-bottom: 3px solid #00ffe2;
}
/* Customize the scrollbar thumb */
.mobile-version-menu::-webkit-scrollbar-thumb {
    background-color: #061d35; /* color of the thumb */
}
.dark .mobile-version-menu::-webkit-scrollbar-thumb {
    background-color: #00ffe2; /* color of the thumb */
}

/* Customize the scrollbar track */
.mobile-version-menu::-webkit-scrollbar-track {
    background-color: #b2b6be; /* color of the track */
}
.dark .mobile-version-menu::-webkit-scrollbar-track {
    background-color: #19212f; /* color of the track */
}
.mobile-version-show-logout-btn .common-btn {
    padding: 6px 12px;
    border-radius: 5px;
    /* color: #fff; */
}

@media only screen and (max-width: 992px) {
    .dashboard__profile-item.abx .common-btn {
        margin-top: 20px;
    }
}

.mobile-version-show-logout-btn {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
@media only screen and (min-width: 992px) {
    .dashboard__profile-item.abx .common-btn {
        margin-top: 20px;
    }
    .mobile-version-menu,
    .mobile-show-content,
    .mobile-version-show-logout-btn {
        display: none;
    }
}

.check-em-very .common-btn {
    border-radius: 10px;
}
.dark .check-em-very .check-em-txt {
    color: #00ffe2;
}

.input-box-control {
    margin-top: 10px;
    margin-bottom: 10px;
}

.input-control-ibx {
    border-radius: 10px;
    border: 1px solid #20234a;
    background: #fff;
    width: 100%;
    color: #000133 !important;
    font-size: 16px !important;
    padding: 10px 15px;
    margin-top: 5px;
}
.input-control-ibx:focus {
    /* box-shadow: 0px 0px 5px #20234a; */
    background: transparent;
}
.dark .input-control-ibx {
    border: 1px solid rgba(0, 255, 226, 0.31) !important;
    background: #121f36 !important;
    color: #fff !important;
}
.dark .input-control-ibx:focus {
    background: #121f36 !important;
    box-shadow: 0px 0px 3px #00ffe2 !important;
}
.input-control-ibx:-webkit-autofill,
.input-control-ibx:-webkit-autofill:hover,
.input-control-ibx:-webkit-autofill:active,
.input-control-ibx:-webkit-autofill:focus {
    -webkit-text-fill-color: #20234a !important;
    transition: background-color 5000s ease-in-out 0s !important;
}
.dark .input-control-ibx:-webkit-autofill,
.dark .input-control-ibx:-webkit-autofill:hover,
.dark .input-control-ibx:-webkit-autofill:active,
.dark .input-control-ibx:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s !important;
}

@media only screen and (min-width: 992px) {
    .edit_profile_control {
        display: flex;
        gap: 20px;
    }
}

.input-warp-abxi {
}

.input-warp-abxi:focus {
    box-shadow: 0px 0px 5px #20234a;
    background: transparent;
}
.dark .input-warp-abxi {
    border: 1px solid #00ffe2 !important;
}
.dark .input-warp-abxi:focus {
    background: var(--color-shop-cards, #19212f) !important;
    box-shadow: 0px 0px 6px #00ffe2 !important;
}

.login__area-field input.input-control-ibx {
    border: 1px solid #ccc6c6;
    background-color: transparent;
}
.dark .login__area-field input.input-control-ibx {
    background-color: #121f36 !important;
}

.reset-pass-abxi {
    color: #06132d;
}
.dark .reset-pass-abxi {
    color: #00ffe2;
}

.custom-padding-for-input .input-control-ibx {
    padding: 16px;
}
.custom-padding-for-input .field-icon-profile {
    margin-top: -38px;
}

/* license-page */
.license-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px;
}
.license-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
}
.license-page .__text {
    color: #19212f;
    font-family: var(--fontFamily);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.dark .license-page .__text {
    color: #00ffe2;
}

.license-page .__sub-text {
    color: #19212f;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 30px;
}
.dark .license-page .__sub-text {
    color: #eee;
}
.license-page .__items {
    margin-top: 30px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.license-page .__items a {
    color: #19212f;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.dark .license-page .__items a {
    color: #fff;
}
.license-page .__items a .i {
    margin-right: 10px;
}
@media only screen and (max-width: 768px) {
    .license-wrap {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .license-page .__sub-text {
        margin-top: 20px;
    }
    .license-page .__items {
        margin-top: 20px;
        gap: 15px;
    }
}
/* .single__additional-left img {
  width: 100% !important;
} */

.side-i-style-oxiz {
    margin-right: 14px;
    margin-left: 10px;
}
.das-nav-sidebar-akkjlw a {
    color: #20234a !important;
}
.das-nav-sidebar-akkjlw a.active {
    color: #fff !important;
}
.dark .das-nav-sidebar-akkjlw a {
    color: #fff !important;
}
.dark .das-nav-sidebar-akkjlw a.active {
    color: #20234a !important;
}

.das-nav-sidebar-akkjlw .nav-link .dashboard__main-count {
    color: #fff;
    background-color: #20234a;
}
.dark .das-nav-sidebar-akkjlw .nav-link .dashboard__main-count {
    color: #20234a;
    background-color: #00ffe2;
}
.das-nav-sidebar-akkjlw .nav-link.active .dashboard__main-count {
    background-color: #fff;
    color: #20234a;
}
.dark .das-nav-sidebar-akkjlw .nav-link.active .dashboard__main-count {
    background-color: #20234a;
    color: #00ffe2;
}

.sidebar-mobile-control-kjslf {
    display: none !important;
    margin-top: 13px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 992px) {
    .sidebar-mobile-control-kjslf {
        display: none !important;
        margin-top: 50px !important;
    }
}

.mobile-div-control-sdflk {
    display: none;
}

@media only screen and (max-width: 650px) {
    .mobile-div-control-sdflk {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .d-none-in650px {
        display: none !important;
    }
    .nav__right.d-flex.align-items-center,
    .top-nav-bar-all-elements-wrap {
        width: 100%;
    }
    .new-show-only-mobile-sdxec {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 12px;
    }
    .show-mobile-icons-asdfjk {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        font-size: 15px;
        margin-top: 12px;
    }
}

.cards-wrap-ab.membership-product-ab {
    grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 1200px) {
    .cards-wrap-ab.membership-product-ab {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 576px) {
    .cards-wrap-ab.membership-product-ab {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* some extra css code added now */

.allCategoris {
    position: relative !important;
}
#result-wrap {
    background: #fff;
    border-radius: 30px;
    padding-bottom: 40px;
    display: none;
    margin-bottom: 50px;
    position: absolute;
    z-index: 99;
    top: 80px;
    left: 0;
    width: 100%;
    border-top: 1px solid #121f36;
    border-left: 1px solid #121f36;
    border-right: 1px solid #121f36;
    border-bottom: 1px solid #121f36;
}
.dark #result-wrap {
    background: #121f36;
    border-left: 1px solid #00ffe2;
    border-right: 1px solid #00ffe2;
    border-bottom: 1px solid #00ffe2;
    border-top: 1px solid #00ffe2;
}
#result-wrap .items {
    padding: 40px 30px 10px;
}
#result-wrap .items .item {
    border-bottom: 1px solid gray;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
#result-wrap .items .item .img {
    width: 40px;
}
#result-wrap .items .item .img img {
    width: 100%;
}

.hello .new-text {
    z-index: 9 !important;
}

/* about section */
.about__item img {
    width: 150px !important;
}
.about__item .about__img {
    width: 100%;
}

.popup__login input:-webkit-autofill,
.popup__login input:-webkit-autofill:hover,
.popup__login input:-webkit-autofill:focus {
    /* border: 1px solid green; */
    -webkit-text-fill-color: rgb(0, 0, 0) !important;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    /* transition: background-color 5000s ease-in-out 0s; */
}
.dark .popup__login input:-webkit-autofill,
.dark .popup__login input:-webkit-autofill:hover,
.dark .popup__login input:-webkit-autofill:focus {
    /* border: 1px solid green; */
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: 0 0 0px 1000px #19212f inset !important;
    /* transition: background-color 5000s ease-in-out 0s; */
}
.single__additional-content {
    font-size: 16px;
    overflow: auto;
}
.single__additional-content h1 {
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
.single__additional-content h2 {
    display: block;
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
.single__additional-content h3 {
    display: block;
    font-size: 1.17em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
.single__additional-content h4 {
    display: block;
    font-size: 1em;
    margin-top: 1.33em;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
.single__additional-content h5 {
    display: block;
    font-size: 0.83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
.single__additional-content h6 {
    display: block;
    font-size: 0.67em;
    margin-top: 2.33em;
    margin-bottom: 2.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
.single__additional-content p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-size: 1.4em;
}
/* .single__additional-content img {
  max-width: 100%;
  vertical-align: middle;
} */
.dark .single__additional-content ul > *,
.dark .single__additional-content li > * {
    color: #fff !important;
}
.dark .single__additional-content table {
    color: #fff !important;
}
.single__additional-content table tr,
.single__additional-content table td {
    border: 1px solid black;
}
.dark .single__additional-content table tr,
.dark .single__additional-content table td {
    border: 1px solid #fff;
}

/* new css add */

.icon i {
    color: #00ffe2;
    font-size: 25px;
    position: absolute;
    top: 15px;
}
.mobile_info_open {
    background: #06132d !important;
}
.mobile_info_open .nav__item a {
    color: #00ffe2 !important;
}

.open-mobile-menu {
    color: #121f36;
}
/* .fancybox__content {
  max-width: 679.975px !important;
  height: 254.141px;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.fancybox__content img {
  width: 100% !important;
} */

@media only screen and (max-width: 1200px) {
    .single__additional-content img {
        width: 100% !important;
    }
}

/* responsive  */
@media screen and (max-width: 425px) {
    .ftoggle-password {
        margin-top: -30px !important;
    }
    .field-icon {
        margin-top: -30px !important;
    }
}
@media screen and (max-width: 375px) {
    .search-input {
        width: 95% !important;
    }
    .imgInputFild {
        width: 95% !important;
    }
    .fancybox__content {
        max-width: 200px !important;
        margin: 0 auto;
        transform: none;
        position: absolute !important;
        top: 130px !important;
        text-align: center;
    }
    .fancybox__content img {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .custom__area-item {
        flex-wrap: wrap;
        /* justify-content: center;
        text-align: center; */
        margin-bottom: 20px;
    }

    .custom__area-item {
        display: block;
        align-items: center;
        margin-bottom: 30px;
    }
    .custom__area-thumb {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }
}
@media screen and (max-width: 768px) {
    .hovercart {
        width: 610px !important;
        left: -40px !important;
    }
    .hovercart {
        width: 525px !important;
        left: -84px !important;
    }
}
@media screen and (max-width: 576px) {
    .hovercart {
        width: 480px !important;
        left: -190px !important;
    }
    .hovercart {
        width: 430px !important;
        left: -206px !important;
    }
}
@media screen and (max-width: 425px) {
    .hovercart {
        width: 300px !important;
        left: -141px !important;
        padding-left: 30px !important;
    }
    .newhovercart {
        width: 350px !important;
        left: -128px !important;
    }
    .popup__register {
        margin-top: 40px !important;
        position: fixed;
        top: 10% !important;
        transform: translateY(-10%) !important;
        left: 0;
        z-index: 999999;
        right: 0;
        display: none;
    }
    .popup__login {
        margin-top: 40px !important;
        position: fixed;
        top: 10% !important;
        transform: translateY(-10%) !important;
        left: 0;
        z-index: 999999;
        right: 0;
        display: none;
    }
}
@media screen and (max-width: 375px) {
    /* .hovercart {
    width: 300px !important;
    left: -100px !important;
    padding-left: 30px !important;
  } */
    /* .newhovercart {
    width: 350px !important;
    left: -167px !important;
  } */
}

.nav__item .ms_submenu li a {
    font-size: 14px !important;
}
.nav__item .ms_submenu {
    margin-left: 15px !important;
}

.fancybox__viewport {
    max-width: 100% !important;
}

/* .threeDotIcon{
    display: flex;
    justify-content: flex-end;
} */
.newReplyBtn {
    display: flex;
    justify-content: flex-end;
    background: none;
    color: #00ffe2;
    font-size: 18px;
    gap: 10px;
    align-items: center;
}
.replyNew {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.messages {
    margin-top: 10px;
}

.launchImg {
    width: 35px;
    margin: 0 auto;
}
.launchImg img {
    width: 100%;
}
.peroder {
    color: #000133 !important;
}
.padding-extra {
    padding: 12px 40px !important;
}

.result-wrap {
    border: 1px solid #00ffe2;
    box-shadow: 0px 0px 10px 2px rgba(32, 35, 74, 0.25);
    backdrop-filter: blur(10px);
}
.dark .result-wrap {
    box-shadow: 5px 0px 30px 0px rgba(0, 255, 226, 0.2);
    background: linear-gradient(
        111deg,
        #06132d 0%,
        rgba(7, 21, 50, 0.35) 101.11%
    ) !important;
}

.formDivTgl {
    height: 100%;
    transition: all 0.3s linear;
    overflow: hidden;
}

.formDivTgl.actives {
    height: 150px;
    overflow: hidden;
}

.form-div-control-de3dq {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    position: absolute;
    bottom: -100px;
    transition: all 0.3s linear;

    width: 100%;
}
.form-div-control-de3dq .common-btn {
    display: inline-block;
}

@media screen and (min-width: 900px) {
    .grids-5-products {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (min-width: 1100px) {
    .grids-5-products {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (min-width: 1500px) {
    .grids-5-products {
        grid-template-columns: repeat(5, 1fr);
    }
}

.card-item {
    position: relative;
}
.pp-badge-1 {
    color: #090b26;
    text-align: right;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: #00ffe2;
    position: absolute;
    left: 0;
    top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    min-height: 36px;
    flex-shrink: 0;
}
.pp-badge-2 {
    color: #090b26;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background: #00ffe2;
    position: absolute;
    left: 0;
    top: 87px;
    width: 122px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    flex-shrink: 0;
}

/* dropdown name checkout page payments name  */
.list-pay-drop__name {
    /* color: #20234a; */
    font-family: var(--fontFamily);
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.05px;
}

/* new dissussion page start  */
#dis_form {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
    padding: 40px;
    border-radius: 10px;
    background: #f0f7f7;
}
.dark #dis_form {
    background: #121f36;
}

#dis_form .left img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

#dis_form .right {
    flex: 1;
}
#dis_form .right .inp {
    border-radius: 40px;
    background: var(--inputBgLight);
    color: #979797;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 24px 30px;
    width: 100%;
    border: none;
    outline: none;
}
.dark #dis_form .right .inp {
    background: var(--inputBg);
}
#dis_form .right .sub-bx {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#dis_form .right .img-select {
    display: flex;
    padding: 12px 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    background: rgba(87, 87, 87, 0.14);
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}
.dark #dis_form .right .img-select {
    color: #00ffe2;
}

@media screen and (max-width: 550px) {
    #dis_form {
        gap: 6px;
        margin-bottom: 30px;
        padding: 10px;
    }
    #dis_form .left img {
        width: 45px;
        height: 45px;
    }
    #dis_form .right .inp {
        font-size: 14px;
        padding: 12px 15px;
    }
    #dis_form .right .img-select {
        padding: 10px 16px;
        gap: 7px;
        font-size: 14px;
    }
}

/* dis_list_box  */
#dis_list_box {
    border-radius: 10px;
    border: 0.5px solid #232f47;
    background: #f0f7f7;
}
.dark #dis_list_box {
    border: 0.5px solid #00ffe273;
    background: #121f36;
}

.list-lx {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 0.5px solid #20234a;
}
.dark .list-lx {
    border-bottom: 0.5px solid #00ffe273;
}

.list-lx__user {
    padding-left: 40px;
    padding-right: 40px;
}
.list-lx__user_profile .img {
    border-radius: 50%;
    object-fit: cover;
    width: 60px;
    height: 60px;
}

.list-lx__user_info .name {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.dark .list-lx__user_info .name {
    color: #fff;
}
.list-lx__user_info .time-d {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-top: 6px;
}
.dark .list-lx__user_info .time-d {
    color: #979797;
}

.list-lx__sortContent {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
}
.dark .list-lx__sortContent {
    color: #cecece;
}
.list-lx__user {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}

.list-lx__user .left {
    display: flex;
    align-items: center;
    gap: 34px;
}

.list-lx__comments {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
}

.list-lx .right .ibx2ic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.list-lx__comments_link {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.dark .list-lx__comments_link {
    color: #fff;
}
.list-lx .right .dropdown-menu {
    border: 0.5px solid #20234a;
    background: #fff;
}
.dark .list-lx .right .dropdown-menu {
    border: 0.5px solid #00ffe273;
    background: #121f36;
}
.list-lx .right .dropdown-menu .dropdown-item:hover {
    background: #ddd;
}
.dark .list-lx .right .dropdown-menu .dropdown-item:hover {
    background: #06132d;
}

@media screen and (max-width: 550px) {
    .list-lx {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .list-lx__sortContent {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .list-lx__user {
        padding-left: 10px;
        padding-right: 10px;
    }
    .list-lx__user .left {
        gap: 10px;
    }
    .list-lx__user_profile .img {
        width: 35px;
        height: 35px;
    }
    .list-lx__user_info .name {
        font-size: 16px;
    }
    .list-lx__user_info .time-d {
        font-size: 14px;
        margin-top: 4px;
    }
    .list-lx .right .ibx2ic {
        width: 20px;
        height: 20px;
    }
    .list-lx__comments {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* pagination  */
#paginated {
    padding: 40px;
}
#paginated .boxes {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    gap: 27px;
}

#paginated .boxes .page-ii {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 0.5px solid #20234a;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all linear 0.3s;
}
.dark #paginated .boxes .page-ii {
    color: #fff;
    border: 0.5px solid #fff;
}
#paginated .boxes .page-ii.active {
    color: #fff;
    border: 0.5px solid #20234a;
    background: #20234a;
}
.dark #paginated .boxes .page-ii.active {
    color: #070c1f;
    border: 0.5px solid #00ffe2;
    background: #00ffe2;
}
#paginated .boxes .page-ii:hover {
    color: #fff;
    border: 0.5px solid #20234a;
    background: #20234a;
}
.dark #paginated .boxes .page-ii:hover {
    color: #070c1f;
    border: 0.5px solid #00ffe2;
    background: #00ffe2;
}

.dis-page {
    margin-top: 60px;
    margin-bottom: 60px;
}

@media screen and (max-width: 550px) {
    .dis-page {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    #paginated .boxes .page-ii {
        font-size: 14px;
        width: 30px;
        height: 30px;
    }
    #paginated .boxes {
        gap: 10px;
    }
    #paginated {
        padding: 10px;
    }
}

/* details page  */

/* discussion details  */

.dds__wrap {
    display: inline-flex;
    padding: 40px;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
    border: 1px solid #121f36;
    background: transparent;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 100px;
}
.dark .dds__wrap {
    border: 1px solid var(--storke, rgba(0, 255, 226, 0.25));
    background: #121f36;
}

.dds__left {
    display: flex;

    flex: 1;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-right: 1px solid #121f36;
}
.dark .dds__left {
    border-right: 1px solid rgba(0, 255, 226, 0.25);
}

.dds__subTexts {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.dark .dds__subTexts {
    color: #cecece;
}

.dds__d-img .img {
    height: 350px;
    align-self: stretch;
    border-radius: 20px;
    width: 100%;
}

/* dis user */
.dds__u {
    display: flex;
    align-items: flex-start;
    gap: 29px;
}

.dds__u-img .img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.dds__u-info_name {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 0;
}
.dark .dds__u-info_name {
    color: #fff;
}

.dds__u-info_time {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 0;
    margin-top: 6px;
}
.dark .dds__u-info_time {
    color: #979797;
}

.dds__mind {
    border-radius: 20px;
    background: transparent;
    padding: 30px;
    align-self: stretch;
    border: 1px solid #06132d;
}
.dark .dds__mind {
    background: #06132d;
}

.dds__mind-inp .inp {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
}
.dark .dds__mind-inp .inp {
    color: #bebebe;
}

.dds__mind-sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 50px; */
}
.dds__mind-sub .image-up {
    background: transparent;
    border: none;
    outline: none;
    color: #121f36;
    font-size: 30px;
}
.dark .image-up {
    color: #bebebe;
}

/* dds__comments */
.dds__comments {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.dds__comments .dds_c-right {
    flex: 1;
}
.dds__c-title {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.dark .dds__c-title {
    color: #fff;
}

.dds-c-count {
    color: #fff;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    display: flex;
    width: 30px;
    height: 30px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    background: #545454;
}

/* dds_c-list */
.dds_c-list {
    display: flex;
    gap: 10px;
}

.dds_c-left .img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.dds_c-names {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 1;
}
.dds_c-names-name {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.dark .dds_c-names-name {
    color: #bebebe;
}
.dds_c-names-time {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: lowercase;
}
.dark .dds_c-names-time {
    color: #bebebe;
}

.dds-c-right-replay-tx {
    color: #121f36;
    background: transparent;
    border: 1px solid #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.dark .dds-c-right-replay-tx {
    color: #cecece;
    background: #06132d;
}
.dds-c-right-replay-tx > p {
    margin-bottom: 0;
}
.dds-c-replay-img .img {
    border-radius: 20px;
    height: 250px;
    align-self: stretch;
    width: 100%;
    object-fit: contain;
    margin-top: 10px;
}
.dds-c_replay-btn {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    background: transparent;
    outline: none;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.dark .dds-c_replay-btn {
    color: #cecece;
}

.dds-c_replay-btn .fa-arrow-turn-up {
    transform: rotate(-90deg);
}
/* dds sm  */
.dds__mind.sm {
    padding: 20px;
    display: none;
}
.dds__mind.sm .dds__mind-sub {
    /* margin-top: 30px; */
}
.dds__mind.sm .dds__mind-inp .inp {
    font-size: 16px;
}
.dds__mind.sm .dds__mind-sub .image-up {
    font-size: 20px;
}

.dds-replay-lists {
    margin-top: 30px;
}

.dds-replay-uu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dds-reply-uname {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}
.dark .dds-reply-uname {
    color: #cecece;
}

/* dds right  */
.dds__right {
    width: 100%;
    max-width: 445px;
}

.dds__right_ubx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 0.5px solid #121f36;
}
.dark .dds__right_ubx {
    border-bottom: 0.5px solid #00ffe2;
}

.dds__right_ubx-name {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 0;
}
.dark .dds__right_ubx-name {
    color: #bababa;
}

.dds__right_ubx-icon {
    font-size: 20px;
    color: #121f36;
}
.dark .dds__right_ubx-icon {
    color: #fff;
}

.common-dp .actonBtn {
    background: transparent;
    border: none;
    color: #121f36;
}
.dark .common-dp .actonBtn {
    color: #fff;
}
.common-dp .dropdown-menu {
    border: 0.5px solid #121f36;
    background: #fff;
}
.dark .common-dp .dropdown-menu {
    border: 0.5px solid #00ffe273;
    background: #121f36;
}
.common-dp .dropdown-menu .dropdown-item {
    color: #121f36;
}
.dark .common-dp .dropdown-menu .dropdown-item {
    color: #fff;
}
.dark .common-dp .dropdown-menu .dropdown-item:hover {
    background: #06132d;
}

.dds-us-info-bx {
    margin-top: 30px;
}

.dds-us-info-bx .table td {
    background: transparent;
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.dark .dds-us-info-bx .table td {
    color: #bababa;
}
.dds-us-info-bx .table tr {
    border-style: hidden;
}
@media screen and (max-width: 1399px) {
    .dds__right {
        max-width: 345px;
    }
}
@media screen and (max-width: 1199px) {
    .dds__right {
        max-width: 280px;
    }
    .dds__wrap {
        padding: 15px;
        margin-top: 60px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 991px) {
    .dds__right {
        max-width: 100%;
    }
    .dds__wrap {
        flex-direction: column;
    }

    .dark .dds__left,
    .dds__left {
        border-right: none;
        padding: 0;
    }
}
@media screen and (max-width: 550px) {
    .dds__u-info_time {
        font-size: 14px;
        margin-top: 4px;
    }
    .dds__u-info_name {
        font-size: 16px;
    }
    .dds__u-img .img {
        width: 45px;
        height: 46px;
    }
    .dds__u {
        gap: 10px;
    }
    .dds__subTexts {
        font-size: 14px;
    }
    .dds__d-img .img {
        height: 250px;
    }
    .dds__mind {
        border-radius: 15px;
        padding: 15px;
    }
    .dds__mind-inp .inp {
        font-size: 16px;
    }
    .dds__mind-sub {
        margin-top: 30px;
    }
    .dds__mind-sub .image-up {
        font-size: 20px;
    }
    .dds__c-title {
        font-size: 16px;
        gap: 15px;
        margin-top: 10px;
    }
    .dds-c-count {
        font-size: 12px;
        width: 25px;
        height: 25px;
        padding: 0px;
    }
    .dds_c-left .img {
        width: 35px;
        height: 35px;
    }
    .dds_c-names {
        gap: 10px;
    }
    .dds_c-names-name {
        font-size: 16px;
    }
    .dds_c-names-time {
        font-size: 12px;
    }
    .dds-c-right-replay-tx {
        font-size: 14px;
        padding: 15px;
        border-radius: 15px;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    .dds-c_replay-btn {
        font-size: 14px;
        gap: 11px;
        margin-bottom: 15px;
    }
    .dds__mind.sm {
        padding: 10px;
        border-radius: 10px;
    }
    .dds__mind.sm .dds__mind-inp .inp {
        font-size: 14px;
    }
    .dds__mind.sm .dds__mind-sub {
        margin-top: 20px;
    }
    .dds__mind.sm .dds__mind-sub .image-up {
        font-size: 16px;
    }

    .dds-reply-uname {
        font-size: 14px;
    }
    .dds__right_ubx {
        padding-bottom: 8px;
    }
    .dds__right_ubx-name {
        font-size: 16px;
    }
    .dds__right_ubx-icon {
        font-size: 15px;
    }
    .dds-us-info-bx .table td {
        font-size: 14px;
    }

    .dds-us-info-bx {
        margin-top: 15px;
    }
}

/* preorder cards  */
.preorder-page-wraped {
    margin-top: 100px;
    margin-bottom: 100px;
}
.head-kk3d {
    color: #fff;
    text-align: center;
    font-family: var(--fontFamily);
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-transform: capitalize;
    margin-top: 30px;
}

.pre-cards-3cd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pre-card-ci {
    border-radius: 12px;
    border: 1px solid #121f36;
    background: #fff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 30px;
}
.dark .pre-card-ci {
    border: 1px solid rgba(0, 255, 226, 0.25);
    background: #121f36;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.pre-card-ci-stps {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 48px */
}
.dark .pre-card-ci-stps {
    color: #00ffe2;
}

.pre-card-ci-sub-stps {
    color: #121f36d1;
    font-family: var(--fontFamily);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.dark .pre-card-ci-sub-stps {
    color: #fff;
}

.pre-card-ci-pra {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.dark .pre-card-ci-pra {
    color: #cecfd3;
}
@media screen and (max-width: 1199px) {
    .pre-card-ci {
        padding: 15px;
    }
    .pre-card-ci-stps {
        font-size: 24px;
        line-height: 120%;
    }
    .pre-card-ci-sub-stps {
        line-height: 120%;
        font-size: 16px;
    }
    .pre-card-ci-pra {
        font-size: 13px;
    }
    .head-kk3d {
        font-size: 40px;
        line-height: 120%;
        margin-top: 20px;
    }
    .preorder-page-wraped {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width: 767px) {
    .pre-cards-3cd {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }
}
@media screen and (max-width: 500px) {
    .pre-cards-3cd {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px;
    }
}

/* dollarcards  */
.dollar-package-page {
    margin-top: 100px;
    margin-bottom: 100px;
}
.dollar-packages-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dpack-items {
    border-radius: 20px;
    border: 1px solid #121f36;
    background: #fff;
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.dark .dpack-items {
    border: 1px solid rgba(0, 255, 226, 0.25);
    background: #121f36;
}
.dpack-items > * {
    margin: 0;
}

.dpack-items-ppp {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.dark .dpack-items-ppp {
    color: #fff;
}
.dpack-items-ppp .tx-sm {
    font-family: var(--fontFamily);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-left: 10px;
}

.dpack-items-sub-txt {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.dark .dpack-items-sub-txt {
    color: #cecece;
}

.dpack-items-pp-cal {
    border-radius: 10px;
    background: #06132d;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    color: #fff;
    font-family: var(--fontFamily);
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 130.6%;
    text-transform: capitalize;
}

.dpack-items-nm {
    font-size: 16px;
    font-weight: 600;
    margin-right: 5px;
}

.dpack-lists {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    list-style: none;
    padding: 0;
}

.dpack-list-item {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130.6%; /* 20.896px */
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dark .dpack-list-item {
    color: #cecece;
}
.dpack-list-item .fa-circle {
    font-size: 6px;
}
.dpack-list-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
@media screen and (max-width: 1199px) {
    .dollar-package-page {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .dpack-items {
        border-radius: 16px;
        padding: 15px;
        gap: 10px;
    }
    .dpack-items-ppp {
        font-size: 26px;
    }
    .dpack-items-ppp .tx-sm {
        font-size: 16px;
        margin-left: 3px;
    }
    .dpack-items-sub-txt {
        font-size: 14px;
    }
    .dpack-items-pp-cal {
        font-size: 18px;
    }
    .dpack-items-nm {
        font-size: 13px;
        margin-right: 3px;
    }
    .dpack-lists {
        gap: 8px;
    }
    .dpack-list-item {
        font-size: 13px;
    }
    .dollar-packages-wrap {
        gap: 15px;
    }
}

@media screen and (max-width: 991px) {
    .dollar-packages-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 767px) {
    .dollar-packages-wrap {
        grid-template-columns: 1fr;
    }
}

#paginated .boxes.center {
    justify-content: center;
}

.blog-details {
    color: #fff;
    margin-bottom: 36px;
}
.blog-details__images-img {
    height: 384px;
    /* margin-bottom: 30px; */
    width: 100%;
    object-fit: cover;
}
.blog-details__images {
    position: relative;
}

.blog-details__info-tag,
.bc-three-image-tag {
    color: #19212f;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    text-transform: uppercase;
    position: absolute;
    right: 18px;
    top: 22px;
    border-radius: var(--Padding-xs, 4px);
    background: var(--P, #00ffe2);
    display: flex;
    padding: 5px var(--Padding-mm, 12px);
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.blog-details__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.dark .blog-details__info {
    color: #fff;
}
.bc-card-wp-23 {
    padding: 30px;
    background: transparent;
    border: 1px solid #121f36;
}
.dark .bc-card-wp-23 {
    background: #121f36;
}
.blog-details__heading {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-top: 24px;
    margin-bottom: 24px;
    transition: 0.3s;
}
.dark .blog-details__heading {
    color: #00ffe2;
}
.dark .blog-details__heading:hover {
    color: #fff;
}

.blog-details__paragraph {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 12px;
}
.dark .blog-details__paragraph {
    color: #cecfd3;
}

.blog-details__read-more-btn {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    letter-spacing: 0.64px;
    transition: 0.3s;
    text-transform: capitalize;
}
.dark .blog-details__read-more-btn:hover {
    color: #00ffe2 !important;
}

.blog-card__image {
    height: 281px;
    position: relative;
}

.blog-details__heading.sm {
    font-size: 24px;
    margin: 12px 0;
}
.blog-details__paragraph.sm {
    font-size: 14px;
    margin-bottom: 8px;
}

/* search-card */
.search-card {
    border-radius: 10px;
    background: transparent;
    border: 1px solid #121f36;
    backdrop-filter: blur(21px);
    color: #121f36;
    display: flex;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}
.dark .search-card {
    background: #121f36;
    backdrop-filter: blur(21px);
    color: #fff;
}

.search-card__heading {
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 0;
}

.search-card__form {
    height: 40px;
    border-radius: 10px;
    border: 1px solid #121f36;
    width: 100%;
    display: flex;
    align-items: center;
}
.dark .search-card__form {
    border: 1px solid rgba(0, 255, 226, 0.25);
    background: #121f36;
}

.search-card__form-input {
    background-color: transparent;
    border: none;
    outline: none;
    padding-left: 10px;
    font-size: 16px;
    color: #121f36;
    width: 100%;
}
.dark .search-card__form-input {
    color: #fff;
}

.search-card__form-submit {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    gap: 8.672px;
    border-radius: 33px;
    background: #121f36;
    font-size: 14px;
    flex-shrink: 0;
    border: none;
    margin-right: 5px;
    outline: none;
    color: #fff;
}
.dark .search-card__form-submit {
    background: #00ffe2;
    color: #121f36;
}

/* search end  */

/* sc-card  */
.sc-card {
    border-radius: 10px;
    background: transparent;
    backdrop-filter: blur(21px);
    margin-top: 30px;
    border: 1px solid #121f36;
}
.dark .sc-card {
    background: #121f36;
}

.sc-card__heading {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    padding: 30px;
    border-bottom: 1px solid #121f36;
}
.dark .sc-card__heading {
    color: #fff;
    border-bottom: 1px solid rgba(0, 255, 226, 0.25);
}

.sc-card-lists {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 15px;
    list-style: none;
}

.sc-card-lists-items-image-img {
    border-radius: 6px;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    object-fit: cover;
}

.sc-card-lists-items-title {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    transition: 0.3s;
}
.dark .sc-card-lists-items-title {
    color: #fff;
}
.sc-card-lists-items-title:hover {
    color: #00ffe2;
}

.sc-card-lists-items {
    display: flex;
    gap: 15px;
}

.sc-card-lists-items-date {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 15px;
}
.dark .sc-card-lists-items-date {
    color: #cecfd3;
}

/* categorys  */
/* lf-group__btn */
.lf-group__btn {
    width: 100%;
    color: #121f36;
    text-align: center;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dark .lf-group__btn {
    color: #fff;
}
.dark .lf-group__btn.active {
    border-bottom: none;
}

.lf-group__btn .countxi {
    display: flex;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #121f36;
    font-size: 12px;
    color: #fff;
    transition: 0.3s;
}
.dark .lf-group__btn .countxi {
    background: var(--W, #fff);
    color: #121f36;
}

.lf-group__btn:hover {
    color: #121f36;
}
.dark .lf-group__btn:hover {
    color: #00ffe2;
}
.lf-group__btn:hover .countxi {
    background: #121f36;
}
.dark .lf-group__btn:hover .countxi {
    background: #00ffe2;
}

@media screen and (max-width: 550px) {
    .blog-details__heading {
        margin-top: 18px;
        margin-bottom: 18px;
        font-size: 30px;
    }
    .bc-card-wp-23,
    .search-card,
    .sc-card__heading,
    .sc-card-lists {
        padding: 20px;
    }
}

/* blog details  */
.bd-head-c3 {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}
.dark .bd-head-c3 {
    color: #fff;
}
.bd-head-c3.sm {
    font-size: 30px;
}

.bd-sub-tx-c3 {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}
.dark .bd-sub-tx-c3 {
    color: #b9b9bf;
}

/* tages-wrap-ce3 */
.tages-wrap-ce3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
}
.tages-wrap-ce3-left,
.tages-wrap-ce3-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.tages-wrap-ce3 .tag-tx {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0;
}
.dark .tages-wrap-ce3 .tag-tx {
    color: #fff;
}

.tages-wrp-btn-ce3 {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
    display: inline-flex;
    padding: 8px 20px;
    align-items: flex-start;
    gap: 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 226, 0.25);
    background: #121f3642;
}
.dark .tages-wrp-btn-ce3 {
    color: #cecfd3;
    border: 1px solid rgba(0, 255, 226, 0.25);
    background: #121f36;
}

.tags-soc-rp {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}
.tags-soc-rp-list {
    width: 34px;
    height: 34px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121f36;
    font-size: 20px;
    border-radius: 10px;
    transition: 0.3s;
}
.dark .tags-soc-rp-list {
    color: #fff;
}
.tags-soc-rp-list:hover {
    color: #fff;
    background-color: #121f36;
}
.dark .tags-soc-rp-list:hover {
    color: #121f36;
    background-color: #00ffe2;
}

.dark .details-mind-post .dds-c-right-replay-tx,
.dark .details-mind-post .dds__mind {
    background: #121f36;
}

@media screen and (max-width: 1199px) {
    .tages-wrap-ce3-left,
    .tages-wrap-ce3-right {
        gap: 7px;
    }
    .tags-soc-rp {
        gap: 2px;
    }
    .tages-wrp-btn-ce3 {
        font-size: 12px;
        padding: 8px 10px;
    }
}
@media screen and (max-width: 767px) {
    .tages-wrap-ce3 {
        flex-direction: column;
        gap: 10px;
    }
}
@media screen and (max-width: 400px) {
    .tages-wrp-btn-ce3 {
        font-size: 10px;
        padding: 6px 8px;
    }
    .tages-wrap-ce3 .tag-tx {
        font-size: 13px;
    }
}

/* product details tab  */
.single__additional .nav {
    background: #cdd0d3;
}
.dark .single__additional .nav {
    background: #121f36;
}

.single__additional .nav-link {
    padding: 20px 30px;
}

.single__additional .nav-pills .nav-link.active,
.single__additional .nav-pills .show > .nav-link {
    color: #fff;
    background: #19212f !important;
    text-decoration: none;
}
.dark .single__additional .nav-pills .nav-link.active,
.dark .single__additional .nav-pills .show > .nav-link {
    color: #19212f;
    background: #00ffe2 !important;
    text-decoration: none;
}

.top-up-popup {
    display: flex;
    width: 250px;
    height: auto;
    padding: 20px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid #121f36;
    background: #e9ecef;
    position: relative;
    /* right: 20px; */
    z-index: 999;
    margin-top: 10px;
}

.dark .top-up-popup {
    border: 1px solid rgba(0, 255, 226, 0.25);
    background: #121f36;
}

.top-up-popup-tx {
    color: #121f36;
    font-family: var(--fontFamily);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
@media screen and (max-width: 1000px) {
    .top-up-popup-tx {
        font-size: 14px;
    }
    .top-up-popup {
        display: flex;
        width: 150px;
        height: auto;
    }
    #offerMsgTwo {
        top: 475px !important;
    }
}
.dark .top-up-popup-tx {
    color: #fff;
}

.top-up-popup-close {
    position: absolute;
    right: 12px;
    top: 17px;
    cursor: pointer;
    color: #121f36;
}
.dark .top-up-popup-close {
    color: #00ffe2;
}

.checkout-methods-n3sd .payment-select {
    gap: 10px;
    width: auto;
    border: 2px solid transparent;
}
.checkout-methods-n3sd .field-two-images span {
    width: auto;
}
.checkout-methods-n3sd .payment-select .pay-tx {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.05px;
    display: inline;
    transition: 0.3s;
}
.checkout-methods-n3sd .payment-select-disabled .pay-tx {
    color: #20234a;
    font-family: var(--fontFamily);
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.05px;
    display: inline;
    transition: 0.3s;
}
.checkout-methods-n3sd .payment-select:hover .pay-tx {
    color: #fff;
}
.checkout-methods-n3sd .payment-select.bg-info .pay-tx {
    color: #fff;
}

.order-close-icon-basjkl3 {
    display: inline-block;
    top: 50%;
    cursor: pointer;
    padding: 5px;
}
.dark .order-close-icon-basjkl3 {
    filter: brightness(100);
}

.cart-index-k3la th,
td {
    color: #121f36;
}

.dark .cart-index-k3la th,
td {
    color: #fff;
}

/* fin-sitemap-wrap */
.fin-sitemap-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
}
.fin-sitemap-wrap .fin-s-heading {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 14px;
    text-decoration: underline;
}
.fin-sitemap-wrap .lists {
    list-style: none;
}
.fin-sitemap-wrap .lists li {
    list-style: none;
}
.fin-sitemap-wrap .lists li .item {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block;
    transition: 0.3s all ease;
    text-decoration: underline;
    color: #000;
}
.dark .fin-sitemap-wrap .lists li .item {
    color: #fff;
}
.fin-sitemap-wrap .lists li .sub-lists {
    padding-left: 24px;
}
.fin-sitemap-wrap .lists li .sub-lists .item {
    font-size: 15px;
    transition: 0.3s all ease;
}

.fin-sitemap-wrap .lists li .item:hover {
    margin-left: 5px;
    color: #0d6efd;
}

.home-tutorial .slide-i:not(:last-child) {
    margin-right: 20px;
}

.marquee {
    height: 50px;
    overflow: hidden;
    position: relative;
    background: #fff;
    color: inherit;
    font-weight: bold;
    font-size: 16px;
    /* border: 1px solid #ccc; */
    background: #090b26 !important;
}
.marquee .wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;

    /* Starting position */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /* Apply animation to this element */
    -moz-animation: scroll-left 40s linear infinite;
    -webkit-animation: scroll-left 40s linear infinite;
    animation: scroll-left 40s linear infinite;
}
@media (max-width:425px){
    
.marquee .wrap {
    -moz-animation: scroll-left 20s linear infinite;
    -webkit-animation: scroll-left 20s linear infinite;
    animation: scroll-left 20s linear infinite;
}
}
.marquee .wrap .text {
    display: inline-block;
    background: #090b26;
    padding: 0 20px;
    color: #fff;
    width: max-content;
}

.dark .marquee {
    background: transparent;
}

/* Move it (define the animation) */
@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}
@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}
@keyframes scroll-left {
    0% {
        -moz-transform: translateX(60%); /* Browser bug fix */
        -webkit-transform: translateX(60%); /* Browser bug fix */
        transform: translateX(60%);
    }
    100% {
        -moz-transform: translateX(-100%); /* Browser bug fix */
        -webkit-transform: translateX(-100%); /* Browser bug fix */
        transform: translateX(-100%);
    }
}

.text-transform-default {
    text-transform: none !important;
}
