.docs-banner .swiper-slide {
    width: 20%;
}

.modal-open {
    overflow: hidden;
}

.i-icon svg {
    display: block;
}

.text-primary {
    color: var(--color-primary) !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-404 {
    text-shadow: 5px 5px 1px rgb(81 66 252 / 50%);
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.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-white-overlay {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.35);
}

.bg-dark-overlay {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.33);
}

.bg-img {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/*--------------------------------------------------------------
## Buttons
  --------------------------------------------------------------*/

.btn {
    border-radius: var(--border-radius-sm);
    padding: .375rem 1.25rem;
    white-space: normal;
    transition: all 0.2s ease-in-out;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn.active {
    box-shadow: none !important;
}

.btn.disabled,
.btn:disabled {
    color: var(--color-muted);
    border-color: var(--gray-3);
    background-color: var(--gray-3);
}

.btn.loading {
    position: relative;
    cursor: wait !important;
    color: var(--color-muted);
    border-color: var(--gray-3);
    background-color: var(--gray-3);
    pointer-events: none;
}

.btn.active,
.btn.show {
    --bs-btn-active-color: var(--color-secondary);
    --bs-btn-active-bg: var(--gray-2);
    --bs-btn-active-border-color: var(--gray-2);
}

/*--------------------------------------------------------------
## Button style
  --------------------------------------------------------------*/

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-focus-box-shadow: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-primary);
    --bs-btn-active-border-color: var(--color-primary);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-primary);
    --bs-btn-disabled-border-color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    opacity: 0.8;
}

/*--------------------------------------------------------------
## Button secondary style
  --------------------------------------------------------------*/

.btn-secondary {
    --bs-btn-color: var(--gray-2);
    --bs-btn-bg: var(--bg-secondary);
    --bs-btn-border-color: var(--border-secondary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bg-secondary);
    --bs-btn-hover-border-color: var(--border-secondary);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-focus-box-shadow: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bg-secondary);
    --bs-btn-active-border-color: var(--border-secondary);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-light);
    --bs-btn-disabled-bg: var(--bg-secondary);
    --bs-btn-disabled-border-color: var(--border-secondary);
}

/*--------------------------------------------------------------
## Button light style
  --------------------------------------------------------------*/

.btn-light {
    --bs-btn-color: var(--color-muted);
    --bs-btn-bg: var(--bg-light);
    --bs-btn-border-color: var(--border-color);
    --bs-btn-hover-color: var(--color-muted);
    --bs-btn-hover-bg: var(--bg-light);
    --bs-btn-hover-border-color: var(--border-color);
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-focus-box-shadow: none;
    --bs-btn-active-color: var(--color-dark);
    --bs-btn-active-bg: var(--border-light);
    --bs-btn-active-border-color: var(--border-color);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-light);
    --bs-btn-disabled-bg: var(--bg-light);
    --bs-btn-disabled-border-color: var(--border-color);
}


.btn-light:hover {
    --bs-btn-hover-color: var(--color-dark);
    --bs-btn-hover-bg: var(--bg-light);
    --bs-btn-hover-border-color: var(--border-color);
}

.btn-light:focus {
    --bs-btn-focus-color: var(--color-dark);
    --bs-btn-focus-bg: var(--bg-light);
    --bs-btn-focus-border-color: var(--border-color);
}

.btn-light:active,
.btn-light.active {
    --bs-btn-active-color: var(--color-dark);
    --bs-btn-active-bg: var(--border-color);
    --bs-btn-active-border-color: var(--border-color);
}

/*--------------------------------------------------------------
## Button dark style
  --------------------------------------------------------------*/

.btn-dark {
    --bs-btn-color: var(--gray-1);
    --bs-btn-bg: var(--bg-dark);
    --bs-btn-border-color: var(--border-dark);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bg-secondary);
    --bs-btn-hover-border-color: var(--border-secondary);
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-focus-box-shadow: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bg-secondary);
    --bs-btn-active-border-color: var(--border-secondary);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-light);
    --bs-btn-disabled-bg: var(--bg-secondary);
    --bs-btn-disabled-border-color: var(--border-secondary);
}

/*--------------------------------------------------------------
## Button danger style
  --------------------------------------------------------------*/
.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-danger);
    --bs-btn-border-color: var(--color-danger);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-danger);
    --bs-btn-hover-border-color: var(--color-danger);
    --bs-btn-focus-shadow-rgb: 225, 83, 97;
    --bs-btn-focus-box-shadow: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-danger);
    --bs-btn-active-border-color: var(--color-danger);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-danger);
    --bs-btn-disabled-border-color: var(--color-danger);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.active,
.btn-danger:active {
    opacity: .8;
}

.btn-danger:disabled,
.btn-danger.disabled {
    opacity: .6;
}

/*--------------------------------------------------------------
## Button link style
  --------------------------------------------------------------*/
.btn-link {
    --bs-btn-color: var(--color-secondary);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: transparent;
    --bs-btn-focus-bg: transparent;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--color-dark);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-color: var(--color-dark);
    text-decoration: none;
    border-color: transparent;
}

.btn-link:disabled,
.btn-link.disabled {
    background-color: transparent;
}

/*--------------------------------------------------------------
## Button success style
  --------------------------------------------------------------*/
.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-success);
    --bs-btn-border-color: var(--color-success);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-success);
    --bs-btn-hover-border-color: var(--color-success);
    --bs-btn-focus-shadow-rgb: 60, 153, 110;
    --bs-btn-focus-box-shadow: none;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-success);
    --bs-btn-active-border-color: var(--color-success);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-success);
    --bs-btn-disabled-border-color: var(--color-success);
}

.btn-success:hover,
.btn-success:focus,
.btn-success.active,
.btn-success:active {
    opacity: .8;
}

.btn-success:disabled,
.btn-success.disabled {
    opacity: .6;
}

/*--------------------------------------------------------------
## Button warning style
  --------------------------------------------------------------*/
.btn-warning {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-warning);
    --bs-btn-border-color: var(--color-warning);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-warning);
    --bs-btn-hover-border-color: var(--color-warning);
    --bs-btn-focus-shadow-rgb: 217, 164, 6;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--color-warning);
    --bs-btn-active-border-color: var(--color-warning);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--color-warning);
    --bs-btn-disabled-border-color: var(--color-warning);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.active,
.btn-warning:active {
    opacity: .8;
}

.btn-warning:disabled,
.btn-warning.disabled {
    opacity: .6;
}

/*--------------------------------------------------------------
## Button outline style
  --------------------------------------------------------------*/
.btn-outline-primary {
    --bs-btn-color: var(--color-primary);
    --bs-btn-bg: var(--outline-primary);
    --bs-btn-border-color: var(--outline-primary);
    --bs-btn-hover-color: var(--color-primary);
    --bs-btn-hover-bg: var(--outline-primary);
    --bs-btn-hover-border-color: var(--outline-primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-focus-box-shadow: none;
    --bs-btn-active-color: var(--color-primary);
    --bs-btn-active-bg: var(--outline-primary);
    --bs-btn-active-border-color: var(--outline-primary);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-muted);
    --bs-btn-disabled-bg: var(--bg-light);
    --bs-btn-disabled-border-color: var(--bg-light);
    --bs-gradient: none;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active,
.btn-outline-primary:active {
    opacity: .8;
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    opacity: .6;
}

/*--------------------------------------------------------------
## Button outline dark style
  --------------------------------------------------------------*/
.btn-outline-dark {
    --bs-btn-color: var(--color-muted);
    --bs-btn-border-color: var(--border-secondary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--gray-5);
    --bs-btn-hover-border-color: var(--gray-5);
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--gray-5);
    --bs-btn-active-border-color: var(--gray-5);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-light);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--border-secondary);
    --bs-gradient: none;
}

/*--------------------------------------------------------------
## Button outline secondary style
  --------------------------------------------------------------*/
.btn-outline-secondary {
    --bs-btn-color: var(--color-muted);
    --bs-btn-border-color: var(--border-secondary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--gray-5);
    --bs-btn-hover-border-color: var(--gray-5);
    --bs-btn-focus-shadow-rgb: 108, 117, 125;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--gray-5);
    --bs-btn-active-border-color: var(--gray-5);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-light);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--border-secondary);
    --bs-gradient: none;

}

/*--------------------------------------------------------------
## Button outline light style
  --------------------------------------------------------------*/
.btn-outline-light {
    --bs-btn-color: var(--color-muted);
    --bs-btn-border-color: var(--border-color);
    --bs-btn-hover-color: var(--color-dark);
    --bs-btn-hover-bg: var(--gray-1);
    --bs-btn-hover-border-color: var(--border-color);
    --bs-btn-focus-shadow-rgb: 248, 249, 250;
    --bs-btn-active-color: var(--border-color);
    --bs-btn-active-bg: var(--gray-2);
    --bs-btn-active-border-color: var(--border-color);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--color-muted);
    --bs-btn-disabled-bg: var(--gray-2);
    --bs-btn-disabled-border-color: var(--border-color);
    --bs-gradient: none;
}

/*--------------------------------------------------------------
## Button size style
  --------------------------------------------------------------*/

.btn-xs {
    font-size: 0.75rem;
    padding: 0.125rem 0.75rem;
    border-radius: var(--border-radius-xs);
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.3125rem .875rem;
    border-radius: var(--border-radius-xs);
}

.btn-lg {
    font-size: 1.125rem;
    padding: 0.625rem 2rem;
}

