/*            /$$
    /$$    /$$$$
   | $$   |_  $$    /$$$$$$$
 /$$$$$$$$  | $$   /$$_____/
|__  $$__/  | $$  |  $$$$$$
   | $$     | $$   \____  $$
   |__/    /$$$$$$ /$$$$$$$/
          |______/|_______/
================================
        Keep calm and get rich.
                    Is the best.

---------------------------------------------
  Theme Name: BAIYU
  Theme URI:.
  Description:  BETA 3.0
  Author: BAIYU
  Author URI: .
  Version: 8.0.2023.4.12
*/

.fw-bold,
.fw-bolder {
    font-weight: bold !important;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    padding-right: var(--bs-gutter-x, 1.25rem);
    padding-left: var(--bs-gutter-x, 1.25rem);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .content {
        width: 70%;
    }

    .sidebar {
        width: 30%;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .content {
        width: 70%;
    }

    .sidebar {
        width: 30%;
    }
}

@media (min-width: 1400px) {

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 2rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 2rem;
    }

    .content {
        width: 70%;
    }

    .sidebar {
        width: 30%;
    }
}

.pt-8 {
    padding-top: 8rem;
}

.pt-12 {
    padding-top: 12rem;
}

@media (max-width: 767.98px) {
    .pt-8 {
        padding-top: 6rem;
    }

    .pt-12 {
        padding-top: 8rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .pt-12 {
        padding-top: 10rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .pt-12 {
        padding-top: 10rem;
    }
}

/*--------------------------------------------------------------
## color style
--------------------------------------------------------------*/

.text-primary {
    color: var(--color-primary) !important;
}

.text-body {
    color: var(--color-body) !important;
}

.text-dark {
    color: var(--color-dark) !important;
}

.text-secondary {
    color: var(--color-secondary) !important;
}

.text-muted {
    color: var(--color-muted) !important;
}

.text-light {
    color: var(--color-light) !important;
}

.text-danger {
    color: var(--color-danger) !important;
}

.text-info {
    color: var(--color-info) !important;
}

.text-line-center {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0, -50%);
}

.text-vip {
    position: relative;
}

.text-vip sup {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    font-weight: 400;
    line-height: 1;
    color: #bf7648;
    background: #f9e1be;
    background: linear-gradient(to top, #efd3b0 0%, #f9e1be 100%);
    border-radius: 4px 4px 4px 0;
    padding: 0.125rem 0.375rem;
    transform: translate(50%, -75%);
}

/*--------------------------------------------------------------
## Buttons
--------------------------------------------------------------*/

.btn {
    text-decoration: none;
    padding: 0.625rem 1.625rem;
    border-radius: var(--border-radius-md);
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
    box-shadow: none !important;
}

/*--------------------------------------------------------------
## Buttons primary
--------------------------------------------------------------*/

.btn-primary {
    background-color: var(--btn-primary);
    border-color: var(--btn-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: var(--btn-secondary);
    border-color: var(--btn-secondary);
}

/*--------------------------------------------------------------
## Buttons secondary
--------------------------------------------------------------*/

.btn-secondary {
    color: var(--color-light);
    background-color: var(--btn-secondary);
    border-color: var(--btn-secondary);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active,
.btn-secondary:active {
    color: #fff;
    background-color: var(--btn-dark);
    border-color: var(--btn-dark);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: var(--color-muted);
    border-color: var(--btn-secondary);
    background-color: var(--btn-secondary);
}

/*--------------------------------------------------------------
## Buttons dark
--------------------------------------------------------------*/

.btn-dark {
    color: #fff;
    background-color: var(--btn-dark);
    border-color: var(--btn-dark);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark.active,
.btn-dark:active {
    color: #fff;
    background-color: var(--btn-secondary);
    border-color: var(--btn-secondary);
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: var(--btn-secondary);
    border-color: var(--btn-secondary);
}

/*--------------------------------------------------------------
## Buttons light
--------------------------------------------------------------*/

.btn-light {
    color: var(--color-muted);
    background-color: var(--btn-light);
    border-color: var(--btn-light);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active,
.btn-light.active {
    color: #fff;
    background-color: var(--btn-secondary);
    border-color: var(--btn-secondary);
}

.btn-light.disabled,
.btn-light:disabled {
    color: var(--color-muted);
    background-color: var(--btn-light);
    border-color: var(--btn-light);
    cursor: not-allowed;
}

/*--------------------------------------------------------------
## Buttons danger
--------------------------------------------------------------*/

.btn-danger {
    color: #fff;
    background-color: var(--btn-danger);
    border-color: var(--btn-danger);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active {
    color: #fff;
    background-color: var(--btn-danger);
    border-color: var(--btn-danger);
    opacity: 0.8;
}

/*--------------------------------------------------------------
## Buttons link
--------------------------------------------------------------*/

.btn-link {
    color: var(--color-muted);
    background-color: var(--btn-light);
    border-color: transparent;
    box-shadow: 8px 8px 16px rgb(67 71 82 / 15%),
        -8px -8px 16px rgba(255, 255, 255, 1),
        inset 0px 0px 4px rgba(255, 255, 255, 0.2),
        inset 8px 8px 16px rgba(55, 84, 170, 0),
        inset -8px -8px 20px rgba(255, 255, 255, 0),
        0px 0px 4px rgba(255, 255, 255, 0) !important;
    transition: box-shadow 0.25s ease !important;
}

.btn-link:hover,
.btn-link:focus,
.btn-link:active,
.btn-link.active {
    color: var(--color-dark);
    background-color: var(--btn-light);
    border-color: transparent;
    box-shadow: 8px 8px 16px rgba(55, 84, 170, .15),
        -8px -8px 20px rgba(255, 255, 255, 1),
        inset 0px 0px 4px rgba(255, 255, 255, 0),
        inset 8px 8px 16px rgba(55, 84, 170, .15),
        inset -8px -8px 20px rgba(255, 255, 255, 1),
        0px 0px 4px rgba(255, 255, 255, .2) !important;
}

/*--------------------------------------------------------------
## Buttons outline primary
--------------------------------------------------------------*/

.btn-outline-primary {
    color: var(--color-primary);
    background-color: var(--outline-primary);
    border-color: var(--outline-primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
    color: #fff;
    background-color: var(--btn-primary);
    border-color: var(--btn-primary);
}

/*--------------------------------------------------------------
## Buttons outline secondary
--------------------------------------------------------------*/

.btn-outline-secondary {
    color: var(--color-secondary);
    background-color: var(--outline-secondary);
    border-color: var(--outline-secondary);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary.active {
    color: var(--color-dark);
    background-color: var(--outline-secondary);
    border-color: var(--outline-secondary);
}

/*--------------------------------------------------------------
## Buttons outline light
--------------------------------------------------------------*/

.btn-outline-light {
    color: var(--color-muted);
    border-color: var(--outline-light);
    background-color: var(--outline-light);
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active,
.btn-outline-light.active {
    color: var(--color-dark);
    border-color: var(--outline-light);
    background-color: var(--outline-light);
}

/*--------------------------------------------------------------
## Buttons outline info
--------------------------------------------------------------*/

.btn-outline-info {
    color: var(--color-info);
    background-color: var(--outline-info);
    border-color: var(--outline-info);
}

.btn-outline-info:hover,
.btn-outline-info:focus,
.btn-outline-info:active,
.btn-outline-info.active {
    color: #fff;
    background-color: var(--btn-info);
    border-color: var(--btn-info);
}

/*--------------------------------------------------------------
## Buttons outline warning
--------------------------------------------------------------*/

.btn-outline-warning {
    color: var(--color-warning);
    background-color: var(--outline-warning);
    border-color: var(--outline-warning);
}

.btn-outline-warning:hover,
.btn-outline-warning:focus,
.btn-outline-warning:active,
.btn-outline-warning.active {
    color: #fff;
    background-color: var(--btn-warning);
    border-color: var(--btn-warning);
}

/*--------------------------------------------------------------
## Buttons outline danger
--------------------------------------------------------------*/

.btn-outline-danger {
    color: var(--color-danger);
    background-color: var(--outline-danger);
    border-color: var(--outline-danger);
}

.btn-outline-danger:hover,
.btn-outline-danger:focus,
.btn-outline-danger:active,
.btn-outline-danger.active {
    color: #fff;
    background-color: var(--btn-danger);
    border-color: var(--btn-danger);
}

/*--------------------------------------------------------------
## reset new btn style
--------------------------------------------------------------*/

.btn-shopping {
    background-image: linear-gradient(to right,
            #0a59f8,
            #6e95ff,
            #6e9bff,
            #0a59f8);
    background-size: 300% 100%;
    transition: all 0.3s ease-in-out;
    color: #fff;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border: 0;
}

.btn-shopping:hover,
.btn-shopping:focus,
.btn-shopping.focus {
    background-position: 100% 0;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.btn-shopping.disabled,
.btn-shopping:disabled,
.btn-shopping:not(:disabled):not(.disabled):active,
.btn-shopping:not(:disabled):not(.disabled).active,
.btn-shopping:not(:disabled):not(.disabled):active:focus,
.btn-shopping:not(:disabled):not(.disabled).active:focus {
    background-position: 100% 0;
    transition: all 0.4s ease-in-out;
    opacity: 0.6;
}

/*--------------------------------------------------------------
## btn icon style
--------------------------------------------------------------*/

.btn-xs {
    font-size: 0.75rem;
    padding: 0.25rem .875rem;
    border-radius: var(--border-radius-sm);
}

.btn-sm {
    padding: 0.3125rem 1rem;
    border-radius: var(--border-radius-sm);
}

.btn-lg {
    padding: 0.75rem 2.5rem;
    font-size: 1.125rem;
}

.btn-rounded {
    border-radius: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.btn-rounded.btn-xs {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
}

.btn-nopd {
    padding-left: 5px;
    padding-right: 5px;
}

.btn-w-sm {
    min-width: 70px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.btn-w-md {
    min-width: 110px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.btn-w-md.btn-sm {
    min-width: 95px;
}

.btn-w-md.btn-xs {
    min-width: 85px;
}

.btn-w-lg {
    min-width: 120px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.btn-w-xl {
    min-width: 180px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 767.98px) {
    .btn-sm {
        padding: 0.3125rem 1rem 0.25rem 1rem;
        border-radius: var(--border-radius-xs);
    }

    .btn-w-sm {
        min-width: 60px;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .btn-w-md {
        min-width: 90px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .btn-w-lg {
        min-width: 115px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .btn-w-md.btn-xs {
        min-width: 85px;
    }

    .btn-w-md.btn-sm {
        min-width: 88px;
    }

    .btn-rounded {
        border-radius: 4rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-sm {
        border-radius: var(--border-radius-xs);
    }

    .btn-w-md {
        min-width: 110px;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .btn-rounded {
        border-radius: 4rem;
    }
}

/*--------------------------------------------------------------
## btn icon style
--------------------------------------------------------------*/

.btn-icon {
    text-align: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0 !important;
    position: relative;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.btn-icon span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon .status {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1;
    padding: 0.0625rem 0.375rem;
    right: 0;
    top: 0;
    background: #ff416c;
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ff4b2b, #ff416c);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-radius: 1rem;
    transform: translate(25%, -25%);
}

.btn-icon.btn-xs {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.125rem;
}

.btn-icon.btn-sm {
    width: 2.0625rem;
    height: 2.0625rem;
    font-size: 1.125rem;
}

.btn-icon.btn-md {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.5rem;
}

.btn-icon.btn-lg {
    width: 3.3125rem;
    height: 3.3125rem;
    font-size: 1.5rem;
}

.btn-icon.btn-xl {
    width: 4rem;
    height: 4rem;
    font-size: 2.125rem;
}

/*--------------------------------------------------------------
## btn scale style
--------------------------------------------------------------*/

.btn-scale {
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.btn-scale:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
## btn arrow style
--------------------------------------------------------------*/

.btn-arrow {
    position: relative;
    padding-right: 2.25rem;
    padding-left: 2.25rem;
}

.btn-arrow span {
    display: inline-block;
    position: relative;
    transition: all 200ms ease-out;
    will-change: transform;
}

.btn-arrow.active span,
.btn-arrow:hover span,
.btn-arrow:focus span {
    transform: translate3d(-0.75rem, 0, 0);
}

.btn-arrow i {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.25em;
    font-size: 1.25rem;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 200ms ease-out;
    will-change: right, opacity;
}

.btn-arrow.active i,
.btn-arrow:hover i,
.btn-arrow:focus i {
    opacity: 1;
    right: -2rem;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .btn-arrow {
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

/*--------------------------------------------------------------
## btn vip style
--------------------------------------------------------------*/

.btn-vip {
    color: #fff;
    background: #dda86d;
    background-image: linear-gradient(to right,
            #ebc49b,
            #dda86d,
            #ebc49b,
            #dda86d);
    background-size: 300% 100%;
    transition: all 0.3s ease-in-out;
    border: 0;
}

.btn-vip:hover,
.btn-vip:focus,
.btn-vip:active,
.btn-vip.active {
    color: #fff;
    background-position: 100% 0;
}

/*--------------------------------------------------------------
## btn transparent style
--------------------------------------------------------------*/

.btn-transparent {
    background-color: transparent;
    border-width: 0;
}

/*--------------------------------------------------------------
## btn success gradiant style
--------------------------------------------------------------*/

.btn-success-gradiant {
    background: #54bb8f;
    background: linear-gradient(to right, #54bb8f 0%, #1dc8cc 100%);
    border-right-width: 0;
    border-left-width: 0;
}

.btn-success-gradiant:hover {
    background: #1dc8cc;
    background: linear-gradient(to right, #1dc8cc 0%, #54bb8f 100%);
}

.btn-success-gradiant.active,
.btn-success-gradiant:active,
.btn-success-gradiant:focus {
    box-shadow: 0px;
    opacity: 1;
}

/*--------------------------------------------------------------
## btn danger gradiant style
--------------------------------------------------------------*/

.btn-danger-gradiant {
    background: #ff4d7e;
    background: linear-gradient(to right, #ff4d7e 0%, #ff6a5b 100%);
    border-right-width: 0;
    border-left-width: 0;
}

.btn-danger-gradiant:hover {
    background: #ff6a5b;
    background: linear-gradient(to right, #ff6a5b 0%, #ff4d7e 100%);
}

.btn-danger-gradiant.active,
.btn-danger-gradiant:active,
.btn-danger-gradiant:focus {
    box-shadow: 0px;
    opacity: 1;
}

/*--------------------------------------------------------------
## btn info gradiant style
--------------------------------------------------------------*/

.btn-info-gradiant {
    background: #2b76ff;
    background: linear-gradient(to right, #0056f3 0%, #2b76ff 100%);
    color: #ffffff;
    border-right-width: 0;
    border-left-width: 0;
}

.btn-info-gradiant:hover {
    background: #2b76ff;
    background: linear-gradient(to right, #2b76ff 0%, #0056f3 100%);
    color: #fff;
}

.btn-info-gradiant.active,
.btn-info-gradiant:active,
.btn-info-gradiant:focus {
    box-shadow: 0px;
    opacity: 1;
}

/*--------------------------------------------------------------
## btn like gradiant style
--------------------------------------------------------------*/

.btn-like {
    background-image: linear-gradient(to right,
            #fb3307,
            #ff5b42,
            #ff6336,
            #ff5312);
    background-size: 300% 100%;
    transition: all 0.3s ease-in-out;
    color: #fff;
    border: 0;
}

.btn-like:hover,
.btn-like:focus,
.btn-like:active,
.btn-like.active {
    color: #fff;
    background-position: 100% 0;
    transition: all 0.4s ease-in-out;
}

.btn-shopping-bag {
    position: relative;
}

.btn-shopping-bag .number {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(0%, -50%);
}

/*--------------------------------------------------------------
 btn social style
--------------------------------------------------------------*/

.btn-qq {
    background-color: #2b94da;
    border-color: #2b94da;
    color: #fff;
}

.btn.btn-qq:hover {
    background-color: #fff;
    border-color: #2b94da;
    color: #2b94da !important;
}

.btn.btn-weixin {
    background-color: #24a74f;
    border-color: #24a74f;
    color: #fff;
}

.btn.btn-weixin:hover {
    background-color: #fff;
    border-color: #37b962;
    color: #249249 !important;
}

.btn.btn-weibo {
    background-color: #fff;
    border-color: #e84e75;
    color: #e84e75 !important;
}

.btn.btn-weibo:hover {
    background-color: #fff;
    border-color: #e84e75;
    color: #fff !important;
}

.btn.text-wechat {
    color: #3faf7c;
    background-color: rgb(63 175 124 / 15%);
    border-color: rgb(63 175 124 / 15%);
}

.btn.text-qq {
    color: #5e98ff;
    background-color: rgb(94 152 255 / 15%);
    border-color: rgb(94 152 255 / 15%);
}

/*--------------------------------------------------------------
## background style
--------------------------------------------------------------*/

.bg-primary {
    background-color: var(--bg-primary) !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-outline-primary {
    background-color: var(--bg-outline-primary);
}

.bg-dark {
    background-color: var(--bg-dark) !important;
}

.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-danger {
    background-color: var(--bg-danger) !important;
}

.bg-warning {
    background-color: var(--bg-warning) !important;
}

.bg-info {
    background-color: var(--bg-info) !important;
}

.bg-vip {
    box-shadow: inset 0px 0px 4px rgb(255 255 255 / 0%),
        inset 7px 7px 15px rgb(55 84 170 / 10%),
        inset -7px -7px 20px rgb(55 84 170 / 8%), 0px 0px 4px rgb(255 255 255 / 20%);
}

.bg-theme {
    background-image: linear-gradient(to right, #0056f3 0%, #2b76ff 100%);
}

.bg-gradient-dark {
    background-image: linear-gradient(to left,
            var(--bg-secondary) 0%,
            var(--bg-dark) 100%);
}

.bg-white-overlay {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-dark-overlay {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-dark-overlay:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-opacity {
    background-color: rgba(39, 39, 39, 0.3) !important;
}

.bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-cover {
    -ms-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.bg-cover-bottom {
    background-position: center bottom;
    transition: opacity 0.6s ease-in-out;
    -webkit-animation: zoomInOut 60s infinite;
    animation: zoomInOut 60s infinite;
}

@-webkit-keyframes zoomInOut {
    0% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes zoomInOut {
    0% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-zircon {
    background-color: #f8faff !important;
}

.bg-white-bot {
    position: absolute;
    right: 0;
    left: 0;
    pointer-events: none;
    bottom: -1px;
    z-index: 2;
    overflow: hidden;
}

.bg-white-bot::before {
    content: "";
    position: absolute;
    top: 0;
    right: -3px;
    bottom: 0;
    left: -3px;
    background-repeat: no-repeat;
    background-size: 101%;
    background-image: url(../fonts/white-bot.svg);
    background-position: 50% 100%;
}

.bg-white-bot::after {
    content: "";
    display: block;
    min-height: 100px;
    padding-top: calc(6% - 12px);
}

.bg-hidden {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.bg-light-even .item:nth-child(2n) {
    background-color: #f8f9fa !important;
}

.bg-light-linear-gradient {
    background-image: linear-gradient(180deg, #fefeff 20%, #f6f8fd 78%);
}

.bg-images {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}

.bg-images img {
    position: absolute;
    transform: rotate(-30deg);
}

.bg-images img.img-1 {
    top: -40px;
    left: calc(50% - 180px);
    z-index: 0;
}

.bg-images img.img-2 {
    top: -40px;
    left: calc(50% + 580px);
    z-index: 1;
}

.bg-images img.img-3 {
    top: 220px;
    left: calc(50% + 160px);
    z-index: 1;
    max-width: 400px;
}

.bg-images img.img-4 {
    top: 500px;
    left: calc(50% + 500px);
    z-index: 1;
    max-width: 600px;
}

.bg-images img.img-5 {
    top: 750px;
    left: calc(50% - 300px);
    z-index: 1;
    max-width: 850px;
}

.bg-images img.img-6 {
    top: -200px;
    left: calc(50% + 200px);
    z-index: 1;
}

.bg-images img.img-7 {
    top: 0px;
    left: 5%;
    z-index: 0;
}

.bg-images img.img-8 {
    top: 500px;
    left: calc(0% - 40px);
    z-index: 0;
}

.bg-images img.img-6 {
    transform: none;
}

@media (max-width: 767.98px) {
    .bg-images img.img-1 {
        top: 460px;
        left: calc(50% - 180px);
        z-index: 0;
        max-width: 300px;
    }

    .bg-images img.img-2 {
        top: -20px;
        left: calc(50% + -255px);
        z-index: 1;
    }

    .bg-images img.img-3 {
        top: 360px;
        left: calc(50% + 30px);
        z-index: 1;
    }

    .bg-images img.img-4 {
        top: -50px;
        left: calc(50% + -30px);
        z-index: 1;
    }

    .bg-images img.img-5 {
        top: 440px;
        left: calc(50% - 380px);
        z-index: 1;
    }

    .bg-images img.img-6 {
        top: 450px;
        left: 5%;
        z-index: 1;
    }

    .bg-images img.img-7 {
        width: 30%;
        top: 60px;
        left: 1%;
        z-index: 0;
    }

    .bg-images img.img-8 {
        width: 40%;
        top: 50px;
        left: calc(50% + 70px);
        z-index: 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .bg-images img.img-5 {
        top: 650px;
        left: calc(50% - 300px);
        z-index: 1;
        max-width: 650px;
    }
}

.bg-shadow {
    box-shadow: 0px 10px 50px -10px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
alert
--------------------------------------------------------------*/

.alert {
    border-radius: var(--border-radius-md);
}

.alert-danger {
    color: #d54338;
    background-color: #fff2f1;
    border-color: #ffe0de;
}

.alert-primary {
    color: #2b76ff;
    background-color: #e1e8ff;
    border-color: #dde4fb;
}

.alert-info {
    color: #f3fcf2;
    background-color: #65b167;
    border-color: #65b167;
}

.alert-text {
    position: relative;
    display: flex;
    position: relative;
    overflow: hidden;
}

.alert-content {
    position: relative;
    text-align: justify;
}

.alert-content ul {
    padding: 0 0 0 1rem;
}

.alert-content ul li {
    list-style-type: decimal;
    margin: 0.5rem 0 0;
}

.alert-content ul li:first-child {
    margin: 0;
}

.alert-icon {
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    background-image: url("../fonts/b450ff5fba0d49a790a3771a6bc5277d.woff");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.2;
    transform: translate(20%, 20%);
}

@media (max-width: 767.98px) {
    .alert-icon {
        opacity: 0.2;
    }
}

/*--------------------------------------------------------------
badge
--------------------------------------------------------------*/

.badge {
    font-size: 0.75rem;
    font-weight: 400;
    border-radius: var(--border-radius-xs);
    padding: 0.325rem 0.875rem;
    vertical-align: middle;
}

.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}

.badge-opacity {
    background-color: rgba(8, 16, 25, 0.3);
}

.badge-outline-primary {
    border: 1px solid var(--outline-primary);
    color: var(--color-primary);
}

.badge-outline-danger {
    border: 1px solid var(--outline-danger);
    color: var(--color-danger);
}

.badge-free {
    color: #fff;
    background: #ff416c;
    background: linear-gradient(90deg, #ff7b50 0%, #ff9472 100%);
}

/*--------------------------------------------------------------
## badge size
--------------------------------------------------------------*/

.badge-sm {
    padding: 0.315rem 0.5rem;
}

.badge-md {
    padding: 0.5rem 1rem;
}

.badge-lg {
    padding: 0.75rem 1.75rem;
}

.badge-w-md {
    min-width: 75px;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.badge .iconfont {
    position: relative;
    top: -1px;
}

/*--------------------------------------------------------------
## border
--------------------------------------------------------------*/

.border-primary {
    border-color: var(--border-primary) !important;
}

.border-muted {
    border-color: var(--border-muted) !important;
}

.border-light {
    border-color: var(--border-light) !important;
}

.border-secondary {
    border-color: var(--border-secondary) !important;
}

.border-dark {
    border-color: var(--border-dark) !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

/*--------------------------------------------------------------
## input-group
--------------------------------------------------------------*/

.form-control {
    font-size: 0.9375rem;
    color: var(--color-secondary);
    border: 1px solid #fff;
    background-color: var(--bg-light);
    box-shadow: inset -5px -5px 8px #f0f2f7, inset 5px 5px 8px #e7ebf1;
    border-radius: var(--border-radius-md);
    padding: 0.609375rem 0.9375rem;
}

.form-control:focus {
    color: var(--color-dark);
    background-color: #f0f2f7;
    border-color: #fff;
    box-shadow: inset -8px -8px 10px #f0f2f7, inset 8px 8px 10px #e7ebf1;
}

.form-control::-webkit-input-placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control::placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control:focus::-webkit-input-placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control:focus::-moz-placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control:focus:-ms-input-placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control:focus::-ms-input-placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control:focus::placeholder {
    color: var(--color-secondary);
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: var(--bg-light);
    opacity: 1;
    color: var(--color-muted);
}

.form-control-plaintext {
    color: var(--color-muted);
    border-width: 0;
    padding: 0.625rem 0;
}

.form-control-plaintext:focus {
    -webkit-appearance: none;
    outline: none !important;
    box-shadow: none !important;
}

.form-control-sm {
    min-height: auto;
    padding: 0.375rem 0.75rem;
}

.form-control-md {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
}

.form-control-lg {
    font-size: 1.125rem;
    padding: 0.75rem 1rem;
}

textarea.form-control-lg {
    min-height: 53px;
}

.form-label {
    font-size: 0.875rem;
    color: var(--color-muted);
}

.form-label .iconfont {
    position: relative;
    top: -0.07em;
}

textarea.form-control {
    padding: 0.625rem 0.75rem;
}

.col-form-label {
    font-size: 0.875rem;
    padding-top: calc(0.625rem + 1px);
    padding-bottom: calc(0.625rem + 1px);
}

/*--------------------------------------------------------------
    form select style
--------------------------------------------------------------*/

.form-select {
    padding: 0.625rem 2.75rem 0.625rem 1rem;
    color: var(--color-secondary);
    border: 2px solid #fff;
    background-color: var(--bg-light);
    box-shadow: inset -5px -5px 8px #f0f2f7, inset 5px 5px 8px #e7ebf1;
    border-radius: var(--border-radius-md);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select:focus {
    border-color: #fff;
    color: var(--color-dark);
    outline: 0;
    box-shadow: none;
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
}

.form-select:disabled {
    color: var(--color-muted);
    background-color: var(--bg-light);
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529;
}

/*--------------------------------------------------------------
    form check style
--------------------------------------------------------------*/

.form-check {
    min-height: 1.5rem;
    padding-left: 2em;
    margin-bottom: 0.125rem;
}

.form-check .form-check-input {
    margin-left: -2em;
}

.form-check-input {
    width: 1.5em;
    height: 1.5em;
    background-color: var(--bg-light);
    border-color: var(--border-light);
    margin-top: 0.08em;
}

.form-check-input:active {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
}

.form-check-input:focus {
    border-color: var(--bg-light);
    outline: 0;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--bg-danger);
    border-color: var(--bg-danger);
}

.form-check-input[type="checkbox"]:indeterminate {
    background-color: #49d6ab;
    border-color: #49d6ab;
}

.form-switch {
    padding-left: 3.25em;
}

.form-switch .form-check-input {
    width: 2.75em;
    margin-left: -3.25em;
    background-image: url("../fonts/6b431f2b29c04d868665d8f2ab29ac0f.woff");
    border-radius: 3em;
}

.form-switch .form-check-input:focus {
    background-image: url("../fonts/6b431f2b29c04d868665d8f2ab29ac0f.woff");
}

.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("../fonts/6b431f2b29c04d868665d8f2ab29ac0f.woff");
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem;
}

/*--------------------------------------------------------------
## form floating
--------------------------------------------------------------*/

.form-floating>label {
    padding: 1rem 1rem;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: calc(3.5rem + 2px);
    padding: 1rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 1.875rem;
    padding-bottom: 0.5rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    transform: scale(0.85) translateY(-0.25rem) translateX(0.125rem);
}

@media (max-width: 991.98px) {
    .form-floating>label {
        padding: 1rem;
    }

    .form-floating>.form-control,
    .form-floating>.form-select {
        padding: 1rem;
    }

    .form-floating>.form-control:focus,
    .form-floating>.form-control:not(:placeholder-shown) {
        padding-top: 1.875rem;
        padding-bottom: 0.75rem;
    }

    .form-floating>.form-control:focus~label,
    .form-floating>.form-control:not(:placeholder-shown)~label,
    .form-floating>.form-select~label {
        transform: scale(0.85) translateY(-0.25rem) translateX(0.125rem);
    }
}

/*--------------------------------------------------------------
## form radio
--------------------------------------------------------------*/

.radio-custom-style .item {
    position: relative;
    text-align: center;
}

.radio-custom-style .item:hover,
.radio-custom-style .item.current {
    border-color: var(--border-primary) !important;
}

.radio-custom-style .item .check-input {
    display: none;
}

.radio-custom-style .item .check-label {
    padding: 1.5rem 0;
    display: block;
    cursor: pointer;
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
}

.radio-custom-style .item .check-input:checked~.check-label {
    background-color: var(--outline-danger);
    border-color: var(--outline-danger);
}

.radio-custom-style .item .check-input:checked~.check-label .label_title {
    color: var(--color-danger);
}

.rss-date-custom {
    display: none;
}

.rss-date-custom.current {
    display: block;
}

/*--------------------------------------------------------------
table style
--------------------------------------------------------------*/

.table {
    width: 100%;
    background-color: transparent;
    border-color: var(--border-light);
    margin: 0;
}

.table td,
.table th {
    padding: 0.75rem 0.5rem;
    vertical-align: top;
    border-width: 1px 0 0;
    border-color: var(--border-light);
}

.table thead th {
    color: var(--color-muted);
    vertical-align: bottom;
    border-width: 0 0 1px;
    border-color: var(--border-light);
}

.table> :not(:last-child)> :last-child>* {
    border-width: 0 0 1px;
    border-color: var(--border-light);
}

.table-vcenter td,
.table-vcenter th {
    text-align: center;
    word-wrap: break-word;
    word-break: break-all;
    vertical-align: middle;
}

/*--------------------------------------------------------------
## Avatar
--------------------------------------------------------------*/

.flex-avatar {
    position: relative;
    line-height: 1;
    border-radius: 500px;
    white-space: nowrap;
    font-weight: bold;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50%;
}

.flex-avatar img {
    width: inherit;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: inherit;
}

/*--------------------------------------------------------------
## Media
--------------------------------------------------------------*/

.media {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0;
    flex-shrink: 0;
    border-radius: inherit;
}

.media:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.media:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: var(--border-radius-xs);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    color: #fff;
}

.media-overlay.overlay-top {
    bottom: auto;
}

.media-overlay.overlay-bottom {
    top: auto;
    background: var(--color-dark);
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, rgba(6, 6, 8, 0.33), rgba(6, 6, 8, 0));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.media-overlay.overlay-top .badge {
    background-color: rgb(46 46 48 / 50%);
}

.media-overlay .btn-icon {
    background-color: rgba(33, 36, 40, 0.68);
    border-color: transparent;
}

.media-action {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.media-action.active {
    opacity: 1;
}

.media-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
    border-radius: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.media-21x9:after {
    padding-top: 42.857143%;
}

.media-16x9:after {
    padding-top: 56.25%;
}

.media-4x3:after {
    padding-top: 75%;
}

.media-2x3:after {
    padding-top: 150%;
}

.media-3x2:after {
    padding-top: 66.66666%;
}

.media-3x4:after {
    padding-top: 133.33333%;
}

.media-1x2:after {
    padding-top: 200%;
}

.media-2x1:after {
    padding-top: 50%;
}

.media-3x1:after {
    padding-top: 33%;
}

.media-4x1:after {
    padding-top: 25%;
}

.media-5x1:after {
    padding-top: 20%;
}

.media-1-4:after {
    padding-top: 25vh;
    min-height: 10rem;
}

.media-1-3:after {
    padding-top: 33vh;
    min-height: 12.5rem;
}

.media-1-2:after {
    padding-top: 50vh;
    min-height: 15rem;
}

/*--------------------------------------------------------------
## rounded
--------------------------------------------------------------*/

.rounded {
    border-radius: var(--border-radius-sm) !important;
}

.rounded-1 {
    border-radius: var(--border-radius-md) !important;
}

.rounded-2 {
    border-radius: var(--border-radius-lg) !important;
}

.rounded-3 {
    border-radius: var(--border-radius-lg) !important;
}

/*--------------------------------------------------------------
## Card
--------------------------------------------------------------*/

.card,
.block {
    background: var(--bg-light);
    background: linear-gradient(180deg, var(--bg-light), #fff);
    border: 2px solid #fff;
    box-shadow: 6px 6px 15px 0 rgb(136 167 225 / 10%), -6px -6px 15px 0 #fff;
    border-radius: var(--border-radius-lg);
    transition: all 0.2s;
}

.card:hover,
.block:hover {
    box-shadow: 10px 10px 20px 0 rgb(136 167 225 / 15%), -6px -6px 15px 0 #fff;
}

.card-header,
.card-footer {
    background-color: transparent;
    border-width: 0;
}

.card-footer {
    padding: 0 1.25rem 1.25rem;
}

.card-header {
    padding: 1.25rem 1.25rem 0;
}

.card-body {
    padding: 1.25rem;
}

.card-xl .card-header {
    padding: 1.5rem 1.5rem 0;
}

.card-xl .card-body {
    padding: 1.5rem;
}

.card-xl .card-footer {
    padding: 0 1.5rem 1.5rem;
}

.card-xl .card-footer.border-top {
    padding: 1.5rem;
}

.card-xxl .card-header {
    padding: 2.5rem 2.5rem 0;
}

.card-xxl .card-body {
    padding: 2.5rem;
}

.card-xxl .card-footer {
    padding: 0 2.5rem 2.5rem;
}

.card-xxl .card-footer.border-top {
    padding: 2.5rem;
}

@media (max-width: 767.98px) {
    .card-header {
        padding: 1rem 1rem 0;
        margin: 0 0 -0.375rem;
    }

    .card-body {
        padding: 1rem;
    }

    .card-sm .card-header {
        padding: 1rem 1rem 0;
    }

    .card-sm .card-body {
        padding: 1rem;
    }

    .card-xl .card-header {
        padding: 1.25rem 1.25rem 0;
    }

    .card-xl .card-body {
        padding: 1.25rem;
    }

    .card-xl .card-footer {
        padding: 0 1.25rem 1.25rem;
    }

    .card-xl .card-footer.border-top {
        padding: 1.25rem;
    }

    .card-xxl .card-header {
        padding: 1.75rem 1.75rem 0;
    }

    .card-xxl .card-body {
        padding: 1.75rem;
    }

    .card-xxl .card-footer {
        padding: 0 1.75rem 1.75rem;
    }

    .card-xxl .card-footer.border-top {
        padding: 1.75rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .card-header {
        padding: 1.25rem 1.25rem 0;
    }

    .card-body {
        padding: 1.25rem;
    }

    .card-sm .card-header {
        padding: 1rem 1rem 0;
    }

    .card-sm .card-body {
        padding: 1rem;
    }

    .card-xxl .card-header {
        padding: 1.75rem 1.75rem 0;
    }

    .card-xxl .card-body {
        padding: 1.75rem;
    }

    .card-xxl .card-footer {
        padding: 0 1.75rem 1.75rem;
    }

    .card-xxl .card-footer.border-top {
        padding: 1.75rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .card-header {
        padding: 1.375rem 1.375rem 0;
    }

    .card-body {
        padding: 1.375rem;
    }

    .card-sm .card-header {
        padding: 1rem 1rem 0;
    }

    .card-sm .card-body {
        padding: 1rem;
    }

    .card-xxl .card-header {
        padding: 2rem 2rem 0;
    }

    .card-xxl .card-body {
        padding: 2rem;
    }

    .card-xxl .card-footer {
        padding: 0 2rem 2rem;
    }

    .card-xxl .card-footer.border-top {
        padding: 2rem;
    }
}

/*-------------------------------------------------------------
 list
 -------------------------------------------------------------*/

.list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
}

.list-item:hover .btn-let-ask {
    display: inline-block !important;
}

.list-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
}

.list-body {
    flex: 1 1 auto;
}

.list-footer {
    margin-top: 0.5rem;
}

.list-title {
    line-height: 1.5;
    display: block;
    color: inherit;
    text-transform: capitalize;
}

.list-goto {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/*--------------------------------------------------------------
    list + block 
--------------------------------------------------------------*/

.list-grouped>div {
    display: flex;
}

.list-grouped .list-item {
    flex: 1 1 auto;
}

.list-grouped .list-item.block .list-content {
    padding: 1rem;
}

.list-grouped .list-item.block .media {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-width: 767.98px) {
    .list-grouped .list-item.block .list-content {
        padding: 0.625rem 0.625rem 0.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .list-grouped .list-item.block .list-content {
        padding: 0.625rem 0.625rem 0.5rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .list-grouped .list-item.block .list-content {
        padding: 0.9375rem 0.9375rem 0.75rem;
    }
}

.list-grouped .list-item.block-heading {
    flex-direction: row;
}

.list-grouped .list-item.block-heading .media {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: inherit;
}

/*--------------------------------------------------------------
    list overlay
--------------------------------------------------------------*/

.list-overlay {
    color: #fff;
    background-color: transparent;
    border-radius: var(--border-radius-sm);
}

.list-overlay:hover .media-opacity {
    transform: scale(1.2);
}

.list-overlay .list-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    padding: 0.75rem 0.875rem;
    z-index: 2;
}

.list-overlay .list-body {
    display: flex;
    flex-direction: column;
}

/*--------------------------------------------------------------
 border-decor
--------------------------------------------------------------*/

.border-decor {
    position: relative;
}

.border-decor::after {
    position: absolute;
    display: block;
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 1rem;
    left: 1px;
    top: 0%;
    background-color: var(--bg-primary);
    transition: 0.5s;
    opacity: 0.2;
}

.border-decor.bd-center::after {
    left: 50%;
    margin-left: -16px;
}

.border-decor-parent:hover .border-decor::after {
    left: 0 !important;
    margin-left: 0 !important;
    width: 100% !important;
}

.point-decor {
    position: relative;
}

.point-decor .point-wrapper {
    position: absolute;
    width: 0;
    left: 2rem;
    top: 2rem;
    opacity: 0;
    transition: all 0.3s;
    transform: scale(0);
}

.point-decor .point-wrapper.active {
    opacity: 1;
    transform: scale(1.05);
}

.point-decor .point-wrapper i {
    display: inline-block;
    border-radius: 100%;
    position: absolute;
    opacity: 0;
}

.point-decor .point-1 {
    width: 15px;
    height: 15px;
}

.point-decor .point-2 {
    width: 35px;
    height: 35px;
}

.point-decor .point-wrapper .point-1,
.point-decor .point-wrapper .point-2,
.point-decor .point-wrapper .point-3 {
    background: var(--bg-primary);
    border-color: var(--bg-primary);
}

.point-decor .point-1 {
    opacity: 0.2;
    transform: translate(15px, -5px);
    -webkit-animation: moveY1 4s 0.1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation: moveY1 5s 0.1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.point-decor .point-2 {
    opacity: 0.1;
    transform: translate(-15px, -15px);
    -webkit-animation: moveY2 4s 0.1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation: moveY2 4s 0.1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@-webkit-keyframes moveY1 {
    0% {
        transform: translate(15px, -5px);
    }

    100% {
        transform: translate(15px, 5px);
    }
}

@keyframes moveY1 {
    0% {
        transform: translate(15px, -5px);
    }

    100% {
        transform: translate(15px, 5px);
    }
}

@-webkit-keyframes moveY2 {
    0% {
        transform: translate(-15px, -15px);
    }

    100% {
        transform: translate(-15px, -5px);
    }
}

@keyframes moveY2 {
    0% {
        transform: translate(-15px, -15px);
    }

    100% {
        transform: translate(-15px, -5px);
    }
}

/*--------------------------------------------------------------
    Font line clamp style
--------------------------------------------------------------*/

.h-1x {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.h-2x {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.h-3x {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.h-4x {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------
Header logo
--------------------------------------------------------------*/

.logo {
    position: relative;
    width: 200px;
    height: 40px;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    background-image: url(../fonts/77b81da44f4d431484d17cb1ca6d2a2c.woff);
}

.logo img {
    display: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: 0.5s;
}

.logo:hover img {
    transform: scale(1.1);
}

@media (max-width: 767.98px) {
    .logo {
        width: 140px;
    }
}

@media only screen and (max-width: 767px) {
    header .logo {
        width: 130px;
        height: 30px;
    }
}

/*--------------------------------------------------------------
Header logo icon
--------------------------------------------------------------*/

.navbar-brand {
    position: relative;
    margin: 0;
    padding: 0;
}

.navbar-brand .icon-2021-1 {
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 45px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translate(100%, -50%);
}

.tiger2022 {
    position: relative;
    width: 80px;
    height: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.tiger2022::after {
    background-image: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.2));
    content: "";
    position: absolute;
    display: block;
    width: 25%;
    height: 100%;
    top: 0;
    left: -75%;
    z-index: 2;
    transform: skewX(-25deg);
    pointer-events: none;
    -webkit-animation: shine 1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation: shine 1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@-webkit-keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/*-------------------------------------------------------------
Header strip
 -------------------------------------------------------------*/

.header-wrap {
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    z-index: 999;
    height: 40px;
    transition: height 0.3s ease;
}

.header-topbar {
    position: relative;
    width: 100%;
    background-image: linear-gradient(to left,
            var(--primary-color) 0%,
            #5d48ff 60%,
            #3400ff 100%);
    color: #fff;
    z-index: 1002;
}

.header-topbar .topbar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.header-topbar .topbar-text {
    position: relative;
    color: #fff;
}

.header-topbar .topbar-goto {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-topbar .topbar-action {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
}

.header-navbar {
    position: relative;
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.header-navbar.header-fixed {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0 10px 20px 0 rgb(6 11 26 / 5%);
    -webkit-backdrop-filter: saturate(180%) blur(6px);
    backdrop-filter: saturate(180%) blur(6px);
    background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767.98px) {
    .header-navbar {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .header-navbar {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

@media (min-width: 1400px) {
    .header-navbar {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/*-------------------------------------------------------------
Header vip flag
 -------------------------------------------------------------*/

.icon-vip-flag {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    right: 0;
    top: 0;
}

.icon-vip-flag:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    border-radius: 100px;
    background: linear-gradient(to top, #e6b980 0%, #eacda3 100%);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.icon-vip-flag .iconfont {
    position: relative;
    display: block;
}

.flex-avatar .icon-vip-flag {
    right: -2px;
    top: -2px;
    font-size: 0.75rem;
}

.flex-avatar .icon-vip-flag:before {
    width: 20px;
    height: 20px;
}

.flex-avatar .icon-vip-flag .iconfont {
    top: 1px;
}

.edit-service-order p .btn {
    margin: 0 20px 0 0;
}

/*-------------------------------------------------------------
Header navbar
 -------------------------------------------------------------*/

.main-menu .menu-onsale-tips small {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    color: #ffffff;
    background: #188ef4;
    background: linear-gradient(to right, #0056f3 0%, #2b76ff 100%);
    border-radius: 4px 4px 4px 0;
    padding: 0.25rem 0.4375rem;
    transform: translate(50%, -75%);
}

.main-menu .menu-vip-tips small {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1;
    color: #bf7648;
    background: #f9e1be;
    background: linear-gradient(to top, #efd3b0 0%, #f9e1be 100%);
    border-radius: 4px 4px 4px 0;
    padding: 0.25rem 0.4375rem;
    transform: translate(50%, -75%);
}

.main-menu .menu-new-tips small {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    color: #ffffff;
    background: var(--gradient-red);
    border-radius: 4px 4px 4px 0;
    padding: 0.25rem 0.4375rem;
    transform: translate(50%, -75%);
}

@media (min-width: 1200px) {
    .main-menu li {
        margin: 0 0 0 2rem;
    }

    .main-menu li a {
        display: block;
        position: relative;
        padding: 0.25rem 0;
    }

    .main-menu li a:hover {
        color: var(--color-primary);
    }

    .main-menu li.current-menu-item a {
        font-weight: bold;
        color: var(--color-primary);
    }
}

/*--------------------------------------------------------------
  navbar-tab-mobile
--------------------------------------------------------------*/

@media (max-width: 1199.98px) {
    .modal-open {
        overflow: hidden;
    }

    .navbar-collapse {
        position: fixed;
        display: block !important;
        top: 0;
        bottom: 0;
        left: 0;
        width: 300px;
        padding: 1rem;
        opacity: 0;
        visibility: hidden;
        overflow-x: hidden;
        overflow-y: auto;
        background-color: var(--bg-body);
        transform: translateX(-100%);
        transition: 300ms ease;
        pointer-events: inherit;
        z-index: 9999;
        box-shadow: 10px 0 20px 0 rgb(42 43 43 / 20%);
    }

    .navbar-collapse.open {
        transform: translateX(0);
        transition: 300ms ease;
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .navbar-collapse .main-menu {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .navbar-collapse .main-menu li {
        flex: 0 0 100%;
        padding: 0.5rem 0;
    }

    .navbar-collapse .main-menu li a {
        position: relative;
        display: block;
        text-align: center;
        padding: 1.5rem 0;
        background: var(--bg-light);
        background: linear-gradient(180deg, var(--bg-light), #fff);
        border: 2px solid #fff;
        box-shadow: 6px 6px 15px 0 rgb(136 167 225 / 10%), -6px -6px 15px 0 #fff;
        border-radius: var(--border-radius-md);
    }

    .navbar-collapse .main-menu .menu-onsale-tips small,
    .navbar-collapse .main-menu .menu-vip-tips small {
        position: absolute;
        white-space: nowrap;
        top: 0;
        right: 0;
        transform: translate(25%, -50%);
    }
}

@media (max-width: 767.98px) {
    .navbar-collapse {
        width: 260px;
    }
}

/*--------------------------------------------------------------
## main 
--------------------------------------------------------------*/

.site-main {
    padding: 1.75rem 0;
}

@media (min-width: 768px) {
    .site-main {
        padding: 2rem 0;
    }
}

/*--------------------------------------------------------------
index offers
--------------------------------------------------------------*/

.index-offers .list-grouped .list-item {
    position: relative;
    display: block;
    text-align: center;
    background-color: #ffffff;
    transition: 0.5s;
}

.index-offers .list-grouped .list-item img {
    display: block;
    width: 130px;
    margin: 0 auto;
    transition: 0.5s;
}

.index-offers .list-grouped .list-item .hover {
    position: absolute;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: inherit;
}

.index-offers .list-grouped .list-item:hover .hover {
    display: block;
}

.index-offers .list-grouped .list-item .list-content {
    padding: 2rem 1rem 3rem;
}

@media only screen and (min-width: 1025px) {
    .index-offers.anim-scale .list-grouped .list-item:hover {
        transform: scale(1.1);
    }
}

@media only screen and (max-width: 1024px) {
    .index-offers.anim-scale .list-grouped .list-item:hover img {
        transform: scale(1.07);
    }
}

@media only screen and (max-width: 767.98px) {
    .index-offers .list-grouped .list-item img {
        width: 80px;
    }
}

/*--------------------------------------------------------------
index banner
--------------------------------------------------------------*/

.mockup-browser {
    position: relative;
    overflow: hidden;
    max-width: 90%;
    padding-top: 30px;
    border-radius: var(--border-radius-md);
    transition: all 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}

.mockup-browser:after {
    content: "";
    display: block;
    padding-top: 66.66666%;
}

.jimu-mockups .mockup-browser {
    border-top-left-radius: var(--border-radius-sm);
    border-top-right-radius: var(--border-radius-sm);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.mockup-browser img {
    border-radius: inherit;
}

.mockup-hover {
    transform: translateZ(0);
    box-shadow: 0 10px 30px 0 rgb(6 14 44 / 5%);
}

.mockup-hover:hover {
    box-shadow: 0 10px 40px 0 rgb(6 14 44 / 10%);
    transform: translateY(-15px);
}

.mockup-browser::before {
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 30px;
    position: absolute;
    background: var(--bg-light);
    background: linear-gradient(180deg, var(--bg-light), #fff);
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.mockup-browser .mockup-poster {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
}

.mockup-dots {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    top: 15px;
    left: 15px;
    margin: -5px 0 0;
}

.mockup-dots i.dot1,
.mockup-dots i.dot2,
.mockup-dots i.dot3 {
    width: 10px;
    height: 10px;
    border-radius: 10px;
}

.mockup-dots i.dot1 {
    background-color: #ff5f52;
}

.mockup-dots i.dot2 {
    background-color: #ffbe05;
    margin: 0 0.5rem;
}

.mockup-dots i.dot3 {
    background-color: #15cc35;
}

.mockup-full {
    max-width: 100%;
}

.mockup-mobile {
    position: absolute;
    width: 300px;
    bottom: -30px;
    right: 0;
    transform: translateZ(0);
    transition: all 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}

.mockup-mobile:hover {
    transform: translateY(-15px);
}

.mockup-mobile .mobile-frame {
    position: relative;
    z-index: 1;
}

.mockup-mobile .mockup-poster {
    position: absolute;
    left: 15px;
    right: 15px;
    top: 12px;
    bottom: 12px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
}

.modules-mockups .mockup-browser {
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .mockup-browser {
        max-width: 95%;
        height: 250px;
        padding-top: 20px;
        border-radius: var(--border-radius-sm);
    }

    .jimu-mockups .mockup-browser {
        height: 250px;
    }

    .mockup-browser.mockup-full {
        max-width: 100%;
    }

    .mockup-browser::before {
        content: "";
        top: 0px;
        left: 0px;
        width: 100%;
        height: 20px;
        position: absolute;
        background: #fff;
        border-top-left-radius: var(--border-radius-sm);
        border-top-right-radius: var(--border-radius-sm);
    }

    .mockup-browser .mockup-poster {
        top: 20px;
    }

    .mockup-dots {
        top: 11px;
        left: 11px;
        margin: -4px 0 0;
    }

    .mockup-dots i.dot1,
    .mockup-dots i.dot2,
    .mockup-dots i.dot3 {
        width: 8px;
        height: 8px;
        border-radius: 10px;
    }

    .mockup-mobile {
        width: 90px;
        bottom: -15px;
    }

    .mockup-mobile .mockup-poster {
        left: 4px;
        right: 4px;
        top: 3px;
        bottom: 3px;
        border-radius: var(--border-radius-md);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .mockup-browser {
        max-width: 95%;
        padding-top: 20px;
        border-radius: var(--border-radius-sm);
    }

    .jimu-mockups .mockup-browser {
        height: 350px;
    }

    .mockup-browser.mockup-full {
        max-width: 100%;
    }

    .mockup-browser::before {
        content: "";
        top: 0px;
        left: 0px;
        width: 100%;
        height: 20px;
        position: absolute;
        background: #fff;
        border-top-left-radius: var(--border-radius-sm);
        border-top-right-radius: var(--border-radius-sm);
    }

    .mockup-dots {
        top: 11px;
        left: 11px;
        margin: -4px 0 0;
    }

    .mockup-dots i.dot1,
    .mockup-dots i.dot2,
    .mockup-dots i.dot3 {
        width: 8px;
        height: 8px;
        border-radius: 10px;
    }

    .mockup-mobile {
        width: 130px;
        bottom: -15px;
    }

    .mockup-mobile .mockup-poster {
        left: 6px;
        right: 6px;
        top: 5px;
        bottom: 5px;
        border-radius: var(--border-radius-md);
    }
}

/*--------------------------------------------------------------
Mockup sm
--------------------------------------------------------------*/

.mockup-browser-sm.mockup-browser {
    max-width: 100%;
    width: 150px;
    height: auto;
    box-shadow: none;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-light);
    padding-top: 20px;
    flex-shrink: 0;
}

.mockup-browser-sm.mockup-browser::before {
    height: 20px;
}

.mockup-browser-sm .mockup-poster {
    /* top: 20px; */
    height: 148px;
}

.mockup-browser-sm .mockup-dots {
    top: 12px;
    left: 12px;
}

.mockup-browser-sm .mockup-dots i.dot1,
.mockup-browser-sm .mockup-dots i.dot2,
.mockup-browser-sm .mockup-dots i.dot3 {
    width: 6px;
    height: 6px;
}

/*--------------------------------------------------------------
Index themes
--------------------------------------------------------------*/

.list-themes.list-grouped .list-item .list-content {
    text-align: center;
    padding: 3rem 3rem 2.5rem;
}

.list-themes.list-grouped .list-item .list-action a {
    color: var(--color-primary);
    border-bottom: 1px solid var(--border-primary);
}

.list-themes.list-grouped .list-item .theme-sup {
    font-size: 70%;
    color: var(--color-primary);
    border: 2px solid var(--bg-primary);
    border-radius: 5px;
    padding: 2px 5px;
    position: relative;
    margin-left: 10px;
    top: -3px;
}

.list-themes.list-grouped .list-item .mockup-browser {
    max-width: 100%;
    padding: 25px 0 0;
    box-shadow: none;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
}

.list-themes.list-grouped .list-item .mockup-browser::before {
    height: 25px;
    background-color: var(--bg-dark);
}

.list-themes.list-grouped .list-item .mockup-dots {
    top: 13px;
    left: 13px;
}

.list-themes.list-grouped .list-item .mockup-dots i.dot1,
.list-themes.list-grouped .list-item .mockup-dots i.dot2,
.list-themes.list-grouped .list-item .mockup-dots i.dot3 {
    width: 8px;
    height: 8px;
}

@media (max-width: 767.98px) {
    .list-themes.list-grouped .list-item .list-content {
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .list-themes.list-grouped .list-item .mockup-browser {
        box-shadow: 5px 0 30px 0px rgb(6 14 44 / 10%);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .list-themes.list-grouped .list-item .list-content {
        text-align: center;
        padding: 2.5rem 2rem;
    }

    .list-themes.list-grouped .list-item .mockup-browser {
        box-shadow: 5px 0 30px 0px rgb(6 14 44 / 10%);
    }
}

@media (min-width: 1200px) {
    .list-themes.list-grouped .list-item .list-desc {
        max-width: 80%;
    }
}

/*-------------------------------------------------------------
 Index modules
-------------------------------------------------------------*/

.list-modules.list-grouped .list-item .list-content {
    text-align: center;
    padding: 3rem 2rem;
}

@media (max-width: 767.98px) {
    .list-modules.list-grouped .list-item .list-content {
        text-align: center;
        padding: 1.5rem 1rem;
    }
}

/*-------------------------------------------------------------
Post theme 
-------------------------------------------------------------*/

.theme-basicinfo {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.theme-basicinfo>div {
    display: flex;
}

.theme-basicinfo .item {
    position: relative;
    flex: 1 1 auto;
    padding: 0.5rem 1rem;
}

.theme-basicinfo .item:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 15px;
    width: 1px;
    height: 40px;
    background-color: var(--bg-light);
}

.theme-basicinfo .item:last-child:after {
    display: none;
}

@media (max-width: 767.98px) {
    .theme-basicinfo {
        justify-content: space-between;
    }

    .theme-basicinfo .item {
        padding: 0.5rem 1rem;
        background-color: var(--bg-light);
        border-radius: var(--border-radius-sm);
    }

    .theme-basicinfo .item:after {
        display: none;
    }
}

@media (min-width: 1400px) {
    .theme-basicinfo {
        justify-content: center;
    }
}

/*-------------------------------------------------------------
 Post theme preview
-------------------------------------------------------------*/
.theme-preview {
    position: relative;
}

.theme-preview .mockup-browser {
    max-width: 100%;
    height: auto;
}

.theme-preview .swiper-slide {
    max-width: 295px;
}

.theme-preview .swiper-pagination.swiper-pagination-bullets {
    bottom: -20px;
}

/*-------------------------------------------------------------
 Post theme accessory
-------------------------------------------------------------*/

.theme-accessory .item {
    position: relative;
    margin: 0 0 1rem;
}

.theme-accessory .item .accessory-checkbox {
    position: absolute;
    top: 1.25rem;
    left: 1.125rem;
    z-index: 1;
}

.theme-accessory .item .accessory-body {
    position: relative;
    padding: 1.125rem 1rem 1.125rem 3.75rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
}

.theme-accessory .item .accessory-checkbox:checked~.accessory-body {
    border: 1px solid var(--border-danger);
}

/*-------------------------------------------------------------
 Post theme update log
-------------------------------------------------------------*/

@media (max-width: 767.98px) {
    .update-log-data .item {
        background-color: var(--bg-light);
        border-radius: var(--border-radius-sm);
    }
}

.update-log-item {
    position: relative;
    display: flex;
    flex: 1 1 auto;
}

.update-log-item .update-log-dot {
    position: relative;
    border-color: var(--border-light);
    padding: 0 0.5rem;
    margin: 0 0.75rem 0 0;
}

.update-log-item .update-log-dot:before,
.update-log-item .update-log-dot:after {
    content: "";
    position: absolute;
    border-color: var(--border-light);
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.update-log-item .update-log-dot:before {
    border-color: var(--border-muted);
    background-color: transparent;
    z-index: 2;
}

@media (max-width: 767.98px) {

    .update-log-item .update-log-dot:before,
    .update-log-item .update-log-dot:after {
        top: 7px;
    }

    .update-log-item.active .update-log-dot:before {
        top: 7px;
    }
}

.update-log-item .update-log-dot:after {
    width: 0;
    height: auto;
    top: 23px;
    bottom: -5px;
    border-right-width: 0;
    border-top-width: 0;
    border-bottom-width: 0;
    border-radius: 0;
}

.update-log-item:last-child .update-log-dot:after {
    display: none;
}

.update-log-item .update-log-inner {
    flex: 1 1 auto;
    margin: 0 0 2rem;
}

.update-log-item.active {
    margin: 1rem 0 0;
}

.update-log-item.active:first-child {
    margin: 0;
}

.update-log-item.active .update-log-dot:before {
    top: 9px;
    background-color: var(--bg-primary);
    border-color: var(--bg-primary);
    box-shadow: 0 0 0 4px rgb(71 110 247 / 20%);
}

.update-log-item.active .update-log-dot:after {
    top: 30px;
}

.update-log-item.active .update-log-inner {
    margin: 0 0 1.5rem;
}

/*-------------------------------------------------------------
 Index style 1
-------------------------------------------------------------*/

@media (max-width: 767.98px) {
    .index-topic {
        height: calc(100vh - 82px);
    }
}

.n-countdown {
    display: -ms-flex;
    display: flex;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    align-items: center;
}

.n-countdown div {
    display: flex;
    padding: 0 0.25rem;
    align-items: center;
}

.n-countdown div span {
    position: relative;
    display: inline-block;
    line-height: 1;
    padding: 2px 4px 4px 4px;
    border: 1px solid #fff;
    font-size: 1rem;
}

.n-countdown div span:first-child {
    margin-right: -1px;
}

.n-countdown div small {
    font-size: 12px;
    display: inline-block;
    margin-left: 0.25rem;
}

/*--------------------------------------------------------------
index top style 3
--------------------------------------------------------------*/

.night-view {
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(135, 150, 165, 0.1);
    border-radius: 4px 4px 0 0;
}

.night-view-browser {
    height: 30px;
}

.night-view-browser:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 8px rgba(135, 150, 165, 0.1),
        14px 0 rgba(135, 150, 165, 0.1), 28px 0 rgba(135, 150, 165, 0.1);
    display: block;
    position: absolute;
    top: 12px;
    left: 8px;
}

.night-view-browser.colored:before {
    box-shadow: inset 0 0 0 8px #fc605c, 14px 0 #fdbc40, 28px 0 #34c84a;
}

.night-view-mb-inner.leave {
    transition: width 0.3s;
}

.night-view-mb {
    position: relative;
}

.night-view-mb-inner {
    width: 50%;
    height: 100%;
}

.night-view-mb-inner.leave {
    transition: width 0.3s;
}

.night-view.loaded .night-view-mb-inner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position: left top;
    position: absolute;
}

/*--------------------------------------------------------------
Index posts pushes
--------------------------------------------------------------*/

.knowledge-base-poster {
    position: relative;
}

.knowledge-base-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.knowledge-base-img {
    max-width: 40%;
    padding: 3rem 0;
}

.knowledge-base-main {
    position: relative;
}

.knowledge-search {
    position: relative;
    margin-top: -8rem;
}

.knowledge-posts {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.knowledge-posts img {
    width: 100%;
    max-width: 130px;
    margin-bottom: 10px;
    transition: 0.5s;
}

.knowledge-posts:hover img {
    transform: scale(1.07);
}

.knowledge-posts:hover .border-decor::after {
    width: 100%;
}

.knowledge-posts ul li {
    position: relative;
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.knowledge-posts ul li:last-child {
    margin: 0;
}

.knowledge-posts ul li:before {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 10px;
    background: var(--bg-secondary);
}

@media (max-width: 767.98px) {
    .knowledge-base-poster {
        padding-top: 6rem;
    }

    .knowledge-base-text {
        text-align: center;
    }

    .knowledge-base-box {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .knowledge-base-img {
        max-width: 60%;
        padding: 1rem 0;
    }

    .knowledge-search {
        position: relative;
        margin-top: -4rem;
    }
}

/*--------------------------------------------------------------
Index counter pushes
--------------------------------------------------------------*/

.index-about .card {
    position: relative;
}

.index-about .card-body {
    position: relative;
    text-align: center;
    padding: 5rem 2rem;
    color: #fff;
}

.index-about .card .bg-cover {
    border-radius: inherit;
}

@media (max-width: 767.98px) {
    .index-about .card-body {
        position: relative;
        text-align: center;
        padding: 3rem 2rem;
        color: #fff;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .index-about .card-body {
        position: relative;
        text-align: center;
        padding: 3rem;
        color: #fff;
    }
}

/*--------------------------------------------------------------
Archive  
--------------------------------------------------------------*/

.archive-poster {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.archive-poster .archive-poster-inner {
    position: relative;
}

@media (max-width: 767.98px) {
    .archive-poster {
        height: auto;
        padding: 6rem 0 3rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .archive-poster {
        height: 350px;
        padding: 2rem 0 0;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .archive-poster {
        height: 400px;
    }
}

/*--------------------------------------------------------------
page jimu 
--------------------------------------------------------------*/

.list-decimal ul {
    margin-left: 1.5rem;
    list-style-type: decimal;
}

.update-logs-line {
    position: relative;
    border-color: rgba(135, 150, 165, 0.1);
    padding: 0;
    margin: 0;
}

.logs-line-item {
    border-radius: 3px;
    position: relative;
    display: flex;
}

.logs-line-item>.logs-line-content {
    padding: 0 1rem 1.5rem;
}

.logs-line-item:last-child .logs-line-dot:after {
    display: none;
}

.logs-line-item.active .logs-line-dot:before {
    border-color: var(--border-primary);
    box-shadow: 0 0 0px 4px rgba(19, 126, 255, 0.2);
}

.logs-line-dot {
    position: relative;
    border-color: rgba(135, 150, 165, 0.1);
    padding: 0 1rem;
}

.logs-line-dot:before,
.logs-line-dot:after {
    content: "";
    position: absolute;
    border-color: inherit;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.logs-line-dot:after {
    width: 0;
    height: auto;
    top: 20px;
    bottom: -10px;
    border-right-width: 0;
    border-top-width: 0;
    border-bottom-width: 0;
    border-radius: 0;
}

.logs-line-date {
    font-size: 0.85em;
}

.bg-fly-circle1 {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(to right,
            rgba(100, 84, 239, 0.07) 0%,
            rgba(48, 33, 236, 0.04) 100%);
    -webkit-animation: move 2.5s linear infinite;
    animation: move 2.5s linear infinite;
}

.bg-fly-circle2 {
    position: absolute;
    left: 20%;
    top: 50%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(to right,
            rgba(100, 84, 239, 0.07) 0%,
            rgba(48, 33, 236, 0.01) 100%);
    -webkit-animation: move 3s linear infinite;
    animation: move 3s linear infinite;
}

.bg-fly-circle3 {
    position: absolute;
    right: 10px;
    top: 140px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: linear-gradient(to right,
            rgba(100, 84, 239, 0.1) 0%,
            rgba(48, 33, 236, 0.04) 100%);
    -webkit-animation: move 2.5s linear infinite;
    animation: move 2.5s linear infinite;
}

.bg-fly-circle4 {
    position: absolute;
    left: 65%;
    top: 50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(to right,
            rgba(100, 84, 239, 0.02) 0%,
            rgba(48, 33, 236, 0.04) 100%);
    -webkit-animation: move 3.5s linear infinite;
    animation: move 3.5s linear infinite;
}

@-webkit-keyframes move {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

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

@keyframes move {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

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

/*-------------------------------------------------------------
Page user heading &  menu
 -------------------------------------------------------------*/

.user-heading {
    padding: 2rem 2rem 0;
    margin: 0 0 4rem;
}

.user-menu .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.user-menu .item .goto {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.user-meta {
    position: relative;
    display: flex;
    align-items: center;
}

.user-meta .user-name {
    flex: 1 1 auto;
}

.user-vipcard {
    position: relative;
    bottom: -2rem;
    color: #fff;
}

.user-vipcard:after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -14px;
    height: 50px;
    border-radius: var(--border-radius-md);
    background-color: rgb(34 34 34 / 10%);
    z-index: -1;
}

.user-vipcard .user-vipcard-poster {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.user-vipcard .user-vipcard-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 2rem 6rem;
}

.user-vipcard .user-vipcard-inner b {
    color: #ffd6a3;
}

.user-vipcard .user-vipcard-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 767.98px) {
    .user-heading {
        padding: 1.5rem 1.5rem 0;
        margin: 0 0 3.5rem;
    }

    .user-menu .item {
        padding: 0.5rem 1.25rem;
    }

    .user-vipcard .user-vipcard-inner {
        padding: 1.25rem 1.25rem 1.25rem 5.5rem;
    }

    .user-vipcard .user-vipcard-icon {
        left: 20px;
    }
}

/*--------------------------------------------------------------
Page user center
--------------------------------------------------------------*/

.user-center {
    position: relative;
}

.user-center .shape1 {
    position: absolute;
    left: -40px;
    top: 40%;
    height: 100px;
    transform: translate(0, -5px);
    -webkit-animation: shapemoveY1 2s 0.1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation: shapemoveY1 2s 0.1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.user-center .shape2 {
    position: absolute;
    right: 30px;
    bottom: 50px;
    height: 100px;
    transform: translate(-15px, -15px);
    -webkit-animation: shapemoveY2 2s 0.1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
    animation: shapemoveY2 3s 0.1s infinite alternate cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@-webkit-keyframes shapemoveY1 {
    0% {
        transform: translate(0, -5px);
    }

    100% {
        transform: translate(0, 25px);
    }
}

@keyframes shapemoveY1 {
    0% {
        transform: translate(0, -5px);
    }

    100% {
        transform: translate(0, 25px);
    }
}

@-webkit-keyframes shapemoveY2 {
    0% {
        transform: translate(0, -15px);
    }

    100% {
        transform: translate(0, 0px);
    }
}

@keyframes shapemoveY2 {
    0% {
        transform: translate(0, -15px);
    }

    100% {
        transform: translate(0, 0px);
    }
}

/*--------------------------------------------------------------
Page user order
--------------------------------------------------------------*/

.user-orders .order-item {
    display: flex;
}

.user-orders .order-inner {
    flex: 1 1 auto;
    display: flex;
    width: 100%;
    flex-direction: column;
}

.user-orders .order-inner .order-content {
    position: relative;
}

.user-orders .order-inner .order-poster {
    position: relative;
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    background-color: var(--bg-light);
}

.user-orders .order-inner .order-info {
    position: absolute;
    left: 0;
    right: 0;
    top: 30px;
    bottom: 0;
    padding: 1.5rem 1.75rem;
    background-color: rgb(4 7 18 / 30%);
    -webkit-backdrop-filter: saturate(150%) blur(20px);
    backdrop-filter: saturate(150%) blur(20px);
}

.user-orders .order-inner .order-info a {
    color: #fff;
    text-shadow: 0 0px 15px rgb(5 14 48 / 10%);
}

.user-orders .order-inner .order-data {
    position: relative;
    padding: 1.5rem;
}

.user-orders .order-inner .order-data .data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 0.75rem;
    padding: 0 0 0.75rem;
    border-bottom: 1px dashed var(--border-light);
}

.user-orders .order-inner .order-data .data-overview {
    position: absolute;
    left: 0;
    right: 0;
    background-color: #fff;
    transition: all 0.3s;
    padding: 0 1.5rem 1.5rem;
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
    display: none;
    height: 0;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}

.user-orders .order-inner .order-data:hover .data-overview {
    height: auto;
    display: block;
    z-index: 1;
}

.user-orders .order-inner .order-data .data-overview .data-item:last-child {
    margin: 0;
    padding: 0;
    border-bottom: 0;
}

.user-orders .order-inner .order-footer {
    padding: 1.5rem;
}

.user-orders .order-inner .order-action {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.user-orders .order-inner .order-action .btn {
    min-width: 90px;
    margin: 0.25rem 0 0.25rem 0.5rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

@media (max-width: 991.98px) {
    .user-orders .order-inner .order-info {
        top: 20px;
    }
}

/*--------------------------------------------------------------
Page user order overview
--------------------------------------------------------------*/

.order-overview {
    position: relative;
}

.order-overview .mockup-browser {
    max-width: 100%;
    height: 200px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.order-overview ul li {
    position: relative;
    margin: 1.25rem 0 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--border-light);
}

.order-overview ul li:first-child {
    margin: 0;
    padding: 0;
    border-top: 0;
}

.order-overview ul li .order-product-content {
    position: relative;
    -ms-flex-align: center;
    flex: 1 1 auto;
    display: flex;
}

.order-overview ul li .order-product-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    -ms-flex-pack: center;
    padding: 0.25rem 1rem;
}

@media (max-width: 767.98px) {
    .order-overview ul li .order-product-content {
        flex-direction: column;
    }

    .order-overview ul li .order-product-body {
        padding: 0.75rem 0 0;
    }

    .order-overview ul li .order-product-mockup {
        width: 100%;
        height: 150px;
    }
}

/*-------------------------------------------------------------
 order quarter split line
 -------------------------------------------------------------*/

.order-content,
.order-footer {
    position: relative;
}

.order-content:after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: -1px;
    height: 2px;
    display: block;
    background-image: linear-gradient(90deg,
            var(--border-light) 60%,
            hsla(0, 0%, 100%, 0) 0);
    background-position: bottom;
    background-size: 9px 1px;
    background-repeat: repeat-x;
}

.order-content .order-quarter-shadow-top {
    width: 2px;
    height: 20px;
    position: absolute;
    bottom: -10px;
    left: -2px;
    background-color: var(--bg-body);
    display: none;
}

.order-content .order-quarter-bottom {
    width: 10px;
    height: 10px;
    background-color: var(--bg-light);
    border-top: 0 solid var(--bg-light);
    border-right: 0 solid var(--bg-light);
    position: absolute;
}

.order-content .order-quarter-bottom.order-quarter-left-bottom {
    left: -1px;
    bottom: -1px;
    border-radius: 0 10px 0 0;
    box-shadow: inset -5px 0 5px -3px rgb(0 0 0 / 15%);
}

.order-content .order-quarter-bottom.order-quarter-right-bottom {
    right: -1px;
    bottom: -1px;
    border-radius: 10px 0 0 0;
    box-shadow: inset 5px 0 5px -3px rgb(0 0 0 / 15%);
}

.order-footer .order-quarter-top {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--bg-light);
    border-top: 0 solid var(--bg-light);
    border-right: 0 solid var(--bg-light);
}

.order-footer .order-quarter-hide-box-shadow-bottom {
    position: absolute;
    top: -10px;
    right: -2px;
    width: 2px;
    height: 20px;
    background-color: var(--bg-body);
    /* display: none; */
}

.order-footer .order-quarter-top.order-quarter-left-top {
    left: -1px;
    top: -1px;
    border-radius: 0 0 10px 0;
    box-shadow: inset -5px 0 5px -3px rgb(0 0 0 / 15%);
}

.order-footer .order-quarter-top.order-quarter-right-top {
    right: -1px;
    top: -1px;
    border-radius: 0 0 0 10px;
    box-shadow: inset 5px 0 5px -3px rgb(0 0 0 / 15%);
}

/*-------------------------------------------------------------
 Page modify step
 -------------------------------------------------------------*/

.modify-row>div {
    display: flex;
}

.modify-row .modify-item {
    display: flex;
    flex: 1 1 auto;
    padding: 1.5rem;
    min-height: 15rem;
}

.modify-item .modify-box {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
}

/*-------------------------------------------------------------
 Page download step
 -------------------------------------------------------------*/

.step {
    width: 100%;
}

.step .step-item {
    flex: 1 1 0;
    margin-top: 0;
    min-height: 1rem;
    position: relative;
    text-align: center;
}

.step .step-item:not(:first-child)::before {
    background: var(--bg-light);
    content: "";
    height: 2px;
    left: -50%;
    position: absolute;
    top: 15px;
    width: 100%;
    transform: translateY(-50%);
}

.step .step-item span {
    display: inline-block;
    padding: 40px 10px 0;
}

.step .step-item span::before {
    content: "1";
    display: block;
    position: absolute;
    background: var(--bg-secondary);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1.125rem;
    left: 50%;
    top: 0px;
    transform: translateX(-50%);
    z-index: 2;
}

.step .step-item span::after {
    content: "";
    display: block;
    position: absolute;
    background: var(--bg-secondary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
    z-index: 1;
}

.step .step-item:nth-child(2) span::before {
    content: "2";
}

.step .step-item:nth-child(3) span::before {
    content: "3";
}

.step .step-item:nth-child(4) span::before {
    content: "4";
}

.step .step-item.active span::before {
    background: var(--bg-danger);
    color: #ffffff;
}

.step .step-item.active span::after {
    background: var(--bg-danger);
}

.step .step-item.active::before {
    background: var(--bg-danger);
}

/*--------------------------------------------------------------
Page cart info
--------------------------------------------------------------*/

.cart-confirm .confirm-info {
    max-width: 20rem;
    width: 100%;
}

/*--------------------------------------------------------------
Page cart overview
--------------------------------------------------------------*/

.cart-overview ul li {
    position: relative;
    margin: 1.25rem 0 0;
    padding: 1.25rem 0 0;
    border-top: 1px solid var(--border-light);
}

.cart-overview ul li:first-child {
    margin: 0;
    padding: 0;
    border-top: 0;
}

.cart-overview ul li .cart-product-content {
    position: relative;
    /* -webkit-box-align: center; */
    -ms-flex-align: center;
    /* align-items: center; */
    flex: 1 1 auto;
    display: flex;
}

.cart-overview ul li .cart-product-select {
    margin: 0 1rem 0 0;
}

.cart-overview ul li .cart-product-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    padding: 0.5rem 1.5rem;
}

.cart-overview ul li .cart-product-title {
    flex: 1 1 auto;
}

/*--------------------------------------------------------------
Page pricing main
--------------------------------------------------------------*/

.pricing-grid {
    display: flex;
}

.pricing-heading {
    margin-bottom: 1rem;
}

.pricing-box {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    word-wrap: break-word;
    border-radius: 0;
    border-bottom-left-radius: var(--border-radius-md);
    border-bottom-right-radius: var(--border-radius-md);
}

.pricing-block {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    word-wrap: break-word;
    padding: 2rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
}

.pricing-desc {
    margin-bottom: 20px;
}

.pricing-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    flex-wrap: wrap;
    padding: 0.5rem 0 0.5rem 1.75rem;
}

.pricing-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--bg-secondary);
    box-shadow: 0 0 0 5px rgb(88 95 114 / 10%);
    border-radius: 20px;
    margin: 0 1rem 0 0.375rem;
    flex-shrink: 0;
    transform: translate(0%, -50%);
}

.basic-heading {
    display: flex;
    height: 4px;
    margin-top: 44px;
    justify-content: center;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: var(--bg-dark);
}

.premium-heading {
    display: flex;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
    background: rgb(255, 237, 197);
    color: rgb(221 172 110);
    z-index: 2;
}

.premium-block {
    border-radius: var(--border-radius-md);
}

.premium-block .pricing-block {
    border-color: rgb(255, 237, 197);
}

.premium-block .pricing-list li:before {
    background-color: rgb(255 210 153);
    box-shadow: 0 0 0 5px rgb(255 237 197 / 65%);
}

/*--------------------------------------------------------------
Page nothing tips
--------------------------------------------------------------*/

.faq-item {
    position: relative;
    padding: 1.5rem;
    margin: 0 0 1.25rem;
}

.faq-item:hover {
    box-shadow: none;
}

.faq-item:last-child {
    margin: 0;
}

.faq-item-title {
    position: relative;
    padding: 0 0 0 2.5rem;
    cursor: pointer;
}

.faq-item-body {
    position: relative;
    display: none;
    color: var(--color-secondary);
    text-align: justify;
    line-height: 1.8;
    margin: 0.5rem 0 0;
}

.faq-item-body p {
    margin: 0 0 0.5rem;
}

.faq-item-body p:last-child {
    margin: 0;
}

.faq-item-icon {
    position: absolute;
    left: 0;
    top: -2px;
    display: block;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../fonts/2c2745f125fa45498cd065a7af57c221.woff");
}

/*--------------------------------------------------------------
Page ticket chat
--------------------------------------------------------------*/

.ticket-platform .ticket-item {
    position: relative;
    margin: 1rem 0;
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
}

.ticket-platform .ticket-item .ticket-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--color-secondary);
    margin: 0 0 0.5rem;
}

.ticket-platform .ticket-item .ticket-content {
    display: flex;
    flex: 1 1 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-direction: row;
}

.ticket-platform .ticket-item .ticket-body {
    flex: 1 1 auto;
}

.ticket-platform .ticket-item .ticket-title {
    margin: 0 0 1rem;
}

.ticket-info .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid transparent;
    border-top: 1px dotted var(--border-light);
}

.ticket-info .item:first-child {
    border-top: 0;
}

.chat-item {
    position: relative;
    display: flex;
    margin: 0 0 1.5rem;
}

.chat-item:last-child {
    margin: 0;
}

.chat-item .chat-content {
    flex: 1 1 auto;
    margin: 0 0 0 1rem;
}

.chat-item .chat-body {
    position: relative;
    font-size: 0.875rem;
    line-height: 1.85;
    text-align: justify;
    padding: 0.375rem 0.75rem;
    background-color: var(--outline-light);
    border-radius: var(--border-radius-sm);
    border-top-left-radius: 0;
    display: inline-block;
    word-wrap: break-word;
    word-break: break-word;
}

.chat-item .chat-body img {
    display: block;
    max-width: 50%;
    margin: 0.5rem 0 0;
}

.chat-item .chat-images img {
    width: 100%;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid var(--border-light);
}

.chat-item.mine {
    justify-content: flex-end;
}

.chat-item.mine .chat-avatar {
    order: 2;
}

.chat-item.mine .chat-content {
    text-align: right;
    margin: 0 1rem 0 0;
    order: 1;
}

.chat-item.mine .chat-body {
    color: #fff;
    background-color: var(--bg-primary);
    border-radius: var(--border-radius-sm);
    border-top-right-radius: 0;
}

.chat-item.mine .chat-images .row {
    justify-content: flex-end;
}

.chat-item.mine .chat-footer {
    text-align: right;
}

@media (max-width: 767.98px) {
    .chat-item .chat-avatar {
        width: 32px !important;
        height: 32px !important;
    }

    .chat-item .chat-body {
        text-align: justify;
        padding: 0.625rem 1rem;
    }

    .chat-item .chat-content {
        margin: 0 0 0 0.5rem;
    }

    .chat-item .chat-images img {
        height: 80px;
    }

    .chat-item.mine .chat-content {
        margin: 0 0.5rem 0 0;
    }
}

/*--------------------------------------------------------------
Page nothing tips
--------------------------------------------------------------*/

.nothing {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nothing img {
    width: 120px;
    height: 120px;
}

@media (max-width: 767px) {
    .nothing img {
        width: 80px;
        height: 80px;
    }
}

/* -------------------------------------------------------------------------- */

/* Content card
/* -------------------------------------------------------------------------- */

.content-card {
    padding: 3rem;
}

@media (max-width: 767.98px) {
    .content-card {
        padding: 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .content-card {
        padding: 2rem;
    }
}

/* -------------------------------------------------------------------------- */

/* Entry Content
/* -------------------------------------------------------------------------- */

.post-content {
    position: relative;
    font-size: 1rem;
    line-height: 1.85;
    word-break: normal;
    word-wrap: break-word;
}

.post-content>*:first-child {
    margin-top: 0;
}

.post-content>*:last-child {
    margin-bottom: 0;
}

.post-content a:hover,
.post-content a:focus {
    text-decoration: none;
}

.post-content p {
    margin: 0 0 1.5rem;
}

.post-content hr {
    margin: 4rem auto;
}

/* Font Families ----------------------------- */

.post-content h1 {
    font-size: 2rem;
}

.post-content h2 {
    font-size: 1.5rem;
}

.post-content h3 {
    font-size: 1.25rem;
}

.post-content h4 {
    font-size: 1.125rem;
}

.post-content h5 {
    font-size: 1.0625rem;
}

.post-content h6 {
    font-size: 1rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    margin: 3.75rem auto 1.5rem;
}

@media (max-width: 767.98px) {

    .post-content h1,
    .post-content h2,
    .post-content h3 {
        margin: 3.5rem auto 1.25rem;
    }

    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin: 3.5rem auto 1.25rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .post-content h1,
    .post-content h2,
    .post-content h3 {
        margin: 3.5rem auto 1.25rem;
    }

    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin: 3.5rem auto 1.25rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .post-content h1,
    .post-content h2,
    .post-content h3 {
        margin: 3.5rem auto 1.25rem;
    }

    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin: 3.5rem auto 1.25rem;
    }
}

/* Font link ----------------------------- */

.post-content p>a,
.post-content li>a,
.post-content dd>a,
.post-content td a,
.post-content th a,
.post-content h1 a,
.post-content h2 a,
.post-content h3 a,
.post-content h4 a,
.post-content h5 a,
.post-content h6 a,
.post-content em a,
.post-content strong a {
    box-shadow: 0 -1px 0 0 var(--bg-primary, #000) inset;
    transition: 0.3s ease-in;
}

.post-content p>a:hover,
.post-content li>a:hover,
.post-content dd>a:hover,
.post-content td a:hover,
.post-content th a:hover,
.post-content h1 a:hover,
.post-content h2 a:hover,
.post-content h3 a:hover,
.post-content h4 a:hover,
.post-content h5 a:hover,
.post-content h6 a:hover,
.post-content em a:hover,
.post-content strong a:hover {
    opacity: 1;
    box-shadow: 0 -1px 0 0 var(--bg-dark, #000) inset;
}

/* Post quote style ----------------------------- */

.wp-block-quote a,
.wp-block-quote p>a {
    border-color: var(--border-light);
}

.wp-block-quote a,
.wp-block-quote a:hover {
    color: inherit;
}

/* Alignment Classes ------------------------- */

.post-content .alignnone,
.wp-block-image,
.wp-block-embed {
    margin: 40px 0;
}

.alignright,
a img.alignright,
.wp-block-image .alignright {
    float: right;
    margin: 4px 0 20px 30px;
}

.alignleft,
a img.alignleft,
.wp-block-image .alignleft {
    float: left;
    margin: 4px 30px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 40px auto;
}

.aligncenter>img,
div.aligncenter>img {
    margin: 0 auto;
}

p img.alignnone,
img.alignnone {
    display: block;
    margin: 40px 0;
}

/*--------------------------------------------------------------
Ul - style 
--------------------------------------------------------------*/

.post-content ul,
.post-content ol {
    padding: 0 0 0 1.25rem;
    margin-bottom: 1.5rem;
}

.post-content ul {
    list-style: disc;
}

.post-content ul ul,
.post-content ol ol,
.post-content ul ol,
.post-content ol ul {
    margin-bottom: 1rem;
}

.post-content ul ul {
    list-style: circle;
    margin: 0.75rem 0;
}

.post-content ul ul ul {
    list-style: square;
}

.post-content ol {
    list-style: decimal;
}

.post-content ol ol {
    list-style: lower-alpha;
}

.post-content ol ol ol {
    list-style: lower-roman;
}

.post-content li {
    line-height: 1.5;
    margin: 0 0 1rem;
}

.post-content li li {
    margin: 0 0 0.5rem;
}

.post-content li img {
    display: inline-block;
}

/*--------------------------------------------------------------
    block table style
--------------------------------------------------------------*/

.post-content table {
    margin: 2rem 0;
}

.wp-block-table {
    margin: 0;
}

.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
    display: table;
    width: auto;
}

.wp-block-table.aligncenter td,
.wp-block-table.aligncenter th,
.wp-block-table.alignleft td,
.wp-block-table.alignleft th,
.wp-block-table.alignright td,
.wp-block-table.alignright th {
    word-break: break-word;
}

.wp-block-table.is-style-stripes {
    border-spacing: 0;
    border-collapse: inherit;
    background-color: transparent;
    border-bottom: 1px solid var(--border-light);
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: var(--bg-light);
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
    border-color: transparent;
}

.wp-block-table table[style*="border-style"]>*,
.wp-block-table table[style*="border-style"] td,
.wp-block-table table[style*="border-style"] th,
.wp-block-table table[style*="border-style"] tr {
    border-style: inherit;
}

.wp-block-table table[style*="border-width"]>*,
.wp-block-table table[style*="border-width"] td,
.wp-block-table table[style*="border-width"] th,
.wp-block-table table[style*="border-width"] tr {
    border-width: inherit;
}

/*--------------------------------------------------------------
Single btn like 

--------------------------------------------------------------*/

.btn-like.current {
    background: var(--bg-primary);
    color: #ffffff;
    border-color: var(--border-primary);
    box-shadow: none;
}

.btn-like.current span {
    left: -0.75rem;
    transform: none;
}

.btn-like.current i.icon-like-fill {
    opacity: 1;
    right: -2rem;
}

/*-------------------------------------------------------------
 Single modules
-------------------------------------------------------------*/

.detail-tab .nav-item .nav-link {
    position: relative;
    padding: 1rem 0;
    margin: 0 2rem 0 0;
}

.detail-tab .nav-item .nav-link.active {
    color: var(--color-primary);
}

.detail-tab .nav-item .nav-link.active:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--bg-primary);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--bg-primary);
}

/* -------------------------------- 
Signle sign other service
-------------------------------- */

.sprit_falling {
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    transform: rotate(-45deg);
    width: 60%;
    z-index: -1;
}

.sprit_falling span {
    background: rgba(80, 64, 160, 0.5);
    height: 4px;
    position: absolute;
    width: 69px;
}

.sprit_falling span:nth-child(1) {
    -webkit-animation: 2s linear -5s normal none infinite running lf;
    animation: 2s linear -5s normal none infinite running lf;
    top: 20%;
}

.sprit_falling span:nth-child(2) {
    -webkit-animation: 1.5s linear -1s normal none infinite running lf2;
    animation: 1.5s linear -1s normal none infinite running lf2;
    top: 40%;
}

.sprit_falling span:nth-child(3) {
    -webkit-animation: 1s linear 0s normal none infinite running lf3;
    animation: 1s linear 0s normal none infinite running lf3;
    top: 60%;
}

.sprit_falling span:nth-child(4) {
    -webkit-animation: 1.5s linear -3s normal none infinite running lf4;
    animation: 1.5s linear -3s normal none infinite running lf4;
    top: 80%;
}

@-webkit-keyframes lf {
    0% {
        left: 200%;
    }

    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes lf {
    0% {
        left: 200%;
    }

    100% {
        left: -200%;
        opacity: 0;
    }
}

@-webkit-keyframes lf2 {
    0% {
        left: 200%;
    }

    100% {
        left: -200%;
        opacity: 0;
    }
}

@keyframes lf2 {
    0% {
        left: 200%;
    }

    100% {
        left: -200%;
        opacity: 0;
    }
}

@-webkit-keyframes lf3 {
    0% {
        left: 200%;
    }

    100% {
        left: -100%;
        opacity: 0;
    }
}

@keyframes lf3 {
    0% {
        left: 200%;
    }

    100% {
        left: -100%;
        opacity: 0;
    }
}

@-webkit-keyframes lf4 {
    0% {
        left: 200%;
    }

    100% {
        left: -100%;
        opacity: 0;
    }
}

@keyframes lf4 {
    0% {
        left: 200%;
    }

    100% {
        left: -100%;
        opacity: 0;
    }
}

.round-box {
    overflow: hidden;
    position: relative;
}

.round {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.4;
}

.round {
    width: 105vh;
    height: 105vh;
    bottom: auto;
    top: -50vh;
    left: auto;
    right: -25%;
    opacity: 0.3;
}

.round.r-bottom {
    bottom: -50vh;
    top: auto;
    left: -25%;
    right: auto;
}

.round .r1,
.round .r2,
.round .r3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0px 0px 34px -2px rgba(0, 0, 0, 0.09);
}

.round .r1 {
    top: 10%;
    bottom: 10%;
    left: 10%;
    right: 10%;
    background: rgba(255, 255, 255, 0.14);
}

.round .r2 {
    top: 20%;
    bottom: 20%;
    left: 20%;
    right: 20%;
    background: rgba(255, 255, 255, 0.16);
}

.round .r3 {
    top: 30%;
    bottom: 30%;
    left: 30%;
    right: 30%;
    background: rgba(255, 255, 255, 0.11);
}

/*--------------------------------------------------------------
footer
--------------------------------------------------------------*/

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

.footer-desc {
    text-align: justify;
}

@media (min-width: 1400px) {
    .footer-desc {
        max-width: 80%;
    }
}

.footer-contact {
    flex-shrink: 0;
}

.footer-icon {
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.5rem;
}

.footer-menu {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 2rem;
}

.footer-menu a {
    position: relative;
    display: block;
    padding: 0 0.75rem 0 0;
    margin: 0.25rem 0.75rem 0 0;
}

.footer-menu a:hover,
.footer-menu a:focus {
    color: var(--color-primary);
}

.footer-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 2px;
    height: 10px;
    background-color: var(--border-light);
    transform: translate(0%, -50%);
}

.footer-menu a:last-child::after {
    display: none;
}

.footer-copyright a {
    color: inherit;
}

.footer-links {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 0 2rem;
}

.footer-links .links-item {
    position: relative;
    display: block;
    color: var(--color-muted);
    padding: 0 0.75rem 0 0;
    margin: 0.25rem 0.75rem 0 0;
}

.footer-links .links-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 2px;
    height: 10px;
    background-color: var(--border-light);
    transform: translate(0%, -50%);
}

.footer-links .links-item:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .footer-inner {
        flex-direction: column;
    }
}

/*--------------------------------------------------------------
## Pagination (WordPress CSS classes)
--------------------------------------------------------------*/

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    word-wrap: normal !important;
}

.pagination {
    position: relative;
    display: block;
    margin: 1.75rem 0 0;
}

.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-numbers {
    min-width: 40px;
    height: 40px;
    font-family: Roboto Mono, PingFang SC, Microsoft YaHei, Helvetica Neue,
        Helvetica, Arial, sans-serif;
    line-height: 40px;
    text-align: center;
    margin: 0 0.375rem 0;
    color: var(--color-muted);
    border-radius: var(--border-radius-sm);
    background-color: var(--btn-light);
    transition: all 0.25s;
}

.page-numbers.dots {
    min-width: auto;
    height: 40px;
    line-height: 40px;
    margin: 0 0.375rem 0;
    background-color: transparent;
}

.page-numbers.current,
.page-numbers.prev,
.page-numbers.next {
    display: inline-block;
}

.page-numbers.prev,
.page-numbers.next {
    display: inline-block;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: var(--btn-light);
}

.page-numbers:hover,
.page-numbers.current {
    color: #fff;
    background-color: var(--bg-primary);
}

@media (max-width: 767.98px) {
    .page-numbers {
        min-width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: var(--border-radius-sm);
    }
}

@media (min-width: 768px) {
    .pagination {
        margin: 2rem 0 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .page-numbers {
        min-width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

/*--------------------------------------------------------------
    Modal CSS
--------------------------------------------------------------*/

.nice-modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.nice-modal-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s 0s, visibility 0s 0s;
    z-index: 999;
}

.nice-modal-overlay {
    position: absolute;
    background-color: rgba(94, 110, 141, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    transition-duration: 0.3s;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.nice-modal-open .nice-modal-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/*--------------------------------------------------------------
    Modal close btn
--------------------------------------------------------------*/

.nice-modal-close {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    cursor: pointer;
    text-align: center;
    transform: translateY(150%);
}

.nice-modal-close .svg-white {
    display: inline-block;
    background-image: url("../fonts/1171025d255c48c49c6317c9dec8af26.woff");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    vertical-align: middle;
    width: 28px;
    height: 28px;
}

/*--------------------------------------------------------------
    Modal body
--------------------------------------------------------------*/

.nice-modal-body {
    position: relative;
    width: 90%;
    max-width: 450px;
    transform: translateY(-40px);
    transition-property: transform;
    transition-duration: 0.3s;
}

@media (max-width: 575.98px) {
    .nice-modal-body {
        max-width: 93.3333%;
    }
}

.nice-modal-open .nice-modal-body {
    pointer-events: auto;
    z-index: 1000;
}

.nice-modal-md .nice-modal-body {
    max-width: 540px;
    width: 100%;
}

.nice-modal-sm .nice-modal-body {
    max-width: 300px;
    width: auto;
}

/*--------------------------------------------------------------
    Modal body animation
--------------------------------------------------------------*/

.nice-modal.nice-modal-open .nice-modal-body {
    transform: translateY(0);
}

/*--------------------------------------------------------------
    Modal content
--------------------------------------------------------------*/

.nice-modal-content {
    position: relative;
    background: #fff;
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 50px -5px rgba(6, 39, 67, 0.12);
}

@media (min-width: 1200px) {
    .nice-modal-content {
        padding: 1.75rem;
    }
}

.nice-modal-lg .nice-modal-content {
    padding: 0;
    border: 0;
    border-radius: 0;
}

.nice-modal-sm .nice-modal-content {
    padding: 2rem;
    padding: 1.75rem 2.5rem;
}

@media (max-width: 767.98px) {
    .nice-modal-content {
        padding: 1rem;
    }
}

/*--------------------------------------------------------------
    Toast CSS
--------------------------------------------------------------*/

.nice-toast {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.nice-toast-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s 0s, visibility 0s 0s;
    z-index: 999;
}

/*--------------------------------------------------------------
    Toast body
--------------------------------------------------------------*/

.nice-toast-body {
    position: relative;
    width: 90%;
    max-width: 450px;
    transform: translateY(-40px);
    transition-property: transform;
    transition-duration: 0.3s;
}

@media (max-width: 575.98px) {
    .nice-toast-body {
        max-width: 93.3333%;
    }
}

.nice-toast-open .nice-toast-body {
    pointer-events: auto;
    z-index: 1000;
}

/*--------------------------------------------------------------
    Toast body animation
--------------------------------------------------------------*/

.nice-toast.nice-toast-open .nice-toast-body {
    transform: translateY(0);
}

/*--------------------------------------------------------------
    Toast content
--------------------------------------------------------------*/

.nice-toast-content {
    position: relative;
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius-md);
    background: rgba(42, 43, 43, 0.9);
}

/*--------------------------------------------------------------
    Toast content
--------------------------------------------------------------*/

.nice-toast-error .nice-toast-content {
    padding: 1rem 2.5rem;
    border-width: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
}

/* -------------------------------- 
Single product thumbs
-------------------------------- */

.theme-introduce {
    padding: 7rem 0 2.5rem;
}

.theme-mockups {
    position: relative;
}

.theme-mockups .mockup-mobile {
    width: 250px;
}

.theme-mockups .mockup-mobile .mockup-poster {
    left: 5%;
    right: 5%;
    top: 2%;
    bottom: 2%;
}

.theme-introduce .theme-mockups .mockup-mobile {
    width: 200px;
}

@media (max-width: 767.98px) {
    .theme-introduce {
        padding: 5rem 0 2rem;
    }

    .theme-mockups .mockup-mobile {
        width: 100px;
        bottom: -15px;
    }

    .theme-mockups .mockup-mobile .mockup-poster {
        left: 4px;
        right: 4px;
        top: 3px;
        bottom: 3px;
        border-radius: var(--border-radius-md);
    }

    .theme-introduce .theme-mockups .mockup-mobile {
        width: 100px;
    }

}

@media (min-width: 768px) and (max-width: 991.98px) {
    .theme-introduce {
        padding: 6rem 0 2rem;
    }

    .theme-mockups .mockup-mobile {
        width: 180px;
        bottom: -15px;
    }

    .theme-introduce .theme-mockups .mockup-mobile {
        width: 180px;
    }

    .theme-mockups .mockup-mobile .mockup-poster {
        left: 6px;
        right: 6px;
        top: 5px;
        bottom: 5px;
        border-radius: var(--border-radius-md);
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .theme-mockups .mockup-browser {
        max-width: 95;
    }

    .theme-mockups .mockup-mobile {
        width: 200px;
        bottom: -15px;
    }

    .theme-mockups .mockup-mobile .mockup-poster {
        left: 6px;
        right: 6px;
        top: 5px;
        bottom: 5px;
        border-radius: var(--border-radius-md);
    }

    .theme-introduce .theme-mockups .mockup-mobile {
        width: 135px;
    }

}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .theme-mockups .mockup-mobile {
        width: 200px;
        bottom: -15px;
    }

    .theme-mockups .mockup-mobile .mockup-poster {
        left: 7px;
        right: 7px;
        top: 6px;
        bottom: 6px;
        border-radius: var(--border-radius-md);
    }

    .theme-introduce .theme-mockups .mockup-mobile {
        width: 160px;
    }
}

@media (max-width: 991.98px) {
    .theme-action {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1rem;
        background-color: #fff;
        z-index: 9999;
        box-shadow: 0 0 10px 0 rgb(41 43 43 / 15%);
    }

    .theme-action .btn {
        padding: 0.5rem 0.5rem;
        font-size: 0.875rem;
        border-radius: 0.375rem;
    }
}

/* -------------------------------- 
Single product summary
-------------------------------- */

.theme-summary .desc .promotion {
    color: var(--color-primary);
}

/* -------------------------------- 
Single product servicetags
-------------------------------- */

.theme-servicetags {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0 0;
}

.theme-servicetags .item {
    margin: 0.5rem 1rem 0 0;
}

.theme-servicetags .item i {
    position: relative;
    font-size: 1.25rem;
    top: -0.0625em;
}

/* -------------------------------- 
fileuploader style 
-------------------------------- */

.fileuploader.fileuploader-theme-thumbnails {
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
}

.fileuploader-theme-thumbnails .fileuploader-thumbnails-input,
.fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item {
    position: relative;
    display: inline-block;
    margin: 5px 0 0 5px;
    padding: 0;
    vertical-align: top;
    width: 25%;
    width: calc(25% - 5px);
    padding-top: calc(25% - 5px);
}

.fileuploader-theme-thumbnails .fileuploader-thumbnails-input-inner,
.fileuploader-theme-thumbnails .fileuploader-item-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-sm);
}

@media (min-width: 1400px) {

    .edit-main .fileuploader-theme-thumbnails .fileuploader-thumbnails-input,
    .edit-main .fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item {
        width: 150px;
        padding-top: 150px;
    }
}

/* input */

.fileuploader-theme-thumbnails .fileuploader-thumbnails-input-inner {
    font-size: 30px;
    text-align: center;
    color: var(--color-muted);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.2s ease;
}

.fileuploader-theme-thumbnails .fileuploader-thumbnails-input-inner:hover {
    color: var(--color-dark);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
}

.fileuploader-theme-thumbnails .fileuploader-thumbnails-input-inner:active,
.fileuploader-theme-thumbnails .fileuploader-dragging .fileuploader-thumbnails-input-inner {
    background: var(--bg-light);
    border: 1px solid var(--border-muted);
}

.fileuploader-theme-thumbnails .fileuploader-thumbnails-input-inner i {
    position: absolute;
    font-style: normal;
    left: 0;
    top: 0;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/* items */

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-items-list {
    margin: -5px 0 0 -5px;
}

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item {
    border-bottom: 0;
}

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item:last-child {
    margin-bottom: 0;
}

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item-inner {
    background: rgba(0, 0, 0, 0.02);
    overflow: hidden;
    z-index: 1;
}

.fileuploader-theme-thumbnails .fileuploader-item-inner .thumbnail-holder,
.fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item-image {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item-image {
    position: relative;
    background: #ffff;
    text-align: center;
    overflow: hidden;
}

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item .fileuploader-item-icon {
    background-size: 30%;
    border-radius: var(--border-radius-xs);
}

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item .fileuploader-item-icon i {
    display: none;
}

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item .fileuploader-action-popup {
    border-radius: var(--border-radius-sm);
    z-index: 1;
}

.fileuploader-theme-thumbnails .fileuploader-item .type-holder {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 3px 6px;
    background: var(--bg-secondary);
    text-transform: uppercase;
    color: #fff;
    font-size: 0.5rem;
    line-height: 1;
    border-radius: inherit;
    z-index: 2;
}

.fileuploader-theme-thumbnails .fileuploader-item .actions-holder {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    height: 18px;
}

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item .fileuploader-action {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item .fileuploader-action+.fileuploader-action {
    margin-left: 8px;
}

.fileuploader-theme-thumbnails .fileuploader-item .content-holder {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

.fileuploader-theme-thumbnails .fileuploader-item .content-holder h5 {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.fileuploader-theme-thumbnails .fileuploader-item .content-holder span {
    display: block;
    font-size: 0.5rem;
    color: var(--color-light);
}

.fileuploader-theme-thumbnails .close-fileuploader {
    cursor: pointer;
}

/* uploading */

.fileuploader-theme-thumbnails .fileuploader-item .progress-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    z-index: 1;
}

.fileuploader-theme-thumbnails .fileuploader-item .progress-holder .fileuploader-progressbar {
    position: relative;
    top: 50%;
    width: 80%;
    height: 6px;
    margin: 0 auto;
    margin-top: -6px;
    background: var(--bg-light);
}

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item.upload-failed .fileuploader-item-inner {
    background: #db6868;
}

/* sorter */

.fileuploader-theme-thumbnails .fileuploader-items .fileuploader-item.sorting {
    padding-top: 0;
    margin: 0;
}

.fileuploader-theme-thumbnails .fileuploader-sorter-placeholder {
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
}

/* action */

.fileuploader-items .fileuploader-item .fileuploader-action {
    width: 18px;
    height: 18px;
}

.fileuploader-items .fileuploader-item .fileuploader-action i {
    line-height: 1;
}

.fileuploader-items .fileuploader-item .fileuploader-action.fileuploader-action-success {
    background: var(--btn-success);
}

.fileuploader-items .fileuploader-item .fileuploader-action.fileuploader-action-success:hover {
    background: var(--btn-danger);
}

.fileuploader-items .fileuploader-item .fileuploader-action.fileuploader-action-remove.fileuploader-action-success i:before {
    content: "" !important;
    position: relative;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
    top: 0px;
    background-image: url("../fonts/d66ac0a4e3af4f53a35961cbb54fac09.woff");
}

/** total popup svg icon**/

.total-icon-payment {
    width: 100%;
    height: 80px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto 0.5rem;
}

.total-icon-alipay {
    background-image: url("../fonts/e4ebaf09c4634bca9f8339cf1dfb88b0.woff");
}

.total-icon-wechat {
    background-image: url("../fonts/805c5b82de9747d18a99f43761266ccf.woff");
}

/** page download **/

.download-list .action {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .download-list .action a {
        min-width: auto;
        width: 100%;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/** page service **/

.service-list {
    padding-left: 1.5rem;
}

.service-list li {
    position: relative;
    margin: 0.375rem 0;
    padding-left: 2rem;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 9px;
    width: 6px;
    height: 6px;
    background-color: var(--bg-secondary);
    border-radius: 10px;
}

/** wechat login **/

.wechat-login-tips {
    font-size: 0.8125rem;
    padding: 0.625rem 1.75rem;
    background-color: #e8f7ea;
    color: #2b9d35;
    border-radius: 30px;
}

/** tawk widget position **/

.chat-widget-position {
    right: 20px;
    bottom: 100px;
}

/*--------------------------------------------------------------
to top
--------------------------------------------------------------*/

.fixed-button-widget {
    position: fixed;
    right: 0;
    display: block;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.25s;
}

.fixed-button-widget li {
    position: relative;
}

.fixed-button-widget li .btn-link {
    border: 1px solid #fff;
    box-shadow: none !important;
}

.fixed-button-widget li .btn-link:hover,
.fixed-button-widget li .btn-link:focus,
.fixed-button-widget li .btn-link:active,
.fixed-button-widget li .btn-link.active {
    box-shadow: 8px 8px 16px rgba(55, 84, 170, 0), -8px -8px 20px rgba(255, 255, 255, 1), inset 0px 0px 4px rgba(255, 255, 255, 0), inset 8px 8px 16px rgba(55, 84, 170, .15), inset -8px -8px 20px rgba(255, 255, 255, 1), 0px 0px 4px rgba(255, 255, 255, 0) !important
}

.fixed-button-widget.active {
    /* opacity: .5; */
    /* right: 0; */
    /* -webkit-transform: translate(100%,-50%); */
    /* transform: translate(100%,-50%); */
}

.fixed-button-widget .back-to-top {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.fixed-button-widget .back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.fixed-button-widget a span {
    overflow: hidden;
}

.fixed-button-widget a:hover i {
    -webkit-animation: toBottomFromTop 0.5s forwards;
    animation: toBottomFromTop 0.5s forwards;
}

@-webkit-keyframes toBottomFromTop {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@media (max-width: 767.98px) {
    .fixed-button-widget {
        top: 70%;
    }

    .fixed-button-widget a.btn-icon.btn-lg {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.375rem;
    }
}

@media (min-width: 768px) {
    [tooltip] {
        position: relative;
        /* opinion 1 */
    }

    /* Applies to all tooltips */
    [tooltip]::after {
        text-transform: none;
        font-size: 13px;
        line-height: 1;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        pointer-events: none;
        position: absolute;
        display: none;
        opacity: 0;
    }

    [tooltip]::after {
        content: attr(tooltip);
        text-align: center;
        min-width: 3em;
        max-width: 21em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 10px 20px;
        border-radius: var(--border-radius-lg);
        background: var(--bg-light);
        background: linear-gradient(180deg, var(--bg-light), #fff);
        border: 2px solid #fff;
        box-shadow: 6px 6px 15px 0 rgb(136 167 225 / 10%), -6px -6px 15px 0 #fff;
        z-index: 1000;
        /* absurdity 2 */
    }

    /* Make the tooltips respond to hover */
    [tooltip]:hover::after {
        display: block;
    }

    /* don't show empty tooltips */
    [tooltip=""]::after {
        display: none !important;
    }

    /* FLOW: UP */
    [tooltip]:not([flow])::after,
    [tooltip][flow^="up"]::after {
        bottom: calc(100% + 5px);
    }

    [tooltip]:not([flow])::after,
    [tooltip][flow^="up"]::after {
        left: 50%;
        transform: translate(-50%, -0.5em);
    }

    /* FLOW: DOWN */
    [tooltip][flow^="down"]::after {
        top: calc(100% + 5px);
    }

    [tooltip][flow^="down"]::after {
        left: 50%;
        transform: translate(-50%, 0.5em);
    }

    /* FLOW: LEFT */
    [tooltip][flow^="left"]::after {
        top: 50%;
        right: calc(100% + 5px);
        transform: translate(-0.5em, -50%);
    }

    /* FLOW: RIGHT */
    [tooltip][flow^="right"]::after {
        top: 50%;
        left: calc(100% + 5px);
        transform: translate(0.5em, -50%);
    }

    /* KEYFRAMES */
    @-webkit-keyframes tooltips-vert {
        to {
            opacity: 0.9;
            transform: translate(-50%, 0);
        }
    }

    @keyframes tooltips-vert {
        to {
            opacity: 0.9;
            transform: translate(-50%, 0);
        }
    }

    @-webkit-keyframes tooltips-horz {
        to {
            opacity: 0.9;
            transform: translate(0, -50%);
        }
    }

    @keyframes tooltips-horz {
        to {
            opacity: 0.9;
            transform: translate(0, -50%);
        }
    }

    /* FX All The Things */
    [tooltip]:not([flow]):hover::after,
    [tooltip][flow^="up"]:hover::after,
    [tooltip][flow^="down"]:hover::after {
        -webkit-animation: tooltips-vert 300ms ease-out forwards;
        animation: tooltips-vert 300ms ease-out forwards;
    }

    [tooltip][flow^="left"]:hover::after,
    [tooltip][flow^="right"]:hover::after {
        -webkit-animation: tooltips-horz 300ms ease-out forwards;
        animation: tooltips-horz 300ms ease-out forwards;
    }
}

.gslide-description {
    display: none !important;
}

/*--------------------------------------------------------------
miniapp 
--------------------------------------------------------------*/
.miniapp-details-heading {
    padding: 12rem 0 4rem;
}

.miniapp-details-heading .details-heading-content {
    display: flex;
}

.miniapp-details-heading .details-heading-content-image {
    position: relative;
}

.miniapp-details-heading .details-heading-content-image-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    padding: 15px;
}

.miniapp-details-heading .details-heading-content-image-bg {
    width: 100%;
    text-align: center;
}

.miniapp-details-heading .details-heading-content-image-1 {
    position: absolute;
    width: 32%;
    max-width: 32%;
    top: 2%;
    z-index: 2;
    left: 16%;
}

.miniapp-details-heading .details-heading-content-image-2 {
    position: absolute;
    width: 46%;
    max-width: 46%;
    top: -3%;
    z-index: 3;
    left: 38%;
}

.miniapp-details-heading .details-heading-content-column {
    display: flex;
    flex-direction: column;
}

.miniapp-details-heading .details-heading-content-column-inner {
    margin-top: auto;
    margin-bottom: auto;
}

.miniapp-details-heading .details-heading-content-column-item {
    display: flex;
    flex: 1 1 auto;
    margin-bottom: 3rem;
}

.miniapp-details-heading .details-heading-content-column-item:last-child {
    margin-bottom: 0;
}

.miniapp-details-heading .details-heading-content-column-icon {
    margin-right: 1rem;
}

.miniapp-details-heading .details-heading-content-line {
    position: absolute;
    width: 18%;
    max-width: 18%;
    bottom: -38%;
    left: 11%;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .miniapp-details-heading {
        padding: 7rem 0 0;
    }

    .miniapp-details-heading .details-heading-content-image-inner {
        padding: 20px;
    }

    .miniapp-details-heading .details-heading-content-image-1 {
        width: 34%;
        max-width: 34%;
        top: 2%;
        left: 12%;
    }

    .miniapp-details-heading .details-heading-content-image-2 {
        width: 48%;
        max-width: 48%;
        top: 0%;
        z-index: 3;
        left: 40%;
    }

    .miniapp-details-heading .details-heading-content-line {
        display: none;
    }

    .miniapp-details-heading .details-heading-content-column {
        align-items: center;
    }

    .miniapp-details-heading .details-heading-content-column-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }

    .miniapp-details-heading .details-heading-content-column-icon {
        margin: 0 0 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .miniapp-details-heading .details-heading-content-image-inner {
        padding: 20px;
    }

    .miniapp-details-heading .details-heading-content-image-1 {
        width: 33%;
        max-width: 35%;
        top: 4%;
        left: 12%;
    }

    .miniapp-details-heading .details-heading-content-image-2 {
        width: 48%;
        max-width: 48%;
        top: 1%;
        z-index: 3;
        left: 40%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .miniapp-details-heading .details-heading-content-image-inner {
        padding: 20px;
    }

    .miniapp-details-heading .details-heading-content-image-1 {
        width: 35%;
        max-width: 35%;
        top: 1%;
        left: 12%;
    }

    .miniapp-details-heading .details-heading-content-image-2 {
        width: 48%;
        max-width: 48%;
        top: 0%;
        z-index: 3;
        left: 40%;
    }
}

/*--------------------------------------------------------------
miniapp details section
--------------------------------------------------------------*/
.miniapp-details-section {
    position: relative;
    padding: 5rem 0;
}

.miniapp-details-section .section-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
}

.miniapp-details-section .section-shape.section-shape-top {
    top: -1px;
}

.miniapp-details-section .section-shape.section-shape-bottom {
    bottom: -1px;
    transform: rotate(180deg);
}

.miniapp-details-section .section-shape svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
}

.miniapp-details-section .section-shape .section-shape-fill {
    fill: #fff;
    transform-origin: center;
    transform: rotateY(0deg);
}

@media (max-width: 767.98px) {
    .miniapp-details-section .section-shape svg {
        height: 30px;
    }
}

@media (max-width: 1199.98px) {
    .miniapp-details-section {
        padding: 4rem 0;
    }
}

/*--------------------------------------------------------------
miniapp details qrcode
--------------------------------------------------------------*/
.miniapp-details-qrcode {
    margin: 5rem 0 0;
}

.miniapp-details-qrcode .section-shape svg {
    height: 150px;
}

.miniapp-details-qrcode .section-shape .section-shape-fill {
    fill: #f6f7f9;
}

.miniapp-details-qrcode .details-qrcode-content {
    position: relative;
    margin-top: -5rem;
    color: #fff;
    background-attachment: fixed;
    background-color: var(--bg-primary);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.miniapp-details-qrcode .details-qrcode-body {
    padding: 5rem 6rem;
}

.miniapp-details-qrcode .details-qrcode-phone {
    position: absolute;
    bottom: 0;
    right: 1rem;
}

.miniapp-details-qrcode .details-qrcode-phone img {
    max-width: 540px;
}

.miniapp-details-qrcode .details-qrcode-image img {
    max-width: 150px;
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: 100%;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .miniapp-details-qrcode .details-qrcode-body {
        padding: 3rem 3.5rem;
    }

    .miniapp-details-qrcode .details-qrcode-phone {
        right: 0;
    }

    .miniapp-details-qrcode .details-qrcode-phone img {
        max-width: 350px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .miniapp-details-qrcode {
        margin: 1rem 0 0;
    }

    .miniapp-details-qrcode .details-qrcode-body {
        padding: 2rem 2.5rem;
    }

    .miniapp-details-qrcode .details-qrcode-phone {
        right: 0;
    }

    .miniapp-details-qrcode .details-qrcode-phone img {
        max-width: 250px;
    }
}

@media (max-width: 767.98px) {
    .miniapp-details-qrcode {
        margin: 0;
    }

    .miniapp-details-qrcode .details-qrcode-body {
        padding: 2rem 2.5rem;
        background-color: rgb(25 0 0 / 12%);
        border-radius: inherit;
    }

    .miniapp-details-qrcode .details-qrcode-phone {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0rem;
        padding: 0 1rem;
        margin-top: 3rem;
        display: none;
    }

    .miniapp-details-qrcode .details-qrcode-phone img {
        max-width: 100%;
    }

    .miniapp-details-qrcode .details-qrcode-image img {
        max-width: 100px;
    }
}

/*--------------------------------------------------------------
miniapp details step
--------------------------------------------------------------*/
.miniapp-details-step {
    text-align: center;
}

.miniapp-details-step .step-number {
    font-size: 3rem;
}

/*--------------------------------------------------------------
miniapp details banner
--------------------------------------------------------------*/
.miniapp-details-banner {
    position: relative;
}

.miniapp-details-banner .swiper-slide {
    max-width: 300px;
}

.miniapp-details-banner .swiper-pagination {
    bottom: -3rem;
}

.miniapp-details-banner .swiper-pagination-bullet {
    --swiper-pagination-bullet-opacity: 1;
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-bullet-horizontal-gap: 8px;
    --swiper-pagination-bullet-inactive-color: transparent;
    border: 2px solid var(--border-dark);
}

.miniapp-details-banner .swiper-pagination-bullet-active {
    --swiper-pagination-color: var(--bg-primary);
    border-color: var(--bg-primary);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .miniapp-details-banner .swiper-slide {
        max-width: 300px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .miniapp-details-banner .swiper-slide {
        max-width: 213.5px;
    }
}

@media (max-width: 767.98px) {
    .miniapp-details-banner .swiper-slide {
        max-width: 168px;
    }

    .miniapp-details-banner .swiper-pagination {
        bottom: -2.25rem;
    }
}

/*--------------------------------------------------------------
miniapp details featurelist
--------------------------------------------------------------*/

.miniapp-details-featurelist .details-featurelist-content ul li {
    position: relative;
    margin: 1.5rem 0;
    padding: 0 0 0 2.25rem;
}

.miniapp-details-featurelist .details-featurelist-content ul li i {
    position: absolute;
    left: 2px;
    top: 3px;
    font-size: 1.125rem;
    color: #fff;
}

.miniapp-details-featurelist .details-featurelist-content ul li i::before {
    position: relative;
    z-index: 1;
}

.miniapp-details-featurelist .details-featurelist-content ul li i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 5rem;
    background-color: var(--bg-primary);
    transform: translate(-50%, -50%);
}

.miniapp-details-featurelist .details-featurelist-image {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-content: center;
    align-items: center;
    padding: 15px;
}

.miniapp-details-featurelist .details-featurelist-image-inner {
    width: 100%;
    text-align: center;
}

.miniapp-details-featurelist .details-featurelist-image-1 {
    position: absolute;
    width: 44%;
    max-width: 44%;
    top: -2%;
    left: 14%;
    z-index: 3;
}

.miniapp-details-featurelist .details-featurelist-image-2 {
    position: absolute;
    width: 37%;
    max-width: 37%;
    left: 48%;
    top: 2%;
    z-index: 2;
}

.miniapp-details-featurelist .details-featurelist-line {
    position: absolute;
    width: 13%;
    max-width: 13%;
    bottom: -20%;
    left: 12%;
    z-index: 1;
}

.miniapp-details-featurelist.left .details-featurelist-image-1 {
    position: absolute;
    width: 37%;
    max-width: 37%;
    top: -10%;
    left: 16%;
    z-index: 3;
}

.miniapp-details-featurelist.left .details-featurelist-image-2 {
    position: absolute;
    width: 36%;
    max-width: 36%;
    left: 48%;
    top: 2%;
    z-index: 2;
}

.miniapp-details-featurelist.left .details-featurelist-line {
    position: absolute;
    width: 12%;
    max-width: 12%;
    bottom: -25%;
    left: 62%;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .miniapp-details-featurelist .details-featurelist-image-1 {
        width: 48%;
        max-width: 48%;
        top: 1%;
        left: 10%;
    }

    .miniapp-details-featurelist .details-featurelist-image-2 {
        width: 38%;
        max-width: 38%;
        left: 52%;
        top: 7%;
    }

    .miniapp-details-featurelist .details-featurelist-line {
        display: none;
    }

    .miniapp-details-featurelist.left .details-featurelist-image-1 {
        width: 43%;
        max-width: 43%;
        top: -14%;
        left: 10%;
    }

    .miniapp-details-featurelist.left .details-featurelist-image-2 {
        width: 42%;
        max-width: 42%;
        left: 48%;
        top: 2%;
    }

    .miniapp-details-featurelist.left .details-featurelist-line {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .miniapp-details-featurelist .details-featurelist-image-1 {
        width: 48%;
        max-width: 48%;
        top: 1%;
        left: 10%;
    }

    .miniapp-details-featurelist .details-featurelist-image-2 {
        width: 38%;
        max-width: 38%;
        left: 52%;
        top: 7%;
    }

    .miniapp-details-featurelist.left .details-featurelist-image-1 {
        width: 43%;
        max-width: 43%;
        top: -14%;
        left: 10%;
    }

    .miniapp-details-featurelist.left .details-featurelist-image-2 {
        width: 42%;
        max-width: 42%;
        left: 48%;
        top: 2%;
    }

    .miniapp-details-featurelist.left .details-featurelist-line {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .miniapp-details-featurelist .details-featurelist-image-1 {
        width: 48%;
        max-width: 48%;
        top: 1%;
        left: 10%;
    }

    .miniapp-details-featurelist .details-featurelist-image-2 {
        width: 38%;
        max-width: 38%;
        left: 52%;
        top: 7%;
    }

    .miniapp-details-featurelist.left .details-featurelist-image-1 {
        width: 43%;
        max-width: 43%;
        top: -14%;
        left: 10%;
    }

    .miniapp-details-featurelist.left .details-featurelist-image-2 {
        width: 42%;
        max-width: 42%;
        left: 48%;
        top: 2%;
    }
}

/*--------------------------------------------------------------
miniapp details pricelist
--------------------------------------------------------------*/
.miniapp-details-pricelist .details-price-vip {
    color: #ff8d36;
    text-shadow: 1px 1px 1px rgb(255 255 255);
}

.miniapp-details-pricelist ul {
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.miniapp-details-pricelist ul li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 2.25rem;
}

.miniapp-details-pricelist ul li i {
    position: absolute;
    left: 2px;
    top: 0px;
    font-size: 1.25rem;
    color: #fff;
}

.miniapp-details-pricelist ul li i::before {
    position: relative;
    z-index: 1;
}

.miniapp-details-pricelist ul li i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 5rem;
    background-color: var(--color-success);
    transform: translate(-50%, -50%);
}

.miniapp-details-pricelist ul li i.icon-close::after {
    background-color: var(--bg-danger);
}

.miniapp-details-pricelist .miniapp-populer-tag {
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 130px;
    transform: translate(25%, -75%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../fonts/5544e14115494b569cbc135acd1bcab9.woff");
    z-index: 2;
}

@media (max-width: 767.98px) {
    .miniapp-details-pricelist .miniapp-populer-tag {
        width: 70px;
        height: 90px;
        transform: translate(0%, -25%);
    }
}

.miniapp-details-pricelist .miniapp-phone-icon,
.miniapp-details-pricelist .miniapp-pc-icon {
    position: relative;
    display: inline-block;
    top: 4px;
    width: 25px;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.miniapp-details-pricelist .miniapp-pc-icon {
    background-image: url("../fonts/ca517109453043d5b1081721cff0da89.woff");
}

.miniapp-details-pricelist .miniapp-phone-icon {
    background-image: url("../fonts/055e3b7fc506498a8a2618e086196639.woff");
}

/* 2023 01 19**/

.voucher2023 {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 150px;
    color: #fff;
    border-radius: var(--border-radius-md);
    background: linear-gradient(90deg, #ff0e4a, #ff5e5e);
    box-shadow: inset -8px -8px 22px #ff0000, inset 8px 8px 22px #ff0000;
    text-align: center;
}

.voucher2023 .voucher2023-svipicon {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    color: #fff;
    background: #f9e1be;
    background: linear-gradient(to right, #ff2222 0%, #ff634c 100%);
    padding: 4px 12px;
    border-top-left-radius: inherit;
    border-bottom-right-radius: inherit;
    transform: translateY(-50%);
}

.voucher2023-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 159px;
    line-height: 1;
}

.voucher2023-top .voucher2023-sum {
    font-size: 2.5rem;
}

@media (max-width: 767.98px) {
    .voucher2023-top {
        width: 33%;
    }

    .voucher2023-top .voucher2023-sum {
        font-size: 1.875rem;
    }
}

.voucher2023-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    font-size: 0.875rem;
}

@media (max-width: 767.98px) {
    .voucher2023-bottom {
        font-size: 0.8125rem;
    }
}

.voucher2023-bottom .item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 4px 0;
}

.voucher2023-middle {
    width: 20px;
    position: relative;
    overflow: hidden;
}

.voucher2023-middle div {
    position: absolute;
    bottom: 20px;
    top: 20px;
    left: 10px;
    border-left: 1px dashed #ff7171;
    z-index: 9;
}

.voucher2023-middle:before,
.voucher2023-middle:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    z-index: 1;
    border: 10px solid #f9f9fb;
    transform: translate(-50%, -50%);
}

.voucher2023-middle:before {
    top: 0px;
}

.voucher2023-middle:after {
    top: auto;
    left: 0;
    bottom: 0;
    transform: translate(0%, 50%);
}

.voucher-content .voucher2023 {
    opacity: 0.2;
    cursor: pointer;
}

.voucher-content .voucher2023.active {
    opacity: 1;
}

.voucher2023.svip {
    color: #905c31;
    background: linear-gradient(90deg, #ffd08c, #ffdaa8);
    box-shadow: inset -8px -8px 22px #ffd4aa, inset 8px 8px 22px #f0b270;
}

.voucher2023.svip .voucher2023-svipicon {
    display: block;
}

.voucher2023.svip .voucher2023-middle div {
    border-left: 1px dashed #ffca71;
}

.voucher2023.column {
    flex-direction: column;
    height: auto;
    padding: 1rem 0 0;
}

.voucher2023.column .voucher2023-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    line-height: 1;
}

.voucher2023.column .voucher2023-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
}

.voucher2023.column .voucher2023-bottom .item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 4px 0;
}

.voucher2023.column .voucher2023-middle {
    width: 100%;
    height: 30px;
}

.voucher2023.column .voucher2023-middle div {
    left: 20px;
    right: 20px;
    bottom: auto;
    top: 15px;
    border-left: 0;
    border-top: 1px dashed #ff7171;
}

.voucher2023.column.svip .voucher2023-middle div {
    left: 20px;
    right: 20px;
    bottom: auto;
    top: 15px;
    border-left: 0;
    border-top: 1px dashed #ba9451;
}

.voucher2023.column .voucher2023-middle:before,
.voucher2023.column .voucher2023-middle:after {
    top: 50%;
    transform: translate(-50%, -50%);
}

.voucher2023.column .voucher2023-middle:before {
    left: 0px;
}

.voucher2023.column .voucher2023-middle:after {
    top: 50%;
    left: auto;
    right: 0;
    bottom: auto;
    transform: translate(50%, -50%);
}

.voucher2023.column .voucher-content .voucher2023 {
    opacity: 0.2;
    cursor: pointer;
}

.voucher2023.column .voucher-content .voucher2023.active {
    opacity: 1;
}

/* halo 2023 03 19**/

.halo-details-heading {
    position: relative;
    padding: 12rem 0 0;
    background-repeat: no-repeat;
    background-size: cover;
}

.halo-details-heading .corner-price {
    position: relative;
    font-size: 12px;
    background: linear-gradient(145deg, #f30000 0%, #ff882b 100%);
    color: #fff;
    border-radius: 7px 7px 7px 0;
    padding: 4px 8px;
    top: -4px;
}

.halo-mockups.theme-mockups .mockup-browser:after {
    padding-top: 50%;
}

.halo-mockups.theme-mockups .mockup-browser {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-width: 0 !important;
}

.halo-details-section {
    padding: 5rem 0;
}

@media (max-width: 767.98px) {
    .halo-details-section {
        padding: 2rem 0;
    }

    .halo-details-heading {
        padding: 6rem 0 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .halo-details-section {
        padding: 3rem 0;
    }
}

/*--------------------------------------------------------------
Toc
--------------------------------------------------------------*/

.post-toc {
    position: absolute;
    right: 80px;
    top: 50%;
    width: 250px;
    max-height: 450px;
    padding: 1.25rem .75rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50%);
    border-radius: var(--border-radius-md);
    background: linear-gradient(180deg, var(--bg-light), #fff);
    border: 2px solid #fff;
    box-shadow: 0 10px 20px 0 rgb(26 0 109 / 5%);
}

/*--------------------------------------------------------------
Toc list
--------------------------------------------------------------*/
.post-toc .toc-list {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    max-height: 350px;
    padding: 0 0.5rem;
}

.post-toc .toc-list .toc-list {
    padding: 0;
    margin: .625rem 0 0 0;
}

.post-toc .toc-list .toc-list .toc-list-item {
    margin: 0 0 .5rem;
    padding: 0 0 0 .9375rem;
}

.post-toc .toc-list .toc-list .toc-list-item:last-child {
    margin: 0;
}

.post-toc .toc-list .toc-list .toc-list-item::before {
    z-index: 2;
}

/*--------------------------------------------------------------
Toc list item
--------------------------------------------------------------*/

.post-toc .toc-list-item {
    position: relative;
    list-style: none;
    padding: 0 0 0 1.25rem;
    margin: 0 0 .625rem;
    display: block;
}

.post-toc .toc-list-item:last-child {
    margin: 0;
}

.post-toc .toc-list-item::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    height: 6px;
    width: 6px;
    border-radius: .625rem;
    background-color: var(--bg-secondary);
}

.post-toc .toc-list-item.is-active-li::before {
    background-color: var(--bg-danger);
    opacity: 1;
}

/*--------------------------------------------------------------
Toc list child item
--------------------------------------------------------------*/

.post-toc .toc-list .toc-list .toc-list-item {
    margin: 0 0 .5rem;
    padding: 0 0 0 .9375rem;
}

.post-toc .toc-list .toc-list .toc-list-item:last-child {
    margin: 0;
}

.post-toc .toc-list .toc-list .toc-list-item::before {
    z-index: 2;
}

/*--------------------------------------------------------------
Toc list link
--------------------------------------------------------------*/
.post-toc .toc-link {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: .875rem;
    color: var(--color-muted);
}

.post-toc .toc-link:hover,
.post-toc .toc-link.is-active-link {
    font-weight: bold;
    color: var(--color-dark);
    opacity: 1;
}

/*--------------------------------------------------------------
Toc hide
--------------------------------------------------------------*/

.is-collapsible {
    transition: all 300ms ease-in-out;
}

.is-collapsed {
    max-height: 0;
    display: none;
}

.is-position-fixed {
    visibility: visible;
    opacity: 1;
}

.toc-hide {
    visibility: hidden;
    opacity: 0;
}

/*--------------------------------------------------------------
Toc scrollbar
--------------------------------------------------------------*/

.post-toc .toc-list::-webkit-scrollbar {
    width: .25rem;
    background-color: transparent
}

.post-toc .toc-list::-webkit-scrollbar-thumb {
    border-radius: .625rem;
    background-color: var(--bg-secondary)
}

.post-toc .toc-list::-webkit-scrollbar-track {
    border-radius: .625rem;
    background-color: var(--bg-light)
}

/*--------------------------------------------------------------
halo page animation
--------------------------------------------------------------*/
.halo-shape_1 {
    position: absolute;
    left: 20%;
    top: 60%;
    width: 120px;
    -webkit-animation: movedelement 5s linear infinite;
    animation: movedelement 5s linear infinite;
}

.halo-shape_2 {
    position: absolute;
    right: 19%;
    bottom: 15%;
    width: 125px;
    -webkit-animation: movedelement2 5s linear infinite;
    animation: movedelement2 5s linear infinite
}

.halo-shape_3 {
    position: absolute;
    right: 16%;
    top: 20%;
    width: 155px;
    -webkit-animation: movedelement3 5s linear infinite;
    animation: movedelement3 5s linear infinite
}

.halo-shape_4 {
    position: absolute;
    left: 11%;
    top: 18%;
    width: 200px;
    animation: alltuchtopdown 3s infinite;
    -webkit-animation: alltuchtopdown 3s infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 1s;
    z-index: 1;
}

.halo-anim_one {
    position: absolute;
    left: 5%;
    top: 40%;
    width: 120px;
    -webkit-animation: movedelement 5s linear infinite;
    animation: movedelement 5s linear infinite;
}

.halo-anim_two {
    position: absolute;
    left: 15%;
    top: 10%;
    width: 100px;
    -webkit-animation: movedelement2 5s linear infinite;
    animation: movedelement2 5s linear infinite
}

.halo-anim_three {
    position: absolute;
    right: 15%;
    top: 12%;
    width: 120px;
    -webkit-animation: movedelement3 5s linear infinite;
    animation: movedelement3 5s linear infinite
}

.halo-anim_four {
    position: absolute;
    left: 11%;
    bottom: 5%;
    width: 200px;
    animation: alltuchtopdown 3s infinite;
    -webkit-animation: alltuchtopdown 3s infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 1s;
    z-index: 1;
}

.halo-anim_five {
    position: absolute;
    right: 5%;
    top: 54%;
    width: 150px;
    animation: alltuchtopdown 5s infinite;
    -webkit-animation: alltuchtopdown 5s infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 3s;
    z-index: 1;
}

.halo-anim_six {
    -webkit-animation: rotation 20s linear infinite;
    animation: rotation 20s linear infinite
}

.halo-anim_seven {
    position: absolute;
    left: 57%;
    top: 32%;
    -webkit-animation: up-down 1.5s infinite alternate;
    animation: up-down 1.5s infinite alternate;
    z-index: 1;
}

.halo-anim_eight {
    -webkit-animation: left-right 1.5s infinite alternate;
    animation: left-right 1.5s infinite alternate
}

@media (max-width: 767.98px) {
    .halo-shape_1 {
        left: 10%;
        top: 87%;
        width: 35px;
    }

    .halo-shape_2 {
        right: 6%;
        bottom: -3%;
        width: 55px;
    }

    .halo-shape_3 {
        right: 3%;
        top: 38%;
        width: 40px;
    }

    .halo-shape_4 {
        left: 9%;
        top: 34%;
        width: 50px;
    }

    .halo-anim_one {
        left: -2%;
        top: 35%;
        width: 63px;
    }

    .halo-anim_two {
        left: 10%;
        top: 13%;
        width: 29px;
    }

    .halo-anim_three {
        right: 2%;
        top: 10%;
        width: 35px;
    }

    .halo-anim_four {
        left: -5%;
        bottom: 5%;
        width: 79px;
    }

    .halo-anim_five {
        right: 4%;
        top: 91%;
        width: 47px;
    }

    .halo-anim_six {}

    .halo-anim_seven {
        left: 81%;
        top: auto;
        bottom: 43%;
        width: 65px;
    }

    .halo-anim_eight {}
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .halo-anim_one {
        left: 4%;
        top: 45%;
        width: 95px;
    }

    .halo-anim_two {
        left: 9%;
        top: 13%;
        width: 60px;
    }

    .halo-anim_three {
        right: 2%;
        top: 8%;
        width: 80px;
    }

    .halo-anim_four {
        left: -2%;
        bottom: 2%;
        width: 140px;
    }

    .halo-anim_five {
        right: 2%;
        top: 81%;
        width: 85px;
    }

    .halo-anim_six {}

    .halo-anim_seven {
        left: 70%;
        top: auto;
        bottom: 44%;
        width: 100px;
    }

    .halo-anim_eight {}
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .halo-anim_one {
        left: 10%;
        top: 41%;
        width: 90px;
    }

    .halo-anim_two {
        left: 8%;
        top: 13%;
        width: 85px;
    }

    .halo-anim_three {
        right: 1%;
        top: 10%;
        width: 90px;
    }

    .halo-anim_four {
        left: -1%;
        bottom: 1%;
        width: 150px;
    }

    .halo-anim_five {
        right: 2%;
        top: 84%;
        width: 120px;
    }

    .halo-anim_six {}

    .halo-anim_seven {
        left: 63%;
        top: auto;
        bottom: 50%;
        width: 100px;
    }

    .halo-anim_eight {}
}

@-webkit-keyframes left-right {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-10px)
    }
}

@keyframes left-right {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-10px)
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translatey(0)
    }

    100% {
        transform: translatey(-10px)
    }
}

@keyframes up-down {
    0% {
        transform: translatey(0)
    }

    100% {
        transform: translatey(-10px)
    }
}

@-webkit-keyframes movedelement {
    0% {
        transform: translate(0)
    }

    25% {
        transform: translate(10px, 10px)
    }

    50% {
        transform: translate(5px, 5px)
    }

    75% {
        transform: translate(10px, -5px)
    }

    to {
        transform: translate(0)
    }
}

@keyframes movedelement {
    0% {
        transform: translate(0)
    }

    25% {
        transform: translate(10px, 10px)
    }

    50% {
        transform: translate(5px, 5px)
    }

    75% {
        transform: translate(10px, -5px)
    }

    to {
        transform: translate(0)
    }
}

@-webkit-keyframes movedelement2 {
    0% {
        transform: translate(0)
    }

    25% {
        transform: translate(-10px, -10px)
    }

    50% {
        transform: translate(-5px, -5px)
    }

    75% {
        transform: translate(-10px, 5px)
    }

    to {
        transform: translate(0)
    }
}

@keyframes movedelement2 {
    0% {
        transform: translate(0)
    }

    25% {
        transform: translate(-10px, -10px)
    }

    50% {
        transform: translate(-5px, -5px)
    }

    75% {
        transform: translate(-10px, 5px)
    }

    to {
        transform: translate(0)
    }
}

@-webkit-keyframes movedelement3 {
    0% {
        transform: translate(0)
    }

    25% {
        transform: translate(-8px, -8px)
    }

    50% {
        transform: translate(-15px, -15px)
    }

    75% {
        transform: translate(-8px, 8px)
    }

    to {
        transform: translate(0)
    }
}

@keyframes movedelement3 {
    0% {
        transform: translate(0)
    }

    25% {
        transform: translate(-8px, -8px)
    }

    50% {
        transform: translate(-15px, -15px)
    }

    75% {
        transform: translate(-8px, 8px)
    }

    to {
        transform: translate(0)
    }
}

@keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0)
    }

    50% {
        transform: rotateX(0deg) translateY(-20px)
    }

    100% {
        transform: rotateX(0deg) translateY(0)
    }
}

@-webkit-keyframes alltuchtopdown {
    0% {
        transform: rotateX(0deg) translateY(0)
    }

    50% {
        transform: rotateX(0deg) translateY(-20px)
    }

    100% {
        transform: rotateX(0deg) translateY(0)
    }
}

@-webkit-keyframes MedifadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes MedifadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}