:root {
    --white: #fff;
    --danger: #f56a6a;
    --warning: #ebb35f;
    --primary: #6a7bf5;
    --success: #57c781;
    --light: #5f728a;
    --font: "Gilroy", sans-serif;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

html {
    scroll-behavior: smooth;
}

body {
    color: #444;
    font-family: "Gilroy", sans-serif;
    background: var(--bg);
    line-height: normal;
}

*:focus {
    outline: none !important;
}

*, ::after, ::before {
    box-sizing: border-box;
}

a {
    color: #444;
    transition: 0.5s;
    text-decoration: none;
}

a:hover, a:active, a:focus {
    color: #222;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin: 0 0 0px 0;
    padding: 0;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.nav-head {
    height: 80px;
}

.nav-head.back {
    background: rgba(var(--lbds));
}

.nav-head.back .darkswitch {
    background: rgba(var(--lsdb), 0.05);
}

.nav-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.NavList {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.NavListArea {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo img.dark {
    display: none;
}

ul.NavList li {
    list-style: none;
    padding: 0 5px;
}

.NavList li a {
    color: rgba(var(--menutxtcl));
    font-weight: var(--menutxtweight);
    padding: 12px 8px;
    font-size: 17px;
}

li.navitem.nav-drop > a {
    position: relative;
    padding-right: 20px;
}

li.navitem .navlink i {
    position: relative;
    top: 4px;
    font-size: 23px;
}

li.navitem.nav-drop > a::after {
    content: "\e96f";
    position: absolute;
    font-family: eg;
    font-size: 13px;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s;
}

li.navitem.nav-drop > a.show::after {
    transform: translateY(-50%) rotate(0deg);
}

.nav-drop:hover .navlink {
    color: rgb(var(--cl1));
    cursor: pointer;
}

.nav-drop .drop-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 0px;
    padding: 5px 0;
    background: rgba(var(--lbds));
    border-radius: 5px;
    transition: 0.2s;
    box-shadow: 0px 5px 30px rgba(var(--cl1), 0.1);
    z-index: 99;
    min-width: 200px;
}

.nav-drop .drop-menu::before {
    content: "";
    position: absolute;
    top: -30px;
    width: 100%;
    height: 31px;
}

.nav-drop:hover .drop-menu {
    visibility: visible;
    opacity: 1;
    margin-top: 10px;
}

.nav-drop .drop-menu li a {
    padding: 8px 10px;
    font-size: 15px;
    color: rgba(var(--menutxtcl));
    width: 100%;
    display: block;
    font-weight: 500;
}

.nav-drop .drop-menu li {
    transition: 0.2s;
    border-bottom: 1px solid var(--bg);
}

.nav-drop .drop-menu li:last-child {
    border: none;
}

.nav-drop .drop-menu li:hover {
    background: rgba(var(--lsdb), 0.03);
}

.contact-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #fff !important;
    border: none;
    background-color: rgba(var(--cl1));
    border-radius: 40px;
    padding: 8px 35px;
    box-shadow: 0 5px 25px rgba(var(--cl1), 0.3);
}

.NavActions {
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.supportbtn {
    display: flex;
    align-items: center;
}

.navTogbtn {
    border: none;
    position: relative;
    width: 45px;
    height: 45px;
    padding: 6px;
    border-radius: 5px;
}

.navTogbtn.active .item1, .navTogbtn.active .item4 {
    border-radius: 0 85%;
}

.navTogbtn.active .item2, .navTogbtn.active .item3 {
    border-radius: 85% 0;
}

.navTogbtn span {
    height: 14px;
    width: 14px;
    background: rgba(var(--cl1));
    border-radius: 85%;
    margin: 1px;
    display: inline-block;
    transition: 0.3s;
}

.orderSearchNav.orsebtns {
    background: rgba(var(--cl1));
    color: #fff;
    padding: 3px 25px;
    border-radius: 30px;
    cursor: pointer;
    margin-left: 10px;
    box-shadow: 0 5px 25px rgba(var(--cl1), 0.3);
}

.LastOrdersList .nosearch {
    background: rgba(var(--lsdb), 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    color: rgba(var(--txtall));
    font-weight: 400;
    font-size: 16px;
}

body.showmenu {
    overflow: hidden;
}

body.showmenu main, body.showmenu footer {
    filter: blur(5px);
}

body.showmenu .NavListArea {
    visibility: visible;
    left: 0%;
    max-height: 100%;
    overflow: auto;
}

.otbuts {
    display: flex;
    align-items: center;
}

.otbuts .darkmode {
    margin-left: 10px;
}

.sunmoon {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
    padding: 0 9px;
    font-size: 14px;
}

.darkswitch {
    width: 60px;
    height: 30px;
    background: rgba(var(--lbds));
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 21px;
    cursor: pointer;
}

.darkswitchBG {
    position: absolute;
    background: rgba(var(--cl1));
    border-radius: 100%;
    width: 24px;
    height: 24px;
    left: 4px;
    transition: 0.5s cubic-bezier(0, 0, 0.34, 0.81);
}

.darkswitchBG.active {
    left: calc(100% - 28px);
}

.sunmoon .item i {
    color: rgba(var(--lsdb), 0.3);
    transition: 0.5s cubic-bezier(0, 0, 0.34, 0.81);
}

.sunmoon .item.active i {
    color: #fff;
}

.serviceList {
    display: grid !important;
    grid-template-columns: repeat(8, 1fr) !important;
    gap: 10px;
    margin-bottom: 25px;
}

.serviceList .item {
    margin: 0;
}

.serviceList .item .box {
    width: 100%;
    height: 100px;
    background: rgba(var(--lbds));
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
}

.serviceList .item .box:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(var(--cl1));
    z-index: 0;
    transition: 0.2s cubic-bezier(0, 0, 0.34, 0.81);
}

.serviceList .item .box:hover:after {
    left: 0%;
    width: 100%;
}

.serviceList .item .box:hover i {
    color: #fff;
    z-index: 2;
}

.serviceList .item .box i {
    color: rgba(var(--cl1));
    font-size: 35px;
    position: relative;
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
}

.serviceList .item .opacityIcon {
    position: absolute;
    bottom: -14px;
    left: -10px;
}

.serviceList .item .opacityIcon i {
    font-size: 45px;
    opacity: 0.08;
}

.serviceList .item .serviceName {
    text-align: center;
    font-size: 14px;
    color: rgba(var(--cl1));
    opacity: 0.7;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: 0.2s;
    text-align: center;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
    max-width: 100%;
}

.serviceList .item:hover .serviceName {
    opacity: 1;
}

.addfunds-area .foot .butto, .main-area .foot .butto {
    margin-left: auto;
}

#introHome {
    margin-bottom: 30px;
}

.introHome {
    height: 420px;
    position: relative;
    overflow: hidden;
}

.introHome img.introBG {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 24px 24px;
}

.introHome::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgb(var(--intlinear)), rgb(var(--intlinear), 0.8), rgb(var(--intlinear), 0.4));
    z-index: 1;
    border-radius: 20px;
}

.introHome .content {
    position: absolute;
    bottom: 75px;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.introHome .content h1 {
    font-weight: 800;
    font-size: 34px;
    color: #fff;
}

.introHome .content h1 span {
    display: block;
    color: #fdb43f;
}

.introHome .content p {
    color: #fff;
    max-width: 750px;
    margin: 0 auto;
}

.fastOrder {
    width: fit-content;
    background: rgba(var(--lbds));
    padding: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(var(--text), 0.1);
}

.fastOrder .fastitems {
    display: flex;
    align-items: center;
    padding-left: 7px;
}

.fastOrder .fastDrop {
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    position: absolute;
    top: 60px;
    background: rgba(var(--lbds));
    width: 250px;
    padding: 15px;
    padding-right: 10px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(var(--cl1), 0.1);
    left: 0;
}

.fastOrder .fastselect:first-child .fastDrop {
    left: -25px;
}

.fastOrder .fastDrop.show {
    visibility: visible;
    opacity: 1;
    top: 80px;
}

.fastDrop::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 55px;
    margin-left: -5px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(var(--lbds));
}

.fastOrder .fastDrop ul {
    padding: 0;
    padding-right: 5px;
    margin: 0;
    overflow: auto;
    max-height: 205px;
}

.fastOrder .fastDrop ul::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #f5f5f5;
}

.fastOrder .fastDrop ul::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

.fastOrder .fastDrop ul::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #c5c5c5;
}

.fastOrder .fastDrop ul li {
    list-style: none;
    font-weight: 500;
    font-size: 16px;
    background: #00000005;
    margin-bottom: 3px;
    border-radius: 6px;
    padding: 7px 12px;
    transition: 0.2s;
}

.fastOrder .fastDrop ul li:hover {
    background: #00000010;
}

.fastOrder .fastselect {
    color: rgba(var(--txtall));
    padding: 0 25px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    user-select: none;
    text-align: left;
    min-width: 250px;
}

.fastselect .cont .item .fastHead {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.fastOrder .fastselect:first-child {
    padding-left: 0;
    min-width: 225px;
}

.fastOrder .fastselect::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #00000010;
    cursor: context-menu;
}

.fastOrder .fastselect:nth-last-child(1) {
    margin-right: 0;
}

.fastOrder .fastselect .cont i {
    display: none;
}

.fastOrder .fastselect span {
    font-size: 15px;
    font-weight: 400;
    display: block;
    opacity: 0.6;
}

.fastAction {
    margin-left: 25px;
}

.butto, .badge {
    color: #fff;
    border: none;
    font-weight: 500;
    font-family: var(--font);
    cursor: pointer;
    padding: 8px 15px;
    text-decoration: none !important;
    font-size: 15px;
    border-radius: 7px;
    transition: 0.4s;
    display: inline-block;
    line-height: normal;
}

.butto:hover, .badge:hover {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

[class*="butto-outline"], [class*="badge-outline"] {
    padding: 7px 15px;
}

.badge:hover {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

.butto-xs, .badge-xs {
    padding: 3px 12px;
    font-size: 14px;
}

[class*="butto-outline"].butto-xs, [class*="badge-outline"].badge-xs {
    padding: 2px 12px !important;
}

.butto-sm, .badge-sm {
    padding: 6px 12px;
    font-size: 14px;
}

[class*="butto-outline"].butto-sm, [class*="badge-outline"].badge-sm {
    padding: 5px 12px !important;
}

.butto-lg, .badge-lg {
    padding: 10px 20px;
    font-size: 16px;
}

[class*="butto-outline"].butto-lg, [class*="badge-outline"].badge-lg {
    padding: 9px 20px !important;
}

.butto-xlg, .badge-xlg {
    padding: 12px 30px;
    font-size: 16px;
}

[class*="butto-outline"].butto-xlg, [class*="badge-outline"].badge-xlg {
    padding: 14px 25px !important;
}

.butto-primary, .badge-primary {
    color: #fff !important;
    background: var(--primary);
    font-weight: 500;
}

.border-primary {
    border-color: var(--primary) !important;
}

.badge-outline-primary, .butto-outline-primary {
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-primary:hover, .butto-outline-primary:hover {
    color: #fff !important;
    background: var(--primary);
}

.butto-main, .badge-main {
    color: #fff !important;
    background: rgb(var(--cl1));
    font-weight: 500;
}

.badge-outline-main, .butto-outline-main {
    color: var(--main-color) !important;
    border: 1px solid var(--main-color);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-main:hover, .butto-outline-main:hover {
    color: #fff !important;
    background: var(--main-color);
}

.butto-success, .badge-success {
    color: #fff !important;
    background: var(--success);
    font-weight: 500;
}

.border-success {
    border-color: var(--success) !important;
}

.badge-outline-success, .butto-outline-success {
    color: var(--success) !important;
    border: 1px solid var(--success);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-success:hover, .butto-outline-success:hover {
    color: #fff !important;
    background: var(--success);
}

.butto-warning, .badge-warning {
    color: #fff !important;
    background: var(--warning);
    font-weight: 500;
}

.border-warning {
    border-color: var(--warning) !important;
}

.badge-outline-warning, .butto-outline-warning {
    color: var(--warning) !important;
    border: 1px solid var(--warning);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-warning:hover, .butto-outline-warning:hover {
    color: #fff !important;
    background: var(--warning);
}

.butto-danger, .badge-danger {
    color: #fff !important;
    background: var(--danger) !important;
    font-weight: 500;
}

.border-danger {
    border-color: var(--danger) !important;
}

.badge-outline-danger, .butto-outline-danger {
    color: var(--danger) !important;
    border: 1px solid var(--danger);
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-danger:hover, .butto-outline-danger:hover {
    color: #fff !important;
    background: var(--danger);
}

.butto-light, .badge-light {
    color: var(--white);
    background: var(--light);
    font-weight: 500;
}

.badge-outline-light, .butto-outline-light {
    color: var(--light) !important;
    border: 1px solid #95a1b1;
    font-weight: 500;
    filter: brightness(1) !important;
}

.badge-outline-light:hover, .butto-outline-light:hover {
    color: var(--white) !important;
    background: var(--light) !important;
    border-color: var(--light) !important;
}

.butto-base, .badge-base {
    color: var(--white);
    background: var(--base-color);
}

.badge-outline-base, .butto-outline-base {
    color: var(--base-color) !important;
    border: 1px solid var(--base-color);
    font-weight: 500;
    filter: brightness(1) !important;
}

.butto-fast {
    color: #fff;
    border: none;
    background: rgba(var(--cl1));
    padding: 11px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: auto;
    border-radius: 7px;
    box-shadow: 0 5px 25px rgba(var(--cl1), 0.2);
    min-width: 250px;
}

#packList {
    margin-bottom: 100px;
}

.packListArea {
    position: relative;
    padding-bottom: 50px;
}

.packListArea:before {
    content: "";
    background: rgba(var(--cl1), 0.05);
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
    position: absolute;
    bottom: 0px;
    border-radius: 70px;
}

.packListArea .packitem {
    margin: 0 10px;
}

.packitem {
    background: rgba(var(--lbds));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.packitem.overi {
    overflow: inherit;
}

.packInside {
    padding: 20px;
}

.packHead {
    background: var(--package-color);
    height: 15px;
    position: absolute;
    top: 0;
    font-size: 14px;
    min-width: 100%;
    text-align: center;
}

.packHead span {
    display: none;
}

.packHead.have {
    color: #fff;
    width: fit-content;
    padding: 4px 20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-30%);
    top: 8px;
    font-size: 16px;
    border-radius: 30px;
    min-width: 150px;
    text-align: center;
    height: auto;
}

.packHead.have span {
    display: block;
}

.packTop {
    margin-top: 25px;
    text-align: center;
}

.packitem.inslide {
    margin-top: 20px;
}

.packTop .icon i {
    font-size: 55px;
    color: var(--package-color);
}

.packTop .icon {
    margin-bottom: 5px;
}

.packTop .title span {
    display: block;
    font-weight: bold;
    font-size: 22px;
}

.packTop .title {
    color: rgba(var(--txtall));
}

.packDetail {
    margin: 20px 0;
    text-align: center;
}

.packDetail .moresi {
    display: none;
}

.packDetail .moresi li:nth-child(1) {
    border-top: inherit;
}

.packDetail ul {
    padding: 0 10px;
    margin: 0;
}

.packDetail ul::-webkit-scrollbar-track {
    border-radius: 20px;
    background-color: #f5f5f5;
}

.packDetail ul::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

.packDetail ul::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #c5c5c5;
}

.packDetail ul li {
    list-style: none;
    color: rgba(var(--txtall), 0.8);
    padding: 8px 0;
    border-bottom: 1px solid #00000007;
    text-align: left;
}

.packDetail ul li:nth-child(1) {
    border-top: 1px solid #00000007;
}

.packDetail ul li i {
    margin-right: 2px;
    color: var(--package-color);
    font-size: 25px;
    position: relative;
    top: 5px;
}

.packDetailMore {
    padding: 8px 0;
    border-bottom: 1px solid #00000007;
    font-weight: 600;
    color: rgba(var(--txtall));
    cursor: pointer;
}

.packPrice {
    text-align: center;
    font-size: 27px;
    font-weight: bold;
    color: rgba(var(--txtall));
    height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.packPrice span {
    display: block;
    font-size: 15px;
    text-decoration: line-through;
    font-weight: 400;
    opacity: 0.5;
    margin-bottom: -3px;
}

.packBottom {
    margin: 15px 10px;
    display: flex;
    align-items: center;
}

.packBuyBTN {
    color: #fff !important;
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    background: var(--package-color);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(var(--package-color), 0.3);
    position: relative;
}

.packBuyBTN.noneOrder {
    opacity: 0.5;
    pointer-events: none;
}

.notfavlist {
    grid-column: span 4;
    text-align: center;
    background: rgba(var(--lbds), 0.7);
    border: 3px solid rgba(var(--lsdb), 0.05);
    border-radius: 15px;
    padding: 70px 0;
    height: fit-content;
}

.notfavlist span {
    font-size: 22px;
    font-weight: 700;
    color: rgba(var(--txtall));
}

.notfavlist p {
    color: rgba(var(--txtall), 0.8);
    margin-bottom: 0;
}

.favPack {
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 12px auto;
    font-size: 15px;
    color: #9a9a9a;
    background: #f7f7f9;
    transition: 0.2s;
    position: absolute;
    right: 25px;
    top: 43px;
}

.favPack.active {
    color: rgba(var(--lbds));
    background: #fbbe65;
}

.favPack.active:hover {
    background: #fbbe65;
    opacity: 0.8;
}

.favPack:hover {
    background: #f3f3f3;
}

.favPack i {
    font-size: 20px;
}

.packListArea .splide__pagination {
    bottom: -35px;
}

.packListArea .splide__pagination__page {
    background: rgba(var(--cl1), 0.4);
    height: 12px;
    width: 12px;
    transition: 0.2s;
}

.packListArea .splide__pagination__page.is-active {
    background: rgba(var(--cl1));
    width: 25px;
    height: 12px;
    border-radius: 10px;
    transform: scale(1);
}

.packList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 70px;
    min-height: 400px;
}

.anibuybtn {
    position: relative;
    overflow: hidden;
}

.anibuybtn::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    left: calc(100% - 60px);
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
    background: #ffffff15;
}

.anibuybtn:hover:after {
    left: calc(100% - 80px);
    top: 23%;
}

#whyus {
    padding-bottom: 40px;
    margin-bottom: 100px;
    position: relative;
}

#whyus::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: calc(100% - 250px);
    background: rgba(var(--cl1), 0.05);
    z-index: -1;
}

.whyus .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
}

.whyus .list .item {
    width: 100%;
    height: 385px;
    border-radius: 60px 10px;
    overflow: hidden;
    position: relative;
}

.whyus .list .item.more {
    display: none;
}

.whyus .list .item img.whyBG {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whyus .list .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(var(--whydf)), rgba(var(--whydf), 0.7), transparent);
    z-index: 1;
}