.btn-block {
    width: 100%;
    display: block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.btn-xs.btn-rounded {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.btn-lg.btn-rounded {
    border-radius: 4rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-sm {
        font-size: 0.8125rem;
    }

    .btn-lg {
        font-size: 0.9375rem;
    }
}

@media (max-width: 767.98px) {
    .btn {
        font-size: .875rem;
        padding: 0.5rem 1.625rem;
    }

    .btn-xs {
        font-size: .75rem;
        padding: 0.125rem 0.75rem;
    }

    .btn-sm {
        font-size: 0.8125rem;
        padding: 0.25rem 0.75rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.625rem 1.75rem;
    }
}

/*--------------------------------------------------------------
## Button radius style
  --------------------------------------------------------------*/

.btn-rounded {
    border-radius: 5rem;
    padding-left: .875rem;
    padding-right: .875rem;
}

.rounded-1 {
    border-radius: var(--border-radius-xs) !important;
}

.rounded-2 {
    border-radius: var(--border-radius-sm) !important;
}

.rounded-3 {
    border-radius: var(--border-radius-md) !important;
}

/*--------------------------------------------------------------
## Button width style
  --------------------------------------------------------------*/

.btn-w-xs {
    min-width: 65px;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.btn-w-sm {
    min-width: 75px;
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}

.btn-w-md {
    min-width: 95px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.btn-w-lg {
    min-width: 11rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.btn-w-xl {
    min-width: 12rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 767.98px) {
    .btn-sm.btn-w-sm {
        min-width: 60px;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .btn-sm.btn-w-md {
        min-width: 80px;
    }

    .btn-lg.btn-w-lg {
        min-width: 135px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-w-lg {
        min-width: 135px;
    }
}

@media (min-width: 768px) {
    .btn-sm.btn-w-md {
        min-width: 85px;
    }

    .btn-sm.btn-w-sm {
        min-width: 70px;
    }
}

/*--------------------------------------------------------------
## Button icon style
  --------------------------------------------------------------*/

.btn-icon {
    position: relative;
    width: 2.625rem;
    height: 2.625rem;
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
}

.btn-icon span {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon small {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.625rem;
    line-height: 1;
    padding: 1px 4px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--color-danger);
    border: 2px solid #fff;
    transform: translate(45%, -36%)
}

.btn-icon:hover,
.btn-icon:active,
.btn-icon:focus {
    box-shadow: none;
}

.btn-icon.btn-xs {
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    font-size: 1.125rem;
}

.btn-icon.btn-sm {
    width: 33px;
    height: 33px;
    padding: 0;
    font-size: 20px;
}

.btn-icon.btn-md {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    font-size: 1.5rem;
}

.btn-icon.btn-lg {
    width: 3rem;
    height: 3rem;
    padding: 0;
    font-size: 1.625rem;
}

.btn-icon.btn-rounded {
    border-radius: 5rem;
}

@media (max-width: 767.98px) {
    .btn-icon.btn-md {
        width: 2.375rem;
        height: 2.375rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .btn-icon.btn-md {
        width: 2.375rem;
        height: 2.375rem;
        font-size: 1.125rem;
    }

    .btn-icon.btn-lg {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.25rem;
    }
}

/*--------------------------------------------------------------
## Border
--------------------------------------------------------------*/

.border-secondary {
    border-color: var(--border-secondary) !important;
}

.border-primary {
    border-color: var(--color-primary) !important;
}

.border-light {
    border-color: var(--border-light) !important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

/*--------------------------------------------------------------
## Border radius
--------------------------------------------------------------*/

.rounded {
    border-radius: var(--border-radius-sm) !important;
}

.rounded-1 {
    border-radius: var(--border-radius-xs) !important;
}

.rounded-2 {
    border-radius: var(--border-radius-md) !important;
}

.rounded-3 {
    border-radius: var(--border-radius-lg) !important;
}


/*--------------------------------------------------------------
## Form control
--------------------------------------------------------------*/

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    color: var(--color-secondary);
    background-color: #fff;
    border-color: var(--border-light);
    border-radius: var(--border-radius-xs);
    padding: 0.5rem 0.75rem;
}

.form-control:focus {
    color: var(--color-dark);
    background-color: #fff;
    border-color: var(--color-primary);
    box-shadow: none;
}

.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:disabled,
.form-control[readonly] {
    color: var(--color-secondary);
    background-color: var(--gray-2);
    border: 1px solid var(--border-light);
    opacity: 1;
}

textarea.form-control {
    height: auto;
    padding: 0.5rem 0.75rem;
}

.form-control-lg {
    min-height: auto;
    padding: 0.625rem 1rem;
    font-size: 1.125rem;
}

.form-input-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
}

.form-input-group .form-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    padding: 0 .25rem 0 1.125rem;
}

.form-input-group .form-input-button {
    flex-shrink: 0;
    background-color: transparent;
    border: 0;
}

.form-input-group .form-control,
.form-input-group .form-select {
    font-size: 1rem;
    border: 0;
    padding: .6875rem 1rem;
}

.form-input-group .form-control[disabled] {
    background-color: transparent;
}

.form-input-group.form-input-lg .form-input-icon {
    font-size: 1.25rem;
}

.form-input-group.form-input-lg > .form-input-button {
    font-size: 1rem;
    padding: .375rem 1rem;
}


@media (max-width: 767.98px) {
    .form-control {
        font-size: .875rem;
        padding: 0.5rem 0.75rem;
    }

    .form-control-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
## Form check style
--------------------------------------------------------------*/

.form-check {
    min-height: 0;
    padding-left: 2em;
    margin-bottom: 0;
}

.form-check .form-check-input {
    margin-left: -2em;
}

.form-check-input {
    width: 1.5em;
    height: 1.5em;
    background-color: var(--gray-4);
    border-color: var(--gray-4);
    margin-top: 0.08em;
}

.form-check-input:active {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
}

.form-check-input:focus {
    border-color: var(--gray-4);
    outline: 0;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: #49d6ab;
    border-color: #49d6ab;
}

.form-check-input[type="checkbox"]:indeterminate {
    background-color: #49d6ab;
    border-color: #49d6ab;
}

.form-switch {
    padding-left: 2.75em;
}

.form-switch .form-check-input {
    width: 2.75em;
    margin-left: -2.75em;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9Jy00IC00IDggOCc+PGNpcmNsZSByPSczJyBmaWxsPScjZmZmJy8+PC9zdmc+");
    border-radius: 3em;
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9Jy00IC00IDggOCc+PGNpcmNsZSByPSczJyBmaWxsPScjZmZmJy8+PC9zdmc+");
}

.form-switch .form-check-input:checked {
    background-position: right center;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9Jy00IC00IDggOCc+PGNpcmNsZSByPSczJyBmaWxsPScjZmZmJy8+PC9zdmc+");
}

/*--------------------------------------------------------------
## Avatar
--------------------------------------------------------------*/

.flex-avatar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
    white-space: nowrap;
    font-weight: bold;
    border-radius: 100%;
}

.flex-avatar img {
    width: inherit;
    height: inherit;
    border-radius: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}

.flex-avatar .avatar-upload {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    font-size: 1.5rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
    opacity: 0;
}

.flex-avatar:hover .avatar-upload {
    opacity: 1;
}

.flex-avatar .avatar-badge {
    position: absolute;
    right: -1px;
    bottom: 0;
    width: 10px;
    height: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNiIgZmlsbD0ibm9uZSI+PGNpcmNsZSBjeD0iMTgiIGN5PSIxOCIgcj0iMTgiIGZpbGw9InVybCgjYSkiLz48cGF0aCBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOS4wNSAxMS4zNWMuNjQuNjQuNjQgMS42OCAwIDIuMzJMMTYuNzQ3IDI1Ljk3M2ExLjc1IDEuNzUgMCAwIDEtMi40NzYgMEw4LjE2IDE5Ljg2YTEuNjQxIDEuNjQxIDAgMCAxIDIuMzIxLTIuMzIxbDUuMDMgNS4wMjlMMjYuNzI3IDExLjM1Yy42NDEtLjY0MSAxLjY4LS42NDEgMi4zMjEgMFoiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjMxLjcxNCIgeDI9Ii0zLjczMSIgeTE9Ii44NTciIHkyPSIxMS44MzkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZCNzRBIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkQ5MDBGIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PC9zdmc+');
    transform: translate(0%, 0%);
}

.flex-avatar .avatar-badge.editor {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNiIgaGVpZ2h0PSIzNiIgZmlsbD0ibm9uZSI+PGNpcmNsZSBjeD0iMTgiIGN5PSIxOCIgcj0iMTgiIGZpbGw9InVybCgjYSkiLz48cGF0aCBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yOS4wNSAxMS4zNWMuNjQuNjQuNjQgMS42OCAwIDIuMzJMMTYuNzQ3IDI1Ljk3M2ExLjc1IDEuNzUgMCAwIDEtMi40NzYgMEw4LjE2IDE5Ljg2YTEuNjQxIDEuNjQxIDAgMCAxIDIuMzIxLTIuMzIxbDUuMDMgNS4wMjlMMjYuNzI3IDExLjM1Yy42NDEtLjY0MSAxLjY4LS42NDEgMi4zMjEgMFoiIGNsaXAtcnVsZT0iZXZlbm9kZCIvPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjMxLjcxNCIgeDI9Ii0zLjczMSIgeTE9Ii44NTciIHkyPSIxMS44MzkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjN0NCMUZGIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMEY2RUZEIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PC9zdmc+');
}

.flex-avatar.w-24 .avatar-badge {
    width: 10px;
    height: 10px;
}

.flex-avatar.w-24 .avatar-badge {
    width: 10px;
    height: 10px;
}

/*--------------------------------------------------------------
avatar group
--------------------------------------------------------------*/

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group .flex-avatar {
    position: relative;
}

.avatar-group .flex-avatar + .flex-avatar {
    margin-left: -0.5rem;
}

.avatar-group .flex-avatar:hover,
.avatar-group .flex-avatar:active,
.avatar-group .flex-avatar.active {
    z-index: 1;
}


/*--------------------------------------------------------------
## 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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    color: #fff;
    border-radius: inherit;
}

.media-overlay.overlay-top {
    bottom: auto;
}

.media-overlay.overlay-bottom {
    top: auto;
    background: var(--color-secondary);
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, rgba(6, 6, 8, 0), rgba(6, 6, 8, 0.6));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.media-overlay .badge-topic {
    background-color: rgb(58 64 95 / 60%);
    position: relative;
    border-radius: inherit;
    padding: 7px 10px 7px 30px;
}

.media-overlay .badge-topic .icon-topic-dot {
    position: absolute;
    font-size: 1rem;
    left: 10px;
    top: 50%;
    transform: translate(0%, -50%);
}

.media-overlay.overlay-bottom .text-muted:not(i),
.media-overlay.overlay-bottom .text-muted:not(i) a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.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-text {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--color-muted);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
    border-radius: inherit;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: var(--gray-2);
}

.media-content img {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.media-action {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    pointer-events: none;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.media-action .btn {
    background-color: rgba(21, 21, 22, 0.5);
    color: #fff;
}

@media (max-width: 767.98px) {
    .media-action .btn-md {
        width: 2.125rem;
        height: 2.125rem;
        border-width: 1px;
    }
}

.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;
}

@media (max-width: 767.98px) {
    .media-5x1:after {
        padding-top: 33%;
    }
}

/*--------------------------------------------------------------
    custom style
  --------------------------------------------------------------*/

.custom-hover {
    position: relative;
}

.custom-hover .media-content {
    transition: all 300ms ease-in-out;
}

.custom-hover:hover .media-content {
    transform: scale(1.05);
}

/*--------------------------------------------------------------
    overlay style
--------------------------------------------------------------*/

.overlay-1 {
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    position: absolute;
    opacity: 0.4;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
}

.overlay-hover:hover .overlay-1,
a:hover .overlay-1 {
    opacity: 0.6;
}

.overlay-grad {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.8;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
    background: var(--color-dark);
    background: linear-gradient(to bottom, rgb(35 41 50 / 0%), rgb(35 41 50 / 60%));
}

.overlay-hover:hover .overlay-grad,
a:hover .overlay-grad {
    opacity: 0.2;
}

/**--------------------------------------------------------------
Card
--------------------------------------------------------------**/

.index-posts-menu.block, .sidebar-inner .block, .widget.block, .list-item.block {
    position: relative;
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    transition: all 300ms ease-in-out;
	overflow: hidden
}

.index-posts-menu.block, .sidebar-inner .block, .widget.block, .list-item.block {
    position: relative;
    background-color: #fff;
}

.card-header,
.card-footer {
    background-color: transparent;
    border-color: transparent;
    background-clip: padding-box;
    border: 0;
    padding: 1.25rem;
}

.card-header:first-child {
    padding: 1.25rem 1.25rem 0;
    border-radius: 0;
    margin-bottom: -0.125rem;
}

.card-body {
    padding: 1.25rem;
}

.card-body p:last-child {
    margin-bottom: 0;
}

.card-title {
    line-height: 1.5;
}

.card-md .card-header {
    padding: 2rem 2rem 0;
}

.card-md .card-body {
    padding: 2rem;
}

.card-md .card-footer {
    padding: 0 2rem 1.5rem;
    margin-top: -1rem;
}

@media (max-width: 767.98px) {

    .card-header,
    .card-footer {
        padding: .75rem;
    }

    .card-header:first-child {
        padding: .75rem .75rem 0;
    }

    .card-body {
        padding: .75rem;
    }

    .card-footer {
        padding: 0 .75rem .75rem;
    }

    .card-md .card-header {
        padding: 1.375rem 1.375rem 0;
    }

    .card-md .card-body {
        padding: 1.375rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .card-md .card-header {
        padding: 1.5rem 1.5rem 0;
    }

    .card-md .card-body {
        padding: 1.5rem;
    }
}

/*--------------------------------------------------------------
List
--------------------------------------------------------------*/

.list {
    padding-left: 0;
    padding-right: 0;
}

.list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    word-wrap: break-word;
}

.list-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

.list-body {
    flex: 1 1 auto;
}

.list-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 8px;
}

/*@media (min-width: 768px) {*/
/*    .list-tags {*/
/*        max-width: 440px;*/
/*        flex-wrap: nowrap;*/
/*        justify-content: start;*/
/*        overflow-x: auto;*/
/*        overflow-y: hidden;*/
/*        -webkit-overflow-scrolling: touch;*/
/*        -ms-overflow-style: -ms-autohiding-scrollbar;*/
/*    }*/

/*    .list-tags::-webkit-scrollbar {*/
/*        width: 6px;*/
/*        height: 6px;*/
/*        background-color: transparent*/
/*    }*/

/*    .list-tags::-webkit-scrollbar-thumb {*/
/*        border-radius: 10px;*/
/*        background-color: var(--color-dark)*/
/*    }*/

/*    .list-tags::-webkit-scrollbar-track {*/
/*        border-radius: 10px;*/
/*        background-color: var(--bg-light)*/
/*    }*/
/*}*/


.list-tags a {
    position: relative;
    max-width: 180px;
    padding: 2px 6px 2px 24px;
    border-radius: 24px 10px 10px 24px;
    color: var(--color-secondary);
    background-color: var(--bg-light);
}

.list-tags a:hover {
    color: var(--color-primary);
}

.list-tags a .brand-icon {
    position: absolute;
    left: 4px;
    top: 4px;
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0ibm9uZSI+PGNpcmNsZSBjeD0iOCIgY3k9IjgiIHI9IjgiIGZpbGw9InVybCgjYSkiLz48ZyBjbGlwLXBhdGg9InVybCgjYikiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMi4xMjMgOS4zNzVhLjc1Ljc1IDAgMCAxLS4wNjUgMS4yODhsLTMuNTkgMS44OThhMSAxIDAgMCAxLS45MzYgMGwtMy41OS0xLjg5OGEuNzUuNzUgMCAwIDEtLjA2NS0xLjI4OGwuMDMyLjAyIDMuNjIzIDEuOTE2YTEgMSAwIDAgMCAuOTM1IDBsMy41OTEtMS44OThhLjgwMS44MDEgMCAwIDAgLjA2NS0uMDM4Wm0wLTJhLjc1Ljc1IDAgMCAxIDAgMS4yNWwtLjA2NS4wMzgtMy41OSAxLjg5OGExIDEgMCAwIDEtLjg1NC4wMzlsLS4wODEtLjAzOS0zLjU5MS0xLjg5OGEuNzUuNzUgMCAwIDEtLjA2NS0xLjI4OGwuMDMyLjAyIDMuNjIzIDEuOTE2YTEgMSAwIDAgMCAuODU0LjAzOWwuMDgxLS4wMzkgMy41OTEtMS44OThhLjgwMS44MDEgMCAwIDAgLjA2NS0uMDM4Wk04LjQ2NiAzLjQzOWwzLjU5MSAxLjg5OGEuNzUuNzUgMCAwIDEgMCAxLjMyNmwtMy41OSAxLjg5OWExIDEgMCAwIDEtLjkzNiAwbC0zLjU5LTEuODk5YS43NS43NSAwIDAgMSAwLTEuMzI2bDMuNTktMS44OThhMSAxIDAgMCAxIC45MzUgMFoiLz48L2c+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJhIiB4MT0iOCIgeDI9IjgiIHkxPSIwIiB5Mj0iMTYiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZDNDhEIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkY1NzU3Ii8+PC9saW5lYXJHcmFkaWVudD48Y2xpcFBhdGggaWQ9ImIiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0yIDJoMTJ2MTJIMnoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=');
}

@media (max-width: 767.98px) {
    .list-tags a {
        display: none;
    }

    .list-tags a:first-child {
        display: block;
    }

    .list-tags a {
        max-width: 100px;
        padding: 2px 4px 2px 20px;
    }

    .list-tags a .brand-icon {
        left: 4px;
        top: 4px;
        width: 12px;
        height: 12px;
    }
}

.list-footer {
    margin-top: .75rem;
}

.list-footer a.active {
    color: var(--color-danger);
}

.list-title {
    display: block;
    color: inherit;
}

@media (max-width: 767.98px) {
    .list-footer {
        margin-top: 0.25rem;
    }
}

/*--------------------------------------------------------------
  ## List grid hover
  --------------------------------------------------------------*/

.list-item {
    flex-direction: row;
    margin-bottom: 1rem;
}

.list-item:last-child {
    margin-bottom: 0;
}

.list-item .item-badge {
    position: absolute;
    left: 0;
    top: 0;
    font-size: .6875rem;
    line-height: 1.3;
    padding: .125rem 0.375rem;
    color: #fff;
    background-color: rgb(0 0 0 / 60%);
    border-top-left-radius: inherit;
    border-bottom-right-radius: 7px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

.list-item .item-badge.locked {
    background: #ff3737;
    background: linear-gradient(to right, #ff3737, #ff6969);
}

.list-item .item-badge.top {
    background: #ff6737;
    background: linear-gradient(to right, #ff6737, #ff9f46);
}

.list-item .item-badge.tag {
    background: #3858f6;
    background: linear-gradient(to right, #3858f6, #9676ff);
}

.list-item {
    padding: 12px;
}

@media (max-width: 767.98px) {

    .list-item .list-content {
        padding: .25rem 0;
    }

    .list-item .item-badge {
        font-size: .625rem;
        padding: .125rem .3125rem;
        border-bottom-right-radius: 5px;
    }

    .list-item {
        gap: 8px;
        padding: .75rem;
        margin-bottom: .75rem;
    }

    .list-grid.list-grid-padding .list-content {
        padding: 0;
    }

}

/*--------------------------------------------------------------
List bordered
--------------------------------------------------------------*/

.list-bordered.list-item {
    padding: 0;
}

.list-bordered.list-item:last-child {
    margin: 0;
}

.list-bordered .list-item .media {
    border-radius: var(--border-radius-sm);
}

/*--------------------------------------------------------------
List posts
--------------------------------------------------------------*/
.list-item .media {
    width: 150px;
}

@media (max-width: 767.98px) {
    .list-item .media {
        width: 120px;
    }
}

.author-posts .list-item .media {
    width: 80px;
    height: 80px;
}

@media (max-width: 767.98px) {
    .author-posts .list-item .media {
        width: 80px;
        height: 80px;
    }
}

/*--------------------------------------------------------------
 list author
--------------------------------------------------------------*/

.list-grid.list-grid-padding .comment {
    padding: 1.25rem;
}

.list-grid.list-grid-padding .comment time {
    position: relative;
    margin-right: 1.5rem;
    padding-right: .5rem;
}

.list-grid.list-grid-padding .comment time::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 2px;
    background-color: var(--color-primary);
    transform: translate(100%, -50%) rotate(135deg);
}

.list-grid.list-grid-padding .comment .comment-quotes {
    display: inline-block;
    position: absolute;
    right: 25px;
    bottom: 15px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDExNTIgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iNzIiIGhlaWdodD0iNjQiPjxkZWZzPjxzdHlsZS8+PC9kZWZzPjxwYXRoIGQ9Ik00NzAuMDggMHYzODRjNi45MTIgMzA1Ljc5Mi0xNDQuOTYgNTEyLTQ1NS41NTIgNjE4LjY4OHYtMTYwQzE5My45MiA3NDMuMTY4IDI4MC4yNTYgNjA4IDI3My4yOCA0MzcuMzc2SDBWMGg0NzAuMDh6bTYzOC4wOCAwdjM4NGM2LjkxMiAzMDUuNzkyLTE0NC45NiA1MTItNDU1LjU1MiA2MTguNjg4di0xNjBDODMyLjA2NCA3NDMuMTY4IDkxOC4zMzYgNjA4IDkxMS40MjQgNDM3LjM3NmgtMjczLjI4VjBoNDcwLjAxNnoiIGZpbGw9IiM2MjY4ODIiIGZpbGwtb3BhY2l0eT0iLjY4NyIgb3BhY2l0eT0iLjUiLz48L3N2Zz4=');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 30px;
    height: 30px;
    opacity: .3;
}

@media (max-width: 767.98px) {
    .list-grid.list-grid-padding .comment .comment-quotes {
        right: 15px;
        bottom: 15px;
        width: 25px;
        height: 25px;
    }
}


/*--------------------------------------------------------------
    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
--------------------------------------------------------------*/

.site-navbar {
    padding-top: .75rem;
    padding-bottom: .75rem;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: var(--shadow);
    z-index: 99;
}

.site-navbar.is-sticky {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
}

@supports (((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter:blur(6px)))) {
    .site-navbar.is-sticky {
        background-color: rgba(255, 255, 255, 0.8);
        -webkit-backdrop-filter: saturate(180%) blur(6px);
        backdrop-filter: saturate(180%) blur(6px)
    }
}

/*--------------------------------------------------------------
nav brand
--------------------------------------------------------------*/

.site-navbar .navbar-brand {
    max-width: 200px;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}

.site-navbar .navbar-brand img {
    max-height: 50px;
}

@media (max-width: 767.98px) {
    .site-navbar .navbar-brand img {
        max-height: 40px;
        max-width: 135px;
    }
}

/*--------------------------------------------------------------
  ## Main Navigation
  --------------------------------------------------------------*/

.navbar-site li {
    position: relative;
}

.navbar-site > li {
    margin-right: .5rem;
}

.navbar-site > li.menu-item-has-children {
    margin-right: 1rem;
}

.navbar-site > li:last-child {
    margin-right: 0;
}

.navbar-site li a {
    display: block;
    font-size: 1rem;
    color: var(--color-secondary);
    padding: 0.75rem .5rem;
}

.navbar-site > li:hover a,
.navbar-site > li.current-menu-item > a {
    color: var(--color-dark);
}

/* Submenu */
.navbar-site li ul.sub-menu {
    position: absolute;
    left: 0;
    top: 115%;
    z-index: 100;
    padding: 0.5rem;
    background: #fff;
    min-width: 220px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 500ms ease;
    border: 0;
    box-shadow: 0 0 15px rgb(0 0 0 / 7%);
    border-radius: var(--border-radius-md);
}

.navbar-site li ul.sub-menu li {
    display: block;
    position: relative;
}

.navbar-site li ul.sub-menu li:last-child {
    margin-bottom: 0;
}

.navbar-site li ul.sub-menu li a {
    position: relative;
    display: block;
    padding: 0.75rem;
    transition: all 0.3s ease-in;
    color: var(--color-muted);
    z-index: 1;
}

.navbar-site li ul.sub-menu li a:hover,
.navbar-site li ul.sub-menu li.current-menu-item > a {
    color: var(--color-dark);
}

.navbar-site li:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0px);
}

.navbar-site li ul.sub-menu .sub-menu {
    left: 100%;
    top: -8px;
    transition: 0.5s;
    transition-delay: 0.1s;
    transform: translateX(-20px);
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transform-origin: left;
}

.navbar-site li ul.sub-menu li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
    pointer-events: all;
}

/*--------------------------------------------------------------
  ## site submenu icon Navigation
  --------------------------------------------------------------*/

.navbar-site li.menu-item-has-children > a .menu-arrow {
    position: absolute;
    top: 50%;
    right: -6px;
    height: 6px;
    width: 6px;
    opacity: 0.3;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) rotate(0deg);
}

.navbar-site li.menu-item-has-children > a .menu-arrow:after {
    content: "";
    display: block;
    height: 6px;
    width: 6px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(315deg);
    transition: all 0.2s;
}

.navbar-site li.menu-item-has-children > a:hover .menu-arrow {
    margin-top: 2px;
}

.navbar-site li.menu-item-has-children > a:hover .menu-arrow:after {
    transform: rotate(135deg);
}

.navbar-site li ul.sub-menu li.menu-item-has-children > a .menu-arrow {
    margin-top: 0;
    right: 10px;
}

.navbar-site li ul.sub-menu li.menu-item-has-children > a .menu-arrow:after {
    transform: rotate(315deg);
}

.navbar-site li ul.sub-menu li.menu-item-has-children:hover .menu-arrow:after,
.navbar-site li ul.sub-menu li.menu-item-has-children > a:hover .menu-arrow:after {
    transform: rotate(225deg);
}


/*--------------------------------------------------------------
site main
--------------------------------------------------------------*/

.site-main {
    padding: 2rem 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .site-main {
        padding: 1.5rem 0;
    }
}

@media (max-width: 767.98px) {
    .site-main {
        padding: 1rem 0;
    }
}

/*--------------------------------------------------------------
    index posts menu style
--------------------------------------------------------------*/

.index-posts-menu {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px;
    padding: 0 1.25rem;
}

.index-posts-menu a {
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.index-posts-menu a.active {
    color: var(--color-primary);
}

.index-posts-menu a:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 6px;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.index-posts-menu a:hover:after,
.index-posts-menu a.active:after {
    opacity: 1;
    width: 30px;
}

@media (max-width: 991.98px) {
    .index-posts-menu {
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        gap: 8px;
    }

    .index-posts-menu::-webkit-scrollbar {
        display: none;
    }

}

/*--------------------------------------------------------------
## Post
--------------------------------------------------------------*/

.post {
    padding: 1.5rem;
}

.post .post-title {
    color: var(--color-dark);
}

@media (max-width: 767.98px) {
    .post {
        padding: .75rem;
    }
}

/*--------------------------------------------------------------
## Post poster
--------------------------------------------------------------*/

.post .post-poster {
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 0;
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
}

.post .post-poster a {
    color: #fff;
}

.post .post-poster .poster-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
}

.post .post-poster .poster-content {
    padding: 2rem;
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
}

/* support backdrop-filter */
@supports (((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px)))) {
    .post .post-poster .poster-content {
        background-color: rgba(60, 60, 60, 0.2);
        -webkit-backdrop-filter: saturate(150%) blur(25px);
        backdrop-filter: saturate(150%) blur(25px);
    }
}


/* no support backdrop-filter */

@supports (not (((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))))) {
    .post .post-poster .poster-content {
        background-color: rgba(255, 255, 255, .8);
    }
}

.post .post-poster .post-title {
    color: #fff;
}


/* 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;
}

.post-content > .wp-block-cover.alignwide:first-child,
.post-content > .wp-block-cover.alignfull:first-child {
    margin-top: 0;
}


/* Font Families ----------------------------- */

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--color-dark);
}

