html {
    height: 100%;
}

body {
    height: 100%;
    font-family: "Poppins", sans-serif;
    background-color: #fdfdfd;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #585858;
}

h2 {
    font-weight: 600;
    line-height: 1.5;
}

h4 {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition-duration: .3s;
}

a:hover {
    color: #FF204E;
}

.c1 {
    color: #A0153E;
}

p {
    margin: 0;
}

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

h3 {
    font-size: 20px;
    font-weight: 500;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 999;
}

.menu {
    position: sticky;
    top: 0;
    display: flex;
    background: #fff;
    padding: 20px 40px;
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 40px;
    z-index: 1000;
}

.menu .logo {
    max-height: 50px;
    max-width: 300px;
}

.menu .logo img {
    max-height: 100%;
    max-width: 100%;
}

.menu ul.links {
    display: flex;
    gap: 50px;
    list-style-type: none;
    padding: 0;
}

.m-right {
    display: flex;
    gap: 40px;
    margin-left: auto;
}

.search-container {
    position: relative;
    display: flex;
    height: 100%;
    margin-right: 50px;
}

.search {
    position: relative;
    display: flex;
    background: #f6f6f6;
    height: 40px;
    width: 220px;
    line-height: 40px;
    border-radius: 50px;
    margin: auto 0;
}

.search > input {
    position: absolute;
    top: 0;
    left: 0;
    background: none;
    border: none;
    font-size: 12px;
    padding-left: 40px;
    padding-right: 10px;
    outline: none;
    width: 100%;
    height: 100%;
}

.search > i {
    color: #939393;
    margin: auto 0 auto 20px;
}

.search .search-pp {
    display: none;
    position: absolute;
    top: calc(100% + 25px);
    right: 0;
    background: #fff;
    width: 500px;
    padding: 15px;
    border-top: 1px solid #cdcdcd;
}

.search-container ul {
    display: flex;
    flex-direction: column;
}

.search-container ul li > a {
    display: flex;
    width: 100%;
}

.search-container ul li > a:hover {
    padding: 0 10px;
    background: #f6f6f6;
}

.m-right > * {
    align-self: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FF204E;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    padding: 8px 15px;
    border: 2px solid #FF204E;
}

.btn.big {
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 30px;
}

a.btn:hover,
a.btn.btn2:hover,
button.btn:hover,
.btn.active,
.btn.btn3.active {
    background: #A0153E;
    color: #fff;
    border-color: #A0153E;
}

.btn.btn2 {
    background: none;
    color: #A0153E;
    border: 2px solid #A0153E;
}

.btn.btn3 {
    background: none;
    color: #000;
    border: 2px solid #f3f3f3;
}

a.btn.btn3:not(.active):hover {
    background: #f3f3f3;
    color: #000;
    border-color: #ebebeb;
}

.btn.btn4 {
    cursor: initial;
    background: #f6f6f6;
    color: #000;
    font-weight: 700;
    border: none;
}

.mb {
    margin-bottom: 60px;
}

.mb2 {
    margin-bottom: 40px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}


.store-grid > .store:hover,
.coupon-grid > .coupon:hover,
.coupon2-grid > .coupon:hover,
.product-grid > .product:hover,
.store-grid > .store:hover .b-left,
.coupon-grid > .coupon:hover .b-left,
.coupon2-grid > .coupon:hover .b-left,
.product-grid > .product:hover .b-left,
.product-grid2 > .product:hover {
    border-color: #cdcdcd;
}

.store-grid > .store,
.product-grid > .product,
.product-grid2 > .product {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition-duration: .3s;
}

.store-grid > .store .logo,
.coupon-grid > .coupon .logo,
.store-head .logo,
.store-list2 > li .logo {
    display: flex;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin: 0 auto 32px auto;
    border-radius: 50%;
    overflow: hidden;
}

.store-head .logo.image {
    width: 160px;
    height: auto;
    border-radius: 0;
}

.coupon-grid > .coupon .logo > a {
    margin: auto;
}

.product-grid > .product {
    display: flex;
    gap: 20px;
}

.product-grid > .product .price {
    font-size: 20px;
    font-weight: 500;
}

.product-grid > .product .price2 {
    font-size: 16px;
}

