whtml,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline
}
* {
    box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ol,
ul {
    list-style: outside none none
}

blockquote,
q {
    quotes: none
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: none
}

a {
    cursor: pointer;
    text-decoration: none !important;
    color: inherit;
}

a.link {
    color: var(--cms-url-color);
    font-weight: 600
}

button {
    cursor: pointer;
    font-family: inherit;
    font-weight: inherit
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.clear {
    clear: both
}

a:hover {}

a.no_hover:hover {
    color: inherit
}
textarea:focus,
input:focus,
button:focus {
    border:1px solid var(--cms-purple-text);
    transition: all 0.5s ease;
}

:focus {
    outline: none
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-button {
    width: 8px;
    height: 5px
}

::-webkit-scrollbar-track {
    background: #33333300;
    border: thin solid #33333300;
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    background: #28292e;
    border: thin solid #33333300;
    border-radius: 10px
}

::-webkit-scrollbar-thumb:hover {
    background: #28292e
}

.waiting_background {
    min-height: 60px
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-Bold.woff2) format('woff2'),
        url(../fonts/NotoSans-Bold.woff) format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-ExtraBold.woff2) format('woff2'),
        url(../fonts/NotoSans-ExtraBold.woff) format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-Light.woff2) format('woff2'),
        url(../fonts/NotoSans-Light.woff) format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-SemiBold.woff2) format('woff2'),
        url(../fonts/NotoSans-SemiBold.woff) format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-Regular.woff2) format('woff2'),
        url(../fonts/NotoSans-Regular.woff) format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans';
    src: url(../fonts/NotoSans-Medium.woff2) format('woff2'),
        url(../fonts/NotoSans-Medium.woff) format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}



.adsbygoogle-noablate {
    display: none !important;
    transform: translate(-10000%, 0) !important
}

.auto_substring {
    cursor: pointer;
    color: var(--cms-purple-text);
}

.item_icon {
    height: 24px;
    vertical-align: middle;
    margin: 0 5px;
    margin-top: -5px;
}

.item_icon.circle {
    border-radius: 50%;
}

.star_icon {
    color: var(--yellow-color);
}

.touch_div{
    cursor: pointer;
}
.loading_div{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}
.loading_div img{
    height:150px
}
.switch_slider{
    display: flex;
    align-items: center;
    gap: 5px;
}
.switch_slider .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    vertical-align: middle
}

.switch_slider table {
    width: 100%;
    color: var(--main-text-color)
}

.switch_slider table tr td:first-child {
    text-align: left;
    width: 180px;
}

.switch_slider table tr td svg {
    color: var(--highlight-text-color);
    cursor: pointer
}

.switch_slider table tr td {
    text-align: right;
    line-height: 40px;
    padding-bottom: 10px;
    color: var(--highlight-text-color);
    font-size: 14px;
    padding-left: 6px
}

.switch_slider .switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.switch_slider .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--cms-black-7);
    -webkit-transition: .4s;
    transition: .4s
}

.switch_slider .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s
}

.switch_slider input:checked+.slider {
    background-color: var(--cms-module-background);
}

.switch_slider input:focus+.slider {
    box-shadow: 0 0 1px #2196f3
}

.switch_slider input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px)
}

.switch_slider .slider.round {
    border-radius: 34px
}

.switch_slider .slider.round:before {
    border-radius: 50%
}

.top_wall .top_wall_list {
    padding: 0;
}

.top_wall .top_wall_title {
}

.top_wall .top_wall_title h5 {
}

.top_wall .top_wall_title svg {
    font-size: 18px;
}

.top_wall .top_wall_list .top_wall_item {
    display: flex;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid var(--cms-black-8);
    transition: all 0.3s ease;
    position: relative;
}

.top_wall .top_wall_list .top_wall_item:last-child {
    border-bottom: none;
}

.top_wall .top_wall_list .top_wall_item .top_number {
    width: 20px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    text-align: left;
    margin-right: 20px;
}

.top_wall .top_wall_list .top_wall_item:nth-child(1) .top_name {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
    font-weight: 700;
    color: #ffd700;
}

.top_wall .top_wall_list .top_wall_item:nth-child(2) .top_name {
    background: linear-gradient(45deg, #c0c0c0, #e8e8e8, #c0c0c0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
    font-weight: 700;
    color: #e8e8e8;
}

.top_wall .top_wall_list .top_wall_item:nth-child(3) .top_name {
    background: linear-gradient(45deg, #cd7f32, #daa520, #cd7f32);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
    font-weight: 700;
    color: cd7f32;
}

.top_wall .top_wall_list .top_wall_item .top_avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 5px;
    border: 2px solid var(--cms-black-6);
}

.top_wall .top_wall_list .top_wall_item .top_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top_wall .top_wall_list .top_wall_item .top_content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top_wall .top_wall_list .top_wall_item .top_name {
    font-size: 14px;
    font-weight: 600;
}

.top_wall .top_wall_list .top_wall_item .top_donate {
    font-size: 14px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.activity_wall {
    border-radius: 10px;
}
.activity_wall h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    gap: 10px;
}
.activity_wall .activity_wall_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.activity_wall .activity_wall_list {
    display: flex;
    flex-direction: column;
}
.activity_wall .activity_wall_list .activity_wall_item {
    display: flex;
    border-radius: 8px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--cms-black-8);
}
.activity_wall .activity_wall_list .activity_wall_item:first-child{
    padding-top: 0;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    flex-shrink: 0;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_content .awi_top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    margin-bottom: 5px;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_content .awi_top .awi_name {
    color: var(--white-color);
    font-weight: 500;
    font-size: 18;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_content .awi_top .awi_time {
    color: #aaa;
    font-size: 13px;
    font-weight: 400;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_content .awi_donate {
    color: var(--cms-grey-1);
    margin-bottom: 5px;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_content .awi_donate .awi_label {
    color: var(--cms-grey-1);
}
.activity_wall .activity_wall_list .activity_wall_item .awi_content .awi_donate .awi_target {
    color: var(--cms-url-color);
    font-weight: 500;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_content .awi_donate .awi_amount {
    color: #fde339;
    font-weight: 500;
}
.activity_wall .activity_wall_list .activity_wall_item .awi_content .awi_message {
    color: var(--white-color);
    line-height: 1.5;
    word-break: break-word;
}
.activity_wall .activity_wall_list .activity_wall_item:last-child{
    border-bottom: 0;
}

.keyword_create_container .keyword_tags_container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 20px;
    margin-top: 10px;
}

.keyword_create_container .keyword_tag {
    display: inline-flex;
    align-items: center;
    background: var(--cms-black-9);
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    max-width: 200px;
    word-break: break-word;
    animation: tagSlideIn 0.3s ease-out;
}

.keyword_create_container .keyword_tag .tag_text {
    flex: 1;
    margin-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.keyword_create_container .keyword_tag .tag_remove {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
    transition: background 0.2s ease;
}

.keyword_create_container .keyword_tag .tag_remove:hover {
    background: rgba(255, 255, 255, 0.3);
}

.keyword_create_container .keyword_tag.removing {
    animation: tagSlideOut 0.3s ease-in forwards;
}

@keyframes tagSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes tagSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.8);
    }
}

.input_search_module{
    position: relative;
}
.input_search_module .input_search{}
.input_search_module .input_search input{
    background-color: #1A1A1A;
    color: white;
    border: 0;
}
.input_search_module .input_search .input_show_value{
    background-color: #121212;
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translate(0,-50%);
    line-height: 30px;
    padding: 0 10px;
    border-radius: 6px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    max-width: calc(100% - 40px);
    width: 100%;
    display: none;
}
.input_search_module .input_search .input_show_remove{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translate(0%, -50%);
    display: none;
    cursor: pointer;
}

.input_search_module .input_search_list{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background-color: #1E1E1E;
    border-radius: 6px;
    max-height: 200px;
    overflow: auto;
    display: none;
}

.input_search_module .input_search_list .input_search_item{
    padding: 10px;
    cursor: pointer;
}

.input_search_module .input_search_list .input_search_item:hover{
    background-color: #1A1A1A;
}

.input_search_module .input_search_list .input_search_item:last-child{
    border-bottom: 0;
}

.input_search_module .input_search_list .input_search_item:first-child{
}

.input_search_module .input_search_list .input_search_item:last-child{
    border-bottom: 0;
}

.mouse_over_div{
    position: relative;
    cursor: pointer;
    transition: all 0.5s;
}
.mouse_over_div.shop_avatar{
    width: 150px;
    height: 150px;
    margin: 10px auto;
}
.mouse_over_div.shop_avatar .avatar{
    width: 100%;
    height: 100%;
}
.mouse_over_div.default_avatar{
    width: 150px;
    height: 150px;
    margin: 10px auto;
}
.mouse_over_div.default_avatar img{
    width: 100%;
    height: 100%;
    border-radius: 150px;
}
.mouse_over_div:hover .mouse_over_div_content{display: block;}
.mouse_over_div .mouse_over_div_content{
    background-color: #000000a8;
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    box-shadow: 0px 0px 10px 0px var(--cms-purple-text);
    transition: all 0.5s;
}
.mouse_over_div .mouse_over_div_content.circle{
    border-radius: 150px;
}
.mouse_over_div .mouse_over_div_content.icon{}
.mouse_over_div .mouse_over_div_content.icon svg{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 25px;
    transform: translate(-50%,-50%);
}

.step_amount {
    display: flex;
    gap: 5px;
    height: 38px;
    font-size: 18px;
    border: 1px solid var(--cms-border-color);
    border-radius: 5px;
}

.step_amount button {
    height: 100%;
    background-color: transparent;
    border-radius: 5px;
    font-family: montserrat;
    aspect-ratio: 1/1;
    border: 0;
    padding: 0;
    width: 25px;
    position: relative;
    font-size: 14px;
    color: var(--cms-text);
}

.step_amount button svg {}

.step_amount input {
    margin: 0;
    border-radius: 5px;
    height: 100%;
    line-height: 40px;
    padding: 0;
    text-align: center;
    aspect-ratio: 1/1;
    font-size: inherit;
    border: 0;
    color: var(--cms-purple-text);
}

.cover_div {
    position: relative;
    margin-bottom: 80px;
}

.cover_div .cover_image_div {
    width: 100%;
    aspect-ratio: 6/2.5;
    position: relative;
    border-radius: 5px;
}

.cover_div .cover_image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}

.cover_div .avatar_div {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    border-radius: 150px;
    border: 7px solid var(--cms-black-2);
    bottom: 0;
    z-index: 2;
    width: 25%;
    aspect-ratio: 1/1;
    border-radius: 150px;
}

.cover_div .avatar_image {
    width: 100%;
    height: 100%;
    border-radius: 150px;
}

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

.product_item_list .item {
    background-color: var(--cms-black-9);
    border-radius: 10px;
    position: relative;
    border: var(--cms-black-3);
}

.product_item_list .item img {
    width: 100%;
}

.product_item_list .item .info {
    padding: 5px 10px;
    min-height: 80px;
    padding-bottom: 35px;
}

.product_item_list .item .name {}

.product_item_list .item .other {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: baseline;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 10px;
    box-sizing: border-box;
}

.product_item_list .item .price {
    font-weight: 500;
    color: var(--cms-url-color);
    font-size: 16px;
}

.product_item_list .item .sold {
    font-size: 12px;
}

.product_item_list .item .sold span {}

.product_item_list .item .discount {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #FEEEEA;
    color: var(--red-color);
    padding: 3px 5px;
    font-weight: 700;
    font-size: 13px;
}

.div_flex {
    display: flex;
    gap: 10px;
}

.div_flex .button_style {
    height: 44px;
}

.custom_select {
    text-align: left;
    position: relative;
}

.custom_select .custom_select_list {
    position: absolute;
    width: 100%;
    z-index: 2;
    display: none;
    margin-top: 10px;
}

.custom_select .custom_select_current.custom_select_item {
    border-top: none;
    margin: 0;
    box-shadow: none;
}

.custom_select .custom_select_item {
    display: flex;
    gap: 10px;
    cursor: pointer;
    width: 100%;
    color: var(--white-color);
    line-height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 7px;
    margin-bottom: 10px;
    background-color: var(--cms-module-background);
    box-shadow: 2px 2px 4px #00000040;
    justify-content: space-between;
}

.custom_select .custom_select_item:hover {
    background-color: var(--cms-purple-text);
}

.custom_select .custom_select_item img {
    height: 44px;
    margin: 0 !important;
}

.custom_select .custom_select_item p.title_name {
    flex: 1;
    line-height: 44px;
    font-size: 14px;
    color: var(--highlight-text-color);
}

.custom_select .custom_select_item p.value {
    line-height: 50px;
    margin-right: 10px;
}

.custom_grid_list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr) !important;
}
.custom_grid_list.follow .item{
    padding-bottom: 0;
}
.custom_grid_list.follow .item .info .icon{
    padding:0;
    border-radius: 150px;
    overflow: hidden;
}

.custom_grid_list .item {
    padding: 15px;
    padding-bottom: 35px;
    border-radius: 6px;
    position: relative;
    background-color: var(--cms-black-9);
}