.whyus .list .item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 30px;
    transition: 0.2s;
}

.whyus .list .item .content .detail p {
    margin: 0;
}

.whyus .list .item .content .icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
}

.whyus .list .item .content .icon i {
    color: rgba(var(--whydf));
    font-size: 28px;
}

.whyus .list .item .content .detail {
    color: #fff;
}

.whyus .list .item .content .detail .title {
    font-weight: bold;
    font-size: 22px;
}

.whyus .list .item .content .detail p {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 400;
    overflow: hidden;
    transition: 0.2s;
}

.whyListMore {
    margin-top: 30px;
    text-align: center;
}

.whyListMore .whymore {
    border: none;
    font-weight: 500;
    color: rgba(var(--txtall));
    background: rgba(var(--txtall), 0.06);
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 7px;
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
}

.whyListMore .whymore:hover {
    background: rgba(var(--txtall), 0.1);
}

.whyListMore .whymore i {
    margin-left: 20px;
}

#testimonial {
    margin-bottom: 100px;
    padding: 0 40px;
}

.testiarea {
    position: relative;
}

.testiarea::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 320px;
    height: 100px;
    border-radius: 50px;
    background: rgba(var(--cl1), 0.05);
    z-index: -1;
}

.stars .star i {
    color: #b8bbca;
}

.stars .star.active i {
    color: #ffb307;
}

.testimonial-item {
    background: rgba(var(--lbds));
    padding: 35px 20px;
    border-radius: 15px;
    text-align: center;
    margin: 0 15px;
}

.testimonial-item .inside {
    opacity: 0.7;
    transition: 0.2s;
}

.testimonial-item .person img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial-item .person .name {
    margin-top: 10px;
    font-size: 22px;
    font-weight: bold;
    color: rgba(var(--txtall));
}

.testimonial-item .CustomerJob {
    color: rgba(var(--cl1));
}

.testimonial-item .detail p {
    margin-bottom: 12px;
    color: rgba(var(--txtall), 0.8);
    font-size: 15px;
    line-height: 19px;
}

.testimonial-item .detail {
    margin-top: 5px;
}

.splide.testimonial .splide__track {
    padding: 30px 0;
    padding-bottom: 50px;
}

.splide.testimonial ul li {
    transform: scale(1);
    transition: 0.2s;
}

.splide.testimonial ul li.is-active {
    transform: scale(1.05);
}

.splide.testimonial ul li.is-active .testimonial-item .inside {
    opacity: 1;
}

.splide.testimonial .splide__pagination__page {
    background: rgba(var(--cl1), 0.4);
    height: 12px;
    width: 12px;
    transition: 0.2s;
}

.splide.testimonial .splide__pagination__page.is-active {
    background: rgba(var(--cl1));
    width: 25px;
    height: 12px;
    border-radius: 10px;
    transform: scale(1);
}

#aboutus {
    background: rgba(var(--cl1), 0.05);
    margin-bottom: 100px;
    padding: 120px 0;
}

.AboutArea {
    display: flex;
    align-items: center;
    justify-content: center;
}

.AboutArea .imgData {
    position: relative;
}

.AboutArea .imgData img {
    width: 550px;
    height: 550px;
    object-fit: cover;
    border-radius: 50px;
}

.AboutArea.styletwo .imgData img {
    border-radius: 100%;
}

.AboutArea.styletwo .datainfo .item:nth-child(2) {
    margin-top: 50px;
}

.AboutArea.styletwo .datainfo {
    bottom: 25px;
}

.AboDetail {
    padding-left: 40px;
}

.AboDetail .heading span {
    color: rgba(var(--cl1));
}

.AboDetail .heading h2 {
    font-weight: bold;
    color: rgba(var(--txtall));
}

.AboDetail .heading {
    margin-bottom: 20px;
}

.AboDetail .content p {
    margin-bottom: 12px;
    color: rgba(var(--txtall), 0.8);
    line-height: 25px;
}

.AboDetail .action {
    margin-top: 30px;
}

.AboutArea .imgData .datainfo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    transform: translateY(40%);
}

.aboaction a.abobtn {
    display: block;
    background: rgba(var(--txtall));
    padding: 12px 30px;
    min-width: 200px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
}

.aboaction {
    position: relative;
    padding: 6px 0;
    width: fit-content;
}

.aboaction::before {
    content: "";
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 100%;
    border: 2px solid rgba(var(--txtall), 0.2);
    border-radius: 50px;
    z-index: -1;
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
    opacity: 0.4;
}

.aboaction::after {
    content: "\e991";
    font-family: "eg";
    color: rgba(var(--txtall));
    position: absolute;
    right: -30px;
    top: 54%;
    transform: translateY(-50%);
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
}

.AboutArea .imgData:before {
    content: "";
    position: absolute;
    background-image: url(../../img/svg/dots.svg);
    left: -30px;
    top: -30px;
    width: 250px;
    height: 250px;
    z-index: -1;
    opacity: 0.7;
    animation: 3s infinite dotsmove;
}

.AboutArea .imgData .datainfo .item {
    color: rgba(var(--txtall));
    background: rgba(var(--lbds));
    padding: 20px 15px;
    margin: 0 8px;
    width: 100%;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(var(--txtall), 0.1);
}

.AboutArea .imgData .datainfo .item .detail span {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.AboutArea .imgData .datainfo .item .icon i {
    font-size: 30px;
}

.AboutArea .imgData .datainfo .item .icon {
    margin-bottom: 8px;
}

.AboutArea .imgData .datainfo .item .detail {
    font-size: 15px;
}

#faq {
    margin-bottom: 100px;
}

.faqArea {
    margin-top: 40px;
}

.faqwell .item {
    background: rgba(var(--lbds));
    padding: 20px;
    padding-bottom: 18px;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
}

.faqwell .item .fs-head {
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--txtall));
    display: flex;
    align-items: center;
    user-select: none;
}

.faqwell .item .fs-head .plusminus {
    margin-left: auto;
}

.faqwell .item .fs-head .plusminus .minus {
    display: none;
}

.faqwell .item.show .plusminus .minus {
    display: block;
}

.faqwell .item.show .plusminus .plus {
    display: none;
}

.faqwell .item .fs-content {
    padding-top: 12px;
    margin-top: 15px;
    border-top: 1px solid #00000010;
    display: none;
}

.faqwell .item .fs-content p {
    margin: 0;
    color: rgba(var(--txtall), 0.8);
    line-height: 25px;
}

.sidebar .faqwell .item {
    padding: 15px;
    padding-bottom: 13px;
    margin-bottom: 10px;
}

.SideContBoxArea {
    background: rgba(var(--lbds));
    padding: 20px 25px;
    border-radius: 12px;
}

.SideContBoxArea h3 {
    color: rgba(var(--txtall));
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(var(--lsdb), 0.1);
}

.SideContBoxArea ul {
    margin: 0;
    padding: 0;
}

.SideContBoxArea ul li {
    color: rgba(var(--txtall));
    list-style: none;
}

.SideContBoxArea ul li.email {
    font-weight: 600;
}

#bloglast {
    margin-bottom: 100px;
}

.ns-heading.flx {
    display: flex;
    width: 100%;
    text-align: left;
    align-items: flex-end;
    margin-bottom: 30px;
}

.ns-heading.flx .showmore {
    margin-left: auto;
}

a.ns-more {
    display: block;
    font-size: 15px;
    color: rgba(var(--txtall));
    background: rgba(var(--txtall), 0.06);
    padding: 7px 20px;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.2s;
}

a.ns-more:hover {
    background: rgba(var(--txtall), 0.1);
}

a.ns-more i {
    font-size: 15px;
    margin-left: 15px;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
}

.blog-item .thumb img {
    width: 100%;
    border-radius: 25px 5px;
    height: 250px;
    object-fit: cover;
}

.blog-item .detail {
    margin-top: 15px;
    padding: 0 5px;
}

.blog-item .detail a h3 {
    font-weight: bold;
    font-size: 23px;
    color: rgba(var(--txtall));
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-item .detail p {
    margin-bottom: 12px;
    color: rgba(var(--txtall), 0.8);
    line-height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-item .thumb {
    position: relative;
}

.blog-item .thumb .post-date, .post-content .post-thumbnail .post-date {
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 12px;
    color: #fff;
    background: #00000040;
    padding: 3px 15px;
    border-radius: 27px;
}

.post-thumbnail {
    position: relative;
}

#support {
    position: relative;
    padding: 30px 0;
    background: rgba(var(--cl1), 0.05);
}

.support-bottom {
    display: flex;
    align-items: center;
}

.support-bottom .left {
    display: flex;
    align-items: center;
}

.support-bottom .action {
    margin-left: auto;
}

.support-bottom .text {
    font-size: 25px;
    color: rgba(var(--txtall));
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.support-bottom .text span {
    max-width: 300px;
    font-weight: bold;
    line-height: 9px;
    display: block;
}

.support-bottom .text p {
    font-size: 13px;
    display: contents;
    width: 100%;
}

.support-bottom a.wp {
    font-size: 18px;
    background: #85c173;
    padding: 12px 30px;
    min-width: 200px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 30px #85c17345;
}

.support-bottom a.wp i {
    font-size: 25px;
    margin-left: 20px;
}

.support-bottom a.fcont {
    font-size: 18px;
    background: var(--menu-color);
    padding: 12px 30px;
    min-width: 170px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    max-height: 45px;
    box-shadow: 0 5px 30px rgba(var(--cl1), 0.2);
}

.support-bottom a.fcont span, .support-bottom a.wp span {
    position: relative;
    top: 1px;
}

.support-bottom a.fcont i {
    font-size: 22px;
    margin-left: 20px;
    position: absolute;
    right: 10px;
}

.support-bottom .favicon {
    max-width: 60px;
    margin-right: 11px;
    display: flex;
    align-items: center;
    position: relative;
    top: -6px;
}

.support-bottom .favicon img {
    width: 100%;
}

@media screen and (max-width: 1000px) {
    .support-bottom .favicon {
        top: -16px;
    }
}

.footer {
    background: rgba(var(--lbds));
    padding: 0 0 0px 0;
}

.foot-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.footImg {
    text-align: center;
    padding-top: 12px;
    margin-top: 20px;
    border-top: 1px solid rgba(var(--lsdb), 0.05);
}

.footImg img {
    height: 50px;
    max-width: 100%;
    width: auto;
}

.footer .start {
    align-self: center;
}

.footer .start img {
    height: 48px;
    margin-bottom: 10px;
}

.footer .start p {
    margin-bottom: 10px;
    color: rgba(var(--txtall), 0.8);
    line-height: 25px;
}

.footer .start .social-action {
    display: flex;
    align-items: center;
}

.footer .start .social-action a {
    margin-right: 8px;
}

.footer .start .social-action a i {
    color: rgba(var(--txtall), 0.6);
    font-size: 22px;
    transition: 0.2s;
}

.footer .start .social-action a:hover i {
    color: rgba(var(--txtall));
}

.footer .fdef .title {
    font-weight: bold;
    font-size: 20px;
    color: rgba(var(--txtall));
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(var(--lsdb), 0.05);
}

.footer .fdef ul {
    padding: 5px;
    margin: 0;
}

.footer .fdef ul li, .footer .fdef ul li a {
    list-style: none;
    padding-bottom: 3px;
    margin-bottom: 3px;
    font-size: 15px;
    color: rgba(var(--txtall), 0.8);
}

.homestep {
    display: flex;
    flex-direction: column;
}

.homestep.two {
    flex-direction: column-reverse;
}

.homestep.four {
    flex-direction: column-reverse;
}

.navTogbtn {
    display: none;
    background: none;
}

.anibut {
    position: relative;
    overflow: hidden;
}

.anibut::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    left: calc(100% - 35px);
    top: -5px;
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
    background: #ffffff10;
}

.anibut:hover:after {
    left: calc(100% - 75px);
}

.path1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.allpath {
    fill: rgba(var(--cl1), 0.05);
}

.ns-heading {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

.ns-heading.mb {
    margin-bottom: 35px;
}

.ns-heading > span {
    font-size: 15px;
    color: rgba(var(--cl1));
    position: relative;
    font-weight: 500;
}

.ns-heading > span:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 10px;
    background: rgba(var(--cl1));
    border-radius: 2px;
}

.ns-heading > span:after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: 10px;
    background: rgba(var(--cl1));
    border-radius: 2px;
}

.ns-heading h2 {
    font-weight: 700;
    color: rgba(var(--txtall));
}

.ns-heading p {
    margin: 3px 0 0;
    font-size: 16px;
    color: rgba(var(--txtall));
    opacity: 0.6;
}

.nheadall {
    display: inline-flex;
}

.nfootall {
    display: none;
}

.ns-headH {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.packallBTN {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(var(--lsdb), 0.5);
    background: rgba(var(--lsdb), 0.05);
    padding: 2px 13px;
    margin-left: 10px;
    margin-bottom: 7px;
    border-radius: 17px;
    transition: 0.2s;
}

.packallBTN:hover {
    color: rgba(var(--lsdb), 0.6);
    background: rgba(var(--lsdb), 0.1);
}

.dashline {
    position: relative;
}

.dashline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    right: 0;
    height: 1px;
    border-top: 6px dotted rgba(var(--txtall));
    opacity: 0.1;
}

.dashline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    right: 0;
    height: 1px;
    border-top: 6px dotted rgba(var(--txtall));
    opacity: 0.1;
}

#intall {
    margin-top: 20px;
    margin-bottom: 50px;
}

.intall {
    height: 300px;
    position: relative;
}

.intall.br0 {
    border-radius: 0 !important;
}

.intall::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgb(var(--intlinear)), rgb(var(--intlinear), 0.8));
    z-index: 1;
    border-radius: 20px;
}

.intall.br0::before {
    background: linear-gradient(to top, rgb(var(--intlinear)), rgb(var(--intlinear), 0.93));
}

.intall.br0::before {
    border-radius: 0;
}

.intall.br0 img.introBG {
    border-radius: 0;
}

.intall.br0 .conts {
    padding: 15px 0;
}

.intall img.introBG {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 24px 24px;
}

.intall .conts {
    position: relative;
    height: 100%;
    padding: 25px 85px;
    display: flex;
    text-align: center;
    align-items: center;
    z-index: 1;
}

.intall .conts .icobox {
    min-width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intall.order .conts .icobox {
    min-width: 95px;
    height: 95px;
    background: #fff;
    margin-left: 10px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.intall.order .conts .icobox::after {
    display: none;
}

.intall.order .conts .icobox i {
    font-size: 38px;
}

.intall.reserve .conts .icobox {
    min-width: 130px;
    margin-left: 30px;
}

.intall.order.reserve .conts .icobox {
    min-width: 95px;
}

.orderFail {
    color: rgba(var(--txtall));
}

.intall .icobox::before {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    background: #fff;
    opacity: 0.4;
    z-index: -1;
    border-radius: 100%;
}

.intall .icobox::after {
    content: "";
    position: absolute;
    left: -10px;
    top: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--bg);
    opacity: 0.5;
    z-index: -1;
    border-radius: 100%;
    animation: 1.3s infinite icoshad;
}

.intall .conts .icobox i {
    font-size: 54px;
    color: var(--platform-color);
}

.intall .conts .detabox h1 {
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.intall .conts .detabox p {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 10px;
    font-size: 17px;
}

.intall .conts .detabox {
    max-width: 800px;
    margin-left: 60px;
    text-align: left;
}

.intall.order .conts {
    padding: 40px;
    min-height: 215px;
}

.intall.order .conts .detabox h1 {
    font-size: 30px;
    margin-bottom: 3px;
}

.intall.order {
    height: fit-content;
    margin-bottom: 25px;
}

.intall.order .conts {
    padding: 40px;
}

.intall.order .conts .detabox {
    margin-left: 35px;
}

.intall.order .conts .detabox p {
    margin: 0;
    opacity: 0.7;
}

.platList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 70px;
}

.blogList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 25px;
}