.product-grid > .product .price + a {
    background: #EFEFEF;
    padding: 2px 10px;
    color: inherit;
}

.product-grid > .product .price + a:hover {
    background: #e0e0e0;
    color: #000;
}

.product-grid > .product .price span,
.links-grid .price {
    font-weight: 700;
}

.links-grid .price {
    font-size: 16px;
}

.product-grid > .product .price2 span {
    color: inherit;
}

.product-grid > .product .image {
    flex-shrink: 0;
    width: 160px;
}

.store-head .logo,
.store-list2 > li .logo {
    margin-bottom: 0;
}

.store-grid > .store .logo img,
.store-head .logo img,
.store-list2 > li .logo img,
.product-grid > .product .image img,
.imgc img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.store-grid > .store .store-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 120px;
    text-align: center;
}

.store-grid > .store .rib {
    background: #e6e6e6;
    color: #000;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.store-grid > .store h5 {
    font-size: 16px;
    font-weight: 600;
}

.coupon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.coupon-grid > .coupon {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition-duration: .3s;
}

.coupon-grid > .coupon .logo {
    text-align: center;
}

.coupon-grid > .coupon .logo img {
    max-width: 80px;
    width: 100%;
    max-height: 80px;
    margin: auto;
}

.coupon-grid > .coupon h5 {
    font-size: 14px;
}

.coupon-grid > .coupon h2,
.product-grid > .product h2 {
    font-size: 18px;
    font-weight: 600;
}

.store-head {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    border-radius: 30px;
}

.store-head h2 {
    font-size: 22px;
}

.store-head .store-body,
.coupon-grid .coupon-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .5rem;
}

.coupon2-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupon2-grid > .coupon,
.box {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition-duration: .3s;
}

.coupon2-grid > .coupon .logo {
    display: flex;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 50%;
    border: 1px dashed #FF204E;
}

.coupon2-grid > .coupon .logo > div {
    color: #FF204E;
    margin: auto;
}