.custom_grid_list .item .account_setting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    padding: 0 20px;
    left: 0;
    bottom: 10px;
}

.custom_grid_list .item .account_setting p {
    cursor: pointer;
    font-weight: 500;
    line-height: 30px;
    color: var(--cms-url-color);
}

.custom_grid_list .item .account_setting .remove {
    font-size: 17px;
    cursor: pointer;
}

.custom_grid_list .item .switch_slider {
    position: absolute;
    right: 15px;
    top: 15px;
}

.custom_grid_list .item .switch_slider .switch {
    height: 21px;
    width: 48px;
}

.custom_grid_list .item .switch_slider .slider.round {}

.custom_grid_list .item .switch_slider input:checked+.slider {
    background-color: var(--green-color);
}

.custom_grid_list .item .switch_slider .slider:before {
    height: 13px;
    width: 13px;
}

.custom_grid_list .item .info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.custom_grid_list .item .info .icon {
    border-radius: 6px;
    padding: 6px;
    height: 50px;
}

.custom_grid_list .item .info .icon img {
    height: 100%;
}

.custom_grid_list .item .detail {
    width: 100%;
    flex: 1;
}

.custom_grid_list .item .detail .note {
    line-height: 22px;
    font-size: 13px;
    font-weight: 300;
}

.custom_grid_list .item .detail .name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.custom_grid_list .item .add {
    position: absolute;
    right: 10px;
    top: 10px;
    font-weight: 600;
    cursor: pointer;
    color: var(--cms-url-color);
}

#count_down_div {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: var(--purple-color);
    padding: 5px 15px;
    font-size: 17px;
    color: #fff;
    border-radius: 5px;
    display: none;
    z-index: 3
}

.center_div {
    color: inherit;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.center_important {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    text-align: center;
    transform: translate(-50%, -50%) !important
}

.online {
    border-radius: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    background-color: #cacaca;
    border: 2px solid #131930;
    z-index: 2
}

.online.on {
    background-color: #0f0
}

.google_ads_div {
    text-align: center;
    margin: 20px 0;
    position: relative
}

.hide {
    display: none
}

.hide_v {
    display: none !important
}

label {
    cursor: auto
}

.payment_order_status_1,
.payment_order_status_2 {
    color: var(--green-color) !important;
}

.payment_order_status_3 {
    color: var(--red-color) !important;
}

.address_list .item {
    padding: 10px;
    border-radius: 5px;
    line-height: 20px;
    cursor: pointer;
    position: relative;
    background-color: var(--cms-black-9);
    font-size: 12px;
}

.address_list .item.active {
    background-color: var(--cms-purple-text);
    color: var(--white-color);
}

.address_list .item .name {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
}

.address_list .item .add{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 14px;
}

.address_list .item svg.edit {
}

.address_list .item .icon_list{
    display: flex;
    gap: 10px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.gallery_main {}

.gallery_main .gallery_add {
    height: 100px;
    width: 100px;
    position: relative;
    float: left;
}

.gallery_main .gallery_list {
    float: left;
}

.gallery_main .gallery_list .gallery_item {
    position: relative;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.gallery_main .gallery_list .gallery_item .close {
    background-color: var(--cms-module-background);
    width: 24px;
    height: 24px;
    position: absolute;
    right: -12px;
    top: -12px;
    border-radius: 150px;
    cursor: pointer;
    color: var(--white-color);
}

.gallery_main .gallery_list .gallery_item .close svg {}

.gallery_main .gallery_list .gallery_item .gallery_img {
    overflow: hidden;
    height: 100px;
    width: 100px;
    position: relative;
    border-radius: 5px;
}
.gallery_main .gallery_list .gallery_item .gallery_img img{
    width: 100%;
    transform: translate(0, -50%);
    top: 50%;
    left: 0;
    position: absolute;
    border-radius: 3px;
}
.gallery_main .gallery_list .gallery_item .gallery_video{
    overflow: hidden;
    height: 100px;
    position: relative;
    border-radius: 5px;
}
.gallery_main .gallery_list .gallery_item .gallery_video img{
    height: 100%;
}
.gallery_main .gallery_add img{
    height: 100px;
    width: 100px;
    border-radius: 5px;
}
.gallery_main .gallery_add input{
    display: none;
}

.payment_module {
    text-align: left;
    padding: 10px 0;
}

.payment_module .item {
    display: flex;
    gap: 5px;
    padding: 5px;
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
    border-radius: 3px;
    background-color: var(--cms-black-2);
    opacity: 0.7;
}
.payment_module .item.important{
    line-height: 60px;
    justify-content: center;
    color: var(--white-color);
    font-size: 17px;
    background-color: transparent;
    opacity: 1;
}
.payment_module .item.click{
    opacity:1;
}
.payment_module .item.active {
    background-color: var(--cms-black-9-highlight);
    color: var(--white-color);
}
.payment_module .item.shop_coin{
    padding-bottom: 50px;
}
.payment_module .item .add{
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    left: 0;
    padding: 0 10px;
    bottom: 0;
    border-top: 1px solid var(--cms-border-color);
    line-height: 40px;
}
.payment_module .item .add .more{
    font-weight: 500;
    color: var(--cms-url-color);
}
.payment_module .item .add .current span{
    font-weight: 600;
}
.payment_module .item img {
    height: 50px;
}

.payment_module .item .detail {
    padding-top: 5px;
    flex: 1;
    padding-right: 5px;
}

.payment_module .item .detail .name {
    margin-bottom: 5px;
}

.payment_module .item .detail .fee {}

.payment_module .item .detail .price {
    font-weight: 500;
    text-align: right;
}

.shop_rate_module {
    margin-top: 40px;
}

.shop_rate_module .title {}

.shop_rate_module .title h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 5px;
    color: var(--cms-highlight-text);
}
.shop_rate_module .title h5 svg{
    
color: var(--yellow-color);
    
transform: translate(0,-1px);
}

.shop_rate_module .list {}

.shop_rate_module .list .item {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
    padding-top: 20px;
    border-top: 1px solid #0000003d;
}

.shop_rate_module .list .item .avatar {
    height: 50px;
    width: 50px;
    border-radius: 150px;
}

.shop_rate_module .list .item .avatar img {}

.shop_rate_module .list .item .detail {
}

.shop_rate_module .list .item .detail .name {
    font-weight: 600;
    color: var(--cms-highlight-text);
    font-size: 15px;
    margin-top: 2px;
}

.shop_rate_module .list .item .detail .text {margin: 7px 0;font-size: 15px;}

.shop_rate_module .list .item .detail .other {
    color: grey;
    font-size: 13px;
}

.shop_rate_module .list .item .detail .other span {
    color: var(--cms-highlight-text);
}

.shop_rate_module .list .item .rate_star{
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 15px;
}

.shop_rate_module .list .item .gallery{
    display: flex;
    gap: 7px;
    margin-top: 15px;
}
.shop_rate_module .list .item .gallery .gallery_item{border-radius: 5px;overflow: hidden;height: 80px;width: 80px;position: relative;cursor: pointer;}
.shop_rate_module .list .item .gallery .gallery_item img{max-height: 100%;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}

.frame_content {
    position: fixed;
    transform: translate(100%, 0);
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    -webkit-transition: .4s;
    transition: .4s;
    right: 0px;
    top: 0;
    z-index: 1;
    height: calc(100% - 60px);
    margin-top: 60px;
    width: 300px;
    color: var(--cms-highlight-text);
}

.frame_close {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--background-trans);
    top: 0;
    left: 0;
    display: none;
}

.frame_content.show {
    transform: translate(0, 0);
}

.frame_content.shop_other {
    padding: 30px;
    box-sizing: border-box;
}

.frame_content.shop_other .social {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.frame_content.shop_other .social .item {
    height: 50px;
    width: 50px;
    background-color: var(--cms-purple-text);
    border-radius: 150px;
}

.frame_content.shop_other .social .item img {
    width: 100%;
    height: 100%;
}

.frame_content.shop_other .other {}

.frame_content.shop_other .other .item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    line-height: 35px;
}

.frame_content.shop_other .other .item .title {}

.frame_content.shop_other .other .item .value {
    color: var(--cms-purple-text);
    font-weight: 600;
}

.frame_content.shopping_cart {}
.frame_content.shopping_cart .payment_module{
    padding: 0 10px;
}
.frame_content.shopping_cart .loading {}

.frame_content.shopping_cart .loading img {
    max-width: 100%;
}

.frame_content.shopping_cart .list {
    padding: 0 10px;
}

.frame_content.shopping_cart .list .item {
    display: flex;
    gap: 10px;
    position: relative;
    padding: 15px 0;
    border-top: 1px solid var(--cms-border-color);
}

.frame_content.shopping_cart .list .item:first-child {
    padding-top: 0px;
    border-top: 0;
}

.frame_content.shopping_cart .list .item img {
    height: 60px;
    width: 60px;
    border-radius: 3px;
}

.frame_content.shopping_cart .list .item .info {
    flex: 1;
}

.frame_content.shopping_cart .list .item .info .profile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    margin-top: 3px;
}

.frame_content.shopping_cart .list .item .info .profile .price {
    font-weight: 600;
}

.frame_content.shopping_cart .list .item .step_amount {
    height: 22px;
    margin-top: 7px;
    font-size: 15px;
}

.frame_content.shopping_cart .list .item .amount {
    display: flex;
    justify-content: space-between;
}

.frame_content.shopping_cart .list .item .amount .remove {
    font-size: 16px;
    padding: 8px 0px;
    color: var(--cms-purple-text);
}

.frame_content.shopping_cart .list .item .amount .remove svg {
    cursor: pointer;
}

.frame_content.shopping_cart .note {
    border: 0;
    height: 150px;
    resize: none;
    line-height: 22px;
    padding: 10px;
    border-top: 1px solid var(--cms-border-color);
}


.frame_content.shopping_cart .total {
    padding: 10px 10px;
    font-size: 15px;
    border-bottom: 1px solid var(--cms-border-color);
    margin-bottom: 15px;
}

.frame_content.shopping_cart .total .item {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.frame_content.shopping_cart .total .amount .value {
    font-weight: 600;
    font-size: 18px;
}

.frame_content.shopping_cart .total .ship {
    line-height: 30px;
    font-size: 13px;
    color: var(--cms-text);
}

.frame_content.shopping_cart .total .ship .value {}

.frame_content.shopping_cart .button_fixed {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.frame_content.shopping_cart .payment_status {
    text-align: center;
    width: 90%;
}

.frame_content.shopping_cart .payment_status .icon {
    height: 80px;
    aspect-ratio: 1/1;
    background-color: var(--green-color);
    position: relative;
    border-radius: 150px;
    font-size: 40px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: var(--white-color);
}

.frame_content.shopping_cart .payment_status .icon.error {
    background-color: var(--red-color);
}

.frame_content.shopping_cart .payment_status .icon svg {}

.frame_content.shopping_cart .payment_status .title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.frame_content.shopping_cart .payment_status .message {
    color: var(--cms-text);
    margin-bottom: 20px;
    line-height: 21px;
}

.frame_content.shopping_cart .payment_status button {
    border-color: var(--red-color);
    color: var(--red-color);
}

#plugin_div {}

#plugin_div .close {
    position: absolute;
    right: -13px;
    top: -13px;
    width: 30px;
    height: 30px;
    background-color: var(--cms-purple-text);
    border-radius: 150px;
    font-size: 19px;
    color: var(--white-color);
    cursor: pointer
}

#plugin_div .plugin_iframe_youtube {
    position: fixed;
    right: 10px;
    bottom: 10px;
    max-width: 400px;
    max-height: 225px;
    width: 100%;
    height: 100%;
}

#plugin_div .plugin_iframe_youtube iframe {
    width: 100%;
    height: 100%;
    border-radius: 7px;
}

#plugin_div .plugin_shop_commission{
    position: fixed;
    left: 15px;
    bottom: 15px;
    background-color: white;
    color: var(--cms-text);
    padding: 20px 30px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 0px 5px #0000006e;
}
#plugin_div .plugin_shop_commission .info .title{
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 23px;
}
#plugin_div .plugin_shop_commission .info .value{
    font-weight: 700;
    font-size: 30px;
    color: var(--cms-purple-text);
}

.checklist{}
.checklist ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.checklist ul li{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.checklist ul li .text{}
.checklist ul li .text .c_title{
    line-height: 34px;
    font-weight: 600;
}
.checklist ul li .text .c_note{
    font-size: 13px;
    color: var(--cms-grey-1);
    line-height: 20px;
}
.checklist ul li .text .c_note span{
    color: var(--yellow-color);
}

.popup_content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: none;
    line-height: 25px;
    overflow: auto
}

.popup_content ::-webkit-scrollbar {
    width: 0
}

.popup_content::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000006e;
    z-index: -1
}

#popup_content .popup_content {
}

#popup_content .popup_content.hidden .popup_module {
    opacity: 0;
    margin-top: -100px;
}

#popup_content .popup_content.visible .popup_module {
    opacity: 1;
    margin-top: 0;
}

