:root {
    /**Color**/
    --black: #000;
    --white: #fff;
    --gray-1: #f3f5f8;
    --gray-2: #ededef;
    --gray-3: #e3e6e8;
    --gray-4: #babecb;
    --gray-5: #9097ac;
    --gray-6: #4b525b;
    --gray-7: #343a44;
    --gray-8: #15181d;
    --red: #ff391e;
    --blue: #006eff;
    --orange: #e37318;
    --warning: #e5be9e;
    --orange-dark: #ff8338;
    --orange-light: #fffbe8;
    --green: #2ba471;

    /**Gradient Colors**/
    --gradient-red: linear-gradient(to right, #ff6034, var(--red));
    --gradient-orange: linear-gradient(to right, #ffd01e, var(--orange));

    /**Component Colors**/
    --primary-color: var(--blue);
    --success-color: var(--green);
    --danger-color: var(--red);
    --warning-color: var(--warning);
    --text-color: var(--gray-7);
    --active-color: var(--gray-8);
    --active-opacity: 0.7;
    --disabled-opacity: 0.5;
    --background-color: var(--gray-1);
    --background-color-light: #fafafa;
    --text-link-color: var(--gray-6);

    /**Font**/
    --font-size-xs: 10px;
    --font-size-sm: 12px;
    --font-size-md: 14px;
    --font-size-lg: 16px;
    --font-size-xl: 24px;
    --font-weight-bold: 500;
    --line-height-xs: 14px;
    --line-height-sm: 18px;
    --line-height-md: 20px;
    --line-height-lg: 22px;
    --base-font-family: PingFangSC, helvetica neue, hiragino sans gb, arial, microsoft yahei ui, microsoft yahei, simsun, "sans-serif";

    /**Animation**/
    --animation-duration-base: 0.3s;
    --animation-duration-fast: 0.2s;
    --animation-timing-function-enter: ease-out;
    --animation-timing-function-leave: ease-in;

    /**Border**/
    --border-color: var(--gray-2);
    --border-width-base: 1px;
    --border-radius-xs: 4px;
    --border-radius-sm: 8px;
    --border-radius-md: 10px;
    --border-radius-lg: 20px;
    --border-radius-max: 999px;

    /**Theme Color**/
    --color-primary: var(--primary-color);
    --color-dark: var(--gray-8);
    --color-secondary: var(--gray-6);
    --color-muted: var(--gray-5);
    --color-light: var(--gray-3);
    --color-danger: var(--danger-color);
    --color-warning: var(--warning-color);
    --color-success: var(--success-color);
    --color-body: var(--text-color);

    /**Theme Btn Color**/
    --btn-primary: var(--primary-color);
    --btn-dark: var(--gray-8);
    --btn-secondary: var(--gray-7);
    --btn-light: var(--gray-3);
    --btn-danger: var(--danger-color);
    --btn-success: var(--success-color);

    /**Theme Bg Color**/
    --bg-primary: var(--primary-color);
    --bg-dark: var(--gray-8);
    --bg-secondary: var(--gray-7);
    --bg-light: var(--gray-2);
    --bg-danger: var(--danger-color);
    --bg-warning: var(--warning-color);
    --bg-white: #fff;
    --bg-body: var(--gray-1);

    /**Theme Border Color**/
    --border-primary: var(--primary-color);
    --border-dark: var(--gray-7);
    --border-secondary: var(--gray-6);
    --border-light: var(--gray-3);
    --border-danger: var(--danger-color);
    --border-warning: var(--warning-color);
    --border-white: #fff;

    --outline-primary: rgba(0, 110, 255, 0.1);
    --outline-secondary: rgba(38, 38, 38, 0.1);
    --outline-light: rgba(38, 38, 38, 0.05);
    --outline-danger: rgba(238, 10, 37, 0.1);

    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-color: #fff;
    --swiper-theme-color: #fff;

    /**Theme shadow Color**/
    --shadow-1: rgb(27 26 49 / 2%);
    --shadow-2: rgb(27 26 49 / 5%);
    --shadow: 0 12px 28px 0 var(--shadow-2), 0 5px 10px 0 var(--shadow-1);
}

/* General ------------------------------------- */

body {
    font-family: var(--base-font-family);
    color: var(--color-body);
    background-color: var(--bg-body);
    padding: 0;
    margin: 0;
}

body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
}


/* Links ------------------------------------- */

a {
    color: var(--color-body);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    color: var(--color-primary)
}

a:focus {
    outline: 0;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a,
.h1 > a,
.h2 > a,
.h3 > a,
.h4 > a,
.h5 > a,
.h6 > a {
    color: var(--color-dark);
}

h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover,
.h1 > a:hover,
.h2 > a:hover,
.h3 > a:hover,
.h4 > a:hover,
.h5 > a:hover,
.h6 > a:hover {
    color: var(--color-primary);
}


/* -------------------------------------------------------------------------- */
/*	Element Base
/* ---------------------------------------------*---------------------------- */

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bolder;
    margin: 0;
}


/*--------------------------------------------------------------
/*	Font Size style
--------------------------------------------------------------*/

h1,
.h1 {
    font-size: 2.75rem;
    line-height: 1.4;
}

h2,
.h2 {
    font-size: 1.75rem;
    line-height: 1.4;
}

h3,
.h3 {
    font-size: 1.375rem;
    line-height: 1.5;
}

h4,
.h4 {
    font-size: 1.25rem;
    line-height: 1.5;
}

h5,
.h5 {
    font-size: 1.125rem;
    line-height: 1.5;
}

h6,
.h6 {
    font-size: 1rem;
    line-height: 1.5;
}

@media (min-width: 768px) and (max-width: 991.98px) {

    h1,
    .h1 {
        font-size: 2.5rem;
    }

    h2,
    .h2 {
        font-size: 1.625rem;
    }

    h3,
    .h3 {
        font-size: 1.375rem;
    }

    h4,
    .h4 {
        font-size: 1.25rem;
    }

    h5,
    .h5 {
        font-size: 1.125rem;
    }
}

@media (max-width: 767.98px) {

    h1,
    .h1 {
        font-size: 1.9375rem;
    }

    h2,
    .h2 {
        font-size: 1.375rem;
    }

    h3,
    .h3 {
        font-size: 1.25rem;
    }

    h4,
    .h4 {
        font-size: 1.125rem;
    }

    h5,
    .h5 {
        font-size: 1.0625rem;
    }

}

.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
    font-size: 85%
}