.platList .item {
    background: rgba(var(--lbds));
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.platList .icon {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    background: var(--platform-color);
    box-shadow: 0 5px 10px var(--platform-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.platList .action {
    margin-top: auto;
}

.platList .icon i {
    font-size: 32px;
    color: #fff;
}

.platList .detail h2 {
    color: rgba(var(--txtall));
    font-weight: bold;
    font-size: 23px;
    margin-bottom: 7px;
}

.platList .detail p {
    font-size: 17px;
    color: rgba(var(--txtall), 0.8);
    line-height: 23px;
}

.platList .action .platActiBut {
    background: var(--platform-color);
    padding: 12px 25px;
    border-radius: 5px 15px;
    min-width: 230px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 10px var(--platform-color);
}

.intall .conts .detabox .countservices {
    display: inline-block;
    color: #fff;
    background: #ffffff40;
    padding: 4px 15px;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 8px;
}

.intall.reserve .conts {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.intall.reserve .conts .detabox {
    margin-left: 0;
}

.pagins {
    margin-bottom: 70px;
}

.pagins ul li a.page-link {
    border: none;
    font-size: 15px;
    margin: 0 5px;
    border-radius: 5px;
    padding: 5px 12px;
    color: rgba(var(--txtall)) !important;
    background: rgba(var(--lbds));
}

.pagins ul li.active a.page-link {
    color: #fff !important;
    background: rgba(var(--cl1)) !important;
}

.title-heading {
    position: relative;
    padding-bottom: 7px;
    margin-bottom: 20px;
}

.title-heading span {
    font-size: 15px;
    font-weight: 500;
    color: rgba(var(--cl1));
}

.title-heading h2 {
    font-size: 22px;
    color: rgba(var(--txtall));
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.title-heading.sitleico > i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: rgba(var(--cl1), 0.4);
}

.title-heading.icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-heading.icon .icon i {
    color: rgba(var(--txtall));
    font-size: 25px;
    opacity: 0.3;
}

.title-heading::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 5px;
    width: 100px;
    background: rgba(var(--txtall));
    border-radius: 10px;
}

.title-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(var(--txtall), 0.1);
}

.most-popular .item {
    display: flex;
    align-items: center;
    position: relative;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(var(--lsdb), 0.1);
}

.most-popular .item:nth-last-child(1) {
    border-bottom: inherit;
    margin-bottom: 0;
}

.most-popular .item .thumb {
    min-width: 85px;
    width: 85px;
    height: 55px;
}

.most-popular .item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

.most-popular .item .title {
    padding-left: 12px;
    padding-right: 0;
}

.most-popular .item .title a {
    font-weight: 600;
    font-size: 16px;
    color: rgba(var(--text));
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.CommentArea {
    margin-bottom: 50px;
}

.addComment {
    background: rgba(var(--lbds));
    border-radius: 10px;
    padding: 30px;
}

.commentList .comment {
    background: rgba(var(--lbds));
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 12px;
}

.commentList .comment .comHead {
    display: flex;
    align-items: center;
}

.commentList .comment .comHead .costumer {
    font-weight: bold;
    color: rgba(var(--txtall));
}

.commentList .comment .comHead span {
    font-size: 13px;
    margin-left: 10px;
    opacity: 0.3;
    color: rgba(var(--txtall));
}

.commentList .comment .comContent p {
    margin: 0;
    font-size: 15px;
    margin-bottom: 0;
    color: rgba(var(--text), 0.7);
    line-height: 23px;
}

.MoreComment {
    text-align: center;
    margin-top: 20px;
}

.MoreComment .smcommentBTN {
    color: rgba(var(--lsdb), 0.5);
    background: rgba(var(--lsdb), 0.06);
    display: inline-block;
    padding: 4px 20px;
    font-weight: 500;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.MoreComment .smcommentBTN:hover {
    color: rgba(var(--lsdb), 0.7);
    background: rgba(var(--lsdb), 0.08);
}

.ns-label {
    margin-bottom: 7px;
    font-weight: 500;
    color: rgba(var(--txtall));
}

.ns-control {
    color: rgba(var(--txtall));
    background: rgba(var(--lsdb), 0.03);
    font-size: 15px;
    width: 100%;
    min-height: 50px;
    padding: 10px 15px;
    border-radius: 5px;
    display: block;
    border: none;
}

.comSend {
    color: #fff !important;
    font-size: 18px;
    background: rgba(var(--cl1));
    box-shadow: 0 5px 25px rgba(var(--cl1), 0.3);
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    padding-bottom: 8px;
}

.comSend span {
    position: relative;
    top: -1px;
}

.sideContArea {
    padding: 40px;
    background: rgba(var(--lbds));
    border-radius: 12px;
}

.sideContArea .icon i {
    font-size: 70px;
    color: rgba(var(--cl1));
}

.sideContArea .icon {
    margin-bottom: 20px;
}

.sideContArea .desc p {
    margin-bottom: 25px;
    color: rgba(var(--text), 0.8);
    line-height: 25px;
}

.sideContArea .action .contact-btn {
    padding: 14px 45px;
}

.breadcrumb {
    margin-top: 20px;
    margin-bottom: 0;
}

.breadcrumb ul {
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb ul li {
    list-style: none;
    padding-right: 5px;
    opacity: 0.6;
    position: relative;
}

.breadcrumb ul li a {
    font-size: 14px;
    color: rgba(var(--txtall));
    transition: 0.3s;
}

.breadcrumb ul li::after {
    content: "\e991";
    font-family: "eg";
    font-size: 12px;
    position: relative;
    color: rgba(var(--txtall));
    opacity: 0.6;
}

.breadcrumb ul li:nth-last-child(1) {
    font-weight: 500;
}

.breadcrumb ul li:nth-last-child(1):after {
    content: none;
}

.post-area {
    margin-bottom: 50px;
}

.post-area > h1 {
    font-size: 30px;
    font-weight: bold;
    color: rgba(var(--txtall));
}

.post-content {
    background: rgba(var(--lbds));
    border-radius: 10px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    object-fit: cover;
    max-height: 480px;
}

.post-content .post-body {
    padding: 25px;
}

.post-content .post-body img {
    margin: 15px;
}

.post-content .post-body img[style*="float:left"], .contentArea img[style*="float:left"] {
    margin-left: 0;
}

.post-content .post-body img[style*="float:right"], .contentArea img[style*="float:right"] {
    margin-right: 0;
}

.post-content .post-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    justify-content: left;
    padding: 25px;
    border-bottom: 1px solid rgb(111 115 145 / 21%);
    color: rgb(111 115 145 / 72%);
    font-weight: 600;
    font-size: 18px;
}

.post-body img {
    max-width: 100%;
    border-radius: 10px;
}

.post-content .post-body p {
    margin-bottom: 12px;
    color: rgba(var(--text), 0.8);
    line-height: 25px;
}

.post-content .post-body a {
    font-weight: bold;
    color: rgba(var(--text), 0.8);
    font-weight: bold;
    background-image: linear-gradient(0deg, rgba(var(--lsdb), 0.1), rgba(var(--lsdb), 0.1));
    background-size: 5px 7px;
    background-repeat: repeat-x;
    background-position: bottom;
    transition: 0.3s;
}

.post-content .post-body h1 {
    font-size: 30px;
    font-weight: bold;
    color: rgba(var(--text));
    margin-bottom: 15px;
}

.post-content .post-body h2 {
    font-size: 26px;
    font-weight: bold;
    color: rgba(var(--text));
    margin-bottom: 15px;
}

.post-content .post-body h3 {
    font-size: 22px;
    font-weight: bold;
    color: rgba(var(--text));
    margin-bottom: 15px;
}

.post-body ol, .post-body ul {
    color: rgba(var(--text));
    padding-left: 20px;
    margin-bottom: 15px;
}

.post-body blockquote {
    padding: 12px;
    padding-left: 15px;
    background: rgba(var(--lsdb), 0.05);
    border-left: 4px solid rgba(var(--lsdb), 0.4);
}

.post-body blockquote p {
    margin-bottom: 0 !important;
    color: rgba(var(--text), 0.8);
    line-height: 25px;
}

.post-sidebar {
    margin-bottom: 50px;
}

.post-sidebar .post-sidebar-content {
    background: rgba(var(--lbds));
    border-radius: 10px;
    overflow: hidden;
}

.post-sidebar .post-sidebar-body {
    padding: 25px;
}

.post-sidebar .post-sidebar-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    justify-content: left;
    padding: 25px;
    border-bottom: 1px solid rgb(111 115 145 / 21%);
    color: rgb(111 115 145 / 72%);
    font-weight: 600;
    font-size: 18px;
    z-index: 1;
}

.post-sidebar .post-sidebar-menu ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    position: relative;
    z-index: 0;
}

.post-sidebar .post-sidebar-menu ul li {
    border-top: 1px solid rgb(111 115 145 / 21%);
    list-style: none;
    padding: 15px 26px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.post-sidebar .post-sidebar-menu ul li.active {
    border-left: 2px solid rgb(var(--cl1));
}

.post-sidebar .post-sidebar-menu ul > li:first-child {
    border-top: none;
}

.post-sidebar .post-sidebar-menu ul li a.cp-link {
    text-decoration: none;
    color: rgb(111 115 145 / 72%);
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 17px;
    width: 100%;
}

.post-sidebar .post-sidebar-menu ul li::after {
    content: "\e995";
    font-family: "eg";
    color: rgb(var(--cl1));
    position: relative;
    transition: 0.2s ease all;
    font-weight: 500;
}

.SideContact {
    margin-bottom: 50px;
}

.sideServiceList .item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(var(--lbds));
    border-radius: 5px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.sideServiceList .item .icon i {
    color: var(--platform-color);
    font-size: 35px;
}

.sideServiceList .item .title {
    color: rgba(var(--txtall));
    font-weight: bold;
    margin-left: 15px;
    font-size: 18px;
}

.sideServiceList .item .title span {
    font-weight: 400;
    font-size: 15px;
    display: block;
    margin-top: -5px;
}

.sideServiceList .item .action {
    margin-left: auto;
}

.sideServiceList .item .action i {
    color: rgba(var(--txtall));
    font-size: 20px;
}

.sideServiceList .item:before {
    content: "";
    position: absolute;
    left: 100%;
    top: -30%;
    height: 200px;
    width: 200px;
    border-radius: 100%;
    background: rgba(var(--txtall), 0.1);
    transition: 0.3s cubic-bezier(0, 0, 0.34, 0.81);
    opacity: 0;
}

.sideServiceList .item:hover:before {
    left: 80%;
    opacity: 1;
}

.most-popular .item:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 0%;
    height: 100%;
    top: 0;
    bottom: 0;
    background: rgba(var(--lsdb), 0.05);
    transition: 0.3s cubic-bezier(0, 0, 0.34, 0.81);
    z-index: -1;
}

.most-popular .item:hover:before {
    width: 100%;
    left: 0;
}

.contactArea {
    background: rgba(var(--lbds));
    padding: 40px;
    border-radius: 10px;
}

.notfoundarea {
    margin: 100px auto;
    max-width: 900px;
}

.notfoundarea .cls-3, .cls-7 {
    fill: rgba(var(--cl1));
}

.notfoundarea .cls-2 {
    fill: rgba(var(--txtall));
}

.not404 {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(var(--cl1), 0.2);
    text-align: center;
}

.not404 h1 {
    font-weight: bold;
    color: rgba(var(--txtall));
    margin-bottom: 10px;
}

.not404 p {
    margin-bottom: 12px;
    color: rgba(var(--txtall), 0.8);
    line-height: 25px;
}

.not404 .actions a {
    display: inline-block;
    color: #fff;
    background: rgba(var(--cl1));
    box-shadow: 0 5px 25px rgba(var(--txtall), 0.3);
    padding: 10px 45px;
    margin: 0 5px;
    border-radius: 5px;
}

.not404 .actions {
    margin-top: 20px;
}

.alert-message {
    position: fixed;
    bottom: 7px;
    right: -100%;
    min-width: 300px;
    max-width: 400px;
    z-index: 99;
    border: none;
}

.orderArea {
    margin-bottom: 100px;
}

.firstcont {
    padding: 40px 35px;
    padding-bottom: 50px;
    background: rgba(var(--lbds));
    margin-bottom: 50px;
    border-radius: 20px;
}

.firstcont.info {
    padding: 30px;
}

.firstcont.info h2 {
    font-size: 24px;
}

.firstcont .step {
    margin-bottom: 40px;
}

.firstcont .step:nth-last-child(1) {
    margin-bottom: 0;
}

.firstcont .step h2 {
    font-weight: 700;
    color: rgba(var(--text));
}

.firstcont .step p {
    color: rgba(var(--text), 0.7);
    margin-bottom: 15px;
}

.firstcont.info {
    margin-bottom: 100px;
}

.priceTag {
    display: flex;
    align-items: center;
    gap: 12px;
}

.priceTag .icon {
    width: 55px;
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: var(--bg);
    border-radius: 10px;
    font-size: 23px;
}

.priceTag.cart .icon {
    background: var(--light);
    color: #fff;
}

.priceTag .text {
    font-size: 15px;
    color: #5c6a7a;
    line-height: normal;
}

.priceTag .text span {
    display: block;
    font-size: 24px;
    font-weight: bold;
}

body.dark .priceTag .text {
    color: #d3d9df;
}

body.dark .priceTag .icon {
    color: #d3d9df;
}

.ord-control {
    color: rgba(var(--txtall));
    background: #fbfbfb;
    width: 100%;
    height: 55px;
    min-height: 60px;
    border: 2px solid #ececec;
    border-radius: 10px;
    box-shadow: none !important;
    padding: 12px 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ord-control.text {
    height: auto;
    color: rgba(var(--txtall), 0.8);
}

.ord-control.text span {
    display: block;
    font-weight: bold;
    color: rgba(var(--txtall));
}

select.ord-control {
    background: url(../../img/svg/down-light.svg) no-repeat;
    background-position-x: calc(100% - 12px);
    background-position-y: center;
    background-size: 17px;
}

.ord-control::placeholder {
    color: #999 !important;
}

.orderTabs {
    margin-bottom: 70px;
}

.orderTabs .tab-content {
    display: none;
}

.orderTabs .tab-content.show {
    display: block;
}

.tabOption {
    background: rgba(var(--txtall), 0.1);
    border-radius: 50px;
}

.tabOption ul {
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.tabOption ul li {
    color: rgba(var(--txtall));
    list-style: none;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    padding: 7px 20px;
    opacity: 0.5;
    transition: 0.2s;
    user-select: none;
}

.tabOption ul li.active {
    background: #fff;
    border-radius: 36px;
    opacity: 1;
}

.orPayDetail .amount {
    background: rgba(var(--lbds));
    border-radius: 15px;
}

.orPayDetail .amount ul {
    padding: 0;
    margin: 0;
}

.orPayDetail .amount ul li {
    list-style: none;
    padding: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(var(--txtall), 0.07);
    display: flex;
    align-items: center;
    color: rgba(var(--txtall));
}

.orPayDetail .amount ul li span {
    margin-left: auto;
    font-weight: bold;
}

.orPayDetail .amount ul li:nth-last-child(1) {
    border-bottom: inherit;
}

.amount.statu ul li {
    display: block;
}

.amount.statu ul li span {
    display: block;
}

.orPayDetail .PaymentMethod {
    margin-top: 30px;
}

.orPayDetail .PaymentMethod ul {
    padding: 0;
    margin: 0;
}

.orPayDetail .PaymentMethod ul li {
    list-style: none;
    align-items: center;
    color: rgba(var(--txtall));
    background: rgba(var(--lbds));
    font-weight: 500;
    padding: 15px 20px;
    padding-bottom: 14px;
    margin-bottom: 7px;
    border-radius: 10px;
    border: 3px solid #ececec;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.orPayDetail .PaymentMethod ul li.selected {
    border-color: rgba(var(--txtall));
    color: rgba(var(--txtall));
    font-weight: bold;
}

.orPayDetail .PaymentMethod ul li::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    background: rgba(var(--txtall));
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 30px;
    font-size: 15px;
    font-weight: 600;
    padding-left: 10px;
    padding-bottom: 7px;
    border-bottom-left-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orPayDetail .PaymentMethod ul li.selected::after {
    opacity: 1;
    transition: 0.3s;
}

.orPayDetail .PaymentMethod ul li i {
    margin-right: 8px;
}

.orActionBTN.anibut {
    color: #fff !important;
    background-color: rgba(var(--cl1));
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    padding: 17px 25px;
    padding-bottom: 16px;
    box-shadow: 0 5px 25px rgba(var(--cl1), 0.4);
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type="checkbox"], input[type="radio"] {
        --active: rgba(var(--txtall));
        --active-inner: #fff;
        --border: rgba(var(--txtall), 0.5);
        --border-hover: rgba(var(--txtall));
        --background: #fff;
        --disabled: #f6f8ff;
        --disabled-inner: #e1e6f9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid rgba(var(--lsdb), 0.2);
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }

    input[type="checkbox"]:after, input[type="radio"]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }

    input[type="checkbox"]:checked, input[type="radio"]:checked {
        --b: rgba(var(--cl1));
        --bc: var(--active);
        --d-o: 0.3s;
        --d-t: 0.6s;
        --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
    }

    input[type="checkbox"]:disabled, input[type="radio"]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }

    input[type="checkbox"]:disabled:checked, input[type="radio"]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }

    input[type="checkbox"]:disabled + label, input[type="radio"]:disabled + label {
        cursor: not-allowed;
    }

    input[type="checkbox"]:hover:not(:checked):not(:disabled), input[type="radio"]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }

    input[type="checkbox"]:focus, input[type="radio"]:focus {
        box-shadow: 0 0 0 var(--focus);
    }

    input[type="checkbox"]:not(.switch), input[type="radio"]:not(.switch) {
        width: 21px;
    }

    input[type="checkbox"]:not(.switch):after, input[type="radio"]:not(.switch):after {
        opacity: var(--o, 0);
    }

    input[type="checkbox"]:not(.switch):checked, input[type="radio"]:not(.switch):checked {
        --o: 1;
    }

    input[type="checkbox"] + label, input[type="radio"] + label {
        font-size: 14px;
        line-height: 21px;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px;
    }

    input[type="checkbox"]:not(.switch) {
        border-radius: 7px;
    }

    input[type="checkbox"]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }

    input[type="checkbox"]:not(.switch):checked {
        --r: 43deg;
    }

    input[type="checkbox"].switch {
        width: 38px;
        border-radius: 11px;
    }

    input[type="checkbox"].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: var(--ab, var(--border));
        transform: translateX(var(--x, 0));
    }

    input[type="checkbox"].switch:checked {
        --ab: var(--active-inner);
        --x: 17px;
    }

    input[type="checkbox"].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }

    input[type="radio"] {
        border-radius: 50%;
    }

    input[type="radio"]:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        transform: scale(var(--s, 0.7));
    }

    input[type="radio"]:checked {
        --s: 0.5;
    }
}

.chxarea {
    padding: 12px;
    padding-bottom: 11px;
    border-radius: 10px;
    background: #f8f8f8;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.chxarea a {
    color: rgba(var(--cl1));
    font-weight: bold;
    background-image: linear-gradient(0deg, rgba(var(--text), 0.05), rgba(var(--text), 0.05));
    background-size: 6px 7px;
    background-repeat: repeat-x;
    background-position: bottom;
    transition: 0.3s;
}

.chxarea.free {
    background: rgba(var(--txtall), 0.06);
    margin-top: 15px;
}

.chxarea input {
    min-width: 21px !important;
    margin-right: 3px;
}

.chxarea label {
    font-weight: 500;
    color: rgba(var(--txtall));
    width: auto;
}

.chxarea label span {
    font-weight: 400;
    opacity: 0.6;
}

.coupon {
    position: relative;
    margin: 8px 0;
}

.coupon .coupbtn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    color: #fff !important;
    border: none;
    background-color: rgba(var(--cl1));
    border-radius: 3px;
    padding: 5px 21px;
    box-shadow: 0 5px 25px rgba(var(--cl1), 0.3);
}

.coupon .ns-control::placeholder {
    font-size: 15px;
}