#popup_content .popup_content .popup_module {
    width: 400px;
    background-color: var(--cms-black-1);
    border-radius: 10px;
    padding: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    box-shadow: 0 5px 15px #00000080;
    transition-duration: .2s;
    color: var(--white-color);
    padding-top: 90px;
}
#popup_content .popup_content .popup_module.login_error_browser{}
#popup_content .popup_content .popup_module.login_error_browser svg.warning{
    font-size: 100px;
    margin-bottom: 20px;
    color: var(--yellow-color);
}
#popup_content .popup_content .popup_module.login_error_browser p{}
#popup_content .popup_content .popup_module.login_error_browser p.title{
    font-weight: 600;
    font-size: 18px;
    color: var(--white-color);
    margin-bottom: 10px;
}
#popup_content .popup_content .popup_module.login_error_browser p.description{
    color: var(--cms-grey-1);
}

#popup_content .popup_content .popup_module.image_cut {
    width: 800px !important;
    max-width: 90vw;
    height: auto;
    max-height: 90vh;
    overflow: hidden;
}

#popup_content .popup_content .popup_module.image_cut .image_cut_container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

#popup_content .popup_content .popup_module.image_cut .image_wrapper {
    width: 100%;
    height: 400px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

#popup_content .popup_content .popup_module.image_cut .image_wrapper img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

#popup_content .popup_content .popup_module.image_cut .cropper-container {
    background-color: #f5f5f5;
}

#popup_content .popup_content .popup_module.image_cut .cropper-view-box {
    border-radius: 0;
}

#popup_content .popup_content .popup_module.image_cut .cropper-face {
    background-color: transparent;
}

#popup_content .popup_content .popup_module.image_cut .cropper-line {
    background-color: var(--cms-highlight-text);
}

#popup_content .popup_content .popup_module.image_cut .cropper-point {
    background-color: var(--cms-highlight-text);
    border: 2px solid var(--white-color);
}

#popup_content .popup_content .popup_module.image_cut .cropper-dashed {
    border-color: var(--cms-highlight-text);
}

#popup_content .popup_content .popup_module .loading_screen{
    text-align: center;
}
#popup_content .popup_content .popup_module .loading_screen img{
    width: 150px !important;
    height: 150px !important;
}

#popup_content .popup_content .popup_module .input_screen{
    max-height: 710px;
    overflow: auto;
}


#popup_content .popup_content .popup_module .note {
    margin-top: 10px;
    flex: 1;
    text-align: center;
}
#popup_content .popup_content .popup_module .text_list{
    text-align: left;
}
#popup_content .popup_content .popup_module .text_list p{
    margin-top: 10px;
}

#popup_content .popup_content .popup_module a {
    color: var(--cms-highlight-text);
    font-weight: 600
}

#popup_content .popup_content .popup_module .close {
    position: absolute;
    right: 30px;
    top: 27px;
    width: 34px;
    height: 34px;
    background-color: var(--cms-black-2);
    border-radius: 150px;
    font-size: 22px;
    color: var(--white-color);
    cursor: pointer;
    z-index: 2;
}

#popup_content .popup_content .popup_module h3 {
    font-size: 18px;
    color: var(--white-color);
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 70px;
    padding: 0 30px;
    background-color: var(--cms-black-1);
    width: 100%;
    padding-top: 10px;
    text-align: left;
    text-transform: capitalize;
    border-radius: 10px 10px 0 0;
}

#popup_content .popup_content .popup_module h5 {
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 15px;
}
#popup_content .popup_content .popup_module.language {
    width: 950px;
    background-color: var();
}

#popup_content .popup_content .popup_module.language .list {
    gap: 10px;
}

#popup_content .popup_content .popup_module.language .list .item {
    display: flex;
    gap: 10px;
    padding: 10px;
    background-color: var(--black-text-color);
    border-radius: 10px;
    cursor: pointer;
    line-height: 30px;
    color: var(--white-color);
}

#popup_content .popup_content .popup_module.language .list .item img {
    height: 30px;
}
#popup_content .popup_content .popup_module.shop_rate .rate_star{
    margin-top: 10px;
    justify-content: center;
}
#popup_content .popup_content .popup_module.shop_rate .rate_star svg{
    cursor: pointer;
    font-size: 30px;
    color: var(--cms-border-color);
}
#popup_content .popup_content .popup_module.shop_rate .rate_star svg.active{
    color:var(--yellow-color);
}
#popup_content .popup_content .popup_module.login {}

#popup_content .popup_content .popup_module.login .list {
    display: grid;
    gap: 15px;
}

#popup_content .popup_content .popup_module.login .list .item {
    border-radius: 10px;
    display: flex;
    line-height: 50px;
    gap: 5px;
    font-size: 16px;
    cursor: pointer;
    background-color: var(--cms-black-2);
}

#popup_content .popup_content .popup_module.login .list .item .icon {
    height: 50px;
}

#popup_content .popup_content .popup_module.payment_edit {
    width: 100%;
    max-width: 700px;
    padding: 30px;
    padding-top: 110px;
}
#popup_content .popup_content .popup_module.payment_edit ::-webkit-scrollbar{
    width: 8px;
}
#popup_content .popup_content .popup_module.payment_edit .highlight{
    color: var(--cms-purple-text) !important;
}

#popup_content .popup_content .popup_module.payment_edit h5 {text-transform: none;font-weight: 600;font-size: 18px;}

#popup_content .popup_content .popup_module.payment_edit .payment_data {max-height: 640px;overflow: auto;}

#popup_content .popup_content .popup_module.payment_edit .cart_data {
    flex: 1;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .list {}

#popup_content .popup_content .popup_module.payment_edit .cart_data .list .item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
    box-sizing: border-box;
    border-radius: 3px;
    cursor: pointer;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .list .item .image {
    height: 60px;
    border-radius: 3px;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .list .item .info {
    flex: 1;
    line-height: 18px;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .list .item .info .name {
    font-size: 15px;
    font-weight: 600;
    margin-top: 12px;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .list .item .info .quantity {
    font-size: 11px;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .list .item .info .price {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 18px;
    font-weight: 500;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .shop_reply {
    border-top: 1px solid var(--cms-border-color);
    border-radius: 3px;
    padding-top: 15px;
    margin-top: 15px;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .shop_reply .title {
    font-weight: 700;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .shop_reply .value {}

#popup_content .popup_content .popup_module.payment_edit .cart_data .total {
    border-top: 1px solid var(--cms-black-2);
    padding-top: 20px;
    margin-top: 30px;
}
#popup_content .popup_content .popup_module.payment_edit .cart_data .total div{
    display: flex;
    justify-content: space-between;
}
#popup_content .popup_content .popup_module.payment_edit .cart_data .total p {
    line-height: 25px;
    font-size: 13px;
}

#popup_content .popup_content .popup_module.payment_edit .cart_data .total p span {
    font-weight: 500;
}
#popup_content .popup_content .popup_module.payment_edit .child_module{
    padding: 15px 20px;
    background-color: var(--cms-black-9);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin-bottom: 20px;
}

#popup_content .popup_content .popup_module.payment_edit .address_data .detail {
    line-height: 30px;
}

#popup_content .popup_content .popup_module.payment_edit .address_data .detail .item {
    display: flex;
}

#popup_content .popup_content .popup_module.payment_edit .address_data .detail .item:last-child {
    border-bottom: 0;
}

#popup_content .popup_content .popup_module.payment_edit .address_data .detail .item .title {
    width: 150px;
}

#popup_content .popup_content .popup_module.payment_edit .address_data .detail .item .value {
    font-weight: 500;
}

#popup_content .popup_content .popup_module.payment_edit .button {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 10px;
}

#popup_content .popup_content .popup_module.payment_edit .button button {
    border-color: transparent;
}

#popup_content .popup_content .popup_module.payment_show {}

#popup_content .popup_content .popup_module.payment_show img {
    width: 100%;
    max-width: 230px;
    border-radius: 7px;
}

#popup_content .popup_content .popup_module.payment_show .time_count_down {
    text-align: center;
    font-size: 22px;
    color: var(--cms-highlight-text);
}

body .rate_star {
    color: var(--yellow-color) !important;
    display: flex;
    align-items: center;
}

body .rate_star svg {
}

body .rate_star svg.empty {
    color: var(--cms-text);
}

body .topup_screen {
    padding: 0 20px
}

body .topup_screen .success {
    text-align: center;
    width: 500px
}

body .topup_screen .success img {
    height: 200px;
    margin-bottom: 20px
}

body .topup_screen .success p {
    font-size: 20px
}

body .topup_screen .topup {}

body .topup_screen .topup_result {
    padding: 20px 0;
    text-align: center
}

body .topup_screen .topup_result img {
    height: 130px;
    margin-bottom: 15px
}

body .topup_screen .topup_result p {
    font-size: 16px;
    font-weight: 600;
    color: green
}

body .topup_screen .topup img.fawa {
    height: 20px;
    margin-bottom: -4px
}

body .topup_screen .topup #recharge_menu {
    margin-bottom: 30px
}

body .topup_screen .topup #recharge_menu ul {}

body .topup_screen .topup #recharge_menu ul li:first-child {
    margin-left: 0
}

body .topup_screen .topup #recharge_menu ul li.active {
    border: 2px solid var(--purple-color)
}

body .topup_screen .topup #recharge_menu ul li {
    text-align: center;
    float: left;
    width: calc(25% - 32px);
    border: 2px solid #2b3954;
    background-color: #2b3954;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px;
    margin-left: 10px
}

body .topup_screen .topup #recharge_menu ul li img {
    margin-bottom: 10px
}

body .topup_screen .topup #recharge_menu ul li .name {
    line-height: 30px;
    margin: 0;
    font-size: 14px;
    color: var(--highlight-text-color);
    font-weight: 500
}

body .topup_screen .topup #recharge_menu ul li .note {
    line-height: 20px;
    margin: 0
}

body .bee_chibi {
    text-align: center !important;
    padding: 100px 0 !important
}

body .bee_chibi img {
    min-height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

body .bee_chibi p {
    font-size: 13px
}

:root {
    --cms-black-1: #121214;
    --cms-black-2: #202024;
    --cms-black-3: #2E2E2E;
    --cms-black-4: #3B3B3B;
    --cms-black-6: #1D1D21;
    --cms-black-7: #080808;
    --cms-black-8: #1A1A1A;
    --cms-black-9: #2D2D32;
    --cms-black-10: #999999;
    --cms-black-9-highlight: #3c3c43;
    --cms-black-4-highlight: #575757;
    --cms-black-5: #333333;
    --cms-grey-1: #D4D4D4;
    --cms-grey-1-highlight: #F5F5F5;
    --cms-grey-text : #080808;
    --cms-grey-2: #999999;
    --cms-background: #f6f6f6;
    --cms-menu-background: #5266d8d4;
    --cms-module-background: #5266D8;
    --cms-module-background-hard: #121d40;
    --cms-border-color: #c7c7c7;
    --cms-text: #4F4F4F;
    --cms-highlight-text: #000000;
    --cms-url-color: #8DA1FC;
    --cms-purple-text: #5865F2;
    --black-text-color: #333333;
    --purple-color-2: #222F5C;
    --purple-color-2-highlight: #4A5693;
    --purple-color-3: #464A8F;
    --purple-color-4: #151D35;
    --green-color: #2ecc71;
    --green-dark-color: #16a085;
    --yellow-color: #fde339;
    --red-color: #F57976;
    --white-color: #ffffff;
    --box-shadow: 0px 0px 5px #00000029;
    --background-trans: #0000007a;
}

body svg {
    color: inherit;
    font-size: inherit
}

body {
    background-color: var(--cms-black-1);
    color: var(--white-color);
    font-size: 14px;
    font-family: 'Noto Sans';
    font-weight: 400;
    padding-bottom: 40px;
    padding-top: 60px;
    line-height: 20px;
}

body .mod_control {
    display: none
}

body input,
body select,
body textarea {
    background-color: var(--cms-black-6);
    width: 100%;
    height: 44px;
    line-height: 44px;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 6px;
    font-family: inherit;
    font-weight: inherit;
    box-sizing: border-box;
    color: var(--white-color);
    border: 1px solid #97979f33;
}

body input::-webkit-input-placeholder,
body textarea::-webkit-input-placeholder {
    color: var(--cms-grey-2);
}

.ck-editor__editable {
    background-color: var(--cms-black-1) !important;
    color: var(--white-color) !important;
    border: 1px solid var(--cms-black-1) !important;
}

.ck.ck-editor__main>.ck-editor__editable:not(.ck-focused) {
    border: 1px solid var(--cms-black-9-highlight);
}

.ck.ck-toolbar {
    background-color: var(--cms-black-7) !important;
    border: 1px solid var(--cms-black-7) !important;
}

.ck.ck-button {
    color: #ffffff !important;
}

.ck.ck-button:hover {
    background-color: var(--cms-black-9-highlight) !important;
}

.ck.ck-editor {
    position: relative;
    line-height: 30px;
}

.ck.ck-powered-by {
    display: none !important;
}

body .page_redirect {
    margin: 20px 0;
    padding-bottom: 20px;
    text-align: center;
    max-width: 100%
}

body .page_redirect p {
    margin: 0 4px;
    line-height: 40px;
    width: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 150px;
    cursor: pointer;
    font-size: 16px;
    background-color: var(--cms-black-9);
}

body .page_redirect p:hover {
    color: var(--purple-color);
    transition: .5s
}

body .page_redirect p.active {
    color: var(--white-color);
    background-color: var(--cms-black-4-highlight);
}

body .filter {}

body .filter h5 {
    float: left;
    line-height: 42px;
    font-size: 18px;
    color: var(--highlight-text-color);
    font-weight: 700
}

body .filter h5 span {
    font-weight: 500
}

body .filter .item {
    float: left;
    margin-right: 15px
}

body .filter .item .input {
    position: relative
}

body .filter .item .input .icon svg {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 17px
}

body .filter .item .select {
    position: relative
}

body .filter .item .select .show {
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
    color: var(--highlight-text-color);
    border: 1px solid var(--highlight-text-color);
    background-color: var(--background-color);
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    width: calc(100% - 22px);
    overflow: hidden
}

body .filter .item .select .show svg {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%)
}