.post-content h1,
.post-content h2,
.post-content h3 {
    margin: 0 auto 1rem;
}

.post-content h4,
.post-content h5,
.post-content h6 {
    margin: 0 auto 1rem;
}

.post-content h2 {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

@media (max-width: 767.98px) {

    .post-content h1,
    .post-content h2,
    .post-content h3 {
        margin: 0 auto 1rem;
    }

    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin: 0 auto 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .post-content h1,
    .post-content h2,
    .post-content h3 {
        margin: 0 auto 1rem;
    }

    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin: 0 auto 1rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

    .post-content h1,
    .post-content h2,
    .post-content h3 {
        margin: 0 auto 1rem;
    }

    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin: 0 auto 1rem;
    }
}


/* 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 {
    color: var(--color-primary);
    box-shadow: 0 -0.0625rem 0 0 rgb(56 88 246 / 41%) inset;
    transition: .3s ease-in
}

.post-content p > a,
.post-content p > a:not(.btn),
.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 -0.0625rem 0 0 var(--color-primary) inset
}


/* Alignment Classes ------------------------- */

.post-content .alignnone,
.wp-block-image,
.wp-block-embed {
    margin: 1.5rem 0
}

.alignright,
a img.alignright,
.wp-block-image .alignright {
    float: right;
    margin: .25rem 0 1.25rem 1.875rem
}