.paymentDetail {
    color: rgba(var(--txtall), 0.8);
    font-size: 15px;
    background: rgba(var(--lbds));
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.paymentDetail p {
    margin: 0;
}

.paymentDetail::before {
    content: "\f06a";
    position: absolute;
    font-family: fontawesome;
    color: rgba(var(--txtall));
    right: -12px;
    top: -27px;
    font-size: 60px;
    transform: rotate(15deg);
    opacity: 0.1;
}

.orPackDetail {
    padding: 25px 30px;
    background: rgba(var(--lbds));
    border-radius: 15px;
}

.orPackDetail > span {
    font-size: 20px;
    font-weight: bold;
    color: rgba(var(--txtall));
    display: block;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(var(--txtall), 0.1);
}

.orPackDetail ul {
    padding: 0 5px;
    margin: 0;
}

.orPackDetail ul li {
    list-style: none;
    padding: 5px 0;
    font-weight: 400;
    display: flex;
    position: relative;
    align-items: center;
    color: rgba(var(--txtall));
}

.orPackDetail ul li::before {
    content: "\f058";
    font-family: "FontAwesome";
    margin-right: 10px;
    color: rgba(var(--pckdf));
    font-size: 15px;
}

.orPackDetail .favPack {
    position: relative;
    margin: inherit;
    width: 100%;
    height: auto;
    padding: 12px 20px;
    right: inherit;
    top: inherit;
    margin-top: 20px;
}

.orPackDetail .favPack::before {
    margin-right: 5px;
}

.modal.termsofuse .modal-footer {
    justify-content: center;
}

.modal.termsofuse .modal-content {
    border: none;
    border-radius: 15px;
    background: rgba(var(--lbds));
}

.modal.termsofuse .modal-header h5 {
    font-weight: 600;
    color: rgba(var(--txtall));
}

.termsofuse .modal-header, .termsofuse .modal-footer {
    border-color: rgba(var(--lsdb), 0.1);
}

.modalbtn {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #fff !important;
    border: none;
    background-color: rgba(var(--cl1));
    border-radius: 40px;
    padding: 8px 35px;
    box-shadow: 0 5px 25px rgba(var(--cl1), 0.3);
}

.modal.termsofuse .modal-body p {
    color: rgba(var(--txtall), 0.8);
}

.modal.termsofuse .modal-body {
    padding: 20px;
}

.btn-close {
    box-shadow: none !important;
}

.payorderdets ul {
    padding: 0;
    margin: 0;
}

.payorderdets ul li {
    list-style: none;
    color: rgba(var(--txtall), 0.8);
    background: rgba(var(--lbds));
    font-weight: 400;
    padding: 12px 15px;
    padding-top: 13px;
    margin-bottom: 7px;
    border-radius: 10px;
    border: 3px solid #ececec;
    position: relative;
    transition: 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payorderdets ul li span {
    font-weight: bold;
    color: rgba(var(--txtall));
}

.payorderdets {
    margin-bottom: 25px;
}

.fixActions {
    position: fixed;
    left: 15px;
    transition: 0.2s;
    bottom: calc(0% + 15px);
    transform: translateY(0%);
    z-index: 9;
}

.fixActions.show {
    bottom: 50%;
    transform: translateY(50%);
}

.fixActions.show .close .cshow {
    display: none;
}

.fixActions.show .close .chide {
    display: block;
}

.fixActions .close .chide {
    display: none;
}

.fixActions .close .cshow {
    display: block;
}

.fixActions .item {
    background: rgba(var(--cl1));
    border-radius: 10px;
    margin-bottom: 10px;
}

.fixActions .item {
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fixActions .item .icon {
    width: 50px;
    text-align: center;
}

.fixActions .item.fav {
    background: #fbbe65;
}

.fixActions .item.wp {
    background: #85c173;
}

.fixActions .item.tel {
    background: var(--fixedtel);
}

.fixActions .item span {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    margin-left: -30px;
    font-weight: 500;
}

.fixActions.show .item:hover {
    width: 100%;
    padding-right: 20px;
}

.fixActions.show .item:hover span {
    position: relative;
    opacity: 1;
    visibility: visible;
    margin-left: 0px;
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
}

.fixActions .item:last-child {
    margin-bottom: 0;
}

.fixActions .item i {
    font-size: 22px;
}

.fixActions .close {
    width: 50px;
    height: 50px;
    color: #fff;
    background: rgba(var(--lsdb), 0.3);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.fixActions .close:hover {
    background: rgba(var(--lsdb), 0.5);
}

.fixActions .close i {
    font-size: 21px;
}

.fixActions .items {
    margin-left: -70px;
    transition: 0.2s;
}

.fixActions.show .items {
    margin-left: 0;
}

.mobileFavsbut {
    display: none;
}

.osareaBG {
    position: fixed;
    padding: 90px 0 65px;
    left: 0;
    right: 0;
    top: -50px;
    background: rgba(var(--lbds));
    box-shadow: 0 5px 30px rgba(var(--lbds), 0.5);
    z-index: 99;
    display: flex;
    transition: 0.2s;
    visibility: hidden;
    opacity: 0;
}

.osareaBG .close {
    color: rgba(var(--text));
    background: rgba(var(--text), 0.08);
    position: absolute;
    top: 10px;
    left: calc(50% - 60px);
    width: 120px;
    text-align: center;
    padding: 3px 10px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.2s;
}

.osareaBG .close:hover {
    background: rgba(var(--text), 0.11);
}

.osareaBG.show {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.osareaBG .osarea {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1300px;
}

.searcharea {
    margin: 0 30px;
    display: flex;
    height: 100%;
}

.searcharea .content {
    margin: auto 0;
    width: 100%;
}

.searcharea .content .top .icon {
    width: 110px;
    height: 110px;
    background: rgba(var(--cl1));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
}

.searcharea .content .top > span {
    font-size: 25px;
    font-weight: bold;
    color: rgba(var(--txtall));
    display: block;
    margin-bottom: 5px;
}

.searcharea .content .top p {
    font-size: 15px;
    color: rgba(var(--txtall), 0.8);
    margin-bottom: 20px;
}

.searcharea .srcwell input {
    border: none;
    width: 100%;
    display: block;
    background: #f3f3f3;
    height: 60px;
    padding: 20px;
    border-radius: 10px;
}

.srcwell .osBtn {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #fff !important;
    border: none;
    background-color: rgba(var(--cl1));
    border-radius: 40px;
    padding: 12px 40px;
    box-shadow: 0 5px 25px rgba(var(--cl1), 0.3);
}

.lastordersarea .content .item {
    background: rgba(var(--txtall), 0.07);
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lastordersarea {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 30px;
    position: relative;
}

.lastordersarea::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eaeaea;
}

.lastordersarea .content > span {
    font-size: 25px;
    font-weight: bold;
    color: rgba(var(--txtall));
    display: block;
}

.lastordersarea .content p {
    font-size: 15px;
    color: rgba(var(--txtall), 0.8);
    margin-bottom: 20px;
}

.lastordersarea .content {
    width: 100%;
}

.lastordersarea .content .item .text span {
    display: block;
    font-weight: bold;
}

.lastordersarea .content .item .text {
    color: rgba(var(--txtall));
    font-size: 15px;
}

.ordliact {
    color: #fff !important;
    font-size: 15px;
    background: rgba(var(--cl1));
    box-shadow: 0 5px 20px rgba(var(--cl1), 0.3);
    padding: 7px 15px;
    border-radius: 5px;
}

.ordliact:hover {
    box-shadow: 0 5px 20px rgba(var(--cl1), 0.5);
}

.ordliact i {
    margin-right: 1px;
}

body.order header, body.order main, body.order footer {
    filter: blur(4px);
    pointer-events: none;
}

.contentArea {
    margin-bottom: 100px;
    padding: 0 15px;
}

.contentArea h1, .contentArea h2, .contentArea h3, .contentArea h4, .contentArea h5 {
    font-weight: 700;
    color: rgba(var(--txtall));
    margin-bottom: 10px;
}

.contentArea p {
    color: rgba(var(--txtall), 0.8);
    margin-bottom: 12px;
}

.contentArea img {
    display: inline-block;
    margin: 15px;
    max-width: 100%;
}

body.dark .serviceList .item .box i, body.dark .serviceList .item .serviceName {
    color: rgba(var(--txtall));
}

body.dark .fastOrder, body.dark .AboutArea .imgData .datainfo .item, body.dark .nav-drop .drop-menu {
    box-shadow: inherit;
}

body.dark .aboaction a.abobtn {
    background: rgba(var(--cl1));
}

body.dark .logo img.dark {
    display: block;
}

body.dark .logo img.light {
    display: none;
}

body.dark .fastOrder .fastDrop {
    box-shadow: 0 5px 30px #00000030;
}

body.dark .fastOrder .fastDrop ul li {
    background: #ffffff04;
}

body.dark .fastOrder .fastDrop ul li:hover {
    background: #ffffff08;
}

body.dark .introHome .content p {
    opacity: 0.6;
}

body.dark .favPack {
    background: #31333e;
}

body.dark .favPack:hover {
    background: #2b2c35;
}

body.dark .intall .conts .icobox i {
    color: var(--bg);
}

body.dark .favPack.active {
    color: rgba(var(--lbds));
    background: #fbbe65;
}

body.dark .favPack.active:hover {
    background: #fbbe65;
    opacity: 0.8;
}

body.dark .ord-control {
    border: 3px solid #2c2e38;
    background: #2c2e38;
}

body.dark .tabOption {
    background: rgba(var(--lbds));
}

body.dark .tabOption ul li {
    font-weight: 400;
}

body.dark .tabOption ul li.active {
    background: #505261;
}

body.dark .chxarea {
    background: #2c2e38;
}

body.dark .orPayDetail .PaymentMethod ul li {
    color: rgba(var(--txtall));
    background: rgba(var(--lbds));
    font-weight: 500;
    border: 3px solid #505261;
}

body.dark .orPayDetail .PaymentMethod ul li.selected {
    border-color: #97e49a;
    color: #97e49a;
    font-weight: 500;
}

body.dark .orPayDetail .PaymentMethod ul li::after {
    background: #97e49a;
}

body.dark input[type="checkbox"], input[type="radio"] {
    --background: rgba(var(--lbds));
}

body.dark .coupon .ns-control {
    opacity: 1;
}

body.dark .ns-control {
    color: rgba(var(--txtall));
    background: #2c2e38;
}

body.dark .ord-control::placeholder {
    color: #5b5c65 !important;
}

body.dark select.ord-control {
    background: url(../../img/svg/down-dark.svg) no-repeat, #2c2e38;
    background-position-x: calc(100% - 12px);
    background-position-y: center;
    background-size: 17px;
    color: #92929a;
}

body.dark .notfoundarea .cls-1 {
    fill: rgba(var(--lsdb), 0.05);
}

.head-stable {
    display: flex;
    align-items: center;
    margin-left: 10px;
    gap: 7px;
}

.bask-head {
    height: 40px;
    width: 40px;
    min-width: 40px;
    border-radius: 20%;
    border: 1px solid rgba(var(--cl1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--cl1)) !important;
    position: relative;
    transition: 0.2s;
}

.bask-head span.count {
    background: rgba(var(--cl1));
    color: #fff;
    position: absolute;
    top: -2px;
    right: -3px;
    font-size: 10px;
    text-align: center;
    padding: 1px 4px;
    border-radius: 10px;
    min-width: 15px;
}

.bask-head > i {
    display: block;
    font-size: 24px;
    position: relative;
}

.profile-head .avatar {
    height: 40px;
    padding-left: 15px;
    padding-right: 3px;
    border-radius: 30px;
    border: 1px solid rgba(var(--cl1));
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    color: rgba(var(--cl1)) !important;
    transition: 0.2s;
    position: relative;
    cursor: pointer;
}

.bask-head:hover, .profile-head .avatar:hover {
    background: rgba(var(--cl1), 0.15);
}

.profile-login {
    background: rgba(var(--cl1));
    color: #fff !important;
    padding: 3px 10px;
    border-radius: 4%;
    cursor: pointer;
    margin-left: 2px;
    box-shadow: 0 5px 25px rgba(var(--cl1), 0.3);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    min-width: 105px;
}

.profile-head ul.profile-head-drop {
    position: absolute;
    top: 40px;
    padding: 0;
    background: rgba(var(--lbds));
    border-radius: 10px;
    min-width: 200px;
    right: 0;
    z-index: 99;
    box-shadow: 0 5px 25px rgba(var(--txtall), 0.15);
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.1s;
    user-select: none;
}

.profile-head ul.profile-head-drop li {
    list-style: none;
    border-bottom: 1px solid var(--bg);
}

.profile-head ul.profile-head-drop li:last-child {
    border: none;
}

.profile-head ul.profile-head-drop li a {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    color: rgba(var(--txtall), 0.75);
    font-size: 15px;
    font-weight: 500;
}

.profile-head ul.profile-head-drop li a:hover {
    background: rgba(var(--txtall), 0.04);
}

.profile-head {
    position: relative;
}

ul.profile-head-drop::before {
    content: "";
    position: absolute;
    right: 12px;
    display: block;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-bottom-color: rgba(var(--lbds));
    top: -14px;
    margin-top: 0;
}

.profile-head.show ul.profile-head-drop {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    top: 50px;
}

.profile-head.show .avatar {
    background: rgba(var(--cl1)) !important;
    color: #fff !important;
}

.profile-head .avatar .balance {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: rgba(var(--cl1)) !important;
    font-weight: 500;
}

.profile-head .avatar .profile {
    width: 32px;
    height: 32px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: rgba(var(--cl1));
    color: #fff;
}

.profile-head.show .avatar .balance {
    color: #fff !important;
}

.profile-head.show .avatar .profile {
    background: #ffffff10;
    border: 1px solid #ffffff15;
}

body.showmenu .head-stable {
    padding-right: 50px;
}

.pack-manuel {
    background: rgba(var(--lbds));
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pack-manuel .pack-select {
    color: rgba(var(--txtall));
    margin-left: auto;
    border-right: 1px solid #bac5d957;
    margin-right: 25px;
    padding-right: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pack-manuel .manu-text h3 {
    font-weight: bold;
    color: rgba(var(--txtall));
}

.pack-manuel .manu-text p {
    color: rgba(var(--txtall), 0.8);
    margin-bottom: 12px;
}

.pack-manuel .manu-text .manu-control {
    height: 54px;
    color: rgba(var(--txtall));
    background: #b4b4cf25;
    border-radius: 12px;
    border: 1px solid #aaaac525;
    padding: 18px;
}

.pack-manuel .manu-text .manu-control::placeholder {
    color: #918cb181;
    font-size: 16px;
    font-family: "Gilroy", sans-serif;
}

.pack-manuel .manu-text .manu-control:focus {
    box-shadow: none;
    border-color: #aaaac550;
}

.pack-manuel .pack-select span.head {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
}

.pack-manuel .pack-select span.amount, .pack-manuel-buy span.price {
    font-size: 20px;
    line-height: 22px;
    display: block;
    margin-bottom: 7px;
}

.pack-manuel-buy .pack-select span.price {
    font-size: 20px;
}

.pack-manuel .pack-select span.sub {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 3px;
    font-weight: 400;
}

.pack-manuel .pack-manuel-buy .packBuyBTN {
    background: rgba(var(--cl1));
    min-width: 190px;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: none;
}

.baskList .item {
    padding: 15px;
    background: rgba(var(--lbds));
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    border: 1px solid var(--cart-color);
}

.baskList .item:last-child {
    border: none;
}

.baskList .item .icon {
    min-width: 50px;
    height: 50px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cart-color);
    border-radius: 10px;
    color: #fff;
    margin-right: 15px;
}

.baskList .item .text {
    font-size: 18px;
    font-weight: bold;
    color: rgba(var(--txtall));
    margin-right: 15px;
    line-height: normal;
}

.baskList .item .text span {
    font-size: 15px;
    font-weight: 400;
    color: rgba(var(--txtall), 0.7);
    word-break: break-word;
    table-layout: fixed;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.baskList .item .price {
    margin-left: auto;
    font-size: 18px;
    font-weight: bold;
    color: rgba(var(--txtall));
    margin-right: 15px;
    text-align: right;
}

.baskList .item .price span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--soft-text-color);
    text-decoration: line-through;
}

.baskList .item .remove {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff283c61;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: 0.4s;
}

.baskList .item .remove:hover {
    background: #ff283c;
}

.baskInfo ul.details li {
    color: var(--soft-text-color);
    font-size: 16px;
    font-weight: 500;
    padding: 17px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bg);
}

.baskInfo ul.details li span {
    font-weight: bold;
    color: var(--main-text-color);
}

.baskInfo ul.details li .bask-through {
    color: var(--soft-text-color);
    font-weight: 500;
    text-decoration: line-through;
}

.order-step-area .step-two {
    display: none;
}

.intall.account .container {
    height: 100%;
}

.intall.account .conts {
    padding: 0;
    padding-bottom: 20px;
}

.intall.account::before {
    background: linear-gradient(to top, rgb(var(--intlinear)), rgb(var(--intlinear), 0.93));
    border-radius: 0;
}

.intall.account .conts .icobox {
    min-width: 90px;
    height: 90px;
    width: 90px;
}

.intall.account .conts .icobox i {
    font-size: 34px;
}

.intall.account {
    height: 240px;
}

.intall.account .conts .detabox {
    margin-left: 35px;
}

.intall.account .conts .detabox h1 {
    font-size: 34px;
    margin-bottom: auto;
}

.intall.account .conts .details .balance {
    border: 1px solid #ffffff12;
    padding: 4px;
    padding-left: 15px;
    border-radius: 15px;
    background: #ffffff10;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    user-select: none;
    font-weight: 500;
}

.intall.account .conts .details {
    margin-left: auto;
}

.intall.account .conts .details .balance .addBalance {
    color: #ffff;
    background: #ffffff15;
    padding: 7px 15px;
    border-radius: 12px;
    font-size: 15px;
    border: 1px solid #ffffff12;
    transition: 0.2s;
    font-weight: 500;
}

.intall.account .conts .details .balance .addBalance:hover {
    background: #ffffff30;
}

.intall.account .conts .details .balance .text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-account-menu {
    border-radius: 12px;
    background: rgba(var(--lbds));
    position: relative;
    transform: translateY(-30px);
    z-index: 1;
}

.user-account-menu .responsive-bar {
    display: none;
}

.user-account-menu ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.user-account-menu ul li {
    list-style: none;
}

.user-account-menu ul li a {
    padding: 10px 25px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-left: 1px solid var(--bg);
    font-weight: 500;
    color: rgba(var(--txtall));
    transition: 0.2s;
    user-select: none;
}

.user-account-menu ul li:first-child a {
    border: none;
}

.user-account-menu ul li a:hover {
    background: #a8a8c717;
}

.profile-content-area {
    min-height: 450px;
    padding-bottom: 50px;
}

.profile-content-area.orderdet {
    min-height: auto;
    margin-bottom: 25px;
    padding-bottom: 0;
}

.profile-content-title {
    position: relative;
    padding-left: 23px;
    margin-bottom: 20px;
}

.profile-content-title h2 {
    font-size: 24px;
    color: rgba(var(--txtall));
    font-weight: 600;
}

.profile-content-title p {
    color: rgba(var(--txtall), 0.8);
    margin: 0;
}

.profile-content-title::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 5px;
    background: rgba(var(--cl1));
    border-radius: 5px;
}

.profile-order-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-order-list .item {
    background: rgba(var(--lbds));
    border-radius: 12px;
}

.profile-order-list .item .info {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
}

.profile-order-list .item .info .icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--txtall));
    background: var(--bg);
    border-radius: 5px;
}