/* Lists ------------------------------------- */

menu,
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

dt,
dd {
    line-height: 1.5;
}

dt {
    font-weight: 500;
}

dt + dd {
    margin-top: .5rem;
}

dd + dt {
    margin-top: 1.5rem;
}


/* Quotes ------------------------------------ */

blockquote {
    padding: 16px 20px;
    margin: 24px 0;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-sm);
}

blockquote::before,
blockquote::after {
    content: "";
}

cite {
    color: inherit;
    font-size: 85%;
    font-style: normal;
    font-weight: 500;
    line-height: 1.25;
}

blockquote cite {
    display: block;
    margin: 32px 0 0 0;
}

blockquote p,
blockquote > p:last-child {
    margin-bottom: 32px;
}

blockquote p:last-child {
    margin: 0;
}

blockquote em,
blockquote i,
blockquote cite {
    font-style: normal;
}


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

figure {
    margin: 0;
}

img,
embed,
iframe,
object,
video {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.wp-block-video video {
    height: auto;
}

/*--------------------------------------------------------------
* Add the correct display in IE 10+.
--------------------------------------------------------------*/

template {
    display: none;
}

/*--------------------------------------------------------------
* Add the correct display in IE 10.
--------------------------------------------------------------*/

[hidden] {
    display: none;
}

/*--------------------------------------------------------------
* Add reset 
--------------------------------------------------------------*/
p {
    margin: 0;
}

i {
    font-style: normal;
}

caption {
    color: var(--color-muted);
}

input,
select {
    outline: none;
    box-shadow: none;
    transition: opacity 0.15s linear;
}

input:hover,
input:focus,
select:hover,
select:focus {
    outline: none;
    box-shadow: none;
}

select option {
    padding: 0 0 1px;
}

/*--------------------------------------------------------------
/*	Size style
--------------------------------------------------------------*/

.w-8 {
    width: .5rem !important;
    height: .5rem !important
}

.w-12 {
    width: .75rem !important;
    height: .75rem !important
}

.w-16 {
    width: 1rem !important;
    height: 1rem !important
}

.w-20 {
    width: 1.25rem !important;
    height: 1.25rem !important;
    font-size: 0.6em
}

.w-24 {
    width: 1.5rem !important;
    height: 1.5rem !important;
    font-size: 0.7em
}

.w-28 {
    width: 1.75rem !important;
    height: 1.75rem !important;
    font-size: 0.8em
}

.w-32 {
    width: 2rem !important;
    height: 2rem !important;
    font-size: 0.85em
}

.w-36 {
    width: 2.25rem !important;
    height: 2.25rem !important;
    font-size: 0.875em
}

.w-40 {
    width: 2.5rem !important;
    height: 2.5rem !important
}

.w-48 {
    width: 3rem !important;
    height: 3rem !important
}

.w-56 {
    width: 3.5rem !important;
    height: 3.5rem !important
}

.w-64 {
    width: 4rem !important;
    height: 4rem !important
}

.w-72 {
    width: 4.5rem !important;
    height: 4.5rem !important
}

.w-80 {
    width: 5rem;
    height: 5rem
}

.w-96 {
    width: 6rem;
    height: 6rem
}

.w-128 {
    width: 8rem;
    height: 8rem;
}

.w-168 {
    width: 10.5rem;
    height: 10.5rem;
}

.w-192 {
    width: 12rem
}

.w-xs {
    width: 5.625rem
}

.w-auto {
    width: auto
}

.h-auto {
    height: auto
}

.hv {
    height: 100vh
}

.h-v {
    min-height: 100vh
}

.h-v-30 {
    min-height: 30vh
}

.h-v-33 {
    min-height: 33vh
}

.h-v-50 {
    min-height: 50vh
}

.h-v-66 {
    min-height: 66vh
}

.h-v-75 {
    min-height: 75vh
}

@media (max-width: 1199.9808px) {
    .w-auto-lg {
        width: auto !important
    }

    .w-100-lg {
        width: 100% !important
    }
}

@media (max-width: 991.9808px) {
    .w-auto-md {
        width: auto !important
    }

    .w-100-md {
        width: 100% !important
    }
}

@media (max-width: 767.9808px) {
    .w-auto-sm {
        width: auto !important
    }

    .w-100-sm {
        width: 100% !important
    }
}

@media (max-width: 575.9808px) {
    .w-auto-xs {
        width: auto !important
    }

    .w-100-xs {
        width: 100% !important
    }
}

@media (min-width: 768px) {
    .h-v-25 {
        min-height: 25vh
    }
}

.overflow-y {
    overflow-x: hidden;
    overflow-y: auto;
}


/*--------------------------------------------------------------
/*	 Text Size style
--------------------------------------------------------------*/

.text-xs {
    font-size: .8125rem
}

.text-sm {
    font-size: .9375rem
}

.text-md {
    font-size: 1.125rem
}

.text-lg {
    font-size: 1.25rem
}

.text-xl {
    font-size: 1.5rem
}

.text-xxl {
    font-size: 2.25rem
}

.text-40 {
    font-size: 2.5rem
}

.text-50 {
    font-size: 3.125rem
}

.text-64 {
    font-size: 4rem
}

@media (max-width: 767.98px) {
    .text-xs {
        font-size: .75rem
    }

    .text-sm {
        font-size: .875rem
    }

    .text-md {
        font-size: 1rem
    }

    .text-lg {
        font-size: 1.0625rem
    }

    .text-xl {
        font-size: 1.3125rem
    }

    .text-xxl {
        font-size: 1.4375rem
    }

    .text-40 {
        font-size: 1.625rem
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    .text-xs {
        font-size: .8125rem
    }

    .text-sm {
        font-size: .9375rem
    }

    .text-md {
        font-size: 1.0625rem
    }

    .text-lg {
        font-size: 1.125rem
    }

    .text-xl {
        font-size: 1.375rem
    }

    .text-xxl {
        font-size: 1.625rem
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .text-xxl {
        font-size: 2rem
    }
}

/* line height style ----------------------------- */

.lh-lg {
    line-height: 1.75 !important;
}

/* Icon style ----------------------------- */

.iconfont {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

/*--------------------------------------------------------------
Font color style
--------------------------------------------------------------*/

.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;
}

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

.bg-primary {
    background-color: var(--bg-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-dark-gradient {
    background: linear-gradient(to bottom, #000613, #343f48);
}

.bg-white-overlay {
    color: #fff;
    background-color: rgba(39, 49, 73, 0.33);
}

.bg-dark-overlay {
    color: #fff;
    background-color: rgb(0 0 0 / 30%);
}

.bg-img {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.bg-overlay {
    position: fixed;
    height: 100%;
    right: -99%;
    top: 0;
    left: -99%;
    opacity: 0;
    background: rgba(120, 129, 147, 0.22);
    visibility: hidden;
    transform: translate3d(0px, 0px, 0px);
    transition: 0.3s ease-in-out;
    z-index: 998;
}

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

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

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

.bg-gonna {
    color: #fff;
    background-image: linear-gradient(to top, #4481eb 0%, #04befe 100%);
}

.bg-ing {
    color: #fff;
    background-image: linear-gradient(to top, #fc6076 0%, #ff9a44 100%);
}

.bg-end {
    background-image: linear-gradient(to top, #868f96 0%, #596164 100%);
}

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

.btn {
    font-size: 1rem;
    font-weight: bold;
    border-radius: var(--border-radius-sm);
    padding: 0.625rem 1.625rem;
    white-space: normal;
    transition: all 0.3s 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(--btn-light);
    background-color: var(--btn-light);
}

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

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

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

/*--------------------------------------------------------------
  btn secondary style
  --------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
  btn light style
  --------------------------------------------------------------*/

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

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

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

/*--------------------------------------------------------------
  btn dark style
  --------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
  btn danger style
  --------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
  btn link style
  --------------------------------------------------------------*/

.btn-link {
    color: var(--color-secondary);
    text-decoration: none;
}

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

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

/*--------------------------------------------------------------
  btn success style
  --------------------------------------------------------------*/

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

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

.btn-success:disabled,
.btn-success.disabled {
    background-color: var(--btn-success);
    border-color: var(--btn-success);
    color: #fff;
    opacity: .6;
}

/*--------------------------------------------------------------
btn neumorphism light style
--------------------------------------------------------------*/

.btn-neumorphism-light {
    color: var(--color-muted);
    background-image: linear-gradient(345deg, #ffffff 0%, #e4e4e4 100%);
    box-shadow: 6px 6px 12px 0 rgb(169 169 169 / 10%);
    border: 2px solid #fff;
}

.btn-neumorphism-light:hover,
.btn-neumorphism-light:focus,
.btn-neumorphism-light:active,
.btn-neumorphism-light.active {
    color: var(--color-primary);
    box-shadow: 6px 6px 12px 0 rgb(169 169 169 / 20%) !important;
}

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


/*--------------------------------------------------------------
  btn outline style
  --------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
  btn outline secondary style
  --------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
btn neumorphism outline light style
--------------------------------------------------------------*/

.btn-neumorphism-outline-light {
    color: var(--color-muted);
    background: var(--bg-body);
    border-width: 0;
    box-shadow: inset 8px 8px 16px 0 rgb(255 255 255 / 0%), -8px -8px 16px #FFFFFF, 8px 8px 16px #e0e0e0;
}

.btn-neumorphism-outline-light:hover,
.btn-neumorphism-outline-light:focus,
.btn-neumorphism-outline-light:active,
.btn-neumorphism-outline-light.active {
    color: var(--color-secondary);
    box-shadow: inset 8px 8px 16px 0 rgb(233 233 233), -8px -8px 16px #FFFFFF, 8px 8px 16px #e0e0e0;
}


@media (max-width: 767.98px) {

    .btn-sm.btn-neumorphism-outline-light {
        box-shadow: inset 6px 6px 12px 0 rgb(233 233 233 / 0%), -6px -6px 12px #FFFFFF, 6px 6px 12px #e0e0e0;
    }

    .btn-sm.btn-neumorphism-outline-light:hover,
    .btn-sm.btn-neumorphism-outline-light:focus,
    .btn-sm.btn-neumorphism-outline-light:active,
    .btn-sm.btn-neumorphism-outline-light.active {
        box-shadow: inset 6px 6px 12px 0 rgb(233 233 233), -6px -6px 12px #FFFFFF, 6px 6px 12px #e4e4e4;
    }

}

/*--------------------------------------------------------------
  btn outline light style
  --------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
  btn outline light style
  --------------------------------------------------------------*/

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

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

/*--------------------------------------------------------------
  btn size style
  --------------------------------------------------------------*/

.btn-xs {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    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.75rem 2rem;
}

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

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

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

@media (max-width: 767.98px) {
    .btn {
        padding: 0.5rem 1rem;
    }

    .btn-xs {
        font-size: .75rem;
        padding: 0.25rem 0.75rem;
    }

    .btn-sm {
        font-size: 0.8125rem;
        padding: 0.25rem 0.75rem;
    }

    .btn-lg {
        font-size: 1rem;
        padding: 0.625rem 1.75rem;
    }
}

/*--------------------------------------------------------------
  btn radius style
  --------------------------------------------------------------*/

.btn-rounded {
    border-radius: 5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 767.98px) {

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

}

/*--------------------------------------------------------------
  btn 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;
    }
}

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

.btn-icon {
    position: relative;
    width: 2.625rem;
    height: 2.625rem;
    padding: 0;
    font-size: 1.5rem;
    font-weight: normal;
    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.75rem;
    line-height: 1;
    padding: 0.125rem 0.4375rem;
    border-radius: 10px;
    color: #fff;
    background-color: var(--bg-danger);
    border: 2px solid #fff;
    transform: translate(35%, -30%);
}

.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: 2.1875rem;
    height: 2.1875rem;
    padding: 0;
    font-size: 1.25rem;
}

.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.375rem;
}

.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-primary {
    border-color: var(--border-primary) !important;
}

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

.border-secondary {
    border-color: var(--border-secondary) !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 {
    padding: 0.6875rem 1rem;
    font-weight: bold;
    color: var(--color-secondary);
    background: var(--bg-body);
    border: 0;
    border-radius: var(--border-radius-sm);
    box-shadow: inset -4px -4px 8px #f1f1f1, inset 4px 4px 8px #e1e1e1;
    transition: all .15s ease-in-out;
}

.form-control:hover,
.form-control:focus,
.form-control:active {
    color: var(--color-dark);
    background: var(--bg-body);
    border-color: #fff;
    box-shadow: inset -6px -6px 12px #f0f0f0, inset 6px 6px 12px #d9d9d9;
}

.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] {
    border-color: var(--btn-light);
    background: var(--bg-body);
    box-shadow: inset -6px -6px 12px #FCFCFC, inset 6px 6px 12px #e4e4e4;
    color: var(--color-muted);
    opacity: 1;
}

textarea.form-control {
    height: auto;
    padding: 0.6875rem 1rem
}

.form-control-lg {
    min-height: auto;
    padding: 0.625rem 1rem;
    font-size: 1.125rem;
}

@media (max-width: 767.98px) {
    .form-control {
        font-size: .875rem;
        padding: 0.625rem 0.75rem;
    }

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

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

/*--------------------------------------------------------------
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-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 15px;
    height: 15px;
    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;
}

/*--------------------------------------------------------------
avatar group
--------------------------------------------------------------*/

.avatar-group {
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    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(--bg-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-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;
    }
}

.list-item:hover .media-action,
.list-item:active .media-action,
.media:hover .media-action {
    opacity: 1;
}

.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%;
    }
}

/*--------------------------------------------------------------
post content
--------------------------------------------------------------*/

.post-content {
    position: relative;
    font-size: 1.125rem;
    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.25rem;
}

.post-2em > p {
    text-indent: 2em;
}

.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;
}

.post-content p > img.alignnone {
    margin: 0 auto;
}

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

.post-content h1,
.post-content h2,
.post-content h3 {
    margin: 2.5rem auto 1.5rem;
}

.post-content h4,
.post-content h5,
.post-content h6 {
    margin: 2rem auto 1.25rem;
}


@media (max-width: 767.98px) {

    .post-content h1,
    .post-content h2,
    .post-content h3 {
        margin: 2rem auto 1.25rem;
    }

    .post-content h4,
    .post-content h5,
    .post-content h6 {
        margin: 2rem auto 1.25rem;
    }
}

/*--------------------------------------------------------------
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;
}

/* -------------------------------- 
    Post inner 
-------------------------------- */
@media (min-width: 992px) and (max-width: 1199.98px) {

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

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

@media (min-width: 768px) and (max-width: 991.98px) {

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

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

@media (max-width: 767.98px) {

    .post-content {
        font-size: 1rem;
    }

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

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

.post-content table {
    min-width: 540px;
    margin: 2rem 0;
}

.wp-block-table th,
.wp-block-table td {
    border-color: var(--border-light);
}

.wp-block-table tfoot,
.wp-block-table thead {
    border-color: var(--border-light);
}

.wp-block-table {
    margin: 0;
}

.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
    display: table;
    width: auto;
}

.wp-block-table.aligncenter td,
.wp-block-table.aligncenter th,
.wp-block-table.alignleft td,
.wp-block-table.alignleft th,
.wp-block-table.alignright td,
.wp-block-table.alignright th {
    word-break: break-word;
}

.wp-block-table.is-style-stripes {
    border-bottom: 0;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: var(--bg-light);
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
    border-color: transparent;
}

/*--------------------------------------------------------------
    wp caption style
--------------------------------------------------------------*/

.wp-caption {
    max-width: 100%;
}

/*--------------------------------------------------------------
    post video style
--------------------------------------------------------------*/

.post-video .wp-video {
    margin-top: 0;
}


/*--------------------------------------------------------------
    top 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;
}

/**--------------------------------------------------------------
## Post hidden tips
--------------------------------------------------------------**/

.post-password-content {
    position: relative;
}

.post-password-content form {
    max-width: 400px;
    margin: 0 auto;
}


/*--------------------------------------------------------------
  widget_search style
--------------------------------------------------------------*/

.widget_search .search-form {
    position: relative;
}

.widget_search .search-form label {
    display: block;
    margin: 0;
}

.widget_search .search-form .search-field {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background-color: #f6f5fa;
    border: 1px solid #f6f5fa;
    border-radius: 0;
}

.widget_search .search-form .search-submit {
    display: none;
}


/*--------------------------------------------------------------
  widget_recent_entries  style
--------------------------------------------------------------*/

.widget_recent_entries ul {
    padding-left: 1.5rem;
}

.widget_recent_entries ul li {
    margin-bottom: 0.5rem;
    list-style-type: circle;
}

.widget_recent_entries ul li a {
    display: block;
}

.widget_recent_entries ul li span {
    color: #8a92a9;
    font-size: 0.75rem;
}


/*--------------------------------------------------------------
  widget categories + tagcloud style
--------------------------------------------------------------*/

.widget_categories ul,
.tagcloud {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: -.375rem;
}

.widget_categories ul li,
.tagcloud a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: .75rem;
    padding: .3755rem .875rem;
    border: 1px solid var(--outline-light);
    background-color: var(--outline-light);
    border-radius: var(--border-radius-sm);
    margin: .25rem;
}

.widget_categories ul li {
    color: var(--color-muted);
}

.widget_categories ul li a {
    font-size: .875rem;
    color: var(--color-muted);
}

.widget_categories ul li:hover {
    border: 1px solid var(--outline-light);
    background-color: var(--outline-light);
}

.widget_categories ul li:hover a {
    color: var(--color-dark);
}

.widget_categories .postform {
    width: 100%;
    padding: .5rem .75rem;
    border-radius: var(--border-radius-sm);
    border-color: var(--border-light);
    outline: 0;
}

.widget_categories .postform:active,
.widget_categories .postform:focus {
    border-color: var(--border-light);
}

.tagcloud a {
    font-size: .875rem !important;
    padding: 0.375rem 0.75rem;
    color: var(--color-muted);
}

.tagcloud a:hover {
    border: 1px solid var(--outline-light);
    background-color: var(--outline-light);
    color: var(--color-dark);
}

.tagcloud a span {
    font-size: .75rem;
    color: var(--color-muted);
}

/*--------------------------------------------------------------
  widget other style
--------------------------------------------------------------*/
.widget_meta li,
.widget_archive li {
    position: relative;
    font-size: 0.875rem;
    color: var(--color-secondary);
    padding: 0.75rem 0;
    text-transform: uppercase;
    border-top: 1px solid var(--bg-light);
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: justify;
    justify-content: space-between;
}

.widget_archive select {
    width: 100%;
    font-size: 1rem;
    padding: 0.625rem 1rem;
    color: var(--color-muted);
    background-color: var(--bg-light);
    border-color: var(--bg-light);
    border-radius: var(--border-radius-sm);
}

/*--------------------------------------------------------------
  widget blogroll style
--------------------------------------------------------------*/
.blogroll li {
    position: relative;
    display: flex;
    flex-direction: column;
    font-size: .75rem;
    padding: .75rem 3.5rem .75rem 1rem;
    color: var(--color-muted);
    background-color: var(--bg-light);
    border-radius: var(--border-radius-sm);
    margin-bottom: 1rem;
}

.blogroll li:last-child {
    margin-bottom: 0;
}

.blogroll li a {
    font-size: .875rem;
    text-transform: uppercase;
}

.blogroll li a img {
    position: absolute;
    top: 50%;
    right: .75rem;
    width: 2.5rem;
    height: 2.5rem;
    -o-object-fit: cover;
    object-fit: cover;
    transform: translateY(-50%);
}

/*--------------------------------------------------------------
  widget_media_image style
--------------------------------------------------------------*/

.widget_media_image img {
    max-width: 100%;
    height: auto;
    width: auto;
}


/*--------------------------------------------------------------
  widget_recent_comments style
--------------------------------------------------------------*/

.widget_recent_comments ul li {
    font-size: 0.875rem;
    padding: 0.75rem 0;
    text-transform: uppercase;
    border-top: 1px solid #f5f6fa;
}

.widget_recent_comments ul li span {
    margin-right: 5px;
}

.widget_recent_comments ul li:first-child {
    border-top: 0;
    padding-top: 0;
}

.widget_recent_comments ul li:last-child {
    padding-bottom: 0;
}

/*--------------------------------------------------------------
 Dark mode widget_recent_comments style
--------------------------------------------------------------*/

.nice-dark-mode .widget_recent_comments ul li {
    border-top-color: var(--dark-border-light);
}

/*--------------------------------------------------------------
  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(--bg-light);
    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(--border-secondary);
    border-bottom: 1px solid var(--border-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-muted);
}

/*--------------------------------------------------------------
widget_calendar style
--------------------------------------------------------------*/

.widget_calendar table {
    width: 100%;
    min-width: auto;
    margin: 0;
    border-collapse: collapse;
}

.widget_calendar caption {
    padding: 10px 0;
    border-bottom: 0;
}

.widget_calendar caption,
.widget_calendar th,
.widget_calendar td {
    padding: .5rem .25rem;
    text-align: center;
}

.widget_calendar tbody td a {
    position: relative
}

.widget_calendar tbody td a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 4px;
    height: 4px;
    background: var(--bg-danger);
    border-radius: 10px;
    margin: 0 0 0 -2px
}

.widget_calendar td#today {
    font-weight: bold
}


/*--------------------------------------------------------------
widget_media_gallery style
--------------------------------------------------------------*/

.widget_media_gallery .gallery {
    padding: 0.75rem 0.75rem 0;
    margin-bottom: 0;
}

.widget_media_gallery .gallery-caption {
    padding: 0.25rem;
}


/*--------------------------------------------------------------
widget_rss style
--------------------------------------------------------------*/

.widget_rss .widget-title .rsswidget:first-child {
    float: right;
}

.widget_rss ul li {
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-top: 12px;
    border-top: 1px solid #dcdee4;
}

.widget_rss ul li:first-child {
    border: none;
    padding-top: 0;
}

.widget_rss ul li .rsswidget {
    font-size: 0.75rem;
    display: block;
}

.widget_rss ul li .rss-date {
    font-size: 0.75rem;
    color: #8a92a9;
}

.widget_rss ul li .rssSummary {
    font-size: 0.75rem;
    margin-top: 5px;
    color: #393e46;
}

.widget_rss ul li cite {
    font-size: 0.75rem;
    font-style: normal;
    color: #8a92a9;
}

/*--------------------------------------------------------------
## 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(--btn-secondary);
    color: #fff;
    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(--btn-primary);
}

.page-numbers.dots {
    min-width: auto;
    color: var(--color-muted);
    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(--btn-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;
}