.alignleft,
a img.alignleft,
.wp-block-image .alignleft {
    float: left;
    margin: .25rem 1.875rem 1.25rem 0
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 2.5rem auto
}

.aligncenter > img,
div.aligncenter > img {
    margin: 0 auto
}

p img.alignnone,
img.alignnone {
    display: block;
    margin: 2.5rem 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: .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 .5rem;
}

.post-content li img {
    display: inline-block;
}


/*--------------------------------------------------------------
    block table style
--------------------------------------------------------------*/

.post-content table {
    min-width: 540px;
    margin: 2rem 0;
}

/*--------------------------------------------------------------
## thumbnail style
--------------------------------------------------------------*/

.post-thumbnail img {
    width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
## Post excerpt
--------------------------------------------------------------*/

.post-excerpt {
    position: relative;
    font-size: 1rem;
    line-height: 1.85;
    word-break: normal;
    word-wrap: break-word;
}

/*--------------------------------------------------------------
## Pagination (WordPress CSS classes)
--------------------------------------------------------------*/
.pagination-container {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 1.5rem 0 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    word-wrap: normal !important;
}

.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.page-numbers,
.post-page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    text-align: center;
    padding: 0 .375rem;
    margin: .25rem;
    background-color: var(--bg-light);
    color: var(--color-muted);
    border-radius: var(--border-radius-sm);
}

.page-numbers:hover,
.page-numbers.current,
.post-page-numbers:hover,
.post-page-numbers.current {
    color: #fff;
    background-color: var(--color-primary);
}

.page-numbers.dots {
    min-width: auto;
    text-align: center;
    padding: 0 0.375rem;
    margin: 0.25rem;
    background-color: transparent;
    border-radius: 0;
}

.page-numbers.dots:hover {
    color: var(--color-muted);
    background-color: transparent;
}

@media (max-width: 767.98px) {
    .pagination-container {
        margin: 1rem 0 0
    }

    .page-numbers {
        min-width: 32px;
        height: 32px;
        margin: .25rem;
    }

}

.pagination-quick-jumper {
    margin-left: .25rem;
}

.pagination-quick-jumper .quick-jumper-input {
    min-width: 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius-xs);
    text-align: center;
    border: 0;
    padding: .25rem;
    margin: 0 .25rem;
}

.pagination-quick-jumper .quick-jumper-input::-webkit-inner-spin-button,
.pagination-quick-jumper .quick-jumper-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pagination-quick-jumper .quick-jumper-input {
    -moz-appearance: textfield;
}

/*--------------------------------------------------------------
List related
--------------------------------------------------------------*/

.post-related li {
    position: relative;
    margin: 0 0 .75rem;
    padding-left: 1.5rem;

}

.post-related li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 9px;
    width: 5px;
    height: 5px;
    background-color: var(--color-secondary);
    border-radius: 10px;
}

.post-related li:last-child {
    margin: 0;
}

.post-related li a:hover {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
    Archive header style
--------------------------------------------------------------*/

.archive-header .archive-icon {
    position: absolute;
}

.archive-header .archive-body {
    padding: 0 0 0 60px;
    margin-top: .125rem;
}

.archive-header .archive-body sup {
    font-size: 80%;
    font-weight: normal;
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .archive-header .archive-body {
        padding: 0 0 0 50px;
        margin-top: 0;
    }

}

@media (max-width: 767.98px) {
    .archive-header .archive-body {
        padding: 4px 0 0 50px;
        margin-top: 0;
    }
}

/*--------------------------------------------------------------
    post tags style
--------------------------------------------------------------*/
.post-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.post-tags a {
    position: relative;
    display: inline-block;
    font-size: .75rem;
    color: var(--color-muted);
    padding: .25rem .75rem .25rem 1.75rem;
    margin: .5rem .75rem .5rem 0;
    border-radius: 20px;
    background-color: var(--gray-2);
}

.post-tags a::before {
    content: '#';
    position: absolute;
    left: 6px;
    top: 5px;
    line-height: 1;
    width: 16px;
    height: 16px;
    background-color: var(--color-primary);
    border-radius: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-tags a:hover {
    color: var(--color-primary);
    background-color: var(--outline-primary);
}

/*---------------------------------------------------
 post actions
--------------------------------------------------------------*/
.like-button.active {
    color: var(--color-danger)
}

.btn.like-button {
    background-color: transparent !important;
    border: 0 !important;
    padding: 0;
}

.like-button i {
    transition: color .1s ease
}

.like-button.active i {
    -webkit-animation: icon-expand-animation 1.2s both cubic-bezier(.45, .05, .55, .95);
    animation: icon-expand-animation 1.2s both cubic-bezier(.45, .05, .55, .95)
}

.like-button.active i:before {
    content: "\e986";
}

@-webkit-keyframes loading-spin-animation {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes loading-spin-animation {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes icon-expand-animation {
    0% {
        transform: scale(0)
    }

    15% {
        transform: scale(1.4)
    }

    32% {
        transform: scale(.8)
    }

    50% {
        transform: scale(1);
        opacity: 1
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes icon-expand-animation {
    0% {
        transform: scale(0)
    }

    15% {
        transform: scale(1.4)
    }

    32% {
        transform: scale(.8)
    }

    50% {
        transform: scale(1);
        opacity: 1
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

/*---------------------------------------------------
 widget
--------------------------------------------------------------*/

.widget {
    position: relative;
    padding: 16px;
    margin-bottom: 16px !important;
}

.widget.hidden {
    opacity: .1;
    pointer-events: none;
}

.widget-header {
    position: relative;
    font-weight: bold;
    margin: 0 0 16px 0;
    padding-left: 25px;
}

.widget-border {
    position: absolute;
    top: -3px;
    left: 0;
    width: 36px;
    height: 30px;
    border-radius: 4px;
}

.widget-border::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 18px;
    border-radius: 10px;
    background-color: var(--color-primary);
    opacity: 1;
    transform: translateY(-50%) rotate(15deg);
    transition: all .4s ease-in-out;
}

.widget-border::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    width: 3px;
    height: 16px;
    border-radius: 10px;
    background-color: var(--color-primary);
    opacity: .6;
    transform: translateY(-50%) rotate(15deg);
    transition: all .4s ease-in-out;
}

.widget:hover .widget-border::before,
.widget:hover .widget-border::after {

    transform: translateY(-50%) rotate(-165deg);
}

/*--------------------------------------------------------------
  widget categories + tagcloud style
--------------------------------------------------------------*/

.widget-tags .tag-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.widget-tags .tag-list a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: .875rem;
    padding: .375rem .625rem;
    color: var(--color-secondary);
    background-color: var(--bg-light);
    border-radius: var(--border-radius-sm);
}

.widget-tags .tag-list a:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.widget-tags .tag-list a i {
    position: relative;
    top: -1px;
    margin-left: 4px;
    color: var(--color-primary);
}

.widget-tags .tag-list a:hover i {
    color: #fff;
}

.widget-posts .post-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-posts .post-list a {
    position: relative;
    padding-left: 14px;
}

.widget-posts .post-list a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: var(--gray-3);
    border-radius: 8px;
}

/*--------------------------------------------------------------
  widget_media_image style
--------------------------------------------------------------*/

.widget_media_image img {
    max-width: 100%;
    height: auto;
    width: auto;
}

/*--------------------------------------------------------------
  widget_recent_comments style
--------------------------------------------------------------*/

.widget_nav_menu ul li {
    position: relative;
    text-transform: none;
    margin-bottom: .5rem;
}

.widget_nav_menu ul li:last-child {
    margin-bottom: 0;
}

.widget_nav_menu ul li a {
    display: block;
    padding: .5rem .75rem;
    background-color: var(--gray-2);
    border-radius: var(--border-radius-sm);
}

.widget_nav_menu ul li.menu-item-has-children::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    height: 6px;
    width: 6px;
    border-left: 1px solid var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
    transform: rotate(315deg);
    transition: all 0.2s;
}

.widget_nav_menu ul li.menu-item-has-children:hover::after {
    margin-top: 2px;
    transform: rotate(135deg);
}

.widget_nav_menu ul li ul {
    margin-top: .5rem;
}

.widget_nav_menu ul li > ul {
    display: none;
}

.widget_nav_menu ul li:hover > ul {
    display: block;
}

.widget_nav_menu ul li > ul ul li a {
    background-color: var(--bg-light);
}

/* --------------------------------
    widget pinned_post
  -------------------------------- */
.widget_pinned_post {
    position: relative;
    padding: 0;
}

.widget_pinned_post .media-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}

.widget_pinned_post .pinned-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    color: #fff;
    z-index: 3;
}

.widget_pinned_post .pinned-content .pinned-post-title a {
    color: #fff;
}

/*--------------------------------------------------------------
widget menu style
--------------------------------------------------------------*/
.widget-menu ul {
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 4px;
}

.widget-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 16px;
    border-radius: var(--border-radius-xs);
}