body .filter .item .select .hidden {
    background-color: var(--purple-color-2);
    color: var(--highlight-text-color);
    border-radius: 6px;
    line-height: 40px;
    font-size: 13px;
    padding: 10px;
    max-height: 200px;
    overflow: auto;
    display: none;
    width: calc(100% - 20px);
    position: absolute;
    top: 45px;
    z-index: 3
}

body .filter .item .select .hidden .text {
    padding: 0 10px;
    cursor: pointer;
    border-radius: 150px;
    width: calc(100% - 20px);
    overflow: hidden;
    height: 40px
}

body .filter .item .select .hidden .text:hover {
    background-color: var(--purple-color-2-highlight)
}

body .filter .item .select img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 2px
}

body .input_screen {
    flex: 1;
}

body .input_screen input,
body .input_screen select,
body .input_screen textarea {
}
body .input_screen .disable{
    background-color: var(--cms-black-1);
    border-color: var(--cms-black-1);
}
body .input_screen input.error {
    border: 1px solid var(--yellow-color);
}

body .input_screen select {
    cursor: pointer
}

body .input_screen .profile_avatar {
    text-align: center;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 150px;
}

body .input_screen .profile_avatar img {
    width: 100px;
    height: 100px;
    border-radius: 150px;
}
body .input_screen .product_avatar{
    text-align: center;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}
body .input_screen .product_avatar img {
    width: 100%;
    height: 100%;
}
body .input_screen textarea {
    height: 180px;
    resize: none;
    line-height: 25px;
    padding: 10px 15px;
}

body .input_screen select option {
    color: var(--highlight-text-color);
    background-color: var(--background-highlight-color)
}

body .input_screen .label {
    margin-bottom: 5px;
    text-transform: initial;
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
    font-weight: 500;
}

body .input_screen .label button {
    margin: 0;
    background-color: var(--purple-color);
    border: 0;
    color: #fff;
    padding: 0 10px;
    line-height: 18px;
    font-weight: 500;
    font-size: 13px;
    border-radius: 150px;
    margin-left: 7px
}

body .input_screen .label img {
    vertical-align: middle;
    height: 20px;
    margin-top: -5px;
    margin-left: 3px;
    margin-right: 3px
}

body .input_screen h4 {
    font-weight: 700;
    color: var(--cms-highlight-text);
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase
}

body .input_screen ul.form li {
    margin-bottom: 20px;
    text-align: center;
}

body .input_screen ul.form li span {
}

body .input_screen ul.form li .fr-box span {
    font-weight: inherit;
    color: inherit;
    font-size: inherit
}

body .input_screen ul.form li .price {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 15px
}

body .input_screen ul.form li .input_flex {
    display: flex;
    border-radius: 6px;
    border: 1px solid #97979f33;
    padding: 0 15px;
    gap: 5px;
    background-color: var(--cms-black-6);
}

body .input_screen ul.form li .input_flex span {
    font-weight: 500;
}

body .input_screen ul.form li .input_flex input {
    border: 0;
    padding: 0;
    border-radius: 0;
}

body .input_screen ul.form li .input_flex img {
    height: 22px;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: 11px;
}

body .input_screen ul.form li .input_flex p {
    line-height: 44px;
    text-align: right;
    border-radius: 6px 0 0 6px;
    display: flex;
    color: var(--cms-grey-2);
}

body .input_screen ul.form li .multi_li {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

body .input_screen ul.form li .multi_li .item {
    flex: 1;
}

body .input_screen ul.form li .mutiple_select {
    display: flex;
    justify-content: space-between;
    line-height: 38px;
}

body .input_screen ul.form li .mutiple_select .mutiple_select_list {
    display: flex;
}

body .input_screen ul.form li .mutiple_select .mutiple_select_list .item {
    color: var(--cms-module-background);
    padding: 0 13px;
    border: 1px solid var(--cms-module-background);
    border-radius: 5px;
    cursor: pointer;
}

body .input_screen ul.form li .mutiple_select .mutiple_select_list .item:first-child {
    border-radius: 5px 0 0 5px;
}

body .input_screen ul.form li .mutiple_select .mutiple_select_list .item:last-child {
    border-radius: 0 5px 5px 0;
    border-left: 0;
}

body .input_screen ul.form li .mutiple_select .mutiple_select_list .item.active {
    background-color: var(--cms-module-background);
    color: var(--white-color);
}

body .input_screen ul.form li svg {
    color: var(--highlight-text-color);
    cursor: pointer
}

body .input_screen img {
    cursor: pointer
}

body .button_fixed {
    position: fixed;
    left: 50%;
    bottom: 0px;
    width: 100%;
    transform: translate(-50%, 0);
    background-color: var(--cms-black-6);
    padding: 15px 0;
    z-index: 2;
}

body .button_fixed .div_module {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

body .button_div {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}
body .button_div.mini_button{
    gap:10px;
}
body .button_div.mini_button button{
    height: 30px;
    font-size: 13px;
    min-width: auto;
}
body .button_div.right{
    justify-content: flex-end;
}
body .button_div.center{
    justify-content: center;
}
body .button_div.mg_0{
    margin-top: 0;
    margin-bottom: 0;
}
body .button_div.mb_30{
    margin-bottom: 30px;
}
body .button_div.mg_20{
    margin-top: 20px;
    margin-bottom: 10px;
}
body .button_div.list {
    border: 1px solid #333;
    padding: 6px;
    border-radius: 5px;
    gap: 0;
}

body .button_div.center{
    justify-content: center;
}
body .button_style {
    width: auto;
    height: 40px;
    background-color: var(--cms-grey-1);
    color: var(--cms-black-7);
    border-radius: 150px;
    font-size: 14px;
    position: relative;
    min-width: 200px;
    border: 0;
    padding: 0 15px;
    line-height: 30px;
    font-weight: 500;
}
body .popup_module .button_style{
    min-width: 120px;
    flex: 1;
}
body .button_style.delete{
    background-color: #97979F1F;
    color: var(--red-color);
}
body .button_style.delete:hover{
    background-color: #97979F33;
}
body .button_div .button_list{
    width: auto;
    height: 30px;
    background-color: transparent;
    color: var(--white-color);
    border-radius: 3px;
    font-size: 13px;
    border: 0;
    padding: 0 15px;
    text-transform: capitalize;
    font-weight: 500;
}
body .button_div .button_list.active{
    background-color: var(--cms-grey-1-highlight);
    color: var(--cms-black-7);
}
body .button_style:hover{
    background-color: var(--cms-grey-1-highlight);
}

body .button_style svg {
    margin-right: 5px;
}

body .button_style.full {
    width: 100%
}

body .button_style.trans {
    background-color: var(--cms-black-9);
    color: var(--white-color);
}
body .button_style.highlight{
    background-color: var(--cms-purple-text);
    color: white;
}
body .button_style.bottom_20{
    margin-bottom: 20px;
}

body .button_style.del {
    background-color: transparent;
    color: var(--red-color);
    border: 1px solid var(--red-color);
}

body .button_style.no {
    filter: grayscale(1);
}

body .nav_menu  {
    width: 270px;
    color: var(--white-color);
}
body .nav_menu  .profile{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    float: none !important;
}
body .nav_menu  .profile .avatar{
    height: 46px;
    width: 46px;
    border-radius: 150px;
    overflow: hidden;
}
body .nav_menu  .profile .avatar img{
    height: 100%;
    width: 100%;
}

body .nav_menu .hidden::after {
    width: 0
}

body .nav_menu  .nav_menu_control {
    font-size: 20px
}

body .nav_menu  .nav_menu_control .nav_menu_outside {
    position: absolute;
    right: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--cms-menu-background);
    border-radius: 0 0 10px;
    cursor: pointer;
    box-shadow: 3px 3px 5px #0000006e;
    border-left: 1px solid var(--cms-background);
}

body .nav_menu  .nav_menu_control .nav_menu_outside svg {}

body .nav_menu  .logo {
    height: 40px;
    padding: 20px 15px;
    position: relative
}

body .nav_menu  .logo .name {
    float: left;
    line-height: 40px;
    margin-left: 10px;
    width: calc(100% - 50px);
    font-size: 18px;
    font-weight: 700;
    height: 40px;
    overflow: hidden;
    color: var(--highlight-text-color)
}

body .nav_menu  .logo img {
    height: 30px;
    float: left;
    border-radius: 150px
}

body .nav_menu  .logo .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
    display: none
}

body .nav_menu  .logo .icon svg {
    font-size: 21px
}

body .nav_menu  h3 {
    text-transform: uppercase;
    padding: 0 20px;
    margin: 10px 0;
    color: var(--main-text-color)
}
body .nav_menu  .menu_module{padding: 20px 0;border-bottom: 1px solid var(--cms-black-2);}
body .nav_menu  .menu_module.no_border{border-bottom: none;}
body .nav_menu  .menu_module h5{
    font-size: 14px;
    color: var(--cms-grey-1);
    font-weight: 300;
    text-transform: capitalize;
    margin-bottom: 7px;
}
body .nav_menu  ul.main {
    font-size: 15px;
    text-transform: capitalize;
}

body .nav_menu  ul.main li.main {
    line-height: 40px;
    padding: 0 0px;
    margin: 5px 0;
}

body .nav_menu  ul.main li.main .title {
    position: relative;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    gap: 0px;
}

body .nav_menu  ul.main li.main .title .icon {
    width: 40px;
    height: 40px;
    position: relative;
}


body .nav_menu  ul.main li.main .title .icon svg {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%
}

body .nav_menu  ul.main li.main .title .more_icon {
    position: absolute;
    right: 0;
    height: 24px;
    width: 24px;
    top: 50%;
    display: none;
    transform: translate(0,-50%);
    background-color: var(
    --cms-black-2);
    border-radius: 150px;
    color: var(--cms-grey-1);
}
body .nav_menu  ul.main li.main .title p{
}

body .nav_menu ul.main li.main .title .more_icon {
    display: block;
}
body .nav_menu ul.main li.main .title p{
    display: block;
}

body .nav_menu ul.main li.main .title{
    justify-content: left;
}
body .nav_menu ul.main li.main .click.active,body .nav_menu ul.main li.main .click:hover{background-color: var(--cms-black-3);border-radius: 150px;}
body.cms_body .right_content{
    flex: 1;
}

body .nav_menu  ul.main li.main .title .more_icon svg {
    right: 0
}

body .nav_menu  ul.main li.main svg {
    font-size: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body .nav_menu  ul.main li.main ul {
    padding-left: 15px;
    display: none
}

body .nav_menu  ul.main li.main ul li {
    padding: 0 25px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}

body .policy {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0 20px;
    line-height: 28px;
}

body .policy h5 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px
}

body .policy h6 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--white-color)
}

body .policy p {}

body .policy p span {
    font-weight: 600
}

.div_module {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    position: relative
}

.bar_div {
    position: relative
}

.bar_div .bar {
    position: absolute;
    height: 100%;
    max-width: 100%;
    left: 0;
    top: 0;
    background-color: var(--purple-color-3);
    z-index: 0;
    border-radius: 150px 0 0 150px
}

body #content {
    padding-bottom: 60px;
}

body #main_content {margin: 0 auto;max-width: 1250px;display: flex;gap: 30px;padding-top: 30px;}

body #main_content #content {
}

body #main_content #content .title_menu {
    position: relative;
    display: flex;
    justify-content: space-between;
}

body #main_content #content .title_menu h3 {
    color: var(--highlight-text-color);
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 35px;
    text-transform: capitalize;
}

body #main_content #content .title_menu h3 svg {
    cursor: pointer;
    margin-right: 5px
}

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

body #main_content .title_menu .menu {
    display: flex;
    gap: 10px
}

body #main_content .title_menu .menu .search {
    height: 36px;
    position: relative
}

body #main_content .title_menu .menu .search input {
    height: 36px;
    padding: 0 15px 0 30px;
    border-radius: 150px;
    line-height: 36px
}