.profile-order-list .item .info .text {
    color: rgba(var(--txtall));
    font-weight: 600;
    font-size: 16px;
}

.profile-order-list .item .info .text span {
    display: block;
    font-weight: 400;
    opacity: 0.8;
}

.profile-order-list .item .info .action {
    margin-left: auto;
}

.profile-order-list .item .list {
    display: none;
    border-top: 1px solid var(--bg);
}

.profile-order-list .item .list .el {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-bottom: 1px dashed var(--bg);
}

.profile-order-list .item .list .el .icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cart-color);
    background: var(--bg);
    border-radius: 5px;
}

.profile-order-list .item .list .el .lext {
    color: rgba(var(--txtall));
    font-weight: 600;
    font-size: 16px;
}

.profile-order-list .item .list .el .lacti {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-order-list .item .list .el .lext span {
    font-weight: 400;
    opacity: 0.8;
    word-break: break-word;
    table-layout: fixed;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.profile-order-list .item .list .el .lacti .price {
    color: rgba(var(--txtall), 0.8);
    font-size: 15px;
    min-width: max-content;
}

.addfunds-area,.main-area {
    background: rgba(var(--lbds));
    border-radius: 12px;
    margin-bottom: 20px;
}

.addfunds-area .form-group, .main-area .form-group {
    margin-bottom: 15px;
}

label.form-control-label {
    color: rgba(var(--txtall), 0.8);
    padding-left: 5px;
    margin-bottom: 5px;
    font-weight: 500;
}

.addfunds-info, .profile-set-area {
    background: rgba(var(--lbds));
    padding: 20px;
    border-radius: 12px;
}

.profile-set-area {
    padding: 25px;
}

.addfunds-info .head, .profile-set-area .head {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 12px;
    position: relative;
    color: rgba(var(--txtall), 0.8);
    border-bottom: 1px solid var(--bg);
}

.addfunds-info .head::before, .profile-set-area .head::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 35px;
    height: 4px;
    border-radius: 5px;
    background: rgba(var(--cl1));
}

.addfunds-info p {
    margin: 0;
    color: rgba(var(--txtall), 0.9);
    line-height: 21px;
}

.addfunds-area .body, .main-area .body {
    padding: 0px 25px 13px;
    border-bottom: 1px solid var(--bg);
}

.addfunds-area .foot, .main-area .foot {
    padding: 25px;
    display: grid;
    align-items: center;
    gap: 18px;
}

.select-payment-method {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 7px;
}

.select-payment-method .item {
    font-size: 15px;
    color: rgba(var(--txtall));
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid #b9b9b9;
    user-select: none;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 17px;
    height: 63px;
}

.dashboard-head h1 {
    font-size: 19px;
    font-weight: 600;
    color: rgba(var(--txtall), .8);
    margin-top: 18px;
}

.select-payment-method .item .text {
    font-size: 14px;
    line-height: 18px;
}

.select-payment-desc {
    display: block;
    width: 100%;
    position: relative;
    color: rgba(var(--txtall), .8);
    margin-bottom: 15px;
}

.select-payment-desc i {
    position: absolute;
    color: #009688;
    font-size: 42px;
    transform: rotateZ(-6deg);
    opacity: 0.2;
    right: 0;
}

.select-payment-method .item .icon {
    font-size: 39px;
    z-index: 0;
    line-height: 1px;
}

.select-payment-method .item span {
    display: block;
    font-weight: 400;
    color: rgba(var(--txtall), 0.7);
}

.select-payment-method .item:hover {
    background: #a5a5c71a;
}

.select-payment-method .item.selected {
    color: #009688;
    border-color: #009688;
}

.addfunds-area .butto, .main-area .butto {
    padding: 8px 10px !important;
}

.user-prochoice li {
    list-style: none;
}

.user-prochoice ul {
    padding: 0;
    margin: 0;
}

.priceflex.cart .action {
    display: flex;
    align-items: center;
}

.priceflex.cart .action .coupon {
    margin: 0;
}

.priceflex.cart .action button {
    height: 100%;
}

.priceflex.cart .action .coupon button {
    height: fit-content;
    background: #5f728a;
    box-shadow: none;
}

.priceflex.cart .action .coupon input {
    height: 55px;
    min-width: 245px;
    background: #d9dde9;
    border: 1px solid #c5c9d7;
}

body.dark .priceflex.cart .action .coupon input {
    background: #292b35;
    border: 1px solid #c5c9d71f;
}

.priceflex.cart .action .coupon input::placeholder {
    color: #98a4b5;
}

section#logre {
    background: rgb(var(--intlinear));
    overflow: hidden;
    position: relative;
}

section#logre::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: url(../img/prBG.webp);
    background-size: auto;
    background-position: center;
    opacity: 0.03;
}

.logreArea {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: auto 450px;
    justify-content: center;
    background: rgba(var(--lbds));
    border-radius: 25px;
    overflow: hidden;
}

.logreArea.reg {
    max-width: 450px;
}

.loreBox {
    background: rgba(var(--lbds));
    border-radius: 20px;
}

.loreBox .head {
    padding: 30px;
    border-bottom: 1px solid var(--bg);
}

.loreBox .body {
    padding-bottom: 10px;
}

.loreBox .body .form-control {
    border-radius: 12px;
    padding: 18px;
    padding-top: 30px;
    font-weight: 500;
}

.loreBox .bottom .butto {
    padding: 17px !important;
    border-radius: 12px;
    font-size: 17px;
    background: rgba(var(--cl1));
}

.logreArea .tabHead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.logreArea .tabHead .item {
    padding: 10px 20px;
    border: 1px solid #ececec;
    background: transparent;
    color: rgba(var(--txtall), .5);
    transition: 0.2s;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    user-select: none;
    font-weight: 500;
}

.logreArea .tabHead .item:hover {
    background: #ffffff30;
}

.logreArea .tabHead .item.active {
    background: rgba(var(--cl1));
    border: transparent;
    color: rgba(var(--lbds));
}

section#logreCont {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.logreArea .login-area {
    width: 100%;
    min-width: 450px;
    padding: 30px 50px;
}

.logreArea .well-area img {
    width: 319px;
    position: absolute;
    bottom: 0;
    right: -29px;
}

.loreBox .ord-control {
    border: 1px solid #ececec;
}

.logHead img {
    display: block;
}

.logHead h1 {
    font-size: 26px;
    font-weight: 600;
    color: rgba(var(--txtall), .8);
    margin-top: 18px;
}

.logHead > p {
    color: rgba(var(--txtall), .7);
    margin-bottom: 25px;
}

.logreArea .well-area {
    background: rgba(var(--cl1));
    min-width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logreArea .well-area .side {
    width: 300px;
    height: 350px;
    background: #ffffff40;
    border-radius: 30px;
    position: relative;
}

section#logre .logHead {
    text-align: center;
    padding-top: 50px;
    margin: 0 auto;
    color: #fff;
    padding-bottom: 150px;
    position: relative;
}

section#logre .logHead h1 {
    font-size: 26px;
    margin-bottom: 3px;
    margin-top: 30px;
    font-weight: bold;
}

section#logre .logHead p {
    color: #c7cadb;
}

.logreBottom .butto-forgotPass {
    width: 90%;
    margin: 0 auto;
    display: block;
    margin-top: 15px;
    border: 1px solid #575b722e;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    color: #9497a9;
    transition: 0.2s;
    background: transparent;
}

.logreBottom .butto-forgotPass:hover {
    background: #575b720d;
}

.logreBottom .logreRegister {
    margin-top: 20px;
    display: block;
    text-align: center;
    font-weight: 600;
    color: var(--light-text);
}

.tabContent .tabitem {
    display: none;
}

.tabContent .tabitem.show {
    display: block;
}

section#logre .logHead > a img {
    height: 40px;
}

.form-floating > label {
    padding: 19px;
    color: #979eb5;
}

.form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.8) translateY(-0.3rem) translateX(0.15rem);
}

.loreBox .body .form-control:focus {
    box-shadow: none;
    border-color: rgb(var(--cl1));
}

body.dark .loreBox .body .form-control {
    background: #292b35;
    border-color: transparent;
}

.forgot-content {
    margin-top: 20px;
    position: relative;
}

.forgot-content .butto {
    position: absolute;
    right: 10px;
    transform: translateY(-50%);
    top: 50%;
}

.forgot-content input {
    border-radius: 15px;
    height: 60px !important;
}

.forgot-content {
    display: none;
}

.full-alert {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
}

.full-alert.show {
    opacity: 1;
    pointer-events: all;
}

.full-alert .overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #353642;
    opacity: .95;
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
}

.full-alert .contside {
    background: #1a1b2a;
    padding: 20px 30px;
    z-index: 1;
    border-radius: 25px;
    min-width: 380px;
}

.full-alert .content {
    position: relative;
    opacity: 0;
    transform: translateY(-50px);
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
    transition-delay: .2s;
}

.full-alert .icon {
    font-size: 80px;
    color: #fff;
    margin-bottom: 5px;
}

.full-alert .title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.full-alert .description {
    color: #bec7d7;
    font-size: 18px;
    margin-top: 2px;
    margin-bottom: 25px;
}

.full-alert .action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
    transition-delay: .2s;
}

.full-alert .action .butto {
    padding: 15px 25px !important;
    font-size: 16px;
    border-radius: 12px;
    width: 100%;
}

.full-alert.show .overlay {
    opacity: .98;
}

.full-alert.show .content {
    opacity: 1;
    transform: translateY(0px);
}

.full-alert.show .action {
    opacity: 1;
    transform: translateY(0px);
}

.dashboard-head {
    margin-top: 0;
    position: relative;
}

.dashboard-head span {
    color: rgba(var(--txtall));
    font-weight: bold;
    font-size: 18px;
}

.dashboard-head p {
    color: rgba(var(--txtall), .8);
    margin-bottom: 15px;
}

.intall.orderdetail .conts {
    padding: 25px 50px;
}

.intall.orderdetail {
    height: 250px;
}

.intall.orderdetail .conts .icobox {
    min-width: 90px;
    height: 90px;
    width: 90px;
}

.intall.orderdetail .conts .icobox i {
    font-size: 37px;
}

.load-more {
    margin: 15px auto 0;
    width: fit-content;
    background: #ced2df;
    padding: 7px 15px;
    border-radius: 12px;
    font-weight: 500;
    color: var(--light);
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
}

.load-more:hover {
    background: #dadde7;
}

@keyframes dotsmove {
    0%, 100% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg);
    }
}

@keyframes icoshad {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .serviceList {
        grid-template-columns: repeat(6, 1fr) !important;
    }
}