.widget-menu li.current-menu-parent a {
    background-color: var(--outline-primary);
    color: var(--color-primary);
}

.widget-menu li .menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    font-size: 20px;
}

/*--------------------------------------------------------------
Widget post banner style
--------------------------------------------------------------*/

.widget_post_banner .media {
    height: 240px;
}

/*--------------------------------------------------------------
comment style
--------------------------------------------------------------*/
.comments .comment-respond {
    position: relative;
}

.comments .comment-form,
.comments .comment {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.comments .comment:last-child {
    margin-bottom: 0;
}

.comments .comment-text {
    text-align: justify;
    word-wrap: break-word;
    word-break: break-all;
    line-height: 1.65
}

.comments .comment-text .comment_at {
    color: var(--color-muted);
}

.comments .comment-avatar {
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
}

.comments .comment-info {
    font-weight: bold;
}

.comments .comment .children {
    margin-top: 1.25rem;
}

.comments .comment .children .comment {
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
}

.comments .comment .children .comment .comment-avatar {
    width: 28px;
    height: 28px;
}

@media (max-width: 767.98px) {
    .comments .comment-avatar {
        width: 32px;
        height: 32px;
    }

    .comments .comment .children .comment {
        padding-left: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .comments .comment .children .comment .comment-avatar {
        width: 28px;
        height: 28px;
    }

}

/*--------------------------------------------------------------
breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs span.sep {
    margin: 0 0.25rem;
}


/* -------------------------------- 
    Footer 
  -------------------------------- */
.site-footer {
    background-color: #fff;
}

.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
}

.site-footer .footer-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.site-footer .footer-menu li {
    position: relative;
    margin: .25rem 1rem .25rem 0;
    padding: 0 1rem 0 0;
}

.site-footer .footer-menu li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.site-footer .footer-menu li:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 10px;
    background-color: var(--color-primary);
    transform: translate(50%, -50%);
}

.site-footer .footer-menu li:last-child:after {
    display: none;
}

.site-footer .footer-menu li a {
    display: block;
    white-space: nowrap;
}

.site-footer .footer-social {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
}

@media (max-width: 991.98px) {

    .site-footer .footer-content {
        flex-direction: column;
        justify-content: center;
    }

    .site-footer .footer-menu {
        justify-content: center;
    }
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-links a {
    display: inline-block;
    color: var(--color-muted);
    margin: 0 .5rem 0 0;
    white-space: nowrap;
}

.footer-mps {
    margin-right: 8px;
}

.footer-mps img {
    position: relative;
    top: -1px;
}

/*--------------------------------------------------------------
## slide style index 
--------------------------------------------------------------*/
.index-slide .media {
    height: 240px;
}

.index-slide .swiper-pagination.swiper-pagination-bullets {
    bottom: 5px;
}

.index-slide .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    --swiper-pagination-bullet-horizontal-gap: 2px
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .index-slide .media {
        height: 220px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .index-slide .media {
        height: 170px;
    }

}

@media (max-width: 767.98px) {
    .index-slide .media {
        height: 150px;
    }

    .index-slide .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        --swiper-pagination-bullet-width: 4px;
        --swiper-pagination-bullet-height: 4px;
        --swiper-pagination-bullet-horizontal-gap: 2px
    }
}

.slide-nextprev .swiper-button-next,
.slide-nextprev .swiper-button-prev {
    width: var(--swiper-navigation-size);
    color: var(--swiper-pagination-color);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    transform-origin: 0 0 0;
    transition: all 0.3s ease-out 0s;
}

.slide-nextprev:hover .swiper-button-next,
.slide-nextprev:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.slide-nextprev:hover .swiper-button-next {
    right: 3%
}

.slide-nextprev:hover .swiper-button-prev {
    left: 3%
}

.slide-nextprev .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-nextprev .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-nextprev .swiper-button-next:after,
.slide-nextprev .swiper-button-prev:after {
    position: relative;
    font-size: calc((var(--swiper-navigation-size) / 2.25))
}

.slide-nextprev .swiper-button-prev:after {
    left: -1px
}

.slide-nextprev .swiper-button-next:after {
    left: 1px
}

.slide-nextprev .swiper-button-next.swiper-button-disabled,
.slide-nextprev .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}

.slide-nextprev .swiper-pagination {
    display: flex;
    left: 50%;
    width: auto;
    padding: .25rem .125rem;
    border-radius: 3rem;
    transform: translateX(-50%);
    background-color: rgb(0 0 0 / 20%);
}

.slide-nextprev .swiper-pagination.swiper-pagination-lock {
    display: none;
}

/* ---------------------------------------------------
SIDEBAR STYLE
----------------------------------------------------- */

.mobile-sidebar {
    width: 80%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    z-index: 999;
    background: var(--gray-2);
    transform: translateX(-100%);
    transition: 300ms ease;
}

@media (min-width: 767.98px) {
    .mobile-sidebar::-webkit-scrollbar {
        display: none;
    }
}

.mobile-sidebar.active {
    transform: translateX(0);
    transition: 300ms ease;
}

.mobile-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(120, 129, 147, 0.22);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .mobile-sidebar {
        width: 300px;
    }
}

/*--------------------------------------------------------------
navbar mobile
--------------------------------------------------------------*/
.mobile-sidebar-inner {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
}

.mobile-sidebar-menu {
    position: relative;
    padding: 0 1rem;
}

.mobile-sidebar-menu > li {
    position: relative;
    margin: 0 0 .75rem;
    padding: .8125rem 1rem;
    background-color: #fff;
    border-radius: var(--border-radius-md);
}

.mobile-sidebar-menu > li:last-child {
    border-bottom: 0;
}

.mobile-sidebar-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1rem;
    gap: 4px;
    padding: 0;
}

.mobile-sidebar-menu li a .menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    font-size: 1.3125rem;
}

.mobile-sidebar-menu li a .menu-text {
    flex: 1 1 auto;
}

.mobile-sidebar-menu > li:last-child a {
    border-width: 0;
}

.mobile-sidebar-menu li a:hover {
    opacity: 1;
}

.mobile-sidebar-menu > li.in > a {
    color: var(--color-primary)
}

/*--------------------------------------------------------------
navbar mobile sub
--------------------------------------------------------------*/

.mobile-sidebar-menu .sub-menu {
    display: none;
    position: relative;
}

.mobile-sidebar-menu .sub-menu li {
    margin: 1rem 0 0;
}

.mobile-sidebar-menu .sub-menu li:first-child {
    margin: 1rem 0 0;
}

.mobile-sidebar-menu > li.current-menu-item > a,
.mobile-sidebar-menu .sub-menu li > a:hover,
.mobile-sidebar-menu .sub-menu li.current_page_item > a,
.mobile-sidebar-menu .sub-menu li.current-menu-item > a,
.mobile-sidebar-menu .sub-menu li.current_page_ancestor > a,
.mobile-sidebar-menu .sub-menu li.current-menu-ancestor > a,
.mobile-sidebar-menu .sub-menu li.current-menu-parent > a {
    color: var(--color-primary);
}


/*--------------------------------------------------------------
navbar mobile menu sign
--------------------------------------------------------------*/
.mobile-sidebar-menu li .dropdown-sub-menu {
    position: absolute;
    top: 9px;
    right: 0;
    width: 6px;
    opacity: .3;
    transition: all 0.3s ease;
}

.mobile-sidebar-menu li.menu-item-has-children .dropdown-sub-menu {
    right: 2px;
}

.mobile-sidebar-menu li.menu-item-has-children .dropdown-sub-menu:after {
    content: "";
    display: block;
    height: 6px;
    width: 6px;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: rotate(46deg);
    transition: all 0.3s ease;
}

.mobile-sidebar-menu li.in > a > .dropdown-sub-menu:after {
    transform: rotate(135deg);
}