body #main_content .title_menu .menu .select select {
    width: auto;
    height: 36px;
    border-radius: 150px;
    padding-left: 30px;
    line-height: 36px
}

body #main_content .title_menu .menu .select select option {
    font-weight: 600;
    background-color: #131930
}

body #main_content .title_menu .menu .select svg {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 12px
}

body #main_content .title_menu .menu .select {
    position: relative
}

body #main_content .title_menu .menu .search svg {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%)
}

body #main_content .title_menu .menu button {
    background-color: var(--purple-color);
    border: 0;
    color: #fff;
    height: 36px;
    padding: 0 10px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 150px
}

body #main_content button.hover:hover {
    background-color: var(--purple-color-2-highlight)
}

body #main_content .album_sync .form .value {
    font-size: 20px;
    color: var(--highlight-text-color)
}

body #main_content .button .loading {
    text-align: center;
    display: none
}

body #main_content .button .loading img {
    height: 50px
}

body table.main_table {
    width: 100%;
    margin-top: 20px
}
body table.main_table.no_button tr td{
    text-align: left !important;
}

body table.main_table thead {}

body table.main_table thead tr {}

body table.main_table thead tr td {
    line-height: 40px;
    padding: 0 10px 5px;
    font-weight: 600;
    font-size: 14px;
    color: var(--main-text-color)
}

body table.main_table thead tr td:last-child {
    text-align: right
}

body table.main_table tbody {}

body table.main_table tbody tr {
    border-bottom: 1px solid var(--cms-black-8);
}

body table.main_table tbody tr.highlight {
    background-color: var(--purple-color-2)
}

body table.main_table tbody tr td {
    vertical-align: middle;
    position: relative;
    line-height: 50px;
    padding: 0 10px;
}
body table.main_table tbody tr td.loading{
    text-align: center !important;
    padding: 50px 0 !important;
    border: 0 !important;
}
body table.main_table tbody tr td.loading img{
    height: 100px;
}

body table.main_table tbody tr td a {
    color: var(--cms-url-color);
}
body table.main_table tbody tr td span.highlight{
    color: var(--yellow-color);
}
body table.main_table tbody tr td .statics {
    display: flex;
    gap: 15px;
}

body table.main_table tbody tr td img.icon {
    height: 20px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 2px
}

body table.main_table tbody tr td img.image {
    max-height: 50px;
}

body table.main_table tbody tr td .icon_list{
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

body table.main_table tbody tr td .icon_list .icon_item{
    cursor: pointer;
    background-color: var(--cms-black-4);
    border-radius: 150px;
    height: 36px;
    width: 36px;
    color: var(--white-color);
    font-size: 14px;
    position: relative;
}
body table.main_table tbody tr td .icon_list .icon_item:hover{
    background-color: var(--cms-black-4-highlight);
}
body table.main_table tbody tr td .icon_list .icon_item svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 14px;
}




body table.main_table tbody tr:first-child td:first-child {
    border-top-left-radius: 10px
}

body table.main_table tbody tr:first-child td:last-child {
    border-top-right-radius: 10px
}

body table.main_table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px
}

body table.main_table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px
}

body table.main_table tbody tr td .note {
    position: absolute;
    bottom: 10px;
    font-size: 12px;
    color: var(--highlight-text-color)
}

body table.main_table tbody tr td .note svg {}

body table.main_table tbody tr td:last-child {
    text-align: right;
}

body table.main_table tbody tr td .avatar {
    height: 50px;
    float: left;
    margin-right: 10px
}

body table.main_table tbody tr td .info {
    float: left
}

body table.main_table tbody tr td .info .name {
    line-height: 50px;
    color: var(--highlight-text-color);
    text-transform: capitalize
}

body table.main_table tbody tr td span {
    font-weight: 500;
}

body table.main_table tbody tr td:last-child svg {
    margin-left: 15px;
    font-size: 20px
}

body .statics_chart {}

body .statics_chart .chart_bar {}

body .statics_chart .chart_bar .chart {
    border: 1px solid var(--background-highlight-color);
    border-radius: 10px;
    padding: 20px;
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 370px
}

body .num_report {}

body .num_report ul {}

body .num_report ul li {
    position: relative;
    float: left
}

body .num_report ul li .name {
    font-weight: 700;
    color: var(--highlight-text-color);
    margin-bottom: 15px
}

body .num_report ul li .num {
    color: var(--highlight-text-color);
    font-size: 24px;
    font-weight: 700
}

body .num_report ul li .note {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 21px
}

body #main_header {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    color: var(--white-color);
    background: var(--cms-black-1);
    box-shadow: 1px 12px 13px #00000033;
}

body header.main_header {
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0 20px;
}

body header.main_header .left {
    line-height: 30px
}

body header.main_header .menu_icon {
    font-size: 30px;
    padding: 15px 0;
    cursor: pointer;
    display: none;
}

body header.main_header .menu_icon.active {
    color: var(--cms-menu-background);
}


body header.main_header .left .logo {
    float: left;
    font-size: 20px;
    line-height: 70px;
    color: #fff;
    letter-spacing: 1px
}

body header.main_header .left .logo img {
    max-height: 30px;
    margin: 15px 0;
}


body header.main_header .right {
    padding: 10px 0;
    display: flex;
}
body header.main_header .right .nav_menu{
    position: absolute;
    right: 0;
    top: 50px;
    background-color: var(--cms-black-2);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    overflow: auto;
    max-height: 740px;
}
body header.main_header .right .login {}

body header.main_header .right .login .item {
    background-color: white;
    display: flex;
    border-radius: 7px;
    cursor: pointer;
}

body header.main_header .right .login .item .icon {
    height: 40px;
}

body header.main_header .right .login .item p {
    flex: 1;
    text-align: center;
    line-height: 40px;
    padding-right: 13px;
    padding-left: 7px;
    color: var(--black-text-color);
}

body header .right .notification_div {
    float: left;
    margin-right: 15px;
    position: relative;
    width: 50px;
    height: 40px;
}

body header .right .notification_div .amount {
    position: absolute;
    top: 0;
    right: 5px;
    color: var(--white-color);
    background-color: var(--cms-purple-text);
    border-radius: 150px;
    font-size: 11px;
    height: 20px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    font-weight: 600;
}

body header .right .notification_div svg {
    font-size: 22px;
}

body header .right .notification {
    background-color: var(--cms-black-2);
    position: absolute;
    right: 0;
    top: 45px;
    width: 450px;
    border-radius: 10px;
    z-index: 2;
    box-shadow: var(--box-shadow);
}

body header .right .notification .list {
    height: 500px;
    overflow: auto
}

body header .right .notification .list .item {
    padding: 10px 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--cms-black-8);
    line-height: 30px;
    position: relative;
}

body header .right .notification .list .item:last-child {
    border: none
}

body header .right .notification .list .item span {
    font-weight: 600;
}

body header .right .notification .list .item .time {
    position: absolute;
    right: 10px;
    bottom: 5px;
    color: #999;
    font-size: 12px
}

body header .right .notification .list .item img {
    height: 20px;
    vertical-align: middle;
    margin-top: -5px
}

body header .right .notification h6 {
    line-height: 40px;
    padding: 0 15px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid var(--cms-black-8);
}

body header .right .profile {
    position: relative;
    float: left
}

body header .right .profile .profile_div {
    display: flex
}

body header .right .profile .user_profile_div {
    height: 40px;
    width: 40px;
    display: block
}

body header .right .profile .user_profile_div .user_avatar {
    width: 100%;
}

body header .right .profile .user_profile_div .user_avatar .user_image {
    width: 100%;
    border-radius: 150px;
}

body header .right .profile .info {
    float: left;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--highlight-text-color)
}

body header .right .profile .info .name {
    font-size: 15px
}

body header .right .profile .info .wallet {
    font-size: 13px;
    color: var(--main-text-color)
}

body header .right .profile .info .wallet img {
    height: 16px;
    vertical-align: middle;
    margin-top: -7px;
    margin-right: 2px
}

body header .right .profile ul.setting {
    position: absolute;
    top: 45px;
    background-color: var(--white-color);
    width: 200px;
    right: 0;
    border-radius: 20px;
    padding: 10px 9px;
    z-index: 2;
    box-shadow: var(--box-shadow);
    color: var(--cms-highlight-text);
}

body header .right .profile ul.setting li {}

body header .right .profile ul.setting li.border_bottom {
    border-bottom: 1px solid var(--background-module);
}

body header .right .profile ul.setting li a {
    flex: 1
}

body header .right .profile ul.setting li p {
    padding: 5px 10px;
    cursor: pointer;
    line-height: 30px;
    border-radius: 10px
}

body header .right .profile ul.setting li p:hover {
    background-color: #EAF2FF;
}

body header .right .profile ul.setting li svg {
    margin-right: 3px;
    width: 25px
}

body header .right .profile ul.setting li.line {
    margin-top: 7px;
    padding-top: 12px
}

body footer .right p {
    line-height: 23px
}

.mobile_display {
    display: none
}

.pc_display {
    display: table-cell
}

body.cms_body {
    background-color: var(--cms-black-1);
}

body.landing_page {
    background-color: #060A24;
    color: #B6B9C9;
    padding-bottom: 0;
    padding-top: 0;
}

body.landing_page .lazy-div {
    opacity: 0;
    zoom: 0.5;
    transition-duration: 0.5s;
    translate: 0 200px;
}

body.landing_page .lazy-div.visible {
    opacity: 1;
    zoom: 1;
    margin-top: 0px;
    translate: 0 0;
}

body.landing_page #main_header {
    background-color: #0f152e9e;
    color: var(--white-color);
    top: 40px;
    max-width: 1200px;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 150px;
}

body.landing_page #content {
    padding-bottom: revert-layer;
}

body.landing_page #content .screen_1 {
    background: linear-gradient(180deg, rgba(44, 59, 144, 1) 0%, rgba(34, 49, 131, 1) 50%, rgba(12, 17, 39, 0.196516106442577) 100%);
    padding-bottom: 20px;
    position: relative;
    padding-top: 60px;
}

body.landing_page #content .screen_1 .text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 80px;
    z-index: 2;
    position: relative;
}

body.landing_page #content .screen_1 .mockup {
    position: absolute;
    top: 50px;
    max-height: 460px;
}

body.landing_page #content .screen_1 .mockup.left {
    left: 0;
}

body.landing_page #content .screen_1 .mockup.right {
    right: 0;
}

body.landing_page #content .screen_1 .text h2 {
    font-weight: 800;
    color: var(--white-color);
    font-size: 40px;
    margin-bottom: 20px;
}

body.landing_page #content .screen_1 .text .des {
    color: #ededed;
    font-size: 16px;
    line-height: 27px;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 50px;
}

body.landing_page #content .screen_1 .text .input {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 220px;
}

body.landing_page #content .screen_1 .text .input .input_flex {
    display: flex;
    line-height: 44px;
    background-color: #1B2456;
    color: var(--white-color);
    width: 200px;
    padding: 0 10px;
    position: relative;
}

body.landing_page #content .screen_1 .text .input .input_flex ::after {
    content: "";
    background: url('../img/landing/screen_1_input.png');
    background-size: 100% 100%;
    position: absolute;
    width: calc(100% + 14px);
    height: calc(100% + 20px);
    left: -7px;
    top: -7px;
    z-index: -1;
}

body.landing_page #content .screen_1 .text .input .input_flex p {}

body.landing_page #content .screen_1 .text .input .input_flex input {
    border: 0;
    padding: 0;
    color: inherit;
    background-color: transparent;
}

body.landing_page #content .screen_1 .text .input .input_flex input::placeholder {
    color: #aeaeb1;
}

.frame_content.shopping_cart .note::placeholder {
    color: #aeaeb1;
}

body.landing_page #content .screen_1 .text .input button {
    background-color: #5266D8;
    color: var(--white-color);
    border: 0;
    border-radius: 150px;
    padding: 0 15px;
    font-size: 14px;
    line-height: 44px;
}

body.landing_page #content .screen_1 .screen_highlight {
    position: absolute;
    top: 0;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, 0);
    width: 90%;
    opacity: 0.7;
    max-width: 1200px;
}

body.landing_page #content .screen_1 .screen_background {
    position: absolute;
    top: 0;
    z-index: 0;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 1200px;
    width: 100%;
}

body.landing_page #content .screen_1 .input_background {
    position: absolute;
    width: 100%;
    bottom: -230px;
    z-index: -1;
}

body.landing_page #content .screen_1 .statics {
    border: 2px solid #5266d8e6;
    background-color: #162054;
    z-index: 2;
    position: relative;
    display: flex;
    height: 120px;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}

body.landing_page #content .screen_1 .statics .item {
    flex: 1;
    text-align: center;
}

body.landing_page #content .screen_1 .statics .item .title {
    color: B6B9C9;
    font-size: 15px;
}

body.landing_page #content .screen_1 .statics .item .value {
    color: #5266D8;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

body.landing_page #content .screen_2 {
    padding-top: 70px;
    background: url('../img/landing/screen_2_background.png') no-repeat;
    background-size: 100% auto;
    text-align: center;
    padding-bottom: 210px;
    z-index: 2;
    position: relative;
}