@media (max-width: 900px) {
    .serviceList {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .serviceList {
        grid-template-columns: repeat(3, 1fr) !important;
        padding: 0 10px;
    }

    .serviceList .item:nth-child(1) {
        padding-left: 0;
    }

    .serviceList .item:last-child {
        padding-right: 0;
    }

    .intall.order.cart {
        margin-top: 20px;
    }
}

@media (max-width: 1400px) {
    .platList, .packList {
        grid-template-columns: repeat(3, 1fr);
    }

    .whyus .list .item {
        height: 300px;
    }
}

@media (max-width: 1250px) {
    .intall.reserve .conts {
        padding: 30px 50px;
    }

    .intall.reserve .conts .icobox {
        min-width: 110px;
        height: 110px;
        margin-left: 30px;
    }

    .intall.reserve .conts .icobox i {
        font-size: 45px;
    }
}

@media (max-width: 991px) {
    .navTogbtn {
        display: flex;
        flex-flow: wrap;
        z-index: 99;
        position: relative;
    }

    .head-stable {
        margin-left: auto;
    }

    .NavListArea {
        position: fixed;
        top: 0;
        left: -100%;
        visibility: hidden;
        bottom: 0;
        width: 100%;
        background: rgba(var(--lbds));
        z-index: 99;
        transition: 0.2s;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        box-shadow: 3px 0 20px #00000010;
    }

    .NavListArea ul.NavList {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .NavListArea .NavActions {
        width: 100%;
        flex-direction: column;
        margin: 0;
        margin-top: 25px;
        align-self: center;
    }

    .NavActions .darkmode {
        margin: 0;
        margin-top: 20px;
    }

    .NavActions .darkmode .darkswitch {
        background: rgba(var(--txtall), 0.1);
    }

    .supportbtn {
        width: 100%;
    }

    .supportbtn a {
        width: 100%;
        text-align: center;
    }

    body.showmenu .navTogbtn {
        position: fixed;
        right: 12px;
    }

    ul.NavList li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(var(--lsdb), 0.05);
    }

    li.nav-drop ul li:nth-last-child(1) {
        border-bottom: inherit;
    }

    .NavList li a {
        display: block;
        padding: 10px 5px;
    }

    .nav-drop .drop-menu {
        position: relative;
        background: #00000006;
        box-shadow: none;
        padding: 12px;
        margin: 0 !important;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .intall.reserve .conts {
        padding: 40px 30px;
        padding-bottom: 65px;
    }

    .intall .conts {
        flex-direction: column-reverse;
        justify-content: center;
        padding: 40px 20px;
        padding-bottom: 65px;
    }

    .intall .conts .detabox {
        margin: 0;
        text-align: center;
    }

    .intall.orderdetail .conts {
        justify-content: center;
        align-items: center;
    }

    .intall.orderdetail {
        height: 200px;
    }

    .intall {
        height: fit-content;
    }

    .intall .conts .icobox, .intall.reserve .conts .icobox {
        position: absolute;
        bottom: -40px;
        left: calc(50% - 50px);
        min-width: 80px;
        width: 80px;
        max-height: 80px;
        margin: 0 !important;
    }

    .intall .icobox::before {
        left: -15px;
        top: -15px;
        right: -15px;
        bottom: -15px;
    }

    .intall .conts .icobox {
        border: 6px solid rgba(var(--lbds), 0.3);
    }

    .intall.reserve .conts .icobox i, .intall .conts .icobox i {
        font-size: 28px;
    }

    .intall.orderdetail {
        margin-bottom: 75px;
    }

    .platList .item {
        padding: 25px;
    }

    .platList, .packList, .blogList {
        grid-template-columns: repeat(2, 1fr);
    }

    .contactArea {
        background: inherit;
        padding: 10px;
    }

    .fastOrder .fastitems {
        flex-direction: column;
        width: 100%;
    }

    .fastOrder {
        flex-direction: column;
        width: calc(100% - 30px);
        transform: translateY(-50px);
    }

    .fastOrder .fastselect {
        margin: 0;
        padding: 0;
        text-align: left;
        width: 100%;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #00000007;
    }

    .fastOrder .fastselect::after {
        display: none;
    }

    .fastOrder .fastselect .cont {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .fastOrder .fastselect .cont i {
        display: block;
        transition: 0.2s;
    }

    .fastselect.show .cont i {
        transform: rotate(90deg);
    }

    .fastAction {
        margin: 0;
        margin-top: 10px;
        width: 100%;
    }

    .butto-fast {
        min-width: 100%;
    }

    .fastOrder .fastDrop {
        top: 0;
        z-index: 1;
        width: 100%;
    }

    .fastOrder .fastselect:first-child .fastDrop {
        left: 0;
    }

    .fastOrder .fastDrop.show {
        top: calc(100% + 5px);
    }

    .fastOrder .fastDrop ul {
        max-height: 215px;
    }

    .whyus .list {
        grid-template-columns: repeat(2, 1fr);
    }

    .AboutArea {
        flex-direction: column;
    }

    .AboutArea .imgData:before {
        left: calc(50% - 125px);
        top: -40px;
    }

    .AboutArea .imgData img {
        width: 100%;
        height: 270px;
        border-radius: 20px;
    }

    .AboutArea.styletwo .imgData img {
        border-radius: 50px;
    }

    .AboDetail {
        padding: 0 10px;
        margin-top: 35px;
    }

    .AboutArea .imgData .datainfo {
        display: none;
    }

    .AboutArea .imgData .datainfo .item {
        margin: 0 3px;
    }

    .aboaction {
        width: calc(100% - 50px);
    }

    .aboaction::before, .aboaction a.abobtn {
        width: 100%;
    }

    .blog-list {
        display: flex;
        grid-gap: inherit;
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .blog-list::-webkit-scrollbar {
        display: none;
    }

    .blog-list .blog-item {
        scroll-snap-align: start;
        min-width: 65%;
        padding-right: 25px;
        padding-left: 15px;
        margin-right: 0;
    }

    .contact-info-item {
        padding: 3px 0px !important;
    }

    footer {
        margin-bottom: 70px !important;
    }

    .support-bottom {
        flex-direction: column;
    }

    .support-bottom .text {
        margin-bottom: 20px;
        text-align: center;
    }

    .support-bottom .action {
        text-align: center;
        margin-left: inherit;
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .support-bottom .action a {
        width: 90%;
        margin: 0;
        justify-content: space-between;
    }

    .support-bottom .action a:nth-child(1) {
        margin-bottom: 12px;
    }

    .nheadall, .packListArea .splide__pagination__page {
        display: none;
    }

    .packallBTN {
        margin-left: 0;
        margin-top: 0;
    }

    .nfootall {
        display: block;
        text-align: center;
        padding-top: 20px;
        position: relative;
    }

    .packListArea {
        padding-bottom: 15px;
    }

    .otbuts {
        display: flex;
        align-items: center;
    }

    .otbuts .darkmode {
        margin-top: 0;
    }

    .otbuts {
        margin-top: 15px;
        padding: 8px;
        width: 100%;
        background: rgba(var(--lsdb), 0.03);
        justify-content: center;
        border-radius: 50px;
    }

    .orderSearchNav.orsebtns {
        box-shadow: none !important;
    }

    .mobileFavsbut {
        display: inline-block;
        background: #fbbe65;
        padding: 3px 30px;
        border-radius: 30px;
        cursor: pointer;
        margin-left: 10px;
        position: relative;
        overflow: hidden;
    }

    .mobileFavsbut a i {
        color: #fff;
    }

    .fixActions {
        left: 5px;
        transform: translateY(5%) scale(0.8) !important;
        bottom: 0px;
    }

    .fixActions.show {
        transform: translateY(50%) scale(0.8) !important;
        bottom: 50%;
    }

    .pack-manuel {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 20px;
        justify-content: center;
    }

    .pack-manuel .pack-select {
        margin-left: 0;
        margin-right: 15px;
    }

    .pack-manuel .manu-text {
        text-align: center;
        width: 100%;
    }

    .pack-manuel .pack-manuel-buy .price {
        margin-top: 0 !important;
    }

    .intall.account .conts {
        flex-direction: row;
        justify-content: center;
    }

    .intall.account .conts .icobox {
        position: relative;
        bottom: 0;
        left: 0;
        max-height: 90px;
    }

    .addfunds-area .foot, .main-area .foot {
        flex-direction: column;
    }

    .addfunds-area .foot .butto, .main-area .foot .butto {
        margin: 15px auto 0;
        width: 100%;
        text-align: center;
    }

    .select-payment-method .item {
        width: 100%;
    }

    .select-payment-method {
        width: 100%;
    }
}

@media (max-width: 768px) {
    a.logo img {
        height: 29px;
    }

    header .navbar {
        position: inherit;
        background: rgba(var(--lbds));
        height: 76px;
        padding: 0;
    }

    .navbar .container {
        padding: 0;
    }

    .navTogbtn {
        margin-right: -6px;
    }

    .serviceList .item .box {
        border-radius: 100%;
        width: 80px;
        height: 80px;
    }

    .serviceList .item .serviceName {
        max-width: 80px;
    }

    .serviceList .item .box i {
        font-size: 32px;
    }

    .serviceList .item .opacityIcon {
        left: 32px;
    }

    .serviceList {
        justify-content: flex-start;
        overflow: auto;
        margin: 25px 0;
    }

    .serviceList .item {
        margin: 0 6px;
    }

    .serviceList .item:nth-child(1) {
        margin-left: 0;
    }

    #serviceList .container {
        padding: 0;
    }

    .serviceList .item:nth-child(1) {
        margin-left: 0;
        padding-left: 15px;
    }

    .serviceList .item:nth-last-child(1) {
        margin-right: 0;
        padding-right: 15px;
    }

    .serviceList::-webkit-scrollbar {
        display: none;
    }

    #introHome {
        margin-top: 0;
    }

    #introHome .container {
        padding: 0;
    }

    .introHome {
        height: auto;
        min-height: 350px;
    }

    .introHome .content {
        padding: 20px;
        top: 0;
        bottom: 50px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .introHome .content p {
        font-size: 15px;
    }

    .introHome::before {
        background: linear-gradient(to top, rgb(var(--intlinear)), rgb(var(--intlinear), 0.8), rgb(var(--intlinear), 0.5));
        border-radius: 0;
    }

    .introHome img.introBG {
        border-radius: 0;
    }

    .introHome .content h1 {
        font-size: 24px;
    }

    .homestep.two .serviceList, .homestep.three .serviceList {
        margin-top: 0;
    }

    .homestep.three {
        flex-direction: column-reverse;
    }

    .homestep.four {
        flex-direction: column;
    }

    .container.mp0 {
        padding: 0;
    }

    .container.mp0 .ns-heading {
        padding: 0 15px;
    }

    .packitem.inslide {
        margin-top: 10px !important;
    }

    .packListArea .packitem {
        margin: 0 6px;
    }

    .platList, .packList, .blogList {
        grid-template-columns: repeat(1, 1fr);
    }

    .whyus .list {
        grid-template-columns: repeat(1, 1fr);
    }

    .whyus .list .item {
        height: 240px;
        border-radius: 15px;
    }

    .whyus .list .item .content .icon {
        width: 60px;
        height: 60px;
    }

    .whyus .list .item .content .icon i {
        font-size: 22px;
    }

    .whyus .list .item .content .detail p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    #whyus::after {
        height: 150px;
    }

    #testimonial {
        padding: 0;
    }

    #testimonial .ns-heading {
        padding: 0 15px;
    }

    .testimonial-item {
        margin: 0 10px;
    }

    .faqwell .item .fs-head {
        font-size: 16px;
    }

    .faqwell .item {
        padding: 15px;
        padding-bottom: 14px;
        margin-bottom: 8px;
    }

    .faqwell .item .fs-head .plusminus {
        padding-left: 12px;
    }

    .ns-heading.flx {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ns-heading.flx .left {
        text-align: center;
    }

    .ns-heading.flx .showmore {
        margin: 12px 0 0;
    }

    #aboutus {
        margin-top: 80px;
        padding-bottom: 70px;
    }

    #faq {
        margin-top: 75px;
    }

    #bloglast {
        margin-top: 60px;
    }

    .foot-flex {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
    }

    .intall .conts .icobox {
        box-shadow: 0 5px 20px rgba(var(--cl1), 0.3);
    }

    .breadcrumb ul {
        overflow: hidden;
        flex-flow: nowrap;
        display: flex;
        position: relative;
        white-space: nowrap;
    }

    .breadcrumb ul li:nth-last-child(1) {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .post-area > h1 {
        font-size: 25px;
    }

    .post-thumbnail img {
        max-height: 275px;
    }

    .post-content .post-body h1 {
        font-size: 25px;
    }

    .post-content .post-body h2 {
        font-size: 23px;
    }

    .post-content .post-body h3 {
        font-size: 21px;
    }

    .post-content .post-body {
        padding: 25px 15px;
    }

    .ns-control {
        font-size: 16px !important;
    }

    .orderArea {
        margin-top: 0;
    }

    .intall.order {
        margin: 0;
        margin-bottom: 75px;
    }

    .intall.order.basket {
        margin-bottom: 30px;
    }

    .firstcont .step h2 {
        font-size: 20px;
    }

    .row > .mobile-col {
        padding: 0 !important;
    }

    .priceTag.cart .icon {
        display: none;
    }

    .priceflex {
        gap: 15px;
    }

    .priceflex.cart .action .coupon input {
        min-width: 230px;
    }

    .priceflex.cart .action .coupon button {
        padding: 5px 15px;
    }

    .priceflex .butto.ms-auto {
        margin-left: 0 !important;
        width: 100%;
        justify-content: center;
        padding: 15px !important;
    }

    .orderArea .row .col-md-8 {
        padding: 0;
    }

    .orderArea .row .col-md-8 .firstcont {
        margin: 0px 15px 30px;
    }

    .intall.order .conts .detabox {
        margin-left: 0;
    }

    .intall.order .conts {
        padding: 40px 20px;
        padding-bottom: 75px;
    }

    .intall.order .conts .icobox {
        position: absolute;
        min-width: 80px;
    }

    .intall.order .conts .icobox i {
        font-size: 30px;
    }

    .firstcont {
        margin-top: 55px;
        padding: 25px 20px;
        border-radius: 5px;
    }

    .fixActions {
        left: 5px;
        transform: translateY(5%) scale(0.8) !important;
        bottom: 0;
    }

    .fixActions.show {
        transform: translateY(50%) scale(0.8) !important;
        bottom: 50%;
    }

    .fixActions .item {
        margin-bottom: 7px;
        padding-right: 0 !important;
    }

    .fixActions .item span {
        display: none;
    }

    .searcharea {
        padding-bottom: 50px;
        margin: 0 15px;
    }

    .osareaBG {
        padding: 60px 0;
        max-height: 100%;
        overflow: auto;
    }

    body.order header, body.order main, body.order footer {
        display: none;
    }

    .lastordersarea .content .item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 15px;
    }

    .lastordersarea .content .item .text {
        margin-bottom: 5px;
    }

    .ordliact {
        padding: 5px 12px;
    }

    .intall.order .conts .detabox h1 {
        font-size: 24px;
    }

    .lastordersarea {
        margin: 0 15px;
    }

    .blog-list .blog-item {
        min-width: 100%;
    }

    .packListArea:before {
        width: 100%;
        border-radius: 0;
        height: 250px;
    }

    .contentArea img {
        border-radius: 10px;
        padding: 0;
        margin: 15px 0;
    }

    .testiarea::after {
        width: 275px;
    }

    body.dark .nav-drop .drop-menu {
        background: #ffffff06;
    }

    .alert-message {
        max-width: calc(100% - 40px);
    }

    #bloglast, #whyus, #testimonial, #aboutus, #faq, #packList {
        margin-bottom: 60px;
    }

    .blog-item .thumb img {
        height: 220px;
    }

    .post-content .post-body img {
        margin: 12px 0;
    }

    .intall.account .conts .detabox {
        margin-left: 25px;
        text-align: left;
    }

    .intall.account .conts .icobox {
        min-width: 75px;
        height: 75px;
        width: 75px;
    }

    .intall.account .conts .icobox i {
        font-size: 26px;
    }

    .intall.account .conts .detabox h1 {
        font-size: 26px;
    }

    .intall .conts .detabox p {
        font-size: 15px;
    }

    .intall.account .conts {
        flex-direction: column;
        padding-top: 30px;
        padding-bottom: 40px;
    }

    .intall.account {
        height: 320px;
    }

    .intall.account .conts .detabox {
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }

    .intall.account .conts .details {
        margin: 0 auto;
    }

    .user-account-menu .responsive-bar {
        display: flex;
        align-items: center;
        padding: 15px 18px;
        justify-content: space-between;
        font-weight: 500;
    }

    .user-account-menu ul {
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .user-account-menu span.bar {
        font-size: 18px;
    }

    .user-account-menu ul li {
        border-left: none;
        border-top: 1px solid var(--bg);
        width: 100%;
    }

    .user-account-menu ul li a {
        height: 50px;
        padding: 10px 15px;
        border: none;
    }

    .profile-order-list .item .list .el {
        flex-wrap: wrap;
    }

    .profile-order-list .item .list .el .icon {
        flex: 1;
        max-width: 40px;
    }

    .profile-order-list .item .list .el .lext {
        flex: 1;
    }

    .profile-order-list .item .list .el .lacti {
        width: 100%;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 7px;
    }

    .profile-order-list .item .list .el .lacti .price {
        font-weight: 500;
        background: #dfe2f55e;
        padding: 5px 12px;
        border-radius: 5px;
    }
}

@media (max-width: 525px) {
    .priceTag.cart .icon {
        display: flex;
    }

    .priceflex.cart .action [step-next] {
        width: 100%;
        height: 55px !important;
        justify-content: center;
    }

    .priceflex.cart .action {
        width: 100%;
    }

    .priceflex {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    #intall {
        margin-top: 0;
        margin-bottom: 85px;
    }

    #intall .container {
        padding: 0;
    }

    .intall::before {
        border-radius: 0;
    }

    .intall img.introBG {
        border-radius: 0;
    }

    .profile-login span.logText {
        display: none;
    }

    .profile-login {
        font-size: 16px;
        padding: 3px 20px;
    }
    .bottom-menu ul li a {
        font-size: 15px;
    }
    .navbar .container {
        padding: 0 15px;
    }

    .navTogbtn {
        margin-right: 0px;
    }

    .pack-manuel .pack-manuel-buy .packBuyBTN {
        min-width: 140px;
    }

    .pack-manuel .pack-select {
        margin-right: 10px;
    }

    .intall.order.cart {
        margin: 0 -15px 75px;
    }

    .baskList .item .text {
        font-size: 15px;
        width: calc(100% - 180px);
    }

    .baskList .item .icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
        margin-right: 10px;
        font-size: 18px;
    }

    .baskList .item .remove {
        min-width: 35px;
        height: 35px;
        width: 35px;
        font-size: 14px;
    }

    .baskList .item .price {
        font-size: 16px;
        margin-right: 10px;
    }

    .baskList .item {
        padding: 12px;
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .logreArea .well-area {
        display: none;
    }

    .logreArea {
        max-width: 500px;
        display: block;
    }

    .logreArea .login-area {
        min-width: auto;
    }
}

@media (min-width: 991px) {
    .orPayDetail {
        position: sticky;
        top: 10px;
    }
}

@media (min-width: 768px) {
    .homestep.one, .homestep.three {
        margin-top: 35px;
    }

    .homestep.one.noneService, .homestep.three.noneService {
        margin-top: 15px;
    }

    .homestep.two, .homestep.four {
        margin-top: 15px;
    }

    .nav-head.back {
        margin-bottom: 30px;
    }
}

.none_click {
    pointer-events: none;
}

.notification--header {
    padding: 10px 20px;
    background: linear-gradient(90deg, #000, rgb(var(--cl1)));
    color: white;
    font-size: 18px;
    border-radius: 0;
}

.noti-gap-flex {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 40px;
}

.notification--header .text {
    flex: 2;
    font-size: 18px;
}

.notification--header .text .code {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 20px;
    display: inline-block;
}

.notification--header .text .code i {
    margin-left: 4px;
    transform: rotateZ(14deg);
    display: inline-table;
    color: #f5c7a8;
    font-weight: 800;
    position: relative;
    top: 2px;
    cursor: pointer;
}

.notification--header .close-head {
    cursor: pointer;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification--header .close-head i {
    font-size: 16px;
    color: white;
}

.navitem .drop-menu .item-menu {
    display: none;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: start;
}

.drop-menu {
    position: absolute;
    left: 0;
    top: calc(100% - 20px);
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: var(--white);
    transition: 0.2s ease all;
    padding: 12px;
    border-radius: var(--radius-main);
}

.navitem:hover .drop-menu,.showdrop .drop-menu {
    top: calc(100% + -12px);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding: 10px;
}

.showmenu .showdrop .drop-menu {
    top: -4px !important;
    padding: 7px !important;
    display: block !important;
    background: none;
}

.showmenu .showdrop .drop-menu::before {
    display: none !important;
}

.navitem:hover .drop-menu .item-menu, .showdrop .drop-menu .item-menu {
    background: #fbfbfb;
    display: inline;
    padding: 8px;
}

.showdrop .drop-menu .item-menu {
    padding: 0 !important;
    margin: 0 !important;
    display: block;
}

.navitem:hover .drop-menu .item-menu .nav-sub-heading, .showdrop .drop-menu .item-menu .nav-sub-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-bottom: 12px;
    margin-bottom: 15px;
    max-width: 217px;
    color: var(--c);
    font-weight: 600;
}

.showdrop .drop-menu .item-menu .nav-sub-heading {
    font-size: 18px !important;
    max-width: 100% !important;
    padding-bottom: 7px !important;
    margin-bottom: 1px !important;
}

.navitem:hover .drop-menu .item-menu .nav-sub-heading::after, .showdrop .drop-menu .item-menu .nav-sub-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 200px;
    background: linear-gradient(to right, #a0a8c1, #a0a8c100);
}

.showmenu .fixed-bottom-menu {
    display: none !important;
}

.navitem:hover .drop-menu .item-menu ul.item-menu-sub, .showdrop .drop-menu .item-menu ul.item-menu-sub {
    padding: 1px;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub, .showdrop .drop-menu .item-menu li.item-menu-sub {
    border: 2px solid #fff !important;
    margin-bottom: 5px;
    background: #e7e6e6;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub:hover, .showdrop .drop-menu .item-menu li.item-menu-sub:hover {
    border: 2px solid var(--c) !important;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link, .showdrop .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link {
    display: flex;
    align-items: center;
    padding: 5px;
    gap: 8px;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .icon, .showdrop .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c, var(--main-color));
    border-radius: 2px;
    color: #fff;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub:hover .icon, .showdrop .drop-menu .item-menu li.item-menu-sub:hover .icon {
    background: #fff !important;
    color: var(--c) !important;
}

.navitem:hover .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .text, .showdrop .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .text {
    line-height: normal;
    color: var(--soft-text);
    font-size: 15px;
    text-align: left;
}

.single-line {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bottom-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: var(--font);
}

.bottom-menu {
    padding: 10px 0;
    border-bottom: 1px solid rgb(111 115 145 / 13%);
    height: 51px;
    align-items: center !important;
    display: flex;
    padding: 5px;
    gap: 8px;
}

.bottom-menu .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-between;
}

.bottom-menu ul.left {
    justify-content: flex-start;
}

.bottom-menu ul.right {
    justify-content: flex-end;
}

@media screen and (min-width: 951px) {
    .bottom-menu ul > li:nth-child(2),.bottom-menu ul > li:nth-child(4) {
        border-left: 1px solid rgb(111 115 145 / 13%);
        padding-left: 10px;
    }
}

@media screen and (max-width: 950px) {
    .bottom-menu ul.left > li:nth-child(1) {
        display: none;
    }

    .bottom-menu ul.left > li:nth-child(2) {
        margin-left: 0;
    }

    .bottom-menu ul > li:nth-child(4) {
        border-left: 1px solid rgb(111 115 145 / 13%);
        padding-left: 10px;
    }
}

@media screen and (max-width: 770px) {
    .bottom-menu ul.right > li:nth-child(1) {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .bottom-menu ul.left {
    }
}

.bottom-menu ul li {
    margin: 0 15px;
}

.bottom-menu ul > li:nth-child(1) {
    margin: 0;
}

.bottom-menu ul.right > li:nth-child(2) {
    margin-right: 0;
}

.bottom-menu ul li a {
    color: rgb(var(--menutxtcl));
    text-decoration: none;
    display: flex;
    align-items: center;
}

.bottom-menu ul li a .info {
    display: flex;
    align-items: center;
}

.bottom-menu ul li a .info i {
    margin-right: 8px;
    font-size: 21px;
}

.bottom-menu ul li.orderLI .order-search-btn {
    cursor: pointer;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.bottom-menu ul li.orderLI .order-search-btn:hover {
    color: #ffc107;
}

.main-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.main-product-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.main-product-item:hover {
    transform: translateY(-5px);
}

.main-product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
    background-color: var(--platform-color);
    min-height: 81px;
}

.main-product-head a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.main-product-head a .left {
    display: flex;
    align-items: center;
    max-width: 155px;
    font-size: 17px;
    line-height: 18px;
}

.main-product-head a .left span {
    display: contents;
    font-size: 14px;
    font-weight: 100;
}

.main-product-head a .right {
    margin-left: auto;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 0.9em;
    font-weight: normal;
}

.main-product-head i {
    font-size: 3em;
    margin-right: 10px;
}

.main-product-head .right span {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 0.9em;
    font-weight: normal;
    margin-right: 0;
}

.category-product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-product-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

@media screen and (min-width: 850px) {
    .category-product-list > *:only-child, .main-product-list > *:only-child {
        max-width: 300px;
    }
}

.category-product-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
    background-color: var(--platform-color);
    min-height: 95px;
}

.category-product-head a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.category-product-head a .left {
    display: flex;
    max-width: 300px;
    line-height: 18px;
    flex-direction: column;
    align-items: flex-start;
}

.category-product-head a .left span {
    display: contents;
    font-size: 14px;
    font-weight: 100;
}

.category-product-head a .left .title {
    max-width: 155px;
}

.category-product-head a .right {
    margin-left: auto;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 0.9em;
    font-weight: normal;
    cursor: pointer;
}

.category-product-head i {
    font-size: 2.4em;
    margin-right: 10px;
}

.most-view {
    margin-left: auto;
}

.most-view .list-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 10px;
    border-radius: 17px;
    border: 2px solid rgba(var(--txtall), 0.2);
    border-radius: 15px;
    z-index: -1;
    transition: 0.4s cubic-bezier(0, 0, 0.34, 0.81);
}