/*--------------------------------------------------------------
    author info
--------------------------------------------------------------*/
.author-info .author-cover {
    position: relative;
    height: 240px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: inherit;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.author-info .author-inner {
    position: relative;
    padding: 0 2rem 1.25rem;
}

.author-info .author-avatar {
    position: relative;
    width: 128px;
    height: 128px;
    margin-top: -56px;
}

.author-info .author-avatar img {
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.author-info .author-avatar .avatar-badge {
    width: 24px;
    height: 24px;
    right: 6px;
    bottom: 6px;
}

.author-info .author-content {
    padding: 1.25rem 0 0 1.25rem;
}

.author-info .author-meta .item {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
}


.author-info .author-meta .item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 15px;
    background-color: var(--bg-light);
    transform: translateY(-50%);
}


.author-info .author-meta .item:last-child {
    padding-right: 0;
    margin-right: 0;
}

.author-info .author-meta .item:last-child::after {
    display: none;
}

@media (max-width: 767.98px) {
    .author-info .author-cover {
        height: 120px;
    }

    .author-info .author-meta {
        position: relative;
        /* padding: 2rem 0 1rem; */
        text-align: center;
        justify-content: center;
    }

    .author-info .author-avatar {
        position: absolute;
        width: 80px;
        height: 80px;
        left: 50%;
        top: 0;
        transform: translate(-50%, 20%);
    }

    .author-info .author-content {
        text-align: center;
        padding: 3.5rem 0 0;
    }
}

/*--------------------------------------------------------------
  tags list style
--------------------------------------------------------------*/
.tags-list .item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.tags-list .item .item-count {
    position: absolute;
    right: 5px;
    bottom: 0;
    font-size: 3rem;
    line-height: 1;
    font-style: italic;
    transform: translate(-10px, 0%);
    opacity: .1;
    transition: all 300ms ease-in-out;
}

.tags-list .item:hover .item-count {
    transform: translate(-20px, 55%);
}

.tags-list .item .item-flag {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    top: 2px;
    right: -5px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMSIgaGVpZ2h0PSIyMSIgZmlsbD0ibm9uZSI+PHJlY3Qgd2lkdGg9IjIxIiBoZWlnaHQ9IjIxIiBmaWxsPSJ1cmwoI2EpIiByeD0iMyIvPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Im00LjIwNiAxMi4yMjIgMS4yMjQtLjE0NGMuMDEyLjMzNi4wNDIuNTY0LjA5LjY4NC4wNDguMTIuMDk2LjE4Ni4xNDQuMTk4LjA2IDAgLjExNC0uMDYuMTYyLS4xOC4wNi0uMTMyLjEwOC0uMzY2LjE0NC0uNzAyTDYuMjA0IDkuOWExNi43IDE2LjcgMCAwIDEtMS4yNi4yNTJsLS4xOTgtMS40NGMuMjc2LS4wNDguNTQ2LS4wOTYuODEtLjE0NC4yNzYtLjA2LjU0Ni0uMTIuODEtLjE4bC4zMjQtMi44MjZINS4zOTRsLjE2Mi0xLjQ3NmgxLjI3OGwuMjM0LTIuMDdoMS40OTRsLS4yMTYgMi4wN0g5LjNsLS4xNjIgMS40NzZoLS45NTRsLS4yNTIgMi4zOTRjLjI3Ni0uMDk2LjU0LS4xOTIuNzkyLS4yODhsLjM2IDEuMzY4Yy0uNDIuMTY4LS44NjQuMzI0LTEuMzMyLjQ2OGwtLjI4OCAyLjc1NGMtLjA4NC44NzYtLjMgMS40NzYtLjY0OCAxLjgtLjM0OC4zMjQtLjcwOC40OC0xLjA4LjQ2OC0uNDgtLjAyNC0uODQ2LS4yMDQtMS4wOTgtLjU0LS4yNC0uMzQ4LS4zODQtLjkzNi0uNDMyLTEuNzY0Wm05LjMyNC0xLjk0NC0uODY0IDEuMDYyYy0uMzYtLjQzMi0uNzMyLS44NC0xLjExNi0xLjIyNGExOC4xODggMTguMTg4IDAgMCAxLTEuMTE2IDIuNTM4Yy0uNDIuNzY4LS44NzYgMS40NC0xLjM2OCAyLjAxNmwtMS4yNi0uOTU0YTkuOTM4IDkuOTM4IDAgMCAwIDEuNDU4LTIuMDUyQTE1LjA2IDE1LjA2IDAgMCAwIDEwLjM4IDlhMTcuODE3IDE3LjgxNyAwIDAgMC0xLjIwNi0uOTcybC44MjgtMS4xMTZjLjI3Ni4yMTYuNTM0LjQyNi43NzQuNjMuMTU2LS42Ni4yODItMS4zNDQuMzc4LTIuMDUySDkuNjc4bC4xNjItMS41MTJoMS40OTRsLjE5OC0xLjk2MmgxLjQ5NGwtLjIxNiAxLjk2MmgxLjYyYy40NTYgMCAuNzkyLjEyNiAxLjAwOC4zNzguMjE2LjI0LjI3Ni42My4xOCAxLjE3YTgzLjIyNiA4My4yMjYgMCAwIDAtLjQ4NiAzLjE2OGMtLjEyLjk4NC0uMTkyIDEuODQ4LS4yMTYgMi41OTItLjAxMi40OC0uMDA2Ljg2NC4wMTggMS4xNTIuMDI0LjI3Ni4xMDIuNDE0LjIzNC40MTQuMTA4IDAgLjIwNC0uMTk4LjI4OC0uNTk0LjA5Ni0uNDA4LjE4Ni0xLjA2OC4yNy0xLjk4bDEuMTM0LjEwOGMtLjEyIDEuNDA0LS4zMTggMi40NTQtLjU5NCAzLjE1LS4yNjQuNjg0LS42NjYgMS4wMjYtMS4yMDYgMS4wMjYtLjU2NCAwLS45NzItLjI1Mi0xLjIyNC0uNzU2LS4yNC0uNTA0LS4zNTQtMS4xNzYtLjM0Mi0yLjAxNi4wMTItLjkuMDc4LTEuODU0LjE5OC0yLjg2Mi4xMi0xLjAyLjI4Mi0yLjE2Ni40ODYtMy40MzhIMTIuNjNBMjMuNTk4IDIzLjU5OCAwIDAgMSAxMiA4LjY0Yy4yNjQuMjUyLjUyMi41MTYuNzc0Ljc5Mi4yNTIuMjY0LjUwNC41NDYuNzU2Ljg0NlptLTguNTE0IDkuMjctMS4yNi0uNzU2YTE0LjM1OCAxNC4zNTggMCAwIDAgMS43ODItMy43NjJsMS4zNjguNDMyYy0uMjA0LjY2LS40NjIgMS4zNDQtLjc3NCAyLjA1MmExMy40MDggMTMuNDA4IDAgMCAxLTEuMTE2IDIuMDM0Wm0xMC45OTgtLjYzLTEuMzg2LjU1OGExOC45NDIgMTguOTQyIDAgMCAwLS41NTgtMi4wMTYgMjguODUgMjguODUgMCAwIDAtLjY4NC0xLjgxOGwxLjM1LS41NzZjLjI0LjU1Mi40NjggMS4xNTguNjg0IDEuODE4LjIxNi42NDguNDE0IDEuMzI2LjU5NCAyLjAzNFptLTMuMjIyLS4xMDgtMS40NC4zNzhhMTYuNDg4IDE2LjQ4OCAwIDAgMC0uMzQyLTEuOCAyNC45NTMgMjQuOTUzIDAgMCAwLS40NS0xLjY5MmwxLjQwNC0uMzZhMzAuNyAzMC43IDAgMCAxIC40NjggMS42NzRjLjE0NC41NzYuMjY0IDEuMTc2LjM2IDEuOFptLTMuMzY2LjE0NC0xLjQ1OC4xOThjMC0uNi0uMDE4LTEuMTk0LS4wNTQtMS43ODJhMjEuOTU2IDIxLjk1NiAwIDAgMC0uMTgtMS43NjRsMS40MjItLjE2MmMuMDk2LjU4OC4xNjIgMS4xNzYuMTk4IDEuNzY0LjA0OC41ODguMDcyIDEuMTcuMDcyIDEuNzQ2WiIvPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgeDE9IjE4LjUiIHgyPSItMi4xNzciIHkxPSIuNSIgeTI9IjYuOTA2IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGN0I1MSIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0ZGMEUwRSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjwvc3ZnPg==');
}

.tags-list .item .item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: var(--border-radius-xs);
    background-color: var(--color-dark);
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgb(0 0 0/10%);
}