body.landing_page #content .screen_2 .child_des {
    display: flex;
    gap: 70px;
}

body.landing_page #content .screen_2 .child_des .item {
    display: flex;
    gap: 30px;
    flex: 1;
    line-height: 20px;
    z-index: 2;
}

body.landing_page #content .screen_2 .child_des .item .icon {
    padding: 20px;
    font-size: 18px;
    position: relative;
    border: 2px solid #ffffff75;
    background: linear-gradient(133deg, rgb(255 255 255 / 50%) 0%, rgb(255 255 255 / 0%) 100%);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    margin-top: 25px;
}

body.landing_page #content .screen_2 .child_des .item .icon svg {
    color: #00FFFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.landing_page #content .screen_2 .child_des .item .icon::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #5266D8;
    border-radius: 150px;
    top: -16px;
    right: -20px;
    z-index: -1;
}

body.landing_page #content .screen_2 .child_des .item .text {
    text-align: left;
}

body.landing_page #content .screen_2 .child_des .item .text .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 5px;
}

body.landing_page #content .screen_2 .child_des .item .text .des {
    color: B6B9C9;
}

body.landing_page #content .screen_2 .pr_image {
    width: 80%;
    margin: 70px auto;
    position: relative;
    z-index: 1;
}

body.landing_page #content .screen_2 .pr_image .image {
    width: 100%;
}

body.landing_page #content .screen_2 .pr_image .background {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

body.landing_page #content .screen_2 .step {
    position: relative;
    z-index: 2;
}

body.landing_page #content .screen_2 .step h3 {
    color: var(--white-color);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 26px;
}

body.landing_page #content .screen_2 .step h3 svg {
    margin-right: 8px;
    color: #00FFFF;
}

body.landing_page #content .screen_2 .step .des {
    line-height: 25px;
    color: #B6B9C9;
    font-size: 15px;
}

body.landing_page #content .screen_2 .step .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 150px;
    row-gap: 59px;
}

body.landing_page #content .screen_2 .step .list .item {
    position: relative;
}

body.landing_page #content .screen_2 .step .list .item .icon {
    position: absolute;
    background-color: #5266D8;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    top: -70px;
}

body.landing_page #content .screen_2 .step .list .item .icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00FFFF;
    font-size: 20px;
}

body.landing_page #content .screen_2 .step .list .item .text {
    background: linear-gradient(225deg, #5266d8f0 0%, #5266d8f2 55%, #29d6f5bf 100%);
    padding: 20px 20px;
    margin-top: 0;
    border-radius: 15px;
    text-align: left;
}

body.landing_page #content .screen_2 .step .list .item .text .title {
    color: var(--white-color);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

body.landing_page #content .screen_2 .step .list .item .text .des {
    font-size: 14px;
}

body.landing_page #content .screen_2 .step_line {
    position: absolute;
    width: 100%;
    bottom: 171px;
    left: 0px;
    z-index: -2;
}

body.landing_page #content .screen_2 .step .background {
    position: absolute;
    width: 100%;
    bottom: -200px;
    right: 0;
    z-index: -2;
}

body.landing_page #content .screen_3 {
    background: linear-gradient(136deg, #44529d 0%, #2D3C8D 50%, #192259 100%);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

body.landing_page #content .screen_3 .div_module {
    gap: 60px;
    display: flex;
}

body.landing_page #content .screen_3 .left {
    width: 300px;
}

body.landing_page #content .screen_3 .left .title {
    font-size: 70px;
    font-weight: 800;
    color: var(--white-color);
    padding: 10px;
    position: relative;
    text-align: center;
    width: 200px;
    margin-bottom: 20px;
    line-height: 70px;
}

body.landing_page #content .screen_3 .left .title::after {
    content: "";
    position: absolute;
    background: url('../img/landing/screen_3_title_background.png') no-repeat;
    background-size: 100% 100%;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
}

body.landing_page #content .screen_3 .left .note {
    margin-bottom: 110px;
    font-size: 16px;
}

body.landing_page #content .screen_3 .left img.pr_image {
    width: 100%;
    max-width: 300px;
}

body.landing_page #content .screen_3 .right {
    flex: 1;
}

body.landing_page #content .screen_3 .right .list {}

body.landing_page #content .screen_3 .right .list .item {
    border: 1px solid #5266D8;
    background-color: #191d395e;
    padding: 25px;
    position: relative;
    border-radius: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}

body.landing_page #content .screen_3 .right .list .item svg {}

body.landing_page #content .screen_3 .right .list .item .title {
    line-height: 10px;
    font-weight: 600;
    color: var(--white-color);
    font-size: 16px;
}

body.landing_page #content .screen_3 .right .list .item .text {
    display: none;
    margin-top: 30px;
    line-height: 23px;
}

body.landing_page #content .screen_3 .right .list .item .icon {
    position: absolute;
    right: 20px;
    top: 15px;
    width: 30px;
    height: 30px;
    background-color: #5266d847;
    border: 1px solid #ffffff42;
    border-radius: 150px;
    font-size: 17px;
}

body.landing_page #content .screen_3 .right .list .item .icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.landing_page #content .screen_3 .background {
    position: absolute;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    max-height: 660px;
}

body.landing_page #content footer {
    padding: 20px 0;
    line-height: 30px;
    background: url('../img/landing/footer_background.png');
    background-size: cover;
}

body.landing_page #content footer .div_module {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.landing_page #content footer .div_module .left {}

body.landing_page #content footer .div_module .left img {
    height: 30px;
}
body.landing_page #content footer .div_module .left .language{
    display: flex;
    gap: 10px;
}
body.landing_page #content footer .div_module .left .language .text{}
body.landing_page #content footer .div_module .left .language .value{
    color: var(--white-color);
    font-weight: 500;
    cursor: pointer;
}
body.landing_page #content footer .div_module .left .language .value svg{}

body.landing_page #content footer .div_module .right {}

body.landing_page #content footer .div_module .right .item {}

body.landing_page #content footer .div_module .right img {
    height: 50px;
    cursor: pointer;
}

body.shop_page {}

body.product_page {}

body.product_page .div_module.product_module {}

body.product_page .div_module.product_module .cms_menu {
    margin-bottom: 50px !important;
}
body.product_page .other_product{
    margin-top: 40px;
}
body.product_page .other_product h4{
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 40px;
}
body.product_page .other_product .product_item_list{}
body.product_page .other_product .product_item_list .item{}
body.product_page .product_detail {}

body.product_page .product_detail .child_module {
    background-color: white;
    padding: 30px 20px;
    border-radius: 3px;
    margin-bottom: 20px;
}

body.product_page .product_detail .top_redirect {
    font-size: 15px;
    line-height: 26px;
    padding: 20px 0;
}

body.product_page .product_detail .top_redirect a {
}

body.product_page .product_detail .main_module {}
body.product_page .product_detail .product_lock_div{}
body.product_page .product_detail .product_lock_div .content_show{
    text-align: center;
    line-height: 0;
}
body.product_page .product_detail .product_lock_div .content_show .child_data{
    max-width: 800px;
    background-color: var(--white-color);
    text-align: left;
    margin: 10px auto;
    padding: 10px;
    border-radius: 5px;
    line-height: 25px;
}
body.product_page .product_detail .product_lock_div .content_show .child_data a{
    color: var(--cms-purple-text);
}
body.product_page .product_detail .product_lock_div .content_show p{
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
}
body.product_page .product_detail .product_lock_div .content_show img,body.product_page .product_detail .product_lock_div .content_show video{
    max-width: 800px;
    width: 100%;
}
body.product_page .product_detail .product_lock_div .content_show video{
    max-height: 400px;
}
body.product_page .product_detail .product_lock_div .content_unlock{
    text-align: center;
    margin-top: 20px;
}
body.product_page .product_detail .product_lock_div .content_unlock .avatar{
    height: 150px;
    border-radius: 6px;
    margin-bottom: 15px;
}
body.product_page .product_detail .product_lock_div .content_unlock .title{
    font-size: 18px;
    color: var(--cms-highlight-text);
    margin-bottom: 5px;
}
body.product_page .product_detail .product_lock_div .content_unlock .price{
    font-size: 16px;
}
body.product_page .product_detail .product_lock_div .content_unlock .price span{
    font-weight: 600;
}
body.product_page .product_detail .product_lock_div .content_unlock button{
    margin-top: 15px;
}

body.product_page .product_detail .product_lock_div .content_unlock button span{
    font-size: 20px;
    font-weight: 600;
}

body.product_page .product_detail .top {
    display: flex;
    gap: 40px;
    padding-bottom: 30px;
}

body.product_page .product_detail .top .button {
    display: flex;
    gap: 15px;
}

body.product_page .product_detail .top .button button {
    height: 60px;
    line-height: normal;
    font-size: 16px;
}

body.product_page .product_detail .top .button button.add_cart {
    display: flex;
    line-height: 60px;
}

body.product_page .product_detail .top .button button.big {
    padding: 0 90px;
}

body.product_page .product_detail .top .button button .total_price {
    font-size: 17px;
    font-weight: 600;
}

body.product_page .product_detail .top .button button .text {
    text-transform: uppercase;
    font-size: 15px;
}

body.product_page .product_detail .top .gallery {
    width: 438px;
}

body.product_page .product_detail .top .slick-dots {
    bottom: 10px;
}

body.product_page .product_detail .top .slick-dots li {
    margin: 0 3px;
}

body.product_page .product_detail .top .slick-dots li button:before {
    font-size: 10px;
    color: var(--cms-purple-text);
}

body.product_page .product_detail .top .gallery .main {
    margin-bottom: 5px;
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cms-border-color);
}

body.product_page .product_detail .top .gallery img {
    min-height: 100%;
    height: 100%;
    width: auto;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -0%);
}

body.product_page .product_detail .top .gallery .list {
    width: 100%;
    position: relative;
    overflow: hidden;
}

body.product_page .product_detail .top .gallery .control {
    gap: 7px;
    display: flex;
    overflow: hidden;
}

body.product_page .product_detail .top .gallery .list .item {
    height: 80px;
    width: 80px;
    cursor: pointer;
    flex: 0 0 auto;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

body.product_page .product_detail .top .gallery .list .item.active {
    border-color: var(--yellow-color);
}

body.product_page .product_detail .top .gallery .list .gallery_button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    background-color: #3333337a;
    color: var(--white-color);
    font-size: 20px;
    width: 25px;
    text-align: center;
    border: 0;
    line-height: 35px;
    border-radius: 3px;
    cursor: pointer;
}

body.product_page .product_detail .top .gallery .list .gallery_button svg {}

body.product_page .product_detail .top .gallery .list .gallery_button.prv {}

body.product_page .product_detail .top .gallery .list .gallery_button.next {
    right: 0;
    left: auto;
}

body.product_page .product_detail .top .gallery .list .item:hover {
    border: 1px solid var(--yellow-color);
}

body.product_page .product_detail .top .info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.product_page .product_detail .top .info h1 {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--cms-highlight-text);
    margin-bottom: 12px;
}

body.product_page .product_detail .top .info .statics {
    display: flex;
    line-height: 20px;
    gap: 15px;
    position: relative;
    flex-wrap: wrap;
}

body.product_page .product_detail .top .info .statics .text {
    border-left: 1px solid #ffffff47;
    display: flex;
    gap: 6px;
}

body.product_page .product_detail .top .info .statics .text:first-child {
    border-left: 0;
    padding-left: 0;
}

body.product_page .product_detail .top .info .statics .text span {
    color: var(--cms-highlight-text);
}

body.product_page .product_detail .top .info .price {
    display: flex;
    gap: 13px;
    line-height: 60px;
    border-radius: 3px;
    margin: 10px 0;
}

body.product_page .product_detail .top .info .price .main {
    color: var(--cms-purple-text);
    font-weight: 600;
    font-size: 24px;
}

body.product_page .product_detail .top .info .price .sub {
    text-decoration: line-through;
}

body.product_page .product_detail .top .info .price .discount {}

body.product_page .product_detail .top .info .price .discount span {
    padding: 2px 4px;
    background-color: var(--cms-module-background);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
}

body.product_page .product_detail .top .info .child_data {
    display: flex;
    margin-bottom: 25px;
    line-height: 40px;
    gap: 15px;
}

body.product_page .product_detail .top .info .child_data.text_blog {
    line-height: 25px;
    text-align: justify;
}

body.product_page .product_detail .top .info .child_data.text_blog p {
    margin-bottom: 10px;
}

body.product_page .product_detail .top .info .child_data .title {
    width: 90px;
    text-transform: capitalize;
}