.most-view .list-view .item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: var(--platform-color);
    border-radius: 3px;
}

.most-view .list-view .item .icon {
    color: #fff;
    font-size: 20px;
}

.most-view .list-view .item .icon:hover {
    color: #ffc107;
}

@media screen and (max-width: 768px) {
    .main-product-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        padding: 18px;
    }

    .flx.abo-main {
        width: calc(100% - 38px) !important;
        align-items: flex-start;
    }

    .most-view {
        margin-left: 0;
        margin-top: 17px;
    }
}

.copyright-pay {
    color: rgb(var(--menutxtcl));
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.text {
    font-size: 14px;
}

.pay img {
    margin-left: 10px;
    width: auto;
    max-width: 250px;
    height: auto;
}

@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
    }

    .pay img {
        margin: 10px 5px;
    }
}

.more-load {
    text-align: left;
    color: #000;
    padding: 5px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
}

.footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
}

.menu-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.menu-column h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.menu-column ul {
    list-style: none;
    padding: 0;
}

.menu-column ul li {
    margin-bottom: 8px;
    width: 100%;
    display: block !important;
    list-style: none;
}

.menu-column ul li a:hover {
    padding-left: 4px;
    color: rgb(var(--cl1));
}

.menu-column ul li a {
    text-decoration: none;
    color: #555;
}

@media (max-width: 768px) {
    .menu-column {
        flex: 0 0 100%;
        text-align: left;
        padding-left: 17px;
    }

    .menu-column ul {
        padding: 0;
    }

    .menu-column ul li {
        display: inline-block;
        margin: 5px 10px;
    }

    .menu-column ul li a {
        color: #333;
    }
}

.toastify {
    padding: 12px 20px;
    color: #ffffff;
    display: inline-block;
    background: linear-gradient(135deg, #73a5ff, #5477f5);
    position: fixed;
    opacity: 0;
    top: -2px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    max-width: calc(50% - 20px);
    z-index: 99999999;
}

.toastify.bg-danger {
    background: linear-gradient(135deg, #ff73c5, #f55454);
}

.toastify.bg-success {
    background: linear-gradient(135deg, #40c080, #159c91);
}

.toastify.on {
    opacity: 1;
}

.toast-close {
    background: transparent;
    border: 0;
    color: white;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    opacity: 0.4;
    padding: 0 5px;
}

.toastify-right {
    right: 15px;
}

.toastify-bottom {
    bottom: -150px;
}

.toastify-rounded {
    border-radius: 25px;
}

.toastify-avatar {
    width: 1.5em;
    height: 1.5em;
    margin: -7px 5px;
    border-radius: 2px;
}

.toastify-center {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
    max-width: -moz-fit-content;
}

.toastify-center {
    transform: translate(0px, -10px) !important;
}

.none_click {
    pointer-events: none;
}

.form-floating {
    position: relative;
    margin-bottom: 12px;
}

.form-floating.fc-icon .form-control {
    padding-left: 70px;
}

.form-floating .form-control {
    padding-top: 28px;
    padding-left: 19px;
}

.form-floating.fc-icon > label {
    padding-left: 70px;
}

.form-control:focus {
    border-color: var(--main-color) !important;
}

.form-floating.fc-icon .form-control:focus + label + .icon {
    color: var(--main-color);
    border-color: rgb(var(--main-rgb), 0.3);
}

.form-floating.fc-icon .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    min-width: 50px;
    width: 50px;
    padding-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--bg);
    height: 36px;
    font-size: 18px;
    color: var(--soft-text);
    transition: .3s ease all;
}

.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    transform: scale(0.8) translateY(-0.27rem) translateX(0.25rem);
    opacity: .7;
}

.form-floating.fc-icon>.form-control:focus~label, .form-floating.fc-icon>.form-control:not(:placeholder-shown)~label, .form-floating.fc-icon>.form-select~label {
    transform: scale(0.8) translateY(-0.27rem) translateX(1.1em);
    opacity: .7;
}

.form-floating.fc-icon .form-control:focus + label + .iti__flag-container {
    color: var(--main-color);
    border-color: rgb(var(--main-rgb), 0.3);
}

.head-stable .info {
    display: grid;
}

.head-stable .icon {
    font-size: 24px;
}

.head-stable .info .balance {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 5px;
}

.orderSearchNav.orsebtns {
    height: 40px;
    display: flex;
    align-items: center;
}

.serviceList {
    grid-template-columns: repeat(10, 1fr) !important;
}

.profilecheck {
    position: relative;
}

.profilecheck .procheckBTN {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(var(--cl1));
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 15px;
}

.scraper-product {
    align-items: center;
    gap: 12px;
    background: var(--bg);
    padding: 10px 12px;
    border-radius: 15px;
    border: 1px solid #00000008;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
    display: none;
}

.scraper-product .area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.scraper-product.active {
    display: flex;
    min-height: 85px;
}

.scraper-product .avatar {
    max-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.scraper-product .avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
}

.scraper-product .spinner {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scraper-product .detail {
    display: flex;
    align-items: center;
}

.scraper-product .detail .item {
    color: var(--light);
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #00000010;
    line-height: 20px;
}

.scraper-product .detail .item > span {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 3px;
}

.scraper-product .detail .item > span b {
    font-weight: bold !important;
    font-family: "Gilroy", sans-serif !important;
}

.scraper-product .statu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
    line-height: 18px;
    color: #a36868;
    background: #e9c3c3;
    padding: 10px 12px;
    padding-left: 16px;
    border-radius: 10px;
    font-size: 15px;
}

.scraper-product .statu .icon i {
    font-size: 20px;
    display: block;
    margin-left: 5px;
}

.scraper-product .statu span {
    display: block;
    font-weight: 600;
}

.scraper-product .detail .item:last-child {
    margin: 0;
    border: 0;
    border: none;
}

.scraper-product.post .avatar img {
    height: auto;
    border-radius: 10px;
}

.scraper-product.post .avatar {
    width: 75px;
    max-width: 75px;
    height: auto;
}

.failedList {
    margin-top: 10px;
    background: #f4ecef;
    border: 1px solid #efdee5;
    padding: 15px 15px 14px;
    border-radius: 12px;
}

.failedList ul {
    margin: 0;
    padding-left: 25px;
}

.failedList ul li {
    color: #875769;
    font-size: 15px;
    font-weight: 500;
}

.cart-head {
    padding: 18px;
    padding-left: 24px;
    background: rgba(var(--lbds));
    border-radius: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    position: relative;
}

.cart-head .text {
    color: rgba(var(--txtall));
    margin-right: 15px;
}

.cart-head .text span {
    font-size: 18px;
    font-weight: bold;
}

.cart-head .text p {
    margin: 0;
}

.cart-head .icon {
    margin-left: auto;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5f728a1f;
    border-radius: 8px;
    color: var(--light);
}

.cart-head::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 15px;
    bottom: 15px;
    width: 5px;
    background: rgba(var(--cl1));
    border-radius: 10px;
}

.select-payment-method.funds {
    width: 100%;
}

.bottom-bar {
    position: fixed;
    bottom: 1px;
    left: 0;
    right: 0;
    z-index: 99;
    text-align: center;
    background: #fff;
    box-shadow: 0px -3px 10px #00000007;
    padding-bottom: calc(env(safe-area-inset-bottom) - 20px);
    height: 80px;
}

.bottom-bar .bottom-menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.bottom-bar .bottom-menu .item {
    padding: 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 58px;
    margin: 4px;
    border-radius: 8px;
}

.bottom-bar .bottom-menu .item.special {
    background: rgba(var(--cl1));
}

.bottom-bar .bottom-menu .item span.count {
    position: absolute;
    right: 4px;
    top: 4px;
    min-width: 16px;
    height: 16px;
    color: #fff;
    background: #ffffff10;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.bottom-bar .bottom-menu .item .icon {
    font-size: 16px;
    color: rgba(var(--txtall));
}

.bottom-bar .bottom-menu .item .text {
    font-size: 14px;
    margin-top: 1px;
    color: rgba(var(--txtall), .7);
}

.bottom-bar .bottom-menu .item.special .icon {
    color: #fff;
}

.bottom-bar .bottom-menu .item.special .text {
    color: #ffffffc9;
}

.testimonial-item.order .person img {
    min-width: 45px;
    width: 45px;
    height: 45px;
}

.testimonial-item.order .person {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.testimonial-item.order .person .name {
    margin-top: 0;
}

.testimonial-item.order .person .text {
    text-align: left;
    line-height: 20px;
}

.testimonial-item.order .detail p {
    text-align: left;
}

.testimonial-item.order .detail .stars {
    display: flex;
    justify-content: flex-start;
}

.testimonial-item.order {
    padding: 20px;
}

.splide.order .splide__arrow svg {
    font-size: 8px;
    fill: #fff;
}

.splide.order .splide__arrow {
    width: 22px;
    height: 22px;
    background: rgba(var(--cl1));
    top: 22px;
}

.splide.order .splide__arrow--prev {
    left: inherit;
    right: 35px;
}

.splide.order .splide__arrow--next {
    right: 10px;
}

.userSupport {
    min-height: 450px;
}

.ticketList .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--bg);
}

.ticketList {
    margin-top: 10px;
}

.ticketList .item .text {
    display: flex;
    flex-direction: column;
    color: rgba(var(--txtall));
    font-size: 15px;
}

.ticketList .item .text span {
    font-weight: bold;
}

.ticketList .item:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.ticketList .item.active .action .butto {
    background: var(--primary);
    color: #fff !important;
}

.ticket-content .messages {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg);
    max-height: 350px;
    overflow: auto;
}

.ticket-content .message {
    padding: 12px 15px;
    background: var(--bg);
    border-radius: 12px;
    color: rgba(var(--txtall));
    width: fit-content;
    max-width: 85%;
    position: relative;
    cursor: pointer;
}

.ticket-content .message .action {
    position: absolute;
    right: 10px;
    bottom: -4px;
    color: #d77496;
    opacity: 0;
    transition: 0.2s;
}

.ticket-content .message.move .action {
    opacity: 1;
    right: -2px;
}

.ticket-content .message.root .action {
    position: absolute;
    right: auto;
    bottom: -4px;
    left: 10px;
    color: #d77496;
}

.ticket-content .message.root.move .action {
    opacity: 1;
    left: -2px;
}

.ticket-content .message span {
    font-size: 14px;
    color: #9294a9;
}

.ticket-content .message p {
    font-weight: 500;
    margin: 0;
}

.ticket-content .message.user {
    border-top-left-radius: 0;
    align-self: flex-end;
    text-align: right;
    background: #3b3e56;
}

.ticket-content .message.root {
    border-top-right-radius: 0;
}

.ticket-content .message.user span {
    color: #ffffffbf;
}

.ticket-content .message.user p {
    color: #fff;
}

.ticket-content .reply-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: 5px;
}

.reply-area textarea.ticket-form {
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    min-height: 85px;
}

.profile-head .avatar .support-notify {
    position: absolute;
    left: calc(50% - 3px);
    bottom: -4px;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: rgba(var(--cl1));
    animation: 1s ease infinite icoshads;
}

.profile-head ul.profile-head-drop li.have {
    border-left: 2px solid rgba(var(--cl1));
}

.bottom-bar .bottom-menu .item span.count.dark {
    background: var(--bg);
    color: rgba(var(--txtall));
}

.splide.order .splide__slide.is-active .inside {
    opacity: 1;
}

.splide.order .splide__slide {
    height: fit-content;
}

.profile-order-list .list.support {
    display: block;
    border-top: none;
}

.profile-order-list .list.support .el {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    color: rgba(var(--txtall));
    background: rgba(var(--lbds));
    border-radius: 12px;
    margin-top: 5px;
}