.coupon2-grid > .coupon .logo span {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.coupon2-grid > .coupon .logo span > i {
    font-size: 30px;
}

.coupon2-grid > .coupon h5 {
    display: inline-block;
    font-size: 14px;
    background: #efefef;
    border: 1px solid #efefef;
    padding: 5px 15px;
    margin-bottom: 0;
    border-radius: 20px;
}

.coupon2-grid > .coupon h5.e {
    background: none;
    border: 1px solid goldenrod;
}

.coupon2-grid > .coupon h5.v {
    background: none;
    color: purple;
    border: 1px solid purple;
}

.coupon2-grid > .coupon h5.ex {
    background: none;
    color: midnightblue;
    border: 1px solid midnightblue;
}

.coupon-grid > .coupon h2,
.coupon2-grid > .coupon h2 {
    font-size: 18px;
    font-weight: 600;
}

.coupon2-grid > .coupon .coupon-body {
    width: 100%;
}

.coupon2-grid > .coupon .coupon-body .labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.product-grid2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-grid2 .img {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.product-grid2 .img img {
    height: 100%;
}

.product-grid2 .product-body {
    display: flex;
    flex-direction: column;
}

.product-grid2 h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #1d1d1f;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 8px;
}

.product-grid2 .price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-grid2 .price .main_price {
    color: #ef3d2f;
    margin-right: 8px;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
}

.product-grid2 .price .old_price {
    color: #999;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    -webkit-text-decoration-line: line-through;
    text-decoration-line: line-through;
}

.product-grid2 .sold_by {
    display: flex;
    align-items: center;
}

.product-grid2 .sold_by > span:first-child {
    color: #999;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-right: 8px;
}

.product-grid2 .sold_by > span + span {
    color: #000;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.cat-carousel {
    position: relative;
}

.cat-carousel .swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.cat-carousel .swiper > div {
    display: flex;
}

.cat-carousel .swiper-slide {
    width: auto;
}

.cat-carousel .swiper-slide {
    height: 44px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: #fff;
    font-weight: 400;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
    flex-shrink: 0;
    cursor: pointer;
}

.cat-carousel a.active {
    background: #fbe9e5;
    color: #FF204E;
    border: none;
}

.links-grid > .coupon .logo {
    border-radius: 0;
    border: 0;
}

.links-grid > .coupon .logo > img {
    width: 100%;
    height: auto;
    margin: auto;
}

.store-list li {
    line-height: 2;
}

.store-list2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.store-list2 > li {
    display: flex;
    gap: 20px;
}

.store-list2 > li .logo {
    max-width: 60px;
    max-height: 60px;
}

.store-list2 > li .logo + div {
    width: 100%;
}

.store-list2 > li h5 {
    font-size: 16px;
}

.product-grid .product-body {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.product-grid .product-body.active .price + a > i {
    transform: rotate(180deg);
}

.categories a {
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
}

.categories li.level-1 {
    margin-left: 15px;
}

.categories li.level-2 {
    margin-left: 30px;
}

.categories li.level-3 {
    margin-left: 45px;
}

h2.title,
h5.title {
    font-weight: 700;
}

.page-content h2,
h2.title {
    font-size: 24px;
}

.links-table {
    width: 100%;
}

.links-table td {
    padding: 10px;
}

.links-table tr + tr {
    border-top: 1px solid #cccccc;
}

.lab {
    display: inline-flex;
    background: #ffefca;
    font-size: 12px;
    color: #bc3803;
    padding: 2px 10px;
    border-radius: 15px;
    border: 1px solid #ffcc85;
}

.lab.green {
    background: #d9fbd0;
    color: #1c6c09;
    border-color: #bee8b4;
}

.lab.red {
    background: #ffe0db;
    color: #b81800;
    border-color: #fabcb3;
}

.lab.blue {
    background: #3a43bf24;
    color: #224ed5;
    border-color: #939efd;
}

.boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box {
    flex-direction: column;
}

.imgc {
    height: 30px;
}

.imgc2 {
    height: 50px;
}

.show-on-active {
    display: none;
}

.active .show-on-active {
    display: table;
}

.active .hide-on-active {
    display: none;
}

.msg-box {
    display: inline-flex;
    background: #fff2f1;
    padding: 40px;
    border-radius: 30px;
}

.msg-box > .msg-text {
    display: flex;
    flex-direction: column;
    margin: auto;
    gap: 15px;
    width: 70%;
}

.msg-box > .msg-img {
    width: 30%;
}

.msg-box > .msg-img img {
    max-width: 100%;
}

.box2 {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 30px;
}

.font-bold {
    font-weight: 700!important;
}

.bg2 {
    background-color: #fff;
}

.bg3 {
    background-color: rgba(0, 0, 0, .88);
}

.bg4 {
    background: #000;
}

.bb {
    border-bottom: 1px solid #f4f4f4;
}

.credit {
    font-weight: 900;
    font-size: 24px;
}

.credit.light {
    font-weight: 600;
    color: inherit;
    font-size: 24px;
}

.paddings {
    padding: 80px 15px;
}

.paddings2 {
    padding: 40px 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 20px;
}

.custom-prev, .custom-next {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0,0,0,.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.custom-prev {
    left: -72px;
}

.custom-next {
    right: -72px;
}

.custom-prev.swiper-button-disabled {
    display: none;
}

.custom-next.swiper-button-disabled {
    display: none;
}

.home_header {
    width: 100%;
    height: auto;
    background: #ffeeec;
    padding: 0 40px;
    margin-top: -40px;
    max-height: 600px;
}

.home_header .hh_box {
    height: 628px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_header .hh_box .hh_left {
    width: 50.5%;
    height: auto;
    margin-right: 4.8%;
}

.home_header .hh_box .hh_right {
    width: 606px;
    height: -moz-fit-content;
    height: fit-content;
    background: #ffeeec;
    flex: 0 0 606px;
}

.home_header .hh_box .hh_right video {
    width: 100%;
    height: auto;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, .3);
    border-radius: 9px;
}

.home_header h2 {
    font-size: 34px;
    font-weight: 600;
    color: #333;
    line-height: 48px;
    margin-bottom: 20px;
}

.home_header a.button {
    display: block;
    height: 80px;
    line-height: 80px;
    width: 534px;
    background: #f03d30;
    border-radius: 40px;
    font-size: 28px;
    border: none;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}

.home_header a.button:hover {
    color: #fff;
    background: #a80c00;
}

.home_header a.button span {
    margin: auto;
}

.home_header .info {
    display: flex;
    align-items: center;
}

.home_header .info ul {
    display: flex;
    width: 142px;
    height: auto;
    justify-content: space-between;
    margin: 0;
}

.home_header .info span {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 25px;
    position: relative;
    top: 2px;
    left: 32px;
}

.home_header .info ul img {
    width: 22px;
    height: 22px;
}

.home_header p {
    font-size: 20px;
    font-weight: 400;
    color: #333;
    line-height: 30px;
    margin-bottom: 24px;
}

.expense {
    display: flex;
    width: 100%;
    background: #f6f8fc;
    margin-bottom: 0;
    flex-direction: column;
    padding: 64px 0 110px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

.expense ul {
    display: flex;
}

.expense ul li {
    display: flex;
    width: 100%;
    margin: 0 16px;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.expense ul li h4 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    line-height: 42px;
    margin-bottom: 10px;
}

.expense ul li p {
    font-size: 18px;
    font-weight: 400;
}

.hiw {
    display: flex;
    width: 100%;
    margin-bottom: 0;
    flex-direction: column;
    padding: 64px 0 110px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
}

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

.hiw_list > div {
    display: flex;
    flex-direction: column;
    width: 330px;
    gap: 20px;
}

.hiw_list img {
    max-width: 240px;
    margin: auto;
}

.hiw_list h4 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    line-height: 41px;
    text-align: center;
    margin-bottom: 0;
}

.chat {
    display: flex;
    padding: 64px 0 110px;
    background: #f4f8f6;
    justify-content: center;
    font-size: 18px;
}

.chat_plugin {
    display: flex;
    flex-direction: column;
    width: 880px;
    background: #f4f8f6;
    justify-content: center;
    margin: 0 auto;
}

.chat_conv {
    position: relative;
    background: #f1f1f1;
    font-size: 16px;
}

.chat_conv:before {
    content: "";
    position: absolute;
    top: -17px;
    left: -88px;
    width: 48px;
    height: 34px;
    background: url(../img/icon_quotes_left.png) no-repeat 50%;
    background-size: contain;
}

.chat_conv:after {
    content: "";
    position: absolute;
    bottom: -17px;
    right: -88px;
    width: 48px;
    height: 34px;
    background: url(../img/icon_quotes_right.png) no-repeat 50%;
    background-size: contain;
}

.chat_sm {
    display: flex;
    width: 100%;
    padding: 30px 80px 24px 90px;
    text-align: left;
    background: #fff;
}

.chat_rec {
    display: flex;
    padding: 30px 80px 24px 90px;
    text-align: left;
}

.chat_conv img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.chat_msg {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat_msg ul {
    padding-left: 20px;
}

.chat_msg li {
    list-style-type: initial;
}

.boxes {
    display: flex;
    padding: 64px 0 110px;
    background: #fff;
    justify-content: center;
}

.boxes > .container {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.boxes > .container > div {
    display: flex;
    gap: 5%;
}

.boxes > .container > div > div + div {
    width: auto;
    height: auto;
    flex: 1 1;
    display: flex;
    gap: 6.5%;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
}

.boxes > .container> div:nth-child(even) > div {
    order: 2;
}

.boxes > .container > div:nth-child(even) > div + div {
    order: 1;
}

.h_stores {
    display: flex;
    padding: 64px 0 110px;
    background: #fcf7f6;
    justify-content: center;
    font-size: 18px;
}

.h_stores ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 2.9% 42px;
    box-shadow: 0 0 15px 0 hsla(0, 0%, 56%, .5);
}

.h_stores ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0 auto;
    max-width: 1025px;
}

.h_stores ul > li img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}

footer {
    background-color: #0a0915;
    color: #fff;
}

footer a {
    color: #fff;
    line-height: 19px;
    font-size: 14px;
    margin-top: 20px;
    opacity: .8;
}

footer a:hover {
    color: inherit;
    text-decoration: underline;
}

footer h4 {
    color: #fff;
    opacity: 1;
}

footer > div {
    padding-top: 64px;
    padding-bottom: 20px;
}

footer .flist {
    display: flex;
    justify-content: space-between;
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
}

footer .flist_block {
    display: flex;
    flex-direction: column;
}

footer .logo_wrapper {
    width: 220px;
}

footer .logo_wrapper div {
    opacity: .8;
}

footer .foot {
    max-width: 1360px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

footer .fappqr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 260px;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
}

footer .fappqr > span {
    flex-shrink: 0;
    height: 100%;
}

footer .fappqr > div {
    display: flex;
    gap: 8px;
    flex-direction: column;
    width: 100%;
}

footer .fappqr a {
    margin-top: 0;
    opacity: 1;
}

footer .fappqr img {
    width: 100%;
}

footer .ge_link {
    display: flex;
    height: 44px;
    padding: 4px 24px;
    align-items: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 12px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 21px;
    cursor: pointer;
}

footer .fsocial_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 64px;
}

footer .fsocial_wrap > a {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 50%;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

footer .fsocial_wrap > a > i {
    font-size: 20px;
    color: #020202;
}

footer .freviews {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px auto;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

footer .fcopyrights .pref {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

footer .fcopyrights .pref > span {
    opacity: .8;
}

footer .hr {
    width: 100%;
    height: 1px;
    background: #fff;
    opacity: .2;
    margin: 20px 0;
}

footer .foot > span {
    max-width: 950px;
    text-align: left;
}

footer .foot > div > a  {
    min-width: 150px;
    width: 100%;
    min-height: 44px;
    border-radius: 8px;
    border: 1px solid #fff;
    padding: 9px 12px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

footer .foot > div > a:hover {
    text-decoration: none;
}

/*footer {*/
/*    color: #a9a9a9;*/
/*}*/

/*footer a {*/
/*    color: #dddddd;*/
/*}*/

/*footer li {*/
/*    line-height: 2;*/
/*}*/

/*footer h3 {*/
/*    font-size: 16px;*/
/*    margin-bottom: 30px;*/
/*}*/

.radio-opts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-opts input {
    display: none;
}

.radio-opts label {
    background: #f6f6f6;
    padding: 10px 15px;
    border-radius: 20px;
}

.radio-opts input:checked + label {
    background: #caffc1;
    color: #000;
}

.alert.alert-success {
    background: #d9fbd0;
    color: #1c6c09;
    border-color: #bee8b4;
}

.alert.alert-danger {
    background: #ffe0db;
    color: #b81800;
    border-color: #fabcb3;
}

.frow {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.frow > label {
    font-weight: 700;
}

.frow input,
.frow select,
.frow textarea {
    background-color: #fff;
    width: 100%;
    padding: 10px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.frow textarea.size2 {
    min-height: 150px;
}

.u-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
}

.u-menu li a {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

.u-menu a.has-childs + ul {
    display: none;
}

.u-menu a.has-childs.active + ul {
    display: flex;
}

.u-menu li a > i:first-child {
    width: 25px;
}

.u-menu li a > i ~ i {
    margin-left: auto;
    transition-duration: .3s;
}

.u-menu li a.active > i ~ i {
    transform: rotate(180deg);
}

.u-menu > li {
    font-size: 16px;
}

.u-menu > li li {
    font-size: 14px;
}

.u-menu > li li a {
    padding: 10px 35px;
}

.u-menu > li > ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.u-menu a:active,
.u-menu a.active {
    background: #efefef;
    color: #FF204E;
}

.list > *:not(:last-child) {
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.b-left {
    border-left: 1px solid #eee;
    transition-duration: .3s;
}

.color-gold {
    color: goldenrod;
}

.code {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    background: #efefef;
    text-align: center;
    padding: 7px 45px 7px 15px;
    margin: auto;
    border-radius: 20px;
}

.code.noq {
    padding: 7px 15px;
}

.code > span {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.code > a {
    position: absolute;
    top: 0;
    right: 5px;
    display: flex;
    height: 100%;
    width: 40px;
    border-radius: 50%;
}

.code > a:hover > span {
    background: #A0153E;
}

.code > a > span {
    display: flex;
    flex-shrink: 0;
    background: #FF204E;
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 50%;
    transition-duration: .3s;
}

.code > a > span > i {
    color: #fff;
    font-size: 16px;
    margin: auto;
}

.code-pp {
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
}

.code-pp img {
    max-height: 130px;
    max-width: 150px;
    width: 100%;
}

.code-pp > .img {
    margin: auto;
}

.code-pp h2 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.code-pp .p-code {
    display: flex;
    background: #efefef;
    height: 55px;
    line-height: 55px;
    align-items: center;
    margin: auto;
    border-radius: 15px;
    overflow: hidden;
}

.code-pp .p-code > span {
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
    min-width: 250px;
    text-align: center;
}

.code-pp .p-code a {
    background: #FF204E;
    font-weight: 700;
    color: #fff;
    padding: 0 25px;
}

.code-pp .p-code a:hover {
    background: #A0153E;
}

.c-paginator {
    display: flex;
}

.c-paginator > div {
    margin: auto;
}

.c-paginator .dataTables_paginate {
    margin-top: 0!important;
    margin-bottom: 60px;
}
    /** */
div:where(.swal2-container) h2:where(.swal2-title) {
    line-height: 1.7!important;
    font-size: 20px!important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-deny {
    background: none!important;
    color: #60666c!important;
    border-radius: 30px!important;
    padding: 15px 25px!important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    background: rgba(134, 255, 0, .3)!important;
    color: #60666c!important;
    border-radius: 30px!important;
    padding: 15px 25px!important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:hover {
    background: rgba(134, 255, 0, .5)!important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
    box-shadow: none!important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-deny:hover {
    background: rgba(153, 153, 153, .1)!important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-deny:focus {
    box-shadow: none!important;
}

body.search-a {
    overflow: hidden;
}

body.search-a .overlay,
body.search-a .search .search-pp {
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/** */
html > body.swal2-height-auto {
    height: 100%!important;
}

.bigswal.animate__animated {
    width: 60em;
    text-align: left;
    animation-duration: .3s!important;
}

.bigswal.smallSize {
    width: 40em;
}

.bigswal.tinySize {
    width: 25em;
}

.bigswal .swal2-html-container {
    text-align: left;
    overflow-x: hidden;
}

div.swal2-container button.swal2-close:focus {
    box-shadow: none;
}

div.swal2-container .swal2-html-container {
    font-size: 14px;
}

.show-code {
    position: relative;
    display: flex;
    gap: 0;
    height: 50px;
    width: 100%;
    padding: 0;
    border: 3px solid #f11e31!important;
    overflow: hidden;
    transition-duration: .3s;
}

.btn.btn3.show-code.scbg {
    border: none!important;
}

.btn.btn3.show-code.scbg > span {
    background-image: none;
    transition-duration: .3s;
}

.btn.btn3.show-code.scbg:hover > span {
    background-color: #A0153E;
}

.show-code > span {
    background-color: #f11e31;
    background-image: linear-gradient(#e01830, #f11e31);
    align-content: center;
    height: 100%;
    width: 100%;
    color: #fff;
    font-weight: 700;
    padding: 5px 15px;
    z-index: 1;
}

.show-code > .ii {
    position: relative;
    width: 40px;
    height: calc(100% + 5px);
    margin-right: 45px;
    margin-left: -3px;
    z-index: 1;
}

.show-code img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition-duration: .3s;
}

.show-code:hover img {
    left: -8px;
}

.show-code .cc {
    position: absolute;
    right: 0;
    width: auto;
    color: #585858;
    font-size: 16px;
    font-weight: 700;
    margin-right: 15px;
    z-index: 0;
}

.ext-alert {
    display: flex;
    gap: 20px;
    background: #fbfbfb;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #cdcdcd;
    margin-bottom: 20px;
    transition-duration: .3s;
}

.ext-alert h2 {
    font-size: 18px;
    text-align: left;
    margin: 10px 0 15px 0;
}

.ext-alert h2 + div {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #bdbdbd;
}

.ext-alert .lft {
    width: 100%;
}

.ext-alert .rht {
    flex-shrink: 0;
    align-content: center;
}

[data-resend] + div {
    display: none;
    color: #007500;
}

[data-resend="1"] + div {
    display: block;
}

.swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    flex-shrink: 0;
    width: calc((100% - 60px) / 4);
}

.swiper-slide:last-child {
    margin-right: 0;
}