body.product_page .product_detail .top .info .child_data .items {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.product_page .product_detail .top .info .child_data .items .item {
    display: flex;
    border: 1px solid var(--cms-border-color);
    gap: 0px;
    color: var(--cms-highlight-text);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    line-height: 28px;
    padding: 5px;
}

body.product_page .product_detail .top .info .child_data .items .item svg {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 10px;
    display: none;
}

body.product_page .product_detail .top .info .child_data .items .item.active {
    border-color: var(--cms-purple-text);
}

body.product_page .product_detail .top .info .child_data .items .item.active ::before {
    border: 1.1rem solid transparent;
    border-bottom: 1.1rem solid var(--cms-purple-text);
    bottom: 0;
    content: "";
    position: absolute;
    right: -1.1rem;
}

body.product_page .product_detail .top .info .child_data .items .item.active svg {
    display: block;
    color: var(--white-color);
}

body.product_page .product_detail .top .info .child_data .items .item .icon {
    height: 28px;
}

body.product_page .product_detail .top .info .child_data .items .item p {
    padding: 0 10px;
}

body.product_page .product_detail .top .info .child_data .content {
    color: var(--cms-highlight-text);
}

body.product_page .product_detail .top .add_shopping_cart {
    margin-right: 10px;
    background-color: var(--purple-color-2);
    border: 1px solid var(--cms-purple-text);
}

body.product_page .product_detail .shop_detail {
    padding: 20px;
    text-transform: capitalize;
    display: flex;
    gap: 20px;
    border: 1px solid var(--cms-border-color);
}

body.product_page .product_detail .shop_detail .info {
    display: flex;
    gap: 15px;
    padding-right: 20px;
    border-right: 1px solid var(--purple-color-3);
}

body.product_page .product_detail .shop_detail .info .avatar {}

body.product_page .product_detail .shop_detail .info .avatar img {
    border-radius: 150px;
    border: 1px solid #cccccc52;
    height: 80px;
}

body.product_page .product_detail .shop_detail .info .profile {}

body.product_page .product_detail .shop_detail .info .profile .name {
    color: var(--cms-highlight-text);
    font-size: 15px;
    margin-top: 3px;
    margin-bottom: 3px;
}

body.product_page .product_detail .shop_detail .info .profile .status {
    margin-bottom: 8px;
    font-size: 13px;
}

body.product_page .product_detail .shop_detail .info .profile .button {}

body.product_page .product_detail .shop_detail .info .profile .button button {
    border: 1px solid var(--purple-color-3);
    background-color: transparent;
    color: var(--cms-highlight-text);
    padding: 0 10px;
    line-height: 30px;
    border-radius: 2px;
}

body.product_page .product_detail .shop_detail .info .profile .button button svg {}

body.product_page .product_detail .shop_detail .statics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex: 1;
    column-gap: 40px;
    line-height: 40px;
}

body.product_page .product_detail .shop_detail .statics .item {
    display: flex;
    justify-content: space-between;
}

body.product_page .product_detail .shop_detail .statics .item .value {
    color: var(--cms-highlight-text);
}

body.product_page .product_detail h4 {
    color: var(--cms-highlight-text);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

body.product_page .product_detail .product_text {
    flex: 1;
}

body.product_page .product_detail .product_text .product_text_content {
    line-height: 22px;
}

body.product_page .product_detail .product_text .product_text_content .image {
    text-align: center;
}

body.product_page .product_detail .product_text .product_text_content img {
    max-height: 1000px;
    max-width: 100%;
}


body #content .cms_menu {
    display: flex;
    line-height: 40px;
    font-size: 15px;
    border-bottom: 1px solid var(--cms-border-color);
    margin-bottom: 30px;
}

body #content .cms_menu .item {
    padding: 0 20px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    flex: 0 0 auto;
}

body #content .cms_menu .item.active {
    border-bottom: 2px solid var(--cms-purple-text);
    color: var(--cms-purple-text);
    font-weight: 600;
}

body.cms_body #content .content_module {
    background-color: var(--cms-black-2);
    padding: 30px;
    border-radius: 5px;
}
body #content .content_module .shop_promotion{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
body #content .content_module .shop_promotion .shop_promotion_item{display: flex;align-items: center;gap: 14px;}
body #content .content_module .shop_promotion .shop_promotion_item .image{
    height: 40px;
    aspect-ratio: 1/1;
    border-radius: 5px;
    overflow: hidden;
}
body #content .content_module .shop_promotion .shop_promotion_item .image img{
    height: 100%;
}
body #content .content_module .shop_promotion .shop_promotion_item input{
    flex: 1;
}
body #content .content_module .shop_promotion .shop_promotion_item button{
    width: 80px;
    height: 40px;
    border-radius: 3px;
    font-size: 14px;
}

body #content .content_module .shop_profile{
    display: flex;
    gap: 50px;
}
body #content .content_module .shop_profile ul{
    flex: 1;
}
body #content .content_module .shop_profile ul.info{}

body #content .content_module.short {
    max-width: 500px;
    margin: 0 auto;
}
body #content .content_module .content_title{
    border-bottom: 1px solid #ffffff33;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative;
}
body #content .content_module.mb_20{
    margin-bottom: 20px;
}
body #content .content_module.no_border{
    margin-bottom: 20px;
}
body #content .content_module.no_border .content_title{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
body #content .content_module .content_title h5 {
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
}
body #content .content_module .content_title .button_div{
    position: absolute;
    right: 0;
    top: -5px;
    margin: 0;
}
body #content .content_module .content_title .button_div .button_style{
   height: 36px;
   min-width: 160px;
}
body #content .content_module .content_title p {font-weight: 300;}
body.cms_body #content .content_module .setting_list{
    display: grid;
    gap: 15px;
}
body.cms_body #content .content_module .setting_list .setting_item.normal{
    align-items: normal;
}
body.cms_body #content .content_module .setting_list .setting_item.none{
    display: block;
}
body.cms_body #content .content_module .setting_list .setting_item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height:44px;
}
body.cms_body #content .content_module .setting_list .setting_item .color_input{
    height: 40px;
    width: 40px;
    padding: 0;
    border: 0;
    cursor: pointer;
}
body.cms_body #content .content_module .setting_list .setting_item .multiple_list{
    display: flex;
    gap: 10px;
}
body.cms_body #content .content_module .setting_list .setting_item .multiple_list .multiple_list_item{flex: 1;}
body.cms_body #content .content_module .setting_list .setting_item .multiple_list .multiple_list_item .title{
    margin-bottom: 5px;
}
body.cms_body #content .content_module .setting_list .setting_item .multiple_list .multiple_list_item .value{
    display: flex;
    align-items: center;
    gap: 5px;
}
body.cms_body #content .content_module .setting_list .setting_item .left a{
    color: var(--cms-url-color);
}
body.cms_body #content .content_module .setting_list .setting_item .left{}
body.cms_body #content .content_module .setting_list .setting_item .left svg{
    cursor: pointer;
}
body.cms_body #content .content_module .setting_list .setting_item .right{max-width: 400px;}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list{
    display: grid;
    gap: 10px;
}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list .multiple_list_item{
    display: flex;
    width: 400px;
    gap: 10px;
    align-items: center;
}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list .multiple_list_item .icon{width: 30px;text-align: center;}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list .multiple_list_item .icon svg{font-size: 20px;cursor: pointer;}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list .multiple_list_item input{
    min-width: auto;
}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list .multiple_list_item input.text{
    flex: 1;
}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list .multiple_list_item input.rate{
    width: 100px;
}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list .multiple_list_item .avatar_div{
    height: 44px;
    aspect-ratio: 1/1;
}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list .multiple_list_item .avatar_div img{
    height: 44px;
    border-radius: 150px;
    aspect-ratio: 1/1;
}
body.cms_body #content .content_module .setting_list .setting_item .right.multiple_list .multiple_list_item .avatar_div .icon{
    width: 100%;
}
body.cms_body #content .content_module .setting_list .setting_item .right input,body.cms_body #content .content_module .setting_list .setting_item .right select{
    min-width: 400px;
}
body.cms_body #content .content_module .setting_list .setting_item .right textarea{
    min-width: 400px;
    min-height: 100px;
    line-height: 25px;
    padding: 15px;
}
body.cms_body #content .content_module .shop_donate_setting{}
body.cms_body #content .content_module .shop_donate_setting .spin_menu_list{
    display: flex;
    gap: 5px;
}
body.cms_body #content .content_module .shop_donate_setting .spin_menu_list .spin_menu_item{
    cursor: pointer;
    background-color: var(--cms-black-9);
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-weight: 600;
    border-radius: 3px;
}
body.cms_body #content .content_module .shop_donate_setting .spin_menu_list .spin_menu_item.active{
    background-color: var(--cms-purple-text);
}
body.cms_body #content .content_module .shop_donate_setting .setting_module{
    margin-bottom: 30px;
    border-bottom: 1px solid var(--cms-black-8);
    padding-bottom: 30px;
    overflow: hidden;
}
body.cms_body #content .content_module .shop_donate_setting .setting_module:last-child{
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
}
body.cms_body #content .content_module .shop_donate_setting .donate_style_list{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
body.cms_body #content .content_module .shop_donate_setting .donate_style_list .donate_style_item{
    flex: 1;
    zoom: 0.6;
    opacity: 0.6;
    background-color: var(--cms-black-9);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
}
body.cms_body #content .content_module .shop_donate_setting .donate_style_list .donate_style_item.active{
    opacity: 1;
    background-color: var(--cms-black-9-highlight);
}
body.cms_body #content .content_module .shop_donate_setting .media_list{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
body.cms_body #content .content_module .shop_donate_setting .media_list .media_item{
    border-radius: 5px;
    text-align: center;
    border: 1px solid var(--cms-black-9);
    cursor: pointer;
    padding: 5px;
    position: relative;
    min-height: 120px;
    opacity: 0.5;
}
body.cms_body #content .content_module .shop_donate_setting .media_list .media_item.active{
    opacity: 1;
    border-color: var(--cms-purple-text);
}
body.cms_body #content .content_module .shop_donate_setting .media_list .media_item svg{
    font-size: 20px;
    margin-bottom: 5px;
}
body.cms_body #content .content_module .shop_donate_setting .media_list .media_item p{}
body.cms_body #content .content_module .shop_donate_setting .media_list .media_item img{
    height: 70px;
    margin-bottom: 5px;
}

body.cms_body #content .content_module .shop_donate_setting .preview{

}
body.cms_body #content .content_module .shop_donate_setting .preview .preview_demo{
    background-color: white;
    padding: 10px;
    min-height: 250px;
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
}
body.cms_body #content .content_module .shop_donate_setting .preview .preview_link{}
body.cms_body #content .content_module .shop_donate_setting .preview .preview_link .title{
    margin-bottom: 10px;
}
body.cms_body #content .content_module .shop_donate_setting .preview .preview_link .link{
    background-color: var(--cms-black-9);
    padding: 10 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 15px;
}
body.cms_body #content .content_module .shop_donate_setting .preview .preview_link .link p{}
body.cms_body #content .content_module .shop_donate_setting .preview .preview_link .link .icon{
    display: flex;
    gap: 10px;
}
body.cms_body #content .content_module .shop_donate_setting .preview .preview_link .link svg{
    cursor: pointer;
    font-size: 16px;
}

body #content .content_module.shop_themes {}

body #content .content_module.shop_themes .custom_grid_list {}

body #content .content_module.shop_themes .custom_grid_list .item {
    padding: 0;
    overflow: hidden;
}

body #content .content_module.shop_themes .custom_grid_list .item .info {
    display: block;
    margin-bottom: 0;
}

body #content .content_module.shop_themes .custom_grid_list .item .icon {
    padding: 0;
    height: auto;
}

body #content .content_module.shop_themes .custom_grid_list .item .icon img {
    width: 100%;
    height: auto;
}

body #content .content_module.shop_themes .custom_grid_list .item .detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    box-sizing: border-box;
}

body #content .content_module.shop_themes .custom_grid_list .item .detail .name {}

body #content .content_module.shop_themes .custom_grid_list .item .detail .button .button_style {
    height: 32px;
    min-width: 90px;
    font-size: 13px;
}

body #content .shop_statics {
}

body #content .shop_statics .list {display: grid;gap: 20px;grid-template-columns: repeat(2, 1fr);}

body #content .shop_statics .list .item {
    border-radius: 5px;
    padding: 20px;
    background-color: var(--cms-black-1);
}

body #content .shop_statics .list .item h5 {
    margin-bottom: 15px;
    color: var(--cms-black-10);
    line-height: 30px;
}

body #content .shop_statics .list .item span{
    font-weight: 500;
    color: var(--white-color);
    font-size: 30px;
}

body #content .shop_statics .list .item canvas {
    width: 100% !important;
    background-color: var(--cms-black-2);
    border-radius: 10px;
    padding: 20px;
}

body #content .address_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

body #content .address_list .item {
    margin: 0;
    min-height: 80px;
}

body #content .shop_product_add.shop_product {
    padding-bottom: 70px;
}

body #content .shop_product_add.shop_product .product_type_select {
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

body #content .shop_product_add.shop_product .product_type_select .item {
    padding: 10px;
    line-height: 20px;
    border-radius: 5px;
    background-color: var(--cms-black-9);
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
    font-size: 13px;
}

body #content .shop_product_add.shop_product .product_type_select .item img {
    height: 80px;
}

body #content .shop_product_add.shop_product .product_type_select .item .title {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 8px;
}