.profile-order-list .list.support .el .top {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--bg);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.profile-order-list .list.support .el .middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    border-bottom: 1px solid var(--bg);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.profile-order-list .list.support .el .middle span {
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-order-list .list.support .el .middle span.price {
    width: fit-content;
    min-width: fit-content;
    margin-left: 15px;
    font-weight: bold;
}

.profile-order-list.suppage .item {
    background: transparent;
}

.profile-order-list.suppage .item .info {
    background: rgba(var(--lbds));
    border-radius: 12px;
}

.profile-order-list .list.support .el .bottom {
    display: flex;
    width: 100%;
    align-items: center;
}

.profile-order-list .list.support .el .bottom .item {
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid var(--bg);
    border-radius: 0;
    font-size: 14px;
}

.profile-order-list .list.support .el .bottom .item span {
    display: block;
    font-weight: bold;
}

.profile-order-list .list.support .el .bottom .item:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.amount-input-funds {
    position: relative;
}

.amount-input-funds span.type {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 5px 8px;
    border-radius: 5px;
    color: rgba(var(--txtall));
    background: #f9f9f9;
    border: 1px solid #ececec;
    font-weight: 600;
}

.select-amount {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.select-amount .item {
    padding: 10px 15px;
    border: 2px solid var(--bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #81829f;
    cursor: pointer;
    transition: .2s;
    user-select: none;
    position: relative;
}

.select-amount .item span.bonus {
    position: absolute;
    right: -2px;
    top: -2px;
    font-size: 10px;
    background: #009688;
    padding: 2px 5px;
    color: #fff;
    border-radius: 5px;
    transition: .2s;
}

.select-amount .item.selected span.bonus {
    border-radius: 0 5px 0 5px;
}

.select-amount .item:hover {
    background: var(--bg);
}

.select-amount .item.selected {
    color: #009688;
    border-color: #009688;
}

@media screen and (min-width: 768px) {
    .user-account-menu ul li.mobile-logout {
        position: absolute;
        color: #fff !important;
        right: 0;
        background: rgb(var(--cl1));
        border-radius: 0 11px 11px 0;
    }

    .user-account-menu ul li.mobile-logout a {
        color: #fff !important;
    }
}

section.cart.freeTools {
    min-height: 675px;
    padding-bottom: 50px;
}

.free-tool-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: -25px;
    position: relative;
    z-index: 4;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
}

section.cart .box .head span.icon {
    background-color: rgba(var(--cl1));
    width: 77px;
    height: 77px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    border: 7px solid #fff;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.free-tool-content .box {
    padding-top: 20px;
}

.free-tool-content .box .head .name {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: rgba(var(--menutxtcl));
}

.free-tool-content .box .head {
    padding-bottom: 25px;
}

.butto-pack-buy {
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.br8 {
    border-radius: 8px;
}

.br10 {
    border-radius: 10px;
}

.br12 {
    border-radius: 12px;
}

.br15 {
    border-radius: 15px;
}

.justify-content-center {
    justify-content: center;
}

.free-tool-content .box .body {
    position: relative;
}

.free-tool-content .free-wait {
    display: none;
}

.free-tool-content .free-wait .progress-bar {
    height: 20px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    margin-bottom: 15px;
}

.free-tool-content .free-wait .progress-area {
    width: 100%;
}

.free-tool-content .free-wait .progress-bar .bar {
    background: rgba(var(--cl1));
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 30px;
}

p#prepare {
    color: rgba(var(--menutxtcl));
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.progress-area p {
    color: rgba(var(--menutxtcl));
    font-size: 17px;
}

.free-tool-content .box .body.active .free-view {
    opacity: .1;
    filter: blur(3px);
    pointer-events: none;
}

.free-tool-content .box .body.active .free-wait {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.coupon-code {
    position: relative;
}

.coupon-code .icon {
    background: var(--main-color);
    position: absolute;
    left: 8px;
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 7px;
    top: 50%;
    transform: translateY(-50%);
}

.coupon-code .ord-control {
    padding-left: 65px;
    padding-right: 55px;
}

.coupon-code .coupon-check {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.postArea {
    width: 100%;
}

.post-list-title {
    margin-top: 5px;
    padding-left: 18px;
    position: relative;
    line-height: 18px;
}

.post-list-title span {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    color: rgba(var(--text));
}

.post-list-title p {
    margin: 0;
    margin-bottom: 10px !important;
}

.post-list-title::before {
    content: "";
    position: absolute;
    left: 2px;
    top: -1px;
    bottom: -1px;
    width: 5px;
    border-radius: 10px;
    background: rgba(var(--cl1));
}

.post-list-area {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.post-list-area .item {
    border: 5px solid transparent;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: .2s;
    overflow: hidden;
    width: 100%;
    user-select: none;
}

.post-list-area .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-list-area .item .image {
    position: relative;
    aspect-ratio: 1/1;
    z-index: 1;
    overflow: hidden;
    width: 100%;
}

.post-list-area .item .bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    padding-left: 15px;
    z-index: 3;
    color: #fff;
    font-size: 14px;
}

.post-list-area .item .image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #151626d9, transparent);
}

.post-list-area .item .bottom .amount {
    background: #ffffff20;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 13px;
    opacity: .3;
}

.post-list-area .item .amount-big {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: bold;
    color: #fbbe65 !important;
    opacity: 0;
    transition: .2s;
}

.post-list-area .item.selected .amount-big {
    opacity: 1;
}

.post-list-area .item.selected {
    border-color: #fbbe65 !important;
}

.post-list-area .item:hover {
    border-color: #e6e9ed;
}

.post-list-area .item.selected .bottom .amount {
    opacity: 1;
    color: #76521b;
    background-color: #fbbe65;
    font-weight: bold;
}

.post-list-area .item.selected .bottom .amount {
    opacity: 0;
}

.post-list-area .item::before {
    content: "\f058";
    font-family: 'FontAwesome';
    position: absolute;
    right: 30px;
    top: 8px;
    z-index: 3;
    color: #fbbe65 !important;
    font-size: 20px;
    opacity: 0;
    transition: .2s;
}

.post-list-area .item.selected::before {
    right: 8px;
    opacity: 1;
}

@media (min-width: 500px) {
    .bottom-bar {
        display: none;
    }
}

@media (max-width: 1200px) {
    .select-payment-method {
    }

    .post-list-area {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .scraper-product {
        flex-wrap: wrap;
    }

    .scraper-product .statu {
        width: 100%;
        justify-content: center;
    }

    .intall.reserve.favorite .conts {
        justify-content: center;
    }

    .intall.reserve.favorite .conts h1 {
        margin-bottom: 0;
    }

    .select-amount {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .serviceList {
        grid-template-columns: repeat(5, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .serviceList {
        grid-template-columns: repeat(10, 1fr) !important;
    }

    .kutu {
        margin: 20px 0 5px;
        padding: 8px 20px;
        border-radius: 15px;
    }

    .post-list-area {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .d-flex.price-bottom-flex {
        flex-wrap: wrap;
    }

    .d-flex.price-bottom-flex .priceTag.cart {
        width: 100%;
    }

    .d-flex.price-bottom-flex button {
        flex: 1;
        margin-top: 12px;
    }

    .d-flex.price-bottom-flex .priceTag.cart .text {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 16px;
    }

    .select-payment-method {
        grid-template-columns: auto;
        margin-bottom: 0;
        border-bottom: none;
    }

    .post-list-area {
        grid-template-columns: repeat(2, 1fr);
    }

    .kutu .type1 {
        display: none;
    }

    .kutu .type2 {
        display: block;
    }

    section#logreCont {
        justify-content: flex-start;
    }
}

@media (max-width: 500px) {
    .sticky-socials {
        display: none;
    }

    .fixActions {
        bottom: calc(0% + 75px);
    }

    .logreArea .login-area {
        padding: 25px;
    }

    .logHead h1 {
        margin-top: 0px;
    }

    a.bask-head {
        display: none;
    }

    .profile-head {
        display: none;
    }

    .head-stable {
        gap: 3px;
    }

    a.bask-head.funds {
        padding: 0 10px;
        padding-left: 15px;
    }

    .profile-order-list .item .info {
        flex-wrap: wrap;
        gap: 9px;
    }

    .profile-order-list .item .info .icon {
        max-width: 50px;
        flex: 1;
    }

    .profile-order-list .item .info .text {
        width: 100%;
        flex: 1;
    }

    .profile-order-list .item .info .action :is(.badge, .butto) {
        width: 100%;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .profile-order-list .item .info .action {
        width: 100%;
        display: flex;
        gap: 5px;
    }

    .user-account-menu ul li.mobile-logout {
        display: block;
    }
}

.grid-item-selected {
    padding: 1px;
}

.grid-item-selected input {
    border: 1px solid #009688 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.selected-amount-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: auto;
}

.selected-amount-list-manuel {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin: auto;
}

.selected-amount-list .grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    height: 62px;
    font-weight: 600;
}

.selected-amount-list .grid-item.selected {
    border: 1px solid #009688 !important;
}

.selected-amount-list .grid-item.special {
    width: 240px;
    display: block;
}

@media screen and (max-width: 768px) {
    .selected-amount-list .grid-item.special {
        width: 127px;
    }
}

.selected-amount-list .grid-item:hover {
    background-color: #f0f0f0;
}

.selected-amount-list .grid-item.special:hover {
    background-color: #fff5e6;
}

.dashboard-item-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: auto;
}

.dashboard-item-list .grid-item {
    display: grid;
    grid-template-columns: 1fr 8fr 4fr;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(var(--txtall), .8);
    padding: 10px;
}

.dashboard-item-list .grid-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-item-list .grid-item .icon i {
    font-size: 25px;
    color: rgba(var(--txtall), .8);
}

.dashboard-item-list .grid-item .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.dashboard-item-list .grid-item .text .amount {
    font-size: 16px;
    font-weight: 600;
    color: rgba(var(--txtall), .8);
    line-height: 30px;
    max-width: 236px;
}

.dashboard-item-list .grid-item .text .detail {
    font-size: 14px;
    color: #666;
}

.dashboard-item-list .grid-item .method {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.dashboard-item-list .grid-item .method .date {
    font-size: 14px;
    color: #999;
}

.ns-badge {
    font-size: 14px;
    font-weight: 600;
    color: #009688;
    border: 1px solid #009688;
    border-radius: 3px;
    padding: 5px 10px;
    text-align: center;
}

.ns-badge i {
    position: relative;
    top: 2px;
    font-size: 15px;
}

.ns-badge-primary {
    color: #007bff !important;
    border: 1px solid #007bff !important;
}

.ns-badge-secondary {
    color: #6c757d !important;
    border: 1px solid #6c757d !important;
}

.ns-badge-success {
    color: #28a745 !important;
    border: 1px solid #28a745 !important;
}

.ns-badge-warning {
    color: #ffc107 !important;
    border: 1px solid #ffc107 !important;
}

.ns-badge-danger {
    color: #dc3545 !important;
    border: 1px solid #dc3545 !important;
}

.ns-badge-info {
    color: #17a2b8 !important;
    border: 1px solid #17a2b8 !important;
}

.ns-badge-light {
    color: #000102 !important;
    border: 1px solid #f8f9fa !important;
}

.ns-badge-dark {
    color: #343a40 !important;
    border: 1px solid #343a40 !important;
}

@media (max-width: 600px) {
    .dashboard-item-list .grid-item {
        grid-template-columns: 8fr 5fr 0fr;
        text-align: center;
    }

    .dashboard-item-list .grid-item .icon {
        display: none;
    }

    .dashboard-item-list .grid-item .method {
        align-items: center;
    }

    .dashboard-item-list .grid-item .method .method-primary {
        width: 100%;
    }
}

.pay-grid, .main-grid {
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pay-grid .item:nth-child(1),.main-grid .item:nth-child(1) {
    border-right: 1px solid #ccc;
    padding-right: 10px;
}

@media screen and (max-width: 1150px) {
    .pay-grid, .main-grid {
        padding: 12px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pay-grid .item:nth-child(1), .main-grid .item:nth-child(1) {
        border-right: none;
        padding-right: 0;
    }
}

.dashboard-item-foot {
    display: flex;
    justify-content: right;
    align-items: center;
}

.price-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-button .text {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: end;
    font-size: 16px;
    padding: 13px;
}

.price-button .text span {
    font-weight: 700;
}

.dropList {
    position: relative;
}

.dropListTable {
    display: none;
    border-top: 0;
    background: #fbfbfb;
    position: absolute;
    width: 100%;
    z-index: 11;
    border-radius: 0 0 5px 5px;
    border-top: 0;
    overflow: hidden;
    box-shadow: 0 10px 15px #5656752e;
    max-height: 320px;
    overflow: auto;
}

.dropListTable::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

.dropListTable::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

.dropListTable::-webkit-scrollbar-thumb {
    background-color: #c5c5c5;
}

.dropListTable .item {
    position: relative;
    padding: 10px 15px;
    border-bottom: 1px solid #dfe0e1;
    font-size: 16px;
    color: #9699ad;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropListTable .item.active {
    background: #dfe0e1;
}

.dropListTable .item .text {
    color: #9699ad;
}

.dropListTable .item .text span {
    color: #9699ad;
    display: block;
    margin-bottom: 2px;
}

.dropListTable .item.active .icon {
    opacity: 1;
}

.dropListTable .item:last-child {
    border: none;
}

.dropListTable .item span {
    display: block;
    font-size: 16px;
    font-weight: 500;
}

.dropListTable .item span span {
    font-weight: 400;
}

.dropListTable .item:hover {
    background: #dfe0e1;
}

.dropListTitle {
    position: relative;
    padding: 15px;
    border: 1px solid #dfe0e1;
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    color: #9699ad;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s;
    transition-delay: 0.2s;
    height: 58px;
}

.dropListTitle.border-0 {
    border: 0 !important;
}

.dropListTitle .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    font-size: 29px;
    color: #9699ad;
}

.dropList .dropListTitle .icon i::before {
    content: "\e93c";
    font-family: "ns";
}

.dropList.show .dropListTitle {
    background: #fff;
    transition: 0s;
    border-radius: 8px 8px 0 0;
}

.dropListTable .item .icon {
    display: flex;
    font-size: 22px;
    opacity: 0.2;
}

.myLicencesArea {
    position: relative;
}

.dropListTitle::after {
    content: "\e96f";
    font-family: 'eg';
    position: absolute;
    right: 15px;
    font-size: 16px;
    display: flex;
    transform: translateY(1px);
    transition: 0.2s;
}

.dropListTitle.nodrop::after {
    content: "";
}

.dropList.show .dropListTitle::after {
    transform: rotateX(180deg);
}

.dropListTitle label.title {
    position: absolute;
    top: 0px;
    left: 0;
    height: 100%;
    padding: 1rem 0.9rem;
    font-weight: 500;
    pointer-events: none;
    border: 1px solid transparent;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

.dropList.selected .dropListTitle label.title {
    opacity: 0.6;
    -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    transform: scale(0.8) translateY(-0.3rem) translateX(0.2rem);
}

.dropList.selected .dropListTitle .dlabName {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 70px;
    line-height: 34px;
    max-width: 90%;
}

.fixed-bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    padding: 0px 18px;
    z-index: 999;
}

.bottom-menu-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-items: center;
    padding: 2px 0px 15px 0;
}

.bottom-menu-content .item {
    text-align: center;
    color: #555;
    text-decoration: none;
}

.bottom-menu-content .item .icon {
    font-size: 24px;
    margin-bottom: 5px;
    position: relative;
    top: 4px;
}

.bottom-menu-content .item span {
    display: block;
    font-size: 12px;
}

.bottom-menu-content .item.active {
    color: rgb(var(--cl1));
}

.bottom-menu-content .bottom-basket {
    position: sticky;
    padding: 7px;
    background: #fbbe65;
    border-radius: 9px;
}

.bottom-menu-content .bottom-basket .count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ff5722;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
}

.bottom-menu-content .item span strong {
    margin: 2px;
    padding: 1px;
}

.order-search-btn {
    cursor: pointer;
}

.bottom-menu-content .item.basket i {
    font-size: 30px;
    font-weight: 500;
}

.bottom-menu-content .item {
    position: relative;
    top: 3px;
}

.bottom-menu-content .item.basket .icon {
    top: -1px;
}

@media screen and (min-width: 990px) {
    .fixed-bottom-menu {
        display: none;
    }
}

.ns-openModalBtn {
    background-color: #ff5757;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.ns-modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
    color: #fff;
}

.ns-modal-content {
    background-color: rgb(var(--cl1));
    margin: 5% auto;
    padding: 20px;
    min-height: 280px;
    width: 80%;
    max-width: 500px;
    position: relative;
    border-radius: 10px;
    background-image: var(--modal-back-img);
    background-blend-mode: color-burn;
}

.ns-closeBtn {
    float: right;
    font-size: 28px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    top: -12px;
    right: -12px;
    background: rgb(var(--menutxtcl));
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    width: 24px;
    border-radius: 5px;
    color: #fff;
    padding-bottom: 1px;
    padding-left: 1px;
    opacity: .8;
}

.ns-closeBtn:hover, .ns-closeBtn:focus {
    text-decoration: none;
    opacity: 1;
}

.ns-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.ns-modal .ns-modal-header i {
    font-size: 49px;
    color: #fff;
}

.ns-modal .ns-modal-header span {
    width: 100%;
    display: block;
    font-size: 21px;
    font-weight: 500;
}

.ns-modal-body {
    text-align: center;
}

.ns-modal-body h3 {
    margin: 20px 0;
}

.ns-modal input {
    background: #fff !important;
}

.ns-actionBtn {
    background-color: #fff;
    color: rgb(var(--cl1));
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 5px;
}

.ns-modal-footer {
    text-align: center;
    margin-top: 20px;
    background-color: #ff5757;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.contact-info-list {
    display: grid;
    gap: 12px;
    align-items: center;
    padding: 10px 26px;
}

@media screen and (min-width: 1100px) {
    .contact-info-list {
        padding: 10px 0;
    }
}

.footer-menu .contact-info-list {
    padding: 10px 0;
}

.contact-info-item {
    display: grid;
    grid-template-columns: auto 9fr;
    gap: 7px;
    align-items: center;
    padding: 3px 26px;
}

.contact-info-item .icon {
    font-size: 23px;
    background: var(--c);
    padding: 8px;
    display: flex;
    text-align: center;
    justify-content: center;
    color: #fff;
}

.contact-info-item .content .title {
    font-weight: 600;
    padding: 5px 0;
    line-height: 11px;
    font-size: 16px;
}

.contact-info-item .content .text {
    font-size: 16px;
}

.container.footer-contact-grid {
    display: grid;
}

@media screen and (min-width: 1401px) {
    .contact-info-list.contact-footer {
        background: #f1f1f8;
        position: relative;
        height: max-content;
        border-bottom: 2px solid #979ab0;
    }
}

@media screen and (max-width: 1400px) and (min-width: 768px) {
    .contact-info-list.contact-footer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .container.footer-contact-grid {
        text-align: left;
    }
}

.contact-info-list.contact-footer {
    min-width: 320px;
}

.bottom-menu ul li a:hover {
    color: rgb(var(--cl1));
}

.cartActionBTN.passive {
    opacity: .7;
    cursor: not-allowed;
    pointer-events: none;
}

.post-list-area .item.active {
    border-color: #fbbe65 !important;
}

.post-list-area .item.active .amount-big {
    opacity: 1;
}

.bonus-amount {
    display: flex;
    text-align: center;
    justify-content: center;
    position: absolute;
    right: 1px;
    top: 0;
    background: #e84255;
    height: -webkit-fill-available;
    color: #fff;
    align-items: center;
    padding: 5px;
    margin: 1px 0;
}

.bonus-amount span {
    font-weight: 700;
    margin-right: 3px;
    margin-bottom: 1px;
    font-size: 19px;
}

@media screen and (max-width: 768px) {
    .notification--header .text {
        font-size: 14px;
    }

    .notification--header .text .code {
        position: relative;
        top: 5px;
        left: -20px;
        display: ruby-text;
        max-width: 130px;
        font-size: 18px;
    }

    .notification--header {
        height: 77px;
        display: grid;
        align-items: center;
        padding-bottom: 17px;
    }

    .showdrop .drop-menu .item-menu .nav-sub-heading {
        font-size: 15px !important;
    }

    .NavList li a {
        font-size: 15px;
    }

    .navitem:hover .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .text, .showdrop .drop-menu .item-menu li.item-menu-sub a.item-menu-sub-link .text {
        font-size: 14px !important;
    }
}

.showmenu .navTogbtn {
    top: 9px !important;
}

.showmenu .navTogbtn span {
    background: #68718c !important;
}

.showmenu .navTogbtn .item1, .showmenu .navTogbtn .item4 {
    border-radius: 0 85%;
}

.showmenu .navTogbtn .item2, .showmenu .navTogbtn .item3 {
    border-radius: 85% 0;
}
.it_notification {
    position: relative;
}

.it_notification .icon {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.it_notification .icon i {
    font-size: 24px;
}

.it_notification .have-notify {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

.it_notification .notification-list {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    z-index: 1000;
}

.it_notification .notification-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.it_notification .notification-list li {
    border-bottom: 1px solid #ddd;
}

.it_notification .notify-item {
    display: flex;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: black;
    gap: 6px
}

.it_notification .noticon {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(var(--cl1), 0.1);
    border-radius: 10px;
    color: rgb(var(--cl1));
    font-size: 18px;
}

.it_notification .noticon i {
    font-size: 24px;
    color: #4CAF50;
}

.it_notification .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10px;
}

.it_notification .text span {
    font-weight: bold;
    line-height: 4px;
    color: rgb(var(--menutxtcl));
}

.it_notification .text p {
    margin: 5px 0;
    font-size: 14px;
}
button.video-view {
    padding: 7px;
    border: none;
    border-radius: 5px;
    background: rgb(var(--cl1));
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    margin: 10px auto;
    align-items: center;
    gap: 5px;
}
@media screen and (max-width: 768px) {
    .it_notification .notification-list {
        right: -44px;
        top: 46px;
    }
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 130;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.modal .modal-content {
    position: relative;
    left: 50%;
    top: 50vh;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 750px;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    padding: 15px;
    padding-bottom: 75px;
}

.modal .modal-content.modal-lg {
    max-width: 1100px;
}

.modal .modal-content .modalArea {
    background: var(--dwhite);
    border-radius: var(--radius);
    position: relative;
}

.modal .modal-content .modalArea .modal-close {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 14px;
    width: 30px;
    height: 30px;
    color: #fff;
    background: rgb(var(--cl1));
    border: 3px solid #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1;
}

.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
    overflow: auto;
    background-color: #00000090;
    display: block;
}
video#tanitimVideo {
    width: 100%;
}
#tanitimvideo .modal-content {
    background-color: #ffffff00;
    border: none;
}
.modal.show .modal-content {
    top: 6vh;
    opacity: 1;
}

.modalHead h6 {
    font-size: 18px;
}

.modalHead {
    padding: 15px 20px;
    border-bottom: 1px solid var(--bg);
    color: var(--main-text-color);
    font-size: 16px;
    font-weight: 600;
}

.modalFoot {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--bg);
}