.tags-list div:nth-child(6n+1) .item .item-icon {
    background: #9469ff;
    background: linear-gradient(to bottom, #9469ff, #9aacf1);
}

.tags-list div:nth-child(6n+2) .item .item-icon {
    background: #ff3737;
    background: linear-gradient(to bottom, #ff3737, #ff9e9e);
}

.tags-list div:nth-child(6n+3) .item .item-icon {
    background: #FFC837;
    background: linear-gradient(to bottom, #FFC837, #ffc995);
}

.tags-list div:nth-child(6n+4) .item .item-icon {
    background: #4df48a;
    background: linear-gradient(to bottom, #4df48a, #8ad6bb);
}

.tags-list div:nth-child(6n+5) .item .item-icon {
    background: #3858F6;
    background: linear-gradient(to bottom, #a28fff, #3858F6);
}

.tags-list div:nth-child(6n+6) .item .item-icon {
    background: #ff6135;
    background: linear-gradient(to bottom, #ff6135, #ffbaa7);
}

/*--------------------------------------------------------------
## Search popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateY(-20px);
    z-index: 9999
}

.search-popup.active {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.search-popup .search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

@supports (((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px)))) {
    .search-popup .search-popup-overlay {
        -webkit-backdrop-filter: saturate(180%) blur(6px);
        backdrop-filter: saturate(180%) blur(6px)
    }
}

.search-popup.active .search-popup-overlay {
    opacity: 1;
    visibility: visible;
}

.search-popup .search-popup-inner {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 10% auto 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.search-popup.active .search-popup-inner {
    opacity: 1;
    visibility: visible;
}

.search-popup .search-popup-content {
    position: relative;
    overflow: hidden;
}

.search-popup .search-popup-body {
    opacity: 0;
    visibility: hidden;
}

.search-popup .search-popup-close {
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translate(50%, 125%);
}

.search-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -.25rem;
}

.search-tags li {
    flex-shrink: 0;
    padding: .25rem;
    margin: 0
}

.search-tags li a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: .3125rem .625rem .3125rem .5rem;
    color: var(--color-secondary);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-light);
}

.search-tags li a .category-name {
    display: flex;
    align-items: center;
}

.search-tags li a small {
    position: relative;
    flex-shrink: 0;
    margin-left: 0.25rem;
    color: var(--color-muted);
    background-color: var(--gray-2);
    font-size: 0.625rem;
    padding: 0.125rem 0.25rem;
    border-radius: var(--border-radius-xs);
    line-height: 1.2;
}

.search-tags li.hot a {
    background-color: rgb(255 38 38 / 5%);
    color: var(--color-danger);
    border-color: rgb(255 38 38 / 10%);
}

.search-tags li.hot small {
    background-color: var(--color-danger);
    color: #fff;
}

.search-tags li .category-icon {
    font-size: 1rem;
}

@media (max-width: 767.98px) {
    .search-popup .search-popup-inner {
        max-width: 90%;
        margin: 10% auto 2rem;
    }

    .search-popup.focused .search-popup-inner {
        max-width: 90%;
    }

}


/*--------------------------------------------------------------
    popup css
--------------------------------------------------------------*/
.nice-popup {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    overflow-x: hidden;
    overflow-y: auto;
}

.nice-popup-open {
    opacity: 1;
    visibility: visible;
}

.nice-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
}

.nice-popup-open .nice-popup-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/*--------------------------------------------------------------
    popup size
--------------------------------------------------------------*/

.nice-popup-content {
    position: relative;
    width: 100%;
    max-width: 320px;
    padding: 2rem;
    background-color: #fff;
    border-radius: var(--border-radius-md);
    transform: translateY(-40px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.nice-popup-open .nice-popup-content {
    transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.nice-popup-xl .nice-popup-content {
    max-width: 790px;
}

.nice-popup-lg .nice-popup-content {
    max-width: 750px;
}

.nice-popup-md .nice-popup-content {
    max-width: 540px;
}

.nice-popup-sm .nice-popup-content {
    max-width: 350px;
    padding: 1.5rem;
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .nice-popup-xl .nice-popup-content {
        max-width: 670px;
    }
}

@media (max-width: 767.98px) {

    .nice-popup-content {
        width: 95%;
    }

    .nice-popup-xl .nice-popup-content {
        height: 100vh;
    }

}

.nice-popup-header {
    margin-bottom: 16px;
}

/*--------------------------------------------------------------
    hidden body
--------------------------------------------------------------*/

.nice-hidden {
    overflow: hidden;
}

/*--------------------------------------------------------------
    Popup close button
--------------------------------------------------------------*/

.nice-popup-close {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 32px;
    height: 32px;
    z-index: 99;
    cursor: pointer;
    background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTI4IiBoZWlnaHQ9IjEyOCI+PGRlZnM+PHN0eWxlLz48L2RlZnM+PHBhdGggZD0iTTUxMiAwQzIyOS4yIDAgMCAyMjkuMTk5OTk5IDAgNTEyYzAgMjgyLjggMjI5LjIgNTEyIDUxMiA1MTIgMjgyLjgwMDAwMSAwIDUxMi0yMjkuMiA1MTItNTEyQzEwMjQgMjI5LjE5OTk5OSA3OTQuODAwMDAxIDAgNTEyIDB6bTIxMy40NjA1MjIgNzI1Ljk3NTY1OWMtNi4wNzcyNDkgNi4wNzcyNDgtMTQuMDY0NDg4IDkuMTE1ODcyLTIyLjA1MTcyNyA5LjExNTg3Mi03Ljk4NzI0MiAwLTE2LjA2MTI5OC0zLjAzODYyNC0yMi4xMzg1NDgtOS4yMDI2OUw1MTIgNTU2LjI3MTMyMyAzNDIuNzI5NzUyIDcyNS44ODg4NDFjLTYuMDc3MjQ4IDYuMTY0MDY2LTE0LjE1MTMwNiA5LjIwMjY5LTIyLjEzODU0NiA5LjIwMjY5LTcuOTg3MjQgMC0xNS45NzQ0NzktMy4wMzg2MjQtMjIuMDUxNzI3LTkuMTE1ODcyLTEyLjI0MTMxMy0xMi4xNTQ0OTYtMTIuMjQxMzEzLTMxLjk0ODk2LS4wODY4MTgtNDQuMTkwMjczTDQ2Ny44OTY1NDYgNTExLjk5NDIzIDI5OC40NTI2NjEgMzQyLjIwMzA3NGMtMTIuMTU0NDk1LTEyLjI0MTMxMi0xMi4xNTQ0OTUtMzIuMDM1Nzc2LjA4NjgxOC00NC4xOTAyNzEgMTIuMjQxMzEzLTEyLjE1NDQ5NSAzMi4wMzU3NzctMTIuMTU0NDk1IDQ0LjE5MDI3My4wODY4MTdMNTEyIDQ2Ny43MTcxNDFsMTY5LjI3MDI0Ny0xNjkuNzA0MzM4YzEyLjE1NDQ5NS0xMi4yNDEzMTMgMzEuOTQ4OTU5LTEyLjI0MTMxMyA0NC4xOTAyNzUtLjA4NjgxOCAxMi4yNDEzMTMgMTIuMTU0NDk1IDEyLjI0MTMxMyAzMS45NDg5NTkuMDg2ODE4IDQ0LjE5MDI3Mkw1NTYuMTAzNDU0IDUxMS45OTQyMyA3MjUuNTQ3MzQgNjgxLjc4NTM4NmMxMi4xNTQ0OTUgMTIuMjQxMzEzIDEyLjE1NDQ5NSAzMi4wMzU3NzctLjA4NjgxOCA0NC4xOTAyNzN6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, 125%);
}

/*--------------------------------------------------------------
## Popup other style
--------------------------------------------------------------*/

.wechat-share-popup .wechat-share-qrcode {
    margin: 0 auto;

}

.wechat-share-popup .wechat-share-qrcode svg {
    width: 150px;
    height: 150px;
}

/*--------------------------------------------------------------
## Popup style
--------------------------------------------------------------*/

.popup-tips {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    visibility: hidden;
    opacity: 0;
}

.popup-tips.is-visible {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}

.popup-tips.is-visible .popup-tips-content {
    transform: scale(1) translateY(0px);
}

.popup-tips-container {
    max-width: 435px;
    margin: 2rem auto 4rem;
}

.popup-tips-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: .875rem 1.75rem .875rem 1.25rem;
    cursor: auto;
    border-radius: 100px;
    box-shadow: 0 2px 15px 0 rgb(0 0 0 / 9%);
    transform: scale(.95) translateY(50px);
    transition-property: transform;
    transition-duration: 0.5s;

}

@supports ((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px))) {
    .popup-tips-content {
        background-color: rgba(0, 0, 0, 0.6);
        -webkit-backdrop-filter: saturate(180%) blur(6px);
        backdrop-filter: saturate(180%) blur(6px);
    }
}

.popup-tips .popup-tips-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .875rem;
    width: 20px;
    height: 20px;
    margin-right: .5rem;
    border-radius: 100px;
}

.popup-tips .success .popup-tips-icon {
    background-color: var(--color-success);
}

.popup-tips .popup-tips-icon {
    background-color: var(--color-danger);
}


/*--------------------------------------------------------------
    fixed scroll widget
--------------------------------------------------------------*/

.scroll-toolbar {
    position: fixed;
    bottom: 5%;
    right: 1rem;
    z-index: 99;
}

.scroll-toolbar .scroll-backtotop {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 500ms ease;
}

.scroll-toolbar .scroll-backtotop.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .scroll-toolbar {
        bottom: 10%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .scroll-toolbar {
        bottom: 10%;
    }
}


/*--------------------------------------------------------------
## login style
--------------------------------------------------------------*/

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(11 14 30 / 50%);
    z-index: 999;
    cursor: pointer;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
}


@supports ((-webkit-backdrop-filter: blur(6px)) or (backdrop-filter: blur(6px))) {
    .login-modal {
        background-color: rgb(11 14 30 / 50%);
        -webkit-backdrop-filter: saturate(180%) blur(6px);
        backdrop-filter: saturate(180%) blur(6px);
    }
}

.login-modal.is-visible {
    visibility: visible;
    opacity: 1;
}

.login-modal.is-visible .login-modal-container {
    transform: scale(1) translateY(0px);
}

.login-modal-container {
    position: relative;
    width: 96%;
    max-width: 435px;
    padding: 2rem;
    background: #fff;
    margin: 3em auto 4em;
    cursor: auto;
    border-radius: var(--border-radius-md);
    transform: scale(.95) translateY(50px);
    transition-property: transform;
    transition-duration: 0.3s;

}

.login-modal-title {
    font-weight: bold;
}

.login-modal-qrcode {
    max-width: 200px;
    padding: 5px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
}

.login-modal-tab {
    display: flex;
}

.login-modal-tab ul {
    display: flex;
    flex-direction: row;
    border-radius: var(--border-radius-sm);
    background: rgba(51, 51, 51, 0.05);
    padding: .25rem;
}

.login-modal-tab li a {
    display: block;
    padding: .25rem 1.75rem;
    border-radius: var(--border-radius-xs);
}

.login-modal-tab li.selected a {
    background-color: #fff;
}

.login-modal-others {
    margin-top: 2rem;
}

.login-modal-close {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 125%);
    z-index: 2;
}

.others-hr {
    position: relative;
    display: table;
    width: 100%;
    white-space: nowrap
}

.others-hr:after,
.others-hr:before {
    content: "";
    border-top: 1px solid var(--gray-2);
    display: table-cell;
    width: 50%;
    position: relative;
    top: 10px
}

.others-hr span {
    position: relative;
    padding: 0 15px
}

.wechat-login-button {
    background-color: #fff;
    border: 1px solid var(--border-light);
    color: var(--color-secondary)
}

.wechat-login-button i {
    color: #00d382
}

.wechat-login-button:hover,
.wechat-login-button:focus {
    border: 1px solid var(--border-light);
    color: var(--color-dark)
}

/*--------------------------------------------------------------
## user style
--------------------------------------------------------------*/

.user-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.user-menu a {
    flex-shrink: 0;
}

.user-menu a.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}

@media (max-width: 767.98px) {
    .user-menu {
        flex-wrap: nowrap;
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .user-menu::-webkit-scrollbar {
        display: none;
    }
}

/*--------------------------------------------------------------
## user account style
--------------------------------------------------------------*/
.user-account-edit {
}

.user-account-edit .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    min-width: 0;
    word-wrap: break-word;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--gray-2);
}

.user-account-edit .item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-width: 0;
}

.user-account-edit .item .item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
}

.user-account-edit .item .item-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    padding: 0 16px;
}

.user-account-edit .item .item-body {
    flex: 1 1 auto;
}

.user-account-edit .item .item-action {
    flex-shrink: 0;
}

/*--------------------------------------------------------------
## Empty
--------------------------------------------------------------*/
.empty-block .empty-icon {
    width: 400px;
    height: 300px;
}

.empty-block .empty-icon img {
    display: block;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* --------------------------------
## Comment
  -------------------------------- */
.comments .card-header h2 span {
    font-size: .75rem;
    padding: .0625rem .5rem;
    border-radius: 20px;
    background-color: var(--color-primary);
    color: #fff;
}

.comment-respond {
    display: flex;
    flex-direction: row;
}

.comment-respond .flex-avatar {
    width: 36px;
    height: 36px;
}

.comment-respond .respond-input {
    flex: 1 1 auto;
}

.comment-list .comment {
    margin-bottom: 1rem;
}

.comment-list .comment:last-child {
    margin-bottom: 0;
}

.comment-list .comment .comment-body {
    display: flex;
    flex-direction: row;
}

.comment-list .comment .comment-avatar {
    width: 36px;
    height: 36px;
}

.comment-list .comment .comment-inner {
    flex: 1 1 auto;
}

/* --------------------------------
## video container
  -------------------------------- */

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/*--------------------------------------------------------------
    filter style
--------------------------------------------------------------*/

.filter-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-block .filter-item {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0 12px;
}

.filter-block .filter-item .filter-title {
    position: relative;
    flex-shrink: 0;
    top: 4px;
}

.filter-block .filter-item .filter-content {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding-right: 30px;
}

.filter-block .filter-item .filter-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 8px;
}