body #content .shop_product_add.shop_product .product_type_select .item:hover,
body #content .shop_product_add.shop_product .product_type_select .item.active {
    cursor: pointer;
    background-color: var(--cms-black-9-highlight);
}

body #content .shop_product_add.shop_product .button_fixed {}

body #content .shop_product_add.shop_product .button_fixed .div_module {
    justify-content: space-between;
}

body #content .shop_product_add.shop_product .button_fixed .div_module .switch_slider {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

body #content .shop_product_add.shop_product .button_fixed .div_module .button_edit {
    display: flex;
    gap: 10px;
}

body #content .shop_product_add.shop_product .button_fixed .div_module .button_edit .loading {
    height: 40px;
}

body #content .shop_product_add.shop_product .input_screen .product_items {}

body #content .shop_product_add.shop_product .input_screen .product_items .item {
    height: 70px;
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 20px;
}

body #content .shop_product_add.shop_product .input_screen .product_items .item .item_child {
    flex: 1;
}

body #content .shop_product_add.shop_product .input_screen .product_items .item .item_other {
    cursor: pointer;
    background-color: var(--cms-black-4);
    border-radius: 150px;
    height: 40px;
    width: 40px;
    color: var(--white-color);
    font-size: 14px;
    position: relative;
    bottom: -42%;
}

body #content .shop_product_add.shop_product .input_screen .product_items .item img {
    height: 100%;
    border-radius: 5px;
}

body #content .shop_product_add.shop_product .input_screen .product_items .item svg {
    font-size: 20px;
}
body #content .shop_product_add.shop_product .input_screen .lock_list{
    display: grid;
    gap: 20px;
}
body #content .shop_product_add.shop_product .input_screen .lock_list .lock_list_item{
    padding: 15px;
    border-radius: 6px;
    background-color: var(--cms-black-1);
}
body #content .shop_product_add.shop_product .input_screen .lock_list .lock_list_item h6{
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

body #content .shop_payment .payment_setting_list {
    margin-bottom: 20px;
    display: grid;
    gap: 20px;
}

body #content .shop_payment .payment_setting_list .item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 7px;
    line-height: 26px;
    background-color: var(--cms-black-2);
}

body #content .shop_payment .payment_setting_list .item .edit {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

body #content .shop_payment .payment_setting_list .item .title {
    display: flex;
    line-height: 34px;
    gap: 10px;
    font-size: 15px;
    width: 300px;
}

body #content .shop_payment .payment_setting_list .item .title .switch_slider {}

body #content .shop_payment .payment_setting_list .item .note {
    flex: 1;
}

body #content .content_module .shop_create {
}
body #content .content_module .shop_create .shop_type{
    display: grid;
    gap: 15px;
}
body #content .content_module .shop_create .shop_type .shop_type_item{
    display: flex;
    background-color: var(--cms-black-9);
    cursor: pointer;
    border-radius: 5px;
    gap: 5px;
    opacity: 0.5;
}
body #content .content_module .shop_create .shop_type .shop_type_item.active{
    background-color: var(--cms-purple-text);
}
body #content .content_module .shop_create .shop_type .shop_type_item.enabled{
    opacity: 1;
}
body #content .content_module .shop_create .shop_type .shop_type_item img{
    height: 70px;
}
body #content .content_module .shop_create .shop_type .shop_type_item .info{
    padding: 15px 0;
}
body #content .content_module .shop_create .shop_type .shop_type_item .info p.name{font-weight: 500;}
body #content .content_module .shop_create .shop_type .shop_type_item .info p.des{
    font-size: 12px;
}
body #content .content_module .multiple_module {
    display: flex;
    gap: 40px;
}
body #content .content_module .multiple_module .multiple_module_item{
    flex: 1;
}
body #content .content_module h6 {text-transform: uppercase;margin-bottom: 20px;display: flex;align-items: center;justify-content: space-between;}
body #content .content_module.split_module {
    display: flex;
    gap: 30px;
    width: 100%;
    padding-bottom: 70px;
}

body #content .content_module.split_module .split_module_child {
    flex: 1;
}

@media(min-width: 1400px) {}

@media(max-width: 1299px) {
    .div_module {
        width: calc(100% - 20px)
    }

    body .list_fr {
        grid-template-columns: repeat(3, 1fr) !important
    }
}

@media(max-width: 1199px) {

    .mobile_display {
        display: revert
    }

    .pc_display {
        display: none
    }
}

@media(max-width: 799px) {
    .custom_grid_list .item{
        border-radius: 0;
    }
    body #content .shop_statics .list{
        grid-template-columns: repeat(1, 1fr);
    }
    body #content .address_list{
        grid-template-columns: repeat(1, 1fr);
    }
    body.cms_body #content .content_module .setting_list .setting_item .right input,body.cms_body #content .content_module .setting_list .setting_item .right select,body.cms_body #content .content_module .setting_list .setting_item .right textarea{
        width: 200px;
        min-width: auto;
    }
    body #content .content_module .shop_profile{
    display: grid;
    gap: 10px;
}
    body.product_page .product_detail .product_lock_div .content_show img{
        width: 100%;
    }
    body.product_page .product_detail .product_lock_div .content_show p{
        padding: 0 10px;
    }
    #plugin_div .close{
        right: 0;
        top: -35px;
    }

    body.landing_page #main_header{
        padding: 0px;
    }

    body .input_screen ul.form li .multi_li {
        display: grid;
        gap: 10px;
    }

    body.product_page .product_detail .top .info .follow_button {
        right: 15px;
        top: 30px;
    }

    body.cms_body header.main_header .menu_icon {
        display: block;
    }

    .custom_grid_list {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    body #content .content_module.address_list {
        grid-template-columns: repeat(1, 1fr);
    }

    body.cms_body .nav_menu  {
    display: none;
    }

    body.landing_page #content .screen_1 {
        padding: 60px 10px 20px 10px;
    }

    body.landing_page #content .screen_1 .text h2 {
        font-size: 24px;
    }

    body.landing_page #content .screen_1 .text .des {
        font-size: 15px;
    }

    body.landing_page #content .screen_1 .text .input {
        margin-bottom: 150px;
    }

    body.landing_page #content .screen_1 .mockup {
        display: none;
    }

    body.landing_page #content .screen_1 .input_background {
        bottom: -150px;
    }

    body #content .content_module.split_module {
        display: block;
    }

    body.landing_page #content .screen_1 .statics {
        display: block;
        height: auto;
        padding: 10px;
    }

    body.landing_page #content .screen_1 .statics .item {
        display: flex;
        line-height: 50px;
        justify-content: space-between;
        border-bottom: 1px solid #3b4dad4d;
    }

    body.landing_page #content .screen_1 .statics .item:last-child {
        border-bottom: 0;
    }

    body.landing_page #content .screen_1 .statics .item .value {
        font-size: 20px;
    }

    body.landing_page #content .screen_2 .child_des {
        display: block;
    }

    body.landing_page #content .screen_2 .child_des .item {
        margin-bottom: 40px;
    }

    body.landing_page #content .screen_2 .child_des .item .icon {
        margin-top: 15px;
    }

    body.landing_page #content .screen_2 .step .list {
        display: block;
        margin-top: 50px;
    }

    body.landing_page #content .screen_2 .step .list .item .icon {
        display: none;
    }

    body.landing_page #content .screen_2 .step .list .item .text {
        margin-bottom: 30px;
    }

    body.landing_page #content .screen_2 .step .background {
        bottom: 0;
        height: 100%;
    }

    body.landing_page #content .screen_2 {
        padding-bottom: 50px;
    }

    body.landing_page #content .screen_2 .pr_image {
        margin: 100px auto;
    }

    body.landing_page #content .screen_3 {
        padding: 60px 0;
    }

    body.landing_page #content .screen_3 .div_module {
        display: block;
    }

    body.landing_page #content .screen_3 .left {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    body.landing_page #content .screen_3 .left .title {
        margin: 0px auto;
        zoom: 0.7;
        margin-bottom: 20px;
    }

    body.landing_page #content .screen_3 .left .note {
        margin-bottom: 30px;
    }

    body.landing_page #content .screen_3 .right .list .item .title {
        font-size: 14px;
    }

    body.landing_page #content footer p {
        font-size: 14px;
    }

    body.landing_page #content .screen_3 .background {
        display: none;
    }

    body #main_content #content .title_menu {
        display: block
    }

    body #main_content #content .title {
        display: block
    }


    body footer .div_module {
        display: block
    }

    body.home_page #content {
        display: block
    }

    body.home_page #content .right {
        width: 100%
    }

    body .list_fr {
        grid-template-columns: repeat(2, 1fr) !important
    }

    .user_game_module.party .list_member {
        grid-template-columns: repeat(2, 1fr)
    }

    body #main_content .title_menu .menu .search {
        margin-left: 0
    }

    body .popup_item_show {
        top: 90px;
        bottom: auto
    }

    body .popup_item_show .avatar {
        display: none
    }

    body .num_report ul li {
        width: calc(100% - 32px) !important;
        margin: 0;
        margin-bottom: 15px
    }

    body table.main_table tbody tr td {
        font-size: 13px
    }

    body #main_content .title_menu .menu {
        position: inherit;
        right: auto;
        width: 100%;
        bottom: auto;
        margin-top: 30px;
        display: block
    }

    body #main_content .title_menu .menu .search {
        float: none;
        position: relative;
        margin-bottom: 15px
    }

    body #main_content .title_menu .menu .select {
        float: none;
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px
    }

    body #main_content .title_menu .menu .select select {
        width: 100%
    }

    body #main_content .title_menu .menu button {
        margin-left: 0;
        width: 100%;
        margin-bottom: 25px
    }

    body .input_screen .form_account_add {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px
    }
    body #content .content_module{
        border-radius: 0 !important;
    }
    body #main_content #content {
    }

    .popup_content {
        height: calc(100% - 30px)
    }

    #popup_content .popup_content .popup_module {
        width: calc(100% - 40px) !important;
        top: 50px;
        transform: translate(-50%, 0);
    }

    body .input_screen ul.form li {
        float: none
    }

    .product_item_list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .frame_content {
        bottom: 0;
        top: auto;
        height: 70%;
        width: 100%;
        margin-top: 0;
        transform: translate(0, 100%);
    }

    .frame_content.show {}

    .frame_close {
        display: block;
    }

    body.product_page {}

    body.product_page .product_detail .child_module {
        padding: 15px 10px;
    }

    body.product_page .product_detail .top {
        padding: 0;
        display: block;
    }

    body.product_page .product_detail .top .gallery {
        width: auto;
    }

    body.product_page .product_detail .top .gallery .main {
        display: none;
    }

    body.product_page .product_detail .top .gallery .control {
        width: 100%;
        aspect-ratio: 1 / 1;
        margin-bottom: 0;
    }

    body.product_page .product_detail .top .gallery .list .item {
        width: 100%;
        height: 100%;
        aspect-ratio: 1/1;
    }

    body.product_page .product_detail .top .gallery .list .item {
        border: 0 !important;
    }

    body.product_page .product_detail .top .gallery .list .item img {
        border: 0;
    }

    body.product_page .product_detail .top .gallery .list .gallery_button {
        display: none;
    }

    body.product_page .product_detail .top .info .price {
        order: -1;
        margin: 0;
    }

    body.product_page .product_detail .top .info .child_data {
        display: block;
    }

    body.product_page .product_detail .top .info .child_data.product_amount {
        display: none;
    }

    body.product_page .product_detail .top .info .statics {
        margin-bottom: 10px;
        position: unset;
    }

    body.product_page .product_detail .top .info .child_data .title {
        width: auto;
        color: var(--cms-highlight-text);
    }

    body.product_page .product_detail .top .button {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1;
        background-color: white;
        padding: 15px 10px;
        box-shadow: var(--box-shadow);
        width: 100%;
        box-sizing: border-box;
    }

    body.product_page .product_module .div_module {
        width: 100%;
    }

    body.product_page .product_detail .top .info {
        padding: 15px 10px;
        position: relative;
    }

    body.product_page .product_detail .top_redirect {
        padding: 20px 10px;
    }

    body.product_page .product_detail .top .button button {
        font-size: 14px;
    }

    body.product_page .product_detail .top .button button.add_cart {
        display: block;
        line-height: 22px;
    }

    body.product_page .product_detail .top .button button.big {
        padding: 0;
        flex: 1;
    }

    body.product_page .product_item_list {
        padding: 0 10px;
    }

    body.product_page .product_detail .child_module h4 {
        padding: 0;
    }

    body.product_page .product_detail h4 {
        padding: 0 10px;
    }

    .product_item_list .item .price {
        font-size: 15px;
    }

}

@media(max-width: 599px) {
    body .list_fr {
        grid-template-columns: repeat(1, 1fr) !important
    }

    body header .right .notification {
        position: fixed;
        z-index: 2;
        top: 55px;
        left: 50%;
        width: calc(100% - 20px);
        transform: translate(-50%, 0)
    }

    body .filter .item {
        width: 100% !important;
        float: none;
        margin-bottom: 15px
    }
}

@media(max-width: 499px) {}

@media(max-height: 649px) {}