.filter-block .filter-item .filter-list {
    max-height: 30px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-block .filter-item .readmore-button {
    border: 0 !important;
    background-color: transparent !important;
    padding: 0;
}

.filter-block .filter-item .readmore-button.open + .filter-list {
    max-height: none;
}

.filter-block .filter-item .filter-list li {
    flex-shrink: 0;
}

.filter-block .filter-item .filter-list li a {
    display: block;
    color: var(--color-secondary);
    padding: 4px 8px;
    border-radius: var(--border-radius-xs);
}

.filter-block .filter-item .filter-list li a:hover,
.filter-block .filter-item .filter-list li.active a {
    color: var(--color-primary);
    background-color: var(--outline-primary);
}

.filter-block .filter-item .brand-select {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 16px;
    padding: 12px 14px;
    margin-top: 8px;
    background-color: var(--gray-2);
    border-radius: var(--border-radius-sm);
}

.filter-block .filter-item .brand-select.active {
    display: flex;
}

.filter-block .filter-item .brand-select li {
    flex-shrink: 0;
}

.filter-block .filter-item .brand-select li a {
    display: block;
    color: var(--color-secondary);
}

.filter-block .filter-item .brand-select li:hover a,
.filter-block .filter-item .brand-select li.active a {
    color: var(--color-primary)
}

.filter-block .filter-item .readmore-button {
    position: absolute;
    top: 1px;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 0;
    z-index: 2;
    transition: transform 0.3s ease;
}

.filter-block .filter-item .readmore-button.open {
    transform: rotate(180deg);
}

.filter-block .filter-item .readmore-button:after {
    content: '';
    display: block;
    height: 6px;
    width: 6px;
    border-left: 1px solid var(--border-secondary);
    border-bottom: 1px solid var(--border-secondary);
    transform: rotate(315deg);
    transition: all .2s;
    opacity: .6;
}

.filter-block .filter-item .readmore-button.open:after {
    margin-top: -5px;
}

.filter-block .filter-item .readmore-button.open:after,
.filter-block .filter-item .readmore-button:hover:after {
    border-color: var(--color-primary);
    opacity: 1;
}

/*--------------------------------------------------------------
    product info style
--------------------------------------------------------------*/

.post-info {
    position: relative;
    display: flex;
    min-width: 0;
    word-wrap: break-word;
}

.post-info .media {
    width: 100px;
    height: 100px;
}

.post-info.brand-info .media .media-content {
    padding: 4px;
}

@media (max-width: 767.98px) {
    .post-info .media {
        width: 80px;
        height: 80px;
    }
}

.post-info.brand-info .media {
    width: 100px;
    height: 100px;
    border: 1px solid var(--border-color)
}

@media (max-width: 767.98px) {
    .post-info.brand-info .media {
        width: 80px;
        height: 80px;
    }
}

.post-info.meeting-info .media {
    width: 160px;
    height: 120px;
}

@media (max-width: 767.98px) {
    .post-info.meeting-info .media {
        width: 120px;
        height: 100px;
    }
}

.post-info .info-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
}

.post-info .info-body {
    padding-right: 40px;
}

.post-info .info-actions {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.info-tags {
    font-size: 11px;
}

.info-tags a {
    background-color: var(--outline-primary);
    color: var(--color-primary);
    padding: 1px 6px;
    border-radius: 24px;
}

.info-tags a:hover {
    opacity: .8;
}

/*--------------------------------------------------------------
    post actions
--------------------------------------------------------------*/


.post-actions .post-collect-button {
    transition: color 100ms ease;
}

.post-actions .post-collect-button.active {
    color: var(--color-danger);
}

.post-actions .post-collect-button.active .iconfont {
    -webkit-animation: icon-expand-animation 1.2s both cubic-bezier(0.45, 0.05, 0.55, 0.95);
    animation: icon-expand-animation 1.2s both cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.post-actions .post-collect-button.active .iconfont::before {
    content: "\e98f";
}

/*--------------------------------------------------------------
    product filter
--------------------------------------------------------------*/

.product-filter ul {
}

.product-filter ul li {
    position: relative;
}

.product-filter ul li:before {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    left: 50%;
    bottom: 0;
    border-radius: 4px;
    background-color: var(--color-primary);
    transform: translate(-50%, 0%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.product-filter ul li:hover:before,
.product-filter ul li.active:before {
    width: 30px;
    opacity: 1;
}

.product-filter ul li a {
    display: block;
    padding-bottom: .75rem;
}

.product-filter ul li.active {

}

.product-filter ul li.active a {
    font-weight: bold;
    color: var(--color-primary);
}

/*--------------------------------------------------------------
    product tab
--------------------------------------------------------------*/
.tabmenu-block {
    display: flex;
    flex-direction: row;
    gap: 0 24px;
    border-bottom: 1px solid var(--border-color);
}

.tabmenu-block a {
    position: relative;
    padding: 0 0 .75rem;
}

.tabmenu-block a.active {
    font-weight: bold;
    color: var(--color-primary);
}

.tabmenu-block a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    opacity: 0;
}

.tabmenu-block a.active:before {
    opacity: 1;
}

/*--------------------------------------------------------------
    product data
--------------------------------------------------------------*/
.post-data {
    position: relative;
}

.post-data .data-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.post-data .data-content {
    position: relative;
    overflow: hidden;
    max-height: 150px;
}

.post-data.open .data-content {
    max-height: none;
}

.post-data ul li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.post-data ul li .data-title {
    flex-shrink: 0;
}

.post-data ul li .data-desc {
    text-align: right;
}

.post-data .data-action {
    position: relative;
    display: none;
    background-color: #fff;
    z-index: 1;
}

.post-data .data-action:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 98%;
    height: 40px;
    background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
}

.post-data.open .data-action:before {
    display: none;
}

/*--------------------------------------------------------------
    product list
--------------------------------------------------------------*/
.list-products .list-item .media {
    width: 80px;
    height: 80px;
}

.list-brands .list-item .media .media-content {
    padding: 4px;
}

.product-list .item {
    position: relative;
    display: flex;
    gap: 12px;
    min-width: 0;
    word-wrap: break-word;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-xs);
}

.product-list .item .media {
    width: 100px;
    height: 100px;
}

.product-list .item .item-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
}

.product-list .item .item-body {
    flex: 1 1 auto;
}

/*--------------------------------------------------------------
    meeting list
--------------------------------------------------------------*/
.meeting-list .media {
    width: 120px;
    height: 100px;
}

/*--------------------------------------------------------------
    left sidebar
--------------------------------------------------------------*/
.sidebar-inner {
    position: sticky;
    top: 0;
    height: calc(100vh - 120px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.sidebar-inner .widget-quickmenu {
    position: relative;
    margin-top: auto;
    margin-bottom: 24px;
}


.sidebar-inner .widget-quickmenu .quick-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 16px;
}

.sidebar-inner .widget-quickmenu .quick-action .menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    font-size: 20px;
}

.sidebar-inner .widget-quickmenu .quick-action .menu-text {
    flex: 1 1 auto;
}

.sidebar-inner .widget-quickmenu .quick-menu {
    position: absolute;
    left: 0;
	margin: 0 -1px !important;
    bottom: 75px;
    width: calc(100% + 2px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-2);
    visibility: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.1s ease-in-out;
}

.sidebar-inner .widget-quickmenu .quick-menu li {
    padding: 0 4px;
}

.sidebar-inner .widget-quickmenu .quick-menu li a {
    position: relative;
    display: block;
}

.sidebar-inner .widget-quickmenu .quick-menu li a:after {
    content: '\e933';
    position: absolute;
    right: 0;
    top: 50%;
    font-family: "iconfont";
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(-5px, -50%);
    opacity: 0;
    transition: all 0.1s ease-in-out;
}

.sidebar-inner .widget-quickmenu .quick-menu li a:hover:after {
    opacity: 0.4;
    transform: translate(0, -50%);
}

.sidebar-inner .widget-quickmenu.active .quick-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}


/*--------------------------------------------------------------
    loader page
--------------------------------------------------------------*/
.loading-more-spinners {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.loading-more-spinners:before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAq1BMVEUAAAAuav8uav8tav8taP8taP8taP8taP8taP8taP8uaP8taP8taP8taP8taP8taP8taP8taP8taP8taP8taP8uaP8taf8taP8taP8taP8taP8taP8uaP8taP8taP8uaP8taP8taf8taP8taP8uaf8taP8uaP8taP8taP8taP8taP8taP8uaP8taP8taf8taP8taP8taP8uaP8taP8taP8taP8taP8taP8taP//mrn8AAAAOXRSTlMACwUQXVPHt05YO828i3NAbkXCkIEfFNmxhiN8L5lJJ3hi5qk2lBjy3iuhahzRnTOl7mb26uL7rdUZeLXlAAADPUlEQVR42p3Qh3KzOhDF8QMCd1ps4d5t0tzS8/5Pdlc7uhKMg8Hfz5OpOX8WUEbMEt97D8M49tqL88TBXWQST1erVUjiOH59fX9/96MMNblROJgSLnBAFdbrtV/rDjeZDkgxwHvP8/xZZaIzGI/HJQHSbk1wi3gNxrlAeB1otxc3jojGQRBwwBQ4QN9Q74lffoTf73OgcAJ/w9wBPlniT16fAqQ0QHsOtFoz/GG13/eLJ5gAfwKzp0Crgyue2pvCdcC+QIssrm5ozffEvkQhYA4w+8ViiYJkPrcFe0L87vleMdDSgUQiJ+3PCQe4oAKrZCbAUhn5+f1C7ZPIgRWcTnN7gwqsJQomLfMCvCdnGJ2TohMqsJrAsAmzT1h0gJYGLy8cIHxCy8Uf3Jl5Pu+jjgsG/4XYG/oLlFjS3syJhP6CL+z/wg6lDnofsc7OhRJdLpdcooUblnbfIRLK/qIKF11o46alebxyBnnebrcXpgqBg5vcjlmTnQDwulWFrS50UEGY+Y5IAMFWU4k+Ks3MnMyA9IeYRoRKgsfsfD672NHeNPaoQY9pTlK0R6ORabyiBklrbTY7YDXSVGaHGlK9ZRL9kS2MJGpwZzlLnJpNm0Atzzx9fn6mvyWa1uiEWpbPOTZAAtQysfNlMbBHLXKZQ4Fes6ddal5QCFx61qhmwFhOJOY96yFDDa6cWAcM1FD9lAVqcKQykdzJED/kxKhBHIjUBBZm3Wg0eqghpb1pOMjMWjmjkptl2eGQ6YYLbHnMut05Kok0zZhqZABiuyeVJ7gpMQkB4GzXpClwmyOEsA0XZGT3x+NxVXGAI0yBflDeu9qR/P7GFQEuqARxoDi93Hw4HPoVAZsQLswJR70nT/GtABUIF4QDMOehsH/6GogbAXuD/S+P13pPga9GuzzABW64ME78eLPfbDbddkWBwMoa+T0FPj/fjnN5u4A8r7DnwNvjZloS4IKLgtX1/vHjIyi9weyNMe2J3uvA97SsgGuXp+IBHPiOUF9g9zZwwh1ifgFzAAeecI/1L+8poD8BwV0ODRXgvQ684U7t7mch0MO9DmFXf0IOeLjfoX00gT7+TWff4ECAfydbU0+g2n8vuL2AqNmuhgAAAABJRU5ErkJggg==);
    background-size: contain;
    background-position: center;
    -webkit-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
}

.btn .loading-more-spinners {
    height: 28px;
    margin-top: 0;
    margin-bottom: 0;
}

.btn .loading-more-spinners:before {
    width: 20px;
    height: 20px;
}

@keyframes loader {
    100% {
        transform: rotate(-360deg);
    }
}


/*--------------------------------------------------------------
    image modal
--------------------------------------------------------------*/
.modal-open {
    overflow: hidden;
}

.image-modal {
    position: fixed;
    z-index: 998;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.image-modal.open {
    visibility: visible;
    opacity: 1
}

.image-modal-content {
    background: #fff;
    max-width: 800px;
    width: 90vw;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    margin: auto;
    top: 10%;
}

.image-modal-body {
    padding-right: 6px;
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
}

.image-modal-body::-webkit-scrollbar {
    width: 6px;
    background-color: transparent;
}

.image-modal-body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--bg-muted);
}

.image-modal-body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--bg-light);
}