/* font-faces */
@font-face {
    font-family: Lato;
    src: url(fonts/Lato/Lato-Regular.ttf)  format('truetype');
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Lato;
    src: url(fonts/Lato/Lato-Bold.ttf)  format('truetype');
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Poppins;
    src: url(fonts/Poppins/Poppins-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Poppins;
    src: url(fonts/Poppins/Poppins-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal
}

/* animations */

@keyframes et-toTop {
    0% {
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes et-toBottomFull {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes submenu-anim {
    0% {
        top: calc(100% + 14px);
        opacity: 0;
        visibility: hidden;
    }
    100% {
        top: calc(100% + 10px);
        opacity: 1;
        visibility: visible;
    }
}

@keyframes submenu-arrow-anim {
    0% {
        bottom: -15px;
        opacity: 0;
        visibility: hidden;
    }
    100% {
        bottom: -10px;
        opacity: 1;
        visibility: visible;
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes slow-rotate {
    0% {
        transform: rotate(0deg)
    }
    40% {
        transform: rotate(180deg)
    }
    80% {
        transform: rotate(360deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

@keyframes et-rtl {
    0% {
        -webkit-transform: translateX(200%);
        -moz-transform: translateX(200%);
        -o-transform: translateX(200%);
        transform: translateX(200%);
        visibility: hidden
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        visibility: visible
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgb(16 164 93 / .4);
        -webkit-box-shadow: 0 0 0 0 rgb(16 164 93 / .4);
        box-shadow: 0 0 0 0 rgb(16 164 93 / .4)
    }

    70% {
        -moz-box-shadow: 0 0 0 5px rgb(16 164 93 / 0);
        -webkit-box-shadow: 0 0 0 5px rgb(16 164 93 / 0);
        box-shadow: 0 0 0 5px rgb(16 164 93 / 0)
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgb(16 164 93 / 0);
        -webkit-box-shadow: 0 0 0 0 rgb(16 164 93 / 0);
        box-shadow: 0 0 0 0 rgb(16 164 93 / 0)
    }
}

@keyframes rocket-animation {
    0% {
        transform: translateY(10px) translateX(0px)
    }
    50% {
        transform: translateY(0px) translateX(15px)
    }
    100% {
        transform: translateY(10px) translateX(0px)
    }
}

@keyframes feature-icon-animation {
    49% {
        -webkit-transform: translate(-100%);
        transform: translate(-100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translate(100%);
        transform: translate(100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes et-fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

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

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
    /*scroll-behavior: smooth*/
}

html.no-smooth {
    scroll-behavior: auto;
}

/*html::-webkit-scrollbar {
    width: 4px;
    height: 4px
}*/

/* width */
/*::-webkit-scrollbar {
    width: 10px;
}*/

/* Track */
/*::-webkit-scrollbar-track {
    background: #f1f1f1;
}*/

/* Handle */
/*::-webkit-scrollbar-thumb {
    background: #888;
}*/

/* Handle on hover */
/*::-webkit-scrollbar-thumb:hover {
    background: #555;
}*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

strong {
    font-weight: 700;
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
    display: block
}

input {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: 0
}

audio:not([controls]) {
    display: none;
    height: 0
}

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

img[data-src] {
    opacity: 0;
    visibility: hidden;
}

a, .link-redirect {
    background-color: transparent;
    color: var(--link-color);
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    text-decoration: none
}

a:hover, .link-redirect:hover {
    color: var(--link-color-hover);
}

a:active,a:hover {
    outline: 0
}

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

address {
    font-style: italic;
    font-size: 1.14rem
}

section {
    position: relative;
    margin-bottom: 4.5vw;
    margin-top: 2vw;
}

section.demos-content{
     margin-top: 0;
}
.main-section.default-section.sections-starter{
    margin-bottom: 2vw;
}

@media only screen and (max-width: 960px) {
    section {
        margin: 12vw 0;
        --h2-size-proportion: 2.7;
    }
}

h1, h2, .h2 {
    color: var(--heading-color);
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: calc(var(--h2-size-proportion, 3.2) * 1rem);
    line-height: 1.2;
    margin: 0 0 15px;
    flex: 1 1 100%;
}

h3, .h3 {
    color: var(--heading-color);
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: calc(var(--h3-size-proportion, 2.3) * 1rem);
    line-height: 1.2;
    margin: 0 0 15px;
    flex: 1 1 100%;
}

h4, .h4 {
    color: var(--heading-color);
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: calc(var(--h4-size-proportion, 1.3) * 1rem);
    line-height: 1.2;
    margin: 0 0 15px;
    flex: 1 1 100%;
}

h5 {
    color: var(--heading-color);
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: calc(var(--h5-size-proportion, 1.14) * 1rem);
    line-height: 1.2;
    margin: 0 0 15px;
    flex: 1 1 100%;
}

p {
    margin: 0 0 20px;
    line-height: 1.7;
    font-size: calc(var(--p-size-proportion, 1.14) * 1rem);
    flex: 1 1 100%;
}

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

@media only screen and (max-width: 1024px) {
    html {
        font-size:12px
    }
}

@media only screen and (max-width: 960px) {
    body {
        --p-size-proportion: 1.35;
    }
    .page-wrapper,
    footer {
        --button-size: 1.35rem;
    }
    /*p {*/
    /*    font-size: 1.48rem;*/
    /*    line-height: 1.7;*/
    /*}*/
}

img.lazyload {
    width: 100%;
    height: auto;
}
.lazyload-wrapper:before {
    content: '';
    position: absolute;
    top: calc(50% - 1em);
    left: calc(50% - 1em);
    border: 1px solid #e1e1e1;
    border-left-color: #888;
    display: block;
    width: 2em;
    height: 2em;
    z-index: 1;
    border-radius: 50%;
    animation: rotate .3s infinite linear
}

/* univeral classes */
.fw-medium {
    font-weight: 500;
}

.text-center {
    justify-content: center;
    text-align: center
}

.text-right {
    text-align: right;
}

.black-color {
    color: #222;
}

.gold-color {
    color: #E9C25D;
}

.pink-color {
    color: #a4004f;
}

.blue-color {
    color: #005AF0
}

.white-color {
    --heading-color: #fff;
    --link-color: #fff;
    --link-color-hover: rgba(255,255,255, .8);
    color: #fff;
}

/* text style classes */
.text-underline {
    text-decoration: underline;
}

/* buttons */
.et-button {
    --button-color: #fff;
    --button-bg-color: #222;
    --button-br-color:
            var(--button-bg-color);
    --button-hover-overlay:
            rgba(0,0,0,.1);
    position: relative;
    padding: 9px 20px;
    min-height: unset;
    display: inline-block;
    height: auto;
    background: var(--button-bg-color);
    color: var(--button-color);
    border: 2px solid var(--button-br-color);
    cursor: pointer;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    text-decoration: none;
    line-height: normal;
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: var(--button-size, 1rem);
    box-shadow: none;
    border-radius: 7px; 
    backface-visibility: hidden;
    /* min-width: 160px; */
    text-align: center;
}

.et-button:not([href]):not([data-href]) {
    cursor: default;
    transform: none !important;
}

.et-button svg {
    vertical-align: -2px;
}

.et-button.open-ai-button {
    background: #39b772;
    border-color: #39b772;
    margin-inline-start: 1.9rem;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    white-space: nowrap;
}

.et-button.open-ai-button:after {
    content: '+';
    position: absolute;
    top: 50%;
    font-size: 1.4rem;
    transform: translateY(-50%);
    line-height: 1;
    margin-inline-end: 0.6rem;
    right: 100%;
    color: #000;
    transition: all .2s linear; 
}

header.dark .et-button.open-ai-button:after {
    color: #fff;
}


header:not(.dark) .et-button.open-ai-button:hover{
    --button-color: #39b772;
    --border-color: #39b772;
    --button-hover-overlay: transparent;
    background-color: transparent;
}

header.dark .et-button.open-ai-button:hover {
    --button-color: #39b772;
    --border-color: #39b772;
    --button-hover-overlay: transparent;
    --button-bg-color: #fff;
}

.et-button.inverse,
.et-button-bordered-hover:hover,
header:not(.dark) .button-wrapper .et-button:hover {
    --button-color: #222;
    --button-bg-color: transparent;
    --button-br-color: var(--button-color);
    --button-hover-overlay: transparent;
}

.et-button.inverse:hover {
    --button-color: #fff;
    --button-bg-color: #222;
    --button-br-color: #222;
}

.et-button:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    background: var(--button-hover-overlay, rgba(0,0,0,.1));
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

.et-button:not(:hover):before {
    opacity: 0;
    visibility: hidden
}

.et-button-green {
    background: -webkit-linear-gradient(83.46deg,#008c49 -60.97%,#86ffb4 270.1%);
    background: -moz-linear-gradient(83.46deg,#008c49 -60.97%,#86ffb4 270.1%);
    background: -o-linear-gradient(83.46deg,#008c49 -60.97%,#86ffb4 270.1%);
    background: linear-gradient(6.54deg,#008c49 -60.97%,#86ffb4 270.1%);
    border-color: #10a45d
}

.et-button-active {
    --button-bg-color: #a4004f;
}

.et-button-white {
    --button-color: #000;
    --button-bg-color: #fff;
}

.et-button-white.inverse {
    --button-color: #fff;
    --button-bg-color: transparent;
}

.et-button-white.inverse:hover {
    --button-color: #000;
    --button-bg-color: #fff;
    --button-br-color: #fff;
}

.et-button-transparent {
    --button-color: #fff;
    --button-bg-color: transparent;
    --button-br-color: #fff;
    --button-hover-overlay: transparent;
}

.et-button-transparent:hover {
    --button-color: #000;
    --button-bg-color: #fff;
    --button-br-color: #fff;
}

.et-button-transparent.inverse {
    --button-color: #000;
    --button-br-color: #000;
}

.et-button-semi-transparent {
    --button-color: #fff;
    --button-bg-color: rgba(255,255,255,.07);
    --button-br-color: transparent;
    --button-hover-overlay: transparent;
}

.et-button-orange {
    --button-bg-color: #f4511e;
}

.et-button-yellow {
    --button-bg-color: #F9A825;
}

.et-button:hover {
    color: var(--button-color);
    background-color: var(--button-bg-color);
}

@media only screen and (max-width: 960px) {
    .et-button.mob-inverse {
        --button-color: #222;
        --button-bg-color: transparent;
        --button-br-color: var(--button-color);
        --button-hover-overlay: transparent;
    }

    .et-button.mob-inverse:hover {
        --button-color: #fff;
        --button-bg-color: #222;
        --button-br-color: #222;
    }
}

/* layout */
.page-wrapper {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
    /*margin-bottom: 550px;*/
}
.container {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: var(--container-width, 100%);
}

@media (min-width: 961px) {
    body {
        --container-width: 950px;
    }
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 992px) {
    body {
        --container-width: 970px;
    }
}

@media (min-width: 1200px) {
    body {
        --container-width: 1170px
    }
}

@media (min-width: 1400px) {
    body {
        --container-width: 1760px;
    }
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

@media only screen and (max-width: 960px) {
    .row .row {
        margin-left: 0;
        margin-right: 0;
    }
}

.grid-row {
    display: grid;
    grid-gap: var(--grid-gap, 25px);
}

.grid-columns-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-columns-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-columns-auto {
    grid-template-columns: repeat(auto-fit, minmax(var(--min-autofit-w, 250px), 1fr));
}

@media only screen and (max-width: 480px) {
    .grid-columns-auto {
        grid-template-columns: repeat(auto-fit, minmax(var(--min-autofit-w, 100%), 1fr));
    }
}

.v-align-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.equal-columns-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.clearfix:after,.clearfix:before {
    content: '';
    display: table;
    clear: both
}

/* global overlay row */
/*.row-has-overlay {*/
/*    position: relative;*/
/*    !*overflow: hidden;*!*/
/*    !*max-height: 25vw;*!*/
/*}*/

/*.row-has-overlay:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 15vw;*/
/*    background: linear-gradient(0deg, rgba(255,255,255,.7) 20%, rgba(255,255,255,0));*/
/*    bottom: 0;*/
/*    pointer-events: none;*/
/*}*/

.et-col-2, .et-col-3,.et-col-4,.et-col-5,.et-col-6,.et-col-7,.et-col-8,.et-col-9, .et-col-12 {
    padding: 0 15px;
    float: left;
    min-height: 1px;
    width: 100%;
}

@media only screen and (min-width: 961px) {
    .et-col-2 {
        width: 16.67%;
    }

    .et-col-3 {
        width: 25%
    }

    .et-col-4 {
        width: 33.33%
    }

    .et-col-5 {
        width: 41.66%
    }

    .et-col-6 {
        width: 50%
    }

    .et-col-7 {
        width: 58.33%
    }

    .et-col-8 {
        width: 66.66%
    }

    .et-col-9 {
        width: 75%
    }

    .et-col-12 {
        width: 100%;
    }
}

@media only screen and (min-width: 961px) and (max-width: 1800px) {
    .et-col-3 {
        width:20%
    }

    .et-col-9 {
        width: 80%
    }
}

@media only screen and (min-width: 961px) and (max-width: 992px) {
    .et-col-3 {
        width:30%
    }

    .et-col-9 {
        width: 70%
    }
}

@media only screen and (max-width: 960px) {
    /*    .et-col-3,.et-col-6,.et-col-9 {*/
    /*        width:100%;*/
    /*        padding-left: 30px;*/
    /*        padding-right: 30px*/
    /*    }*/
    .et-col-2:empty {
        display: none;
    }
}
/* global affix/prefix/name */
[data-affix]:after {
    content: attr(data-affix)
}

[data-prefix]:before {
    content: attr(data-prefix)
}

[data-name]:after {
    content: attr(data-name);
    display: block;
    flex-basis: 100%;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-transform: capitalize;
    overflow: hidden;
    margin-top: 10px;
    line-height: 1.4
}

@media only screen and (max-width: 960px) {
    [data-name]:after {
        font-size:1rem
    }
}

/* global info-label */
.info-label {
    color: #fff;
    background: #10a45d;
    display: inline-flex;
    border: 2px solid #10a45d;
    z-index: 1;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 5px;
    cursor: default
}

.info-label-lg {
    padding-left: 12px;
    padding-right: 12px;
}

.info-label[data-type=dark] {
    background: #222;
    border-color: #222;
}

.info-label[data-type=dark-outline] {
    color: #222;
    background: #fff;
    border-color: currentColor;
}

.info-label[data-type=white] {
    color: #222;
    background: #fff;
    border-color: #fff;
}

.info-label[data-type=white-outline] {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

.info-label[data-type=active] {
    background: #a4004f;
    border-color: #a4004f;
}

.info-label[data-type=danger] {
    background: #C62828;
    border-color: #C62828;
}

.info-label[data-type=info] {
    background: #0E63FF;
    border-color: #0E63FF;
}

/* global fake-filter */
.fake-filter,
.link-redirect {
    cursor: pointer;
}

/* global tooltips */
.mtips {
    position: relative;
    z-index: 1000
}

.mtips span.mt-mes {
    position: absolute!important;
    background: #222;
    white-space: nowrap;
    color: #fff;
    padding: 7px 12px!important;
    top: 100%;
    font-weight: 300;
    margin-top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 12px;
    height: 11px;
    line-height: 11px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1);
    -moz-box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1);
    box-shadow: 1px 1px 5px 0 rgba(0,0,0,.1);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.mtips:not(:hover) span.mt-mes,.mtips:not(:hover):after {
    opacity: 0;
    visibility: hidden
}

.mtips:after {
    content: "";
    position: absolute;
    top: 100%;
    left: -webkit-calc(50% - 5px);
    left: -moz-calc(50% - 5px);
    left: calc(50% - 5px);
    border: 5px solid transparent;
    border-bottom-color: #222;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.mtips-top span.mt-mes {
    margin-top: 0;
    margin-bottom: 10px;
}

.mtips-top span.mt-mes, .mtips-top:after {
    top: auto;
    bottom: 100%;
}

.mtips-top:after {
    border-bottom-color: transparent;
    border-top-color: #222;
}

.mtips-top:not(:hover) span.mt-mes {
    -webkit-transform: translateX(-50%) translateY(5px);
    -moz-transform: translateX(-50%) translateY(5px);
    -ms-transform: translateX(-50%) translateY(5px);
    -o-transform: translateX(-50%) translateY(5px);
    transform: translateX(-50%) translateY(5px)
}

.mtips-top:not(:hover):after {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px)
}

.mtips-left span.mt-mes {
    margin-top: 0;
    top: auto;
    bottom: -webkit-calc(50% - 12px);
    bottom: -moz-calc(50% - 12px);
    bottom: calc(50% - 12px);
    left: auto;
    right: 100%;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
    margin-right: 15px;
}

.mtips-left:not(:hover) span.mt-mes,.mtips-left:not(:hover):after {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px)
}

.mtips-left:after {
    top: auto;
    left: auto;
    right: 100%;
    bottom: -webkit-calc(50% - 5px);
    bottom: -moz-calc(50% - 5px);
    bottom: calc(50% - 5px);
    margin-right: 5px;
    border-top-color: transparent;
    border-left-color: #222;
    border-bottom-color: transparent
}

.mtips:hover {
    z-index: 1001
}

.mtips:hover span.mt-mes,.mtips:hover:after {
    display: block
}

.mtips-img span.mt-mes {
    height: auto;
    padding: 0 !important;
    background-color: transparent;
}

.mtips-img span.mt-mes img, .mtips-img span.mt-mes video {
    max-width: 450px;
    max-height: 250px;
}

/* base styles */
body {
    --active-color: #a4004f;
    --font-color: #555;
    --main-color: #888;
    --link-color: #000;
    --link-color-hover: #333;
    --heading-color: #000;
    margin: 0;
    font-family: Lato,sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: var(--font-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* global header */
header {
    position: fixed;
    /*position: absolute;*/
    /*position: sticky;*/
    top: 0;
    width: 100%;
    background: #fff;
    color: #000;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    z-index: 10000;
}

header.sticky-on {
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.15);
    -moz-box-shadow: 0 0 12px 0 rgba(0,0,0,.15);
    box-shadow: 0 0 12px 0 rgba(0,0,0,.15);
}

/* to make smart sticky header globally or only for >961px */
/*@media only screen and (min-width: 961px) {*/
header {
    position: relative;
}
header.sticky-on .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: inherit;
    box-shadow: inherit;
}

header.sticky-on .header-wrapper {
    -webkit-animation-name: et-toBottomFull;
    animation-name: et-toBottomFull;
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

/*header.sticky-on .header-wrapper {*/
/*    z-index: 9999*/
/*}*/
@media only screen and (min-width: 961px) {
    header.sticky-on .header-inner {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}
/* } */

header .logo {
    position: relative;
    --link-color: currentColor;
    --link-color-hover: currentColor;
}

header.dark {
    color: #fff;
    background: #222;
}

header.dark .navigation-desktop-menu > ul > li > a,
header.dark .navigation-desktop-menu > ul > li > [data-href],
header.dark .navigation-desktop-menu > ul > li > .fake-filter {
    --link-color: #fff;
    --link-color-hover: #999;
}

.header-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 28px 0;
}

@media only screen and (max-width: 1399px) {
    header .header-inner .button-wrapper {
        flex: 1;
        justify-content: flex-end;
        text-align: end;
    }

    header .header-inner .button-wrapper .et-button {
        padding: 10px;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 1100px) {
    header .header-inner .button-wrapper .et-button {
        font-size: 0;
    }
    header .header-inner .button-wrapper .et-button[data-mob-text]:after {
        content: attr(data-mob-text);
        font-size: 12px;
    }

    header .header-inner .button-wrapper .et-button[data-mob-text]:has(svg):after {
        margin-left: 5px;
    }

    header .header-inner .button-wrapper .et-button svg {
        font-size: 12px;
        margin: 0 !important;
    }
}


@media only screen and (max-width: 960px) {
    header .header-inner .open-ai-button {
        display: none;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    header {
        font-size: 12px; /* the same as it will be for html under 1024px */
    }
}

@media only screen and (max-width: 960px) {
    .header-inner {
        justify-content: space-between;
        padding: 10px 0;
    }

    .header-inner .logo {
        /* flex: 1; */
        text-align: start;
    }

    header .header-inner .logo svg {
        max-width: 145px
    }

    /*header .header-inner .button-wrapper {
        display: none;
    }*/
}

@media only screen and (max-width: 380px) {
    .header-inner .logo {
        /* flex: auto; */
    }

    header .header-inner .button-wrapper {
        white-space: nowrap;
    }
}

/* header menus style */
.navigation-menu {
    margin: 0 auto 0 0;
    position: relative;
}

.navigation-menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 1.5vw
}

@media only screen and (min-width: 961px) {
    .navigation-menu > ul {
        flex-wrap: nowrap;
    }
}

.navigation-menu ul li {
    position: relative;
    display: inline-block
}

.navigation-menu ul li a, .navigation-menu ul li [data-href], .navigation-menu ul li .fake-filter, .navigation-menu ul li .column-title {
    position: relative;
    font-weight: 600;
    display: inline-block;
    padding: 10px 0;
    margin: 0 13px;
    text-transform: uppercase;
    /*color: currentColor;*/
    cursor: pointer
}

.animated-link {
    position: relative;
}

.animated-link:after,
.navigation-menu>ul>li>a:after, .navigation-menu>ul>li>[data-href]:after, .navigation-menu>ul>li>.fake-filter:after {
    content: '';
    height: 2px;
    width: 0;
    right: 0;
    position: absolute;
    -webkit-transition: width .2s ease-in-out;
    -o-transition: width .2s ease-in-out;
    -moz-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
    background: currentColor;
    bottom: 0
}

.navigation-menu .sub-menu ul>li>[data-href]:has(.et-button):after {
    display: none;
}

.animated-link:hover:after,
.navigation-menu>ul>li>a:hover:after, .navigation-menu>ul>li>[data-href]:hover:after, .navigation-menu>ul>li>.fake-filter:hover:after {
    left: 0;
    width: 100%
}

.navigation-menu ul li .with-submenu {
    padding-right: 15px
}

.navigation-menu ul li a.with-submenu>svg,
.navigation-menu ul li .fake-filter.with-submenu>svg,
.navigation-menu ul li [data-href].with-submenu>svg{
    fill: currentColor;
    vertical-align: middle;
    position: absolute;
    top: -webkit-calc(50% - .6em);
    top: -moz-calc(50% - .6em);
    top: calc(50% - .6em);
    right: -5px
}

@media only screen and (min-width: 1001px) and (max-width: 1450px) {
    .menu-item-specific-responsive {
        display: none !important;
    }
    .navigation-desktop-menu > ul > li > a,
    .navigation-desktop-menu > ul > li > [data-href],
    .navigation-desktop-menu > ul > li > .fake-filter,
    .navigation-desktop-menu > ul > li > .column-title {
        white-space: nowrap;
    }
}

.navigation-menu ul li .label-hot:before,.navigation-menu ul li .label-new:before {
    content: 'new';
    position: absolute;
    top: -3px;
    right: -4px;
    font-size: .6em;
    line-height: 1;
    text-transform: uppercase;
    padding: 2px 3px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    background: #39b772
}

.navigation-menu ul li .label-hot:before {
    content: 'hot';
    background: #c42a2e;
}

/*.navigation-menu ul li a:hover {
    color: rgba(255,255,255,.7);
}*/
.navigation-menu .sub-menu a[data-tooltip-image] + img {
    position: fixed;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.7);
    top: 0;
    left: calc(100% + 40px);
    border-radius: 10px;
    transition: all .3s;
}

.navigation-menu .sub-menu a[data-tooltip-image]:not(:hover) + img {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.navigation-menu .sub-menu {
    position: absolute;
    color: #222;
    background: #fff;
    top: -webkit-calc(100% + 10px);
    top: -moz-calc(100% + 10px);
    top: calc(100% + 10px);
    left: 50%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 15px;
    /* -webkit-transition: all .3s; */
    -o-transition: all .3s;
    -moz-transition: all .3s;
    /* transition: all .3s; */
    -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
    box-shadow: 0 0 12px 0 rgba(0,0,0,.2);
    max-height: calc(100vh - 190px);
    overflow: auto;
    overflow-x: hidden;
    animation: submenu-anim .3s linear;
}

.navigation-menu > ul > li:hover:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 20px;
}
.navigation-menu .sub-menu[data-cols="1"] {
    min-width: 225px;
    padding-bottom: 0;
}

.navigation-menu .sub-menu[data-cols="2"] {
    min-width: 500px;
}

.navigation-menu .sub-menu[data-cols="3"] {
    min-width: 750px;
}

.navigation-menu .sub-menu[data-cols="4"] {
    min-width: 1000px;
}

.navigation-menu .sub-menu[data-cols="5"], .navigation-menu .sub-menu[data-cols="5+1"] {
    min-width: 1250px;
    left: -450px;
    transform: none;
}

@media only screen and (max-width: 1400px) {
    .navigation-menu .sub-menu[data-cols="5"], .navigation-menu .sub-menu[data-cols="5+1"] {
        left: -710px;
    }
}

@media only screen and (min-width: 1300px) and (max-width: 1500px) {
    .navigation-menu .sub-menu[data-cols="5+1"] {
        min-width: unset;
        width: 100vw;
    }
}

@media only screen and (min-width: 1300px) {
    .navigation-menu .sub-menu[data-cols="5+1"] {
        min-width: 1500px;
        left: calc(-50% - 140px);
        max-width: calc(100vw - 50px);
    }
}

@media only screen and (max-width: 1299px) {
    .navigation-menu .sub-menu[data-cols="5+1"] .column-hidden {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    .navigation-desktop-menu {
        display: none;
    }
}

.navigation-menu li:not(:hover)>.sub-menu {
    /* opacity: 0; */
    /* visibility: hidden; */
    /* top: -webkit-calc(100% + 14px); */
    top: -moz-calc(100% + 14px);
    /* top: calc(100% + 14px); */
    display: none;
}

.navigation-menu li:not(:hover) .with-submenu:before {
    /* opacity: 0; */
    /* visibility: hidden; */
    /* bottom: -15px; */
    display: none;
}

.navigation-menu .sub-menu>ul {
    padding: 0 10px 20px;
    float: left
}

.navigation-menu .sub-menu[data-cols="1"]>ul {
    width: 100%;
}

.navigation-menu .sub-menu[data-cols="2"]>ul {
    width: 50%;
}

.navigation-menu .sub-menu[data-cols="3"]>ul {
    width: 33.33%;
}

.navigation-menu .sub-menu[data-cols="4"]>ul {
    width: 25%;
}

.navigation-menu .sub-menu[data-cols="5"]>ul, .navigation-menu .sub-menu[data-cols="5+1"]>ul {
    width: 20%;
}

@media only screen and (min-width: 1300px) {
    .navigation-menu .sub-menu[data-cols="5+1"]>ul {
        width: 16.66%;
    }
}

.navigation-menu .sub-menu>ul:not(:last-child) {
    border-right: 1px solid #e1e1e1
}

.navigation-menu .sub-menu ul {
    margin: 0
}

.navigation-menu .sub-menu ul li {
    width: 100%
}

.navigation-menu .sub-menu>ul>li~li {
    margin-top: 20px
}

.navigation-menu .sub-menu ul ul a, .navigation-menu .sub-menu ul ul [data-href], .navigation-menu .sub-menu ul ul .fake-filter {
    text-transform: capitalize;
    color: var(--main-color);
    font-weight: 400;
    font-size: 1.14rem
}

.navigation-menu .sub-menu ul ul a:hover, .navigation-menu .sub-menu ul ul [data-href]:hover, .navigation-menu .sub-menu ul ul .fake-filter:hover {
    color: var(--font-color);
}

.navigation-menu .with-submenu:before {
    content: '';
    border: 10px solid transparent;
    border-bottom-color: #fff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all .3s linear;
    animation: submenu-arrow-anim .3s linear;
    z-index: 1;
}

@media only screen and (max-width: 1150px), (min-width: 1300px) and (max-width: 1340px) {
    .mob-nav-hidden[href*=general-info-amp], .mob-nav-hidden[href*=reviews_controls] {
        display: none;
    }
}

@media only screen and (max-width: 1000px) {
    .mob-nav-hidden {
        display: none !important;
    }
}

/* mobile menu */
/* navigation mobile menu */
.navigation-mobile-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    transition: all .3s linear;
    padding: 20px;
    background: #fff;
    box-shadow: 2px 0 12px 0 rgb(0 0 0 / 15%);
    color: #000;
    max-width: 300px;
    width: calc(100vw - 50px);
    display: block;
}

.navigation-mobile-menu:not(.opened) {
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
}

.navigation-mobile-menu ul {
    flex-wrap: wrap;
    margin: 0;
}

.navigation-mobile-menu li {
    flex-basis: 100%;
}

.navigation-mobile-menu .et-button {
    padding: 10px 30px;
    margin-top: 20px;
}

.navigation-mobile-menu ul li a,
.navigation-mobile-menu ul li [data-href],
.navigation-mobile-menu ul li .fake-filter {
    margin: 0 0 5px 0;
}

.navigation-mobile-menu .et-button {
    color: #fff;
}

.mobile-menu-opener {
    color: currentColor;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    margin-left: 20px;
    order: 1;
}

.mobile-menu-closer {
    display: inline-flex;
    align-items: center;
    position: absolute;
    left: -7px;
    top: 7px;
    padding: 10px;
    transform: translateX(-100%);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px 0 rgb(0 0 0 / 15%);
}

.mobile-menu-opener.opened svg:first-child, .mobile-menu-opener:not(.opened) svg:last-child {
    display: none;
}

@media only screen and (min-width: 1001px) {
    .mobile-menu-opener, .navigation-mobile-menu {
        display: none;
    }
}

/* header top-bar */
.top-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 7px;
    text-align: center;
    font-size: 18px;
    color: #222;
    font-weight: bold;
    /*position: fixed;*/
    /*top: 0;*/
    width: 100%;
    z-index: 2;
    /*background: url(https://xstore.8theme.com/wp-content/uploads/2022/03/xstore-sale-background.png) #c62828;
    background-size: auto 200%;
    background-repeat-x: no-repeat;
    -webkit-animation: eight-theme-top-bar-bg-anim 7s linear infinite;
    animation: eight-theme-top-bar-bg-anim 7s linear infinite;*/
    /*background: url(https://xstore.8theme.com/wp-content/uploads/2023/01/confetti.png) #FFD600;*/
    background: #FFD600; 
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
    border-bottom: 3px solid #222;
}

.top-bar[data-colorscheme="orange"] {
    background-color: #FF794F;
    border-color: #FF794F;
}

.top-bar .container > span {
    text-transform: uppercase;
    font-weight: bold;
}

@-webkit-keyframes eight-theme-top-bar-bg-anim {
    from {
        background-position: center 0
    }

    to {
        background-position: center 200%
    }
}

@keyframes eight-theme-top-bar-bg-anim {
    from {
        background-position: center 0
    }

    to {
        background-position: center 200%
    }
}

.top-bar span {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    vertical-align: middle;
}

.top-bar span~span {
    padding-left: 15px
}

.top-bar .et-button {
    padding: 7px 15px;
    font-size: 1rem;
    -webkit-transform: none!important;
    -moz-transform: none!important;
    -ms-transform: none!important;
    -o-transform: none!important;
    transform: none!important;
    border-width: 2px;
    /*background-color: transparent;*/
    color: #fff;
    margin: 4px 0 4px 12px;
}

.top-bar .et-button:hover {
    color: #222;
    background: transparent;
    --button-hover-overlay: transparent;
}

.top-bar .et-button-green {
    background: #4caf50;
}

.top-bar .et-button-green:hover {
    color: #fff;
    background: #222;
    border-color: #222;
}

.top-bar .et-close-button {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

@media only screen and (max-width: 480px) {
    .top-bar {
        padding: 6px 2px;
    }

    .top-bar .et-button {
        padding: 5px 10px;
    }
}

@keyframes scaleInOut {
    0% {
        transform: scale(.9);
    }

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

/* timer element */
.et-timer {
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    cursor: default;
}

.et-timer:before, .et-timer:after {
    content: '';
    display: table;
    clear: both;
}

.et-timer .time-block {
    position: relative;
    font-size: 1em;
    text-transform: capitalize;
    float: left;
}

.et-timer .time-block .timer-count {
    position: relative;
    font-size: 3em;
    line-height: 1;
    display: block;
    padding: 5px;
    margin: 0 .25em 5px;
    border: 2px solid #E9C25D;
    min-width: 60px;
}

.et-timer .time-block:not(:last-child) .timer-count:after {
    content: ':';
    position: absolute;
    top: 50%;
    right: -.25em;
    transform: translate(50%, -50%);
    color: currentColor;
}

.et-timer .timer-info {
    font-size: 2em;
    margin-bottom: 10px;
}

.et-timer .timer-info:empty {
    display: none;
}

/* animated text element */
.animated-text-inner {
    display: inline-block;
    position: relative;
    color: var(--text-color,currentColor)
}

.animated-text-inner .animated-text {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0
}

.animated-text-inner .animated-text-active {
    position: relative
}

.no-js .animated-text-inner .animated-text {
    opacity: 0
}

.no-js .animated-text-inner .animated-text-active {
    opacity: 1
}

.animated-text-inner {
    display: inline-block;
    overflow: hidden;
    vertical-align: top
}

.with-animation .animated-text-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: var(--cursor-width,2px);
    height: 100%;
    background-color: currentColor
}

.animated-text-wrapper .animated-text {
    opacity: 0
}

.animated-text-wrapper .animated-text-active {
    opacity: 1
}

.animated-text-after {
    display: block;
}

/* animated images */
.animated-images {
    position: relative;
    height: var(--animated-images-h, 490px);
}
.animated-images-slider {
    position: absolute;
    width: 100%;
}
.animated-images-slider li,
.animated-images-slider li img{
    width: 100%;
}

.animated-images-slider li {
    padding-bottom: var(--grid-gap, 25px);
}

/* circles */
.circle {
    background: #e1e1e1;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-block;
    width: 5vw;
    height: 5vw;
}

.circle.circle-xs {
    width: 60px;
    height: 60px;
    width: 2.5vw;
    height: 2.5vw;
}

.circle.circle-lg {
    width: 240px;
    height: 240px;
    width: 10vw;
    height: 10vw;
}

/* accordion */
.accordion-item {
    padding: 35px 0;
    border-bottom: 1px solid #e1e1e1;
}

.accordion-item:first-child {
    border-top: 1px solid #e1e1e1;
}

@media only screen and (max-width: 960px) {
    .accordion-item:last-child {
        border-bottom: none;
    }
}

.accordion-head {
    position: relative;
    cursor: pointer;
}

.accordion-head::before, .accordion-head::after {
    content: '';
    position: absolute;
    top: 50%;
    background-color: var(--heading-color);
    transition: all .3s;
}

.accordion-head::before {
    right: 30px;
    width: 3px;
    height: 20px;
    margin-top: -10px;
}

.accordion-head::after {
    right: 21px;
    width: 20px;
    height: 3px;
    margin-top: -2px;
}

.accordion-head .h3 {
    display: block;
    font-size: 1.55rem;
    padding-right: 45px;
    margin-bottom: 0;
}

.accordion-content {
    padding: 15px 0;
    color: #222;
    display: none;
}

.accordion-content ul {
    list-style: circle;
    list-style-position: inside;
    line-height: 1.7;
    font-size: 1.2rem;
}

.accordion-head.active::before {
    transform: rotate(90deg);
}

/* layout elements */
.group-builders-inline {
    font-size: 1.6rem;
}

.section-heading {
    margin-bottom: 50px;
    --h3-size-proportion: 2.55;
    --p-size-proportion: 1.28;
}

/* layout elements (shadow-column) */
.shadow-column {
    padding: 50px;
    box-shadow: 0 4px 105px rgba(18, 4, 108, 0.05);
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /*align-content: center;*/
    --p-size-proportion: 1.16;
}

.shadow-column ul {
    flex-basis: 100%;
    font-size: 1.14rem;
}

@media only screen and (max-width: 960px) {
    .shadow-column ul {
        font-size: 1.25rem;
    }
}

.shadow-column li + li {
    margin-top: 15px;
}

.multivendors .group-images img {
    width: 100%;
}

.theme-update svg {
    animation: slow-rotate 1.2s infinite linear;
}

.theme-support a,
.theme-update a {
    font-size: 114%;
}

.multivendors .group-images,
.built-in-builders .group-images,
.xstudio .animated-background {
    margin: 30px -50px -50px;
    align-self: flex-end;
}

.built-in-builders .group-images {
    position: relative;
}

.built-in-builders .group-images span + span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.built-in-builders .group-images span:not(.active) {
    opacity: 0;
    visibility: hidden;
}

.built-in-builders .group-images span {
    transition: all .5s linear;
}

.built-in-builders .group-images img {
    margin: 0 auto;
}

@media only screen and (min-width: 960px) and (max-width: 1460px) {
    .built-in-builders {
        display: none;
    }
}

@media only screen and (max-width: 960px) {
    .shadow-column {
        padding: 25px;
    }
    .multivendors .group-images,
    .built-in-builders .group-images,
    .xstudio .animated-background {
        margin: 20px -25px -25px;
    }
}

@media only screen and (min-width: 961px) {
    .xstore-amp img {
        max-width: 240px;
    }
}

@media(hover: hover) {
    .xstore-amp:not(:hover) img {
        animation-play-state: paused;
    }
}

.xstore-amp img {
    animation: rocket-animation 2.5s linear infinite;
    margin-bottom: 20px;
}

@media only screen and (min-width: 961px) {
    .envato-author {
        grid-template-columns: 1fr auto;
        align-content: center;
    }
}

.envato-author {
    display: grid;
    grid-gap: 15px;
}

.envato-author .counter {
    display: inline-block;
    text-transform: uppercase;
    padding: 5px 15px;
    border: 2px solid currentColor;
    border-radius: 30px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 960px) {
    .envato-logo svg {
        max-width: 90px;
        height: auto;
    }
}

.customers-stat .counter {
    font-size: 1.9em;
}

.xstudio .animated-background {
    /*background-image: url("img/xstudio/xstudio-blocks.png");*/
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 250px;
    flex: 1 1 100%;
}

@media only screen and (max-width: 960px) {
    .xstudio .animated-background {
        min-height: 150px;
    }
}

.group-icon-boxes {
    display: flex;
    flex-wrap: wrap;
}

.icon-box {
    flex: 1;
    padding: 20px;
    min-width: 200px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

@media only screen and (max-width: 960px) {
    .icon-box {
        padding-left: 10px;
        padding-right: 10px;
        min-width: 168px;
    }
}

.icon-box-icon {
    margin-bottom: 10px;
}

.icon-box[data-affix]:after {
    font-size: 1.4em;
    color: #000;
}

.group-images {
    display: grid;
    align-items: center;
    /*grid-template-columns: 1fr 1fr 1fr;*/
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    grid-gap: 4px;
    /* margin: 0 -20px; */
    flex: 1 1 100%;
}

.group-images img {
    border-radius: 10px;
}

.group-images a+a:before {
    content: '&';
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    width: 1.5em;
    height: 1.5em;
    color: #fff;
    background: #000;
    border-radius: 50%;
    top: calc(50% - 0.75em);
    left: calc(-.75em - 4px/2);
}

.group-builders a+a:before {
    background-color: #FFC107;
}

.group-images a {
    position: relative;
}

.group-images-inline {
    flex: unset;
    grid-template-columns: auto auto;
    grid-gap: 20px;
}

.group-images-inline a+a:before {
    display: none;
}

.group-buttons {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 -7px -10px;
}

.group-buttons > .et-button {
    margin: 0 7px 10px;
}

/* default section */

.default-section .section-content {
    padding: 5vw 4vw;
    background: #F5F5F7;
    border-radius: 10px;
}

/* main section */
.main-section {
    --p-size-proportion: 1.28;
    margin-top: 0;
}
.main-section .theme-features {
    --p-size-proportion: 1.14;
    margin: 0 -7px 25px;
}

@media only screen and (min-width: 961px) and (max-width: 1900px) {
    .main-section .animated-text-wrapper {
        font-size: 2.7vw;
    }
    .main-section .animated-text-wrapper strong {
        white-space: nowrap;
    }
    .main-section .theme-features {
        --lines: 1;
        --line-height: 3ex;
        overflow: hidden;
        height: calc(var(--lines) * var(--line-height));
        line-height: var(--line-height);
    }
}

@media only screen and (min-width: 961px) and (max-width: 1400px) {
    .main-section .animated-text-wrapper .xs-hide {
        display: none;
    }
}

@media only screen and (min-width: 961px) and (max-width: 1200px) {
    .main-section .theme-features,
    .main-section .theme-description {
        display: none;
    }
}

@media only screen and (min-width: 961px) {
    .main-section .theme-features {
        font-weight: bold;
    }
}
@media only screen and (max-width: 960px) {
    .default-section .section-content {
        padding: 30px 20px;
        /*--h2-size-proportion: 2.7;*/
    }
    .main-section .animated-text-wrapper strong {
        font-weight: normal;
    }
    .main-section .theme-features {
        --p-size-proportion: 1.5;
    }
}
.main-section .theme-features > a {
    display: inline-block;
    margin: 0 7px 10px;
}

/* main section elements animations */
/*.main-section .group-builders-inline,*/
/*.main-section .animated-text-wrapper,*/
/*.main-section p,*/
/*.main-section .theme-features,*/
/*.main-section .et-button-wrapper {*/
/*    transition: all .3s linear;*/
/*}*/
/*.main-section .animated-text-wrapper {*/
/*    transition-delay: .15s;*/
/*}*/
.main-section .group-builders-inline {
    font-weight: bold;
}
/*.main-section .group-builders-inline:not(:first-child) {*/
/*    transition-delay: .22s;*/
/*}*/
/*.main-section p {*/
/*    transition-delay: .3s;*/
/*}*/
/*.main-section .theme-features {*/
/*    transition-delay: .45s;*/
/*}*/
/*.main-section .et-button-wrapper {*/
/*    transition-delay: .6s;*/
/*}*/
/*.main-section:not(.loaded) .group-builders-inline,*/
/*.main-section:not(.loaded) .animated-text-wrapper,*/
/*.main-section:not(.loaded) p,*/
/*.main-section:not(.loaded) .theme-features {*/
/*    transform: translateY(15px);*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*}*/

/*.main-section:not(.loaded) .et-button-wrapper {*/
/*    transform: scale(.7);*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*}*/

/* global features */
@media only screen and (min-width: 961px) and (max-width: 1200px) {
    .global-features .section-heading .et-col-5 {
        width: 100%;
    }

    .global-features .section-heading .et-col-7 {
        display: none;
    }
}
@media only screen and (min-width: 961px) {
    .global-features {
        --min-autofit-w: 290px;
    }
}

@media only screen and (max-width: 960px) {
    .global-features .mob-priority {
        order: -1;
    }
}

@media only screen and (min-width: 1200px) {
    .global-features {
        --min-autofit-w: 450px;
    }
}

@media only screen and (min-width: 960px) and (max-width: 1500px) {
    .global-features .specific-responsive-hidden-block {
        display: none;
    }
}

.global-features .shadow-column {
    box-shadow: 0 4px 105px rgb(0 0 0 / 9%);
}

/* woocommerce section */
.woocommerce {
    position: relative;
    background: #7F54B3;
    --p-size-proportion: 1.28;
    padding-right: 4vw;
    overflow: hidden;
}

.woocommerce:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    box-shadow: inset 0px 0px 15px 5px rgba(0, 0, 0, .1);
}

.woocommerce .et-col-6 {
    z-index: 1;
}
@media only screen and (min-width: 961px) {
    .woocommerce .equal-columns-row, .woocommerce .v-align-row {
        min-height: 490px;
    }
}

@media only screen and (max-width: 960px) {
    .woocommerce {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .woocommerce .et-col-6:not(:last-child) {
        margin-bottom: 30px;
    }
}

.woocommerce {
    --min-autofit-w: 50px;
}
.woocommerce > .group-images {
    top: auto;
    bottom: 0;
    right: -15px;
    z-index: auto;
    pointer-events: none;
}

@media only screen and (min-width: 961px) {
    .woocommerce > .group-images {
        max-width: 550px;
    }
}

.ecommerce-features .feature-item img {
    width: 320px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (min-width: 481px) {
    .ecommerce-features .feature-item img {
        width: 260px;
    }
}

@media only screen and (min-width: 961px) and (max-width: 1400px) {
    .ecommerce-features .feature-item:last-child {
        display: none;
    }
}

@media only screen and (min-width: 961px) {
    /* ecommerce features */
    .ecommerce-features {
        --min-autofit-w: 260px;
    }

    /* global pros */
    .global-pros {
        --min-autofit-w: 400px;
    }
}

@media only screen and (min-width: 1440px) {
    /* ecommerce features */
    .ecommerce-features {
        --min-autofit-w: 325px;
    }
}

@media only screen and (max-width: 960px) {
    .ecommerce-features {
        --min-autofit-w: 150px;
        --feature-item-title-lines: 4;
        --feature-item-title-line-height: 3ex;
        --p-size-proportion: 1.28;
    }
    .ecommerce-features .feature-item p {
        overflow: hidden;
        height: calc(var(--feature-item-title-lines) * var(--feature-item-title-line-height));
        line-height: var(--feature-item-title-line-height);
    }
}

section > .group-images {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

@media only screen and (max-width: 960px) {
    section > .group-images {
        max-width: 40vw;
    }
}

/* global features */
.feature-item {
    position: relative;
}
.feature-item.element-2-load {
    animation: et-toTop .5s linear, et-fadeIn .5s linear;
}
.feature-item .info-label {
    margin-bottom: 7px;
    border: none;
    position: absolute;
    bottom: 100%;
}
.feature-item .feature-icon,
.feature-item .feature-image {
    display: block;
    text-align: start;
    margin-bottom: 15px;
    transition: all .3s linear;
}

section:not(.loaded) .feature-item .feature-icon,
section:not(.loaded)  .feature-item .feature-image {
    transform: scale(.7);
    opacity: 0;
    visibility: hidden;
}

.feature-item .feature-icon svg {
    width: 45px;
    height: auto;
}

.feature-item:hover .feature-icon {
    animation: feature-icon-animation .4s;
}

.feature-item:hover .feature-image {
    transform: translateY(-10px)
}

.feature-item .feature-title:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 960px) {
    .feature-item {
        --h4-size-proportion: 1.5;
    }
    .feature-item .feature-title-overflow {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

div.feature-item {
    cursor: default;
}
.feature-title {
    display: block;
}
.feature-title span {
    position: relative;
    cursor: inherit;
}

.feature-title span.link-redirect {
    cursor: pointer;
}

.feature-title span:after {
    content: '';
    height: 2px;
    background-color: currentColor;
    width: 0;
    right: 0;
    position: absolute;
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
    bottom: -2px;
}

.feature-item:hover .feature-title span:after {
    width: 100%;
    left: 0;
    right: auto;
}

/* elementor section */
.elementor {
    background-color: #851A3C;
}

@media only screen and (max-width: 960px) {
    .elementor {
        padding: 45px 0;
    }
}

@media only screen and (min-width: 961px) {
    .elementor .equal-columns-row, .elementor .v-align-row {
        min-height: 490px;
    }
}

.elementor .et-col-6 {
    position: relative;
    z-index: 1;
}

.elementor .container > .group-images {
    position: absolute;
    top: auto;
    bottom: 0;
    right: auto;
    left: 30px;
    z-index: auto;
    max-width: 60vw;
    width: 100%;
    max-height: 220px;
    overflow: hidden;
}

.elementor .row .group-images:not(.main-image) {
    position: absolute;
    z-index: 1;
}

.elementor .row .main-image {
    display: block;
    text-align: center;
}

.elementor .row .main-image img {
    max-width: 550px;
    width: 100%;
}

.elementor .row .group-images img {
    box-shadow: 0px 14px 45px rgb(0 0 0 / 15%);
}

.elementor .row .px-scrolling img {
    max-width: 190px;
    width: 100%;
}
@media only screen and (max-width: 960px) {
    .elementor .row .elementor-panel {
        left: auto !important;
        right: 5px;
    }
    .elementor .row .elementor-panel img {
        width: auto;
        max-height: 75vw;
    }
}

@media only screen and (min-width: 961px) and (max-width: 960px) {
    .elementor .row .elementor-panel img {
        display: none;
    }
}
.elementor .row .px-scrolling .colorpicker {
    max-width: 180px;
}
.elementor .row .elementor-element img {
    max-width: 105px;
}

.pro-features {
    --grid-gap: 30px 35px;
}

/* customers showcases */
.customers-showcases {
    background: #222;
    margin: 0;
    padding: 4vw;
}

/* frequently questions section */
.frequently-questions {
    padding: 6.5vw 4vw;
    background: #f7f7f7;
    margin-bottom: 0;
    margin-top: 0;
}
@media only screen and (max-width: 960px) {
    .customers-showcases,
    .frequently-questions {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
.frequently-questions > .container {
    z-index: 1;
}
.frequently-questions .section-content {
    width: 100%;
    max-width: 945px;
    margin: 0 auto;
}

.frequently-questions .circle {
    position: absolute;
    left: -1.5vw;
    top: 2.3vw;
}

.frequently-questions .circle-xs {
    left: auto;
    right: 7vw;
    top: auto;
    bottom: calc(10vw + 10px);
}

.frequently-questions .circle-lg {
    left: auto;
    right: -3vw;
    top: auto;
    bottom: 0;
}

/* layout elements (sidebar) */
@media only screen and (max-width: 960px) {
    .demos-content .sidebar {
        margin-bottom: 0;
    }
}
.sidebar .filters {
    margin-bottom: 30px;
}
.sidebar .filters:last-child {
    margin-bottom: 0;
}
.sidebar ul li {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--main-color);
    font-size: 1.4rem;
    padding: 9px 0;
    cursor: pointer;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    transition: all .3s linear;
}

.sidebar ul li span {
    position: relative;
}

.sidebar ul li span:before {
    content: '';
    position: absolute;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: currentColor;
    width: 0;
    transition: all .3s ease-in-out;
}

.sidebar ul li:hover span:before {
    width: 100%;
    right: auto;
    left: 0;
}

.sidebar ul li[data-count]:after {
    content: attr(data-count);
    margin-left: auto;
    padding-left: 5px;
    font-size: .75em;
}

.sidebar ul li svg {
    margin-right: 5px
}

.sidebar ul li:hover, .sidebar ul li.active {
    color: #fff;
}

.sidebar .et-button {
    width: 100%;
}

/* mobile sidebar filters */
.mob-filters {
    margin-bottom: 40px
}

.mob-filters select {
    width: 100%;
    padding: 10px 15px;
    margin: 0;
    height: 52px;
    font-size: 15px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid var(--font-color);
    background-color: transparent;
    background-position: -webkit-calc(100% - 12px) 50%;
    background-position: -moz-calc(100% - 12px) 50%;
    background-position: calc(100% - 12px) 50%;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAAABmJLR0QA/wD/AP+gvaeTAAAEpUlEQVR4nO3cWYjVVRwH8HM1SyspQ2yRFipaIFroIVooo0ghWskoaHvoIaiHHgSfDKGXDCIiKGghSSoqKIP2lYI2I2gzooWKaLUiy1bNTw//vzXp/P9nZrz3nrne3+dpZO79n+85v4Fxjt8xpRBCCCGEEEIIIYQQQgghhBBCCCGEEEII3dRJKSXslVI6o/7zyk6n803RVEMCs1JK56aUpqeUHut0Op8lzMMv/vMD5pWNuu3Dyfh+xLmvw7EJb9vSb5hfOvS2CgvqM97cyoS1o3wC/sCZpcNva3BWfbajeSbh0YZPwl84v/QmthU4vz7TJlcmHICvWl60AReX3sygwyX1WTZZgc6mF++Dj1pevBFXF97TwMLV9Rk2uenfYYx40x5Y3fImWFJoTwML12TO9IYthjHizbvjncwDruvzngYWrsuc5dKxPGQWVmUedH3vtzPYcH3mDBeP52G74tXMA2/FlB7uaSBhSn02TTZi0UQevDOezwzlthjKf+ph3N5yXn/jiq1ZYEc8kxnKvdiui/saSNgO92WGcXk3FpqBJzNDeQDTurCvgYRp9Rk0WY8Lurng9ngoM5RHMb1riw4ITJe/7VjYi4Wn4cHMUJ7EjK4vPkmpvs++0HIev+P0XgaYiuWZobyImT0LMUlgJl5qOYffsKAfQabgjsxQVmG3nocpBLvhjZb9/4wT+xmoo7p/afMmZvctVJ9gdr23JmtxfIlgHdU9TJvV2LPv4XoEe+L9lv1+j6NLh1yaGcoHmFs0ZBdgbr2XJt/hyNI5U0opYXFmKJ9i/9I5Jwr713to8iUOKZ3zf7BI+53/5ziwdM7xwoF19iZf4KDSOUeFK1RXBE2+xmGlc44VDqszN/kY+5bO2QqXZ4byLQ4vnTMHR9RZm3yIvUvnHBNcqLq/afIjjimdswmOqTM2eRe7l845LliovWHxE44rnXNzOK7O1uQtzCmdc0Jwuuo+p8k6nFI65yY4tc7U5DXsWjrnVtHc0tvkV5w2CXLOz+R8GbuUztkVOEl1v9PkT5xdMN85dYYmz2KnUvl6Aidorq1Sfb85r0Cui7T/BeQp7NjvXH2Bo/2/8b25Dbi0j3ku094mfBjb9ytPETgKa1oOYSOu7EOOq7TfLDxoWP5ZGoeq7n/ahtKz6qp8tXM5pvZq/UkJB6vugdp0vbqKJZk17zSs1Sbsh08yB9S16qp8tXPL0vOwkW/ew7IurJOrdjaXnoeNqnn/XubAbpnIgak6ALdknr20B9sabJhj9N93HGlc1dV6GLdlnjn20vOwUTXvX88c4D3GUF1VVTvvbXnOxErPw0bVvH8lM5T7tfyMIF/t3LrS87DBTnguM5RRq6vy1c7ulJ6Hjap5/3RmKE8YUV2VL4avx4Ul9zXQsAMeyQzlRVWtc2b9cZPelJ6HTf1V/3hmKM9rLz3H79t3k6rkvSIzlCb9KT0Pm3ood41zGP0tPQ8bVZ/45jEOo0zpedjUQ7kxM4zypedhg2sbhjF5Ss/DBss2G8YaHFU619YY+Otm1X+0tiCl9G1K6e5Op/NV4UghhBBCCCGEEEIIIYQQQgghhBBCCCGEECaRfwDxFRW63xAIPwAAAABJRU5ErkJggg==);
    -webkit-background-size: 10px 10px;
    -moz-background-size: 10px;
    -o-background-size: 10px;
    background-size: 10px;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

/* sidebar search */
.search-empty {
    text-align: center;
    font-size: 2rem;
    padding: 20px 0
}

.search {
    position: relative;
    border: 2px solid var(--font-color);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 10px;
    padding: 10px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 52px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.search.has-focus {
    border-color: #fff;
}

.search input {
    background: 0 0;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #fff;
    padding: 0 25px 0 0;
    margin: 0;
    font-size: 15px;
    width: 100%
}

.search input::-webkit-input-placeholder {
    color: currentcolor;
}

.search .search-icon {
    margin-left: auto;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: pointer;
    height: 100%;
    position: absolute;
    right: 0;
    align-items: center;
    width: 42px;
    justify-content: center;
    transition: all .3s;
}

.search .search-icon:hover {
    background: #555;
}

.search-icon.loading svg {
    display: none
}

.search-icon.loading .loader {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.loader {
    display: none;
    vertical-align: middle
}

.loader:before {
    content: '';
    border: 1px solid #fff;
    border-left-color: #888;
    -webkit-animation: rotate .3s infinite linear;
    -moz-animation: rotate .3s infinite linear;
    -o-animation: rotate .3s infinite linear;
    animation: rotate .3s infinite linear;
    width: 1.2em;
    height: 1.2em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

/* demo versions */
.demos-content {
    /*background-color: #222;*/
    padding: 4vw 0;
    --h2-size-proportion: 3.55;
    --p-size-proportion: 1.4;
}

.demos-content-overlay {
    position: absolute !important;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: var(--container-width, 100%);
    top: 0;
    bottom: 0;
    border-radius: 15px;
    background: #222;
    z-index: -1;
    transition: all .3s ease-in-out;
}

@media only screen and (max-width: 960px) {
    .demos-content {
        padding-top: 70px;
        padding-bottom: 45px;
    }
    .demos-content .section-heading {
        margin-bottom: 25px;
    }
    .demos-content-overlay {
        width: calc(100% - 20px);
    }
}

.demos-content-overlay.in-view {
    max-width: 102%;
    width: 100%;
    border-radius: 0;
}

.demo-versions {
    margin: 0 -12px;
}

.demo-versions .version {
    width: 25%;
    float: left;
    padding: 0px 12px 38px;
    text-align: start;
}

/*@media only screen and (max-width: 1900px) {*/
/*    .version {*/
/*        width:33.33%*/
/*    }*/
/*}*/

@media only screen and (max-width: 1600px) {
    .demo-versions .version {
        width:33.33%
    }
}

@media only screen and (max-width: 1180px) {
    .demo-versions .version {
        position: static !important;
        padding: 0 10px 30px;
        width: 50%;
    }
}

@media only screen and (max-width: 960px) {
    .demo-versions {
        margin-left: -10px;
        margin-right: -10px;
    }
}

@media only screen and (max-width: 480px) {
    .demo-versions .version {
        padding: 0 5px 20px
    }
}

.version span {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden
}

.version .info-label {
    position: absolute;
    top: 10px;
    right: 10px;
}

.version-head>a {
    border-radius: 10px; /* the same as for img inside */
}
.version-head>a,
.version-head>.link-redirect{
    display: inline-block;
    width: 100%;
    background: rgba(255,255,255,.1);
    overflow: visible;
}

.version-head img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    -moz-transition: all .3s linear;
    transition: all .3s linear;
}

/*.version:not(:hover) img {*/
.version:hover img {
    -webkit-filter: brightness(.8);
    filter: brightness(.8)
}

.version .version-footer {
    --link-color: #fff;
    --link-color-hover: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px
}

@media (pointer: fine) {
    .version:not(:hover) .version-footer {
        -webkit-transform:translateY(50%);
        -moz-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -o-transform: translateY(50%);
        transform: translateY(50%);
        visibility: hidden;
        opacity: 0
    }
}

.version-footer [data-type] {
    position: relative;
    padding: 10px 15px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: block;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.version-footer [data-type]:hover {
    white-space: none;
    -o-text-overflow: none;
    text-overflow: none;
    overflow: unset
}

.version-footer [data-type]:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: inherit;
    -o-transition: inherit;
    -moz-transition: inherit;
    transition: inherit
}

.version-footer [data-type]:hover:after {
    background-color: rgba(255,255,255,.02)
}

.version-footer [data-type][data-type=elementor]:after {
    background: rgba(255,255,255,.05)
}

.version-footer [data-type][data-type=elementor]:hover:after {
    background: rgba(255,255,255,.11)
}

.version-footer svg {
    margin-right: 5px;
    min-width: 1.3em;
    min-height: 1.3em;
    vertical-align: -3px
}

.version .version-name {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /*overflow: visible;*/
    margin-top: 15px;
    font-size: 1.4rem;
    /*cursor: pointer;*/
    line-height: 2ex;
    overflow: hidden;
    height: 2ex;
}

.version .version-categories {
    color: var(--main-color);
    --link-color: currentColor;
    font-size: 1rem;
    text-transform: capitalize;
    margin-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.version .version-categories span {
    display: inline-block;
    overflow: visible;
}

.version .version-categories span:hover {
    color: #e1e1e1;
}

@media only screen and (max-width: 960px) {
    .version .version-name {
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.version .version-name:after {
    content: '';
    height: 1px;
    background-color: currentColor;
    width: 0;
    right: 0;
    position: absolute;
    -webkit-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
    bottom: -2px;
}

.version:hover .version-name:after {
    width: 100%;
    left: 0;
    right: auto;
}

/* design elements */
.design-elements > .group-images {
    top: 4vw;
}

.design-elements .feature-item {
    padding: 30px;
    --h4-size-proportion: 1.14;
}

.design-elements .feature-title {
    text-transform: capitalize;
}

@media(hover: hover) {
    .design-elements .shadow-column:hover {
        box-shadow: 0px 3px 25px 0px rgb(0 0 0 / 15%);
    }
}
@media only screen and (max-width: 960px) {
    .design-elements {
        --min-autofit-w: 150px;
    }
}

/* not needed yet */
.etheme-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    transition: all .3s linear;
}

.etheme-popup.opened {
    background: rgba(0,0,0,.72);
}

.etheme-popup:not(.opened) {
    opacity: 0;
    visibility: hidden;
}

.etheme-popup .etheme-popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    display: flex;
    flex-wrap: wrap;
    transform: translate(-50%, -50%);
    background-color: #fafafa;
    z-index: 99999;
    transition: all .3s linear;
}

.etheme-popup:not(.opened) .etheme-popup-content {
    transform: translate(-50%, calc(-50% + 20px));
    opacity: 0;
    visibility: hidden;
}

.etheme-popup iframe {
    z-index: 2;
    max-width: 100%;
}

@media only screen and (min-width: 992px) {
    .etheme-popup iframe {
        width: 860px;
        height: 482.5px;
    }
}

.etheme-popup[data-type="tutorial"] .etheme-popup-content:before {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    border-radius: 50%;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    display: inline-block;
    z-index: 1;
    border: 2px solid #e1e1e1;
    border-left-color: #888;
    animation: rotate .3s linear infinite;
}

.etheme-popup span.close {
    position: absolute;
    top: 0;
    left: calc(100% + 7px);
    background: #fff;
    border-radius: 50%;
    padding: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* sticky panel (floating menu) */
.sticky-panel {
    position: fixed;
    right: 10px;
    bottom: -webkit-calc(50% - 100px);
    bottom: -moz-calc(50% - 100px);
    bottom: calc(50% - 100px);
    color: #fff;
    --link-color: currentColor;
    --link-color-hover: currentColor;
    background: #444;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-animation: et-rtl .7s ease;
    -moz-animation: et-rtl .7s ease;
    -o-animation: et-rtl .7s ease;
    animation: et-rtl .7s ease;
    z-index: 9999
}

.sticky-panel ul {
    padding: 17px 7px 7px;
    margin: 0;
    line-height: 1;
}

.sticky-panel ul li {
    margin: 0;
}

.sticky-panel a {
    font-size: 1.3rem;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.sticky-panel li:not(:last-child) a {
    margin-bottom: 2px
}

.sticky-panel a:hover {
    color: #bbb
}

.sticky-panel .with-dot a:before {
    content: '';
    position: absolute;
    width: .35em;
    height: .35em;
    right: 5px;
    top: 5px;
    background: #10a45d;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
    -webkit-box-shadow: 0 0 0 rgb(16 164 93 / .4);
    -moz-box-shadow: 0 0 0 rgb(16 164 93 / .4);
    box-shadow: 0 0 0 rgb(16 164 93 / .4);
    -webkit-animation: pulse 1.5s infinite;
    -moz-animation: pulse 1.5s infinite;
    -o-animation: pulse 1.5s infinite;
    animation: pulse 1.5s infinite
}

.sticky-panel .with-bg a {
    background-color: #10a45d;
    padding: 4px 7px 9px;
    width: 44px;
    height: 44px
}

.sticky-panel .with-bg a svg {
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    transition: all .2s linear;
    display: block;
    -webkit-backface-visibility: hidden;
}

.sticky-panel .with-bg .mt-mes+span {
    overflow: hidden;
    line-height: 0
}

.sticky-panel .with-bg:not(.active) a svg:first-of-type {
    -webkit-transform: translate(-webkit-calc(-50% + 10px),-50%)!important;
    -moz-transform: translate(-moz-calc(-50% + 10px),-50%)!important;
    -ms-transform: translate(calc(-50% + 10px),-50%)!important;
    -o-transform: translate(calc(-50% + 10px),-50%)!important;
    transform: translate(calc(-50% + 10px),-50%)!important
}

.sticky-panel .with-bg a svg:first-of-type {
    width: 1.2em;
    height: 1.2em
}

.sticky-panel .with-bg a svg+svg {
    width: 1.7em;
    height: 1.7em
}

.sticky-panel .with-bg:not(.active) a svg:first-of-type {
    opacity: 0;
    visibility: hidden;
}

.sticky-panel .with-bg.active a svg:last-of-type {
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
    visibility: hidden;
}

.sticky-panel .with-bg a:hover, .sticky-panel .with-bg.active a {
    color: currentColor
}

.sticky-panel a svg {
    width: 1em;
    height: 1em
}

/* disable animation maybe temporary */
.sticky-panel .with-bg:not(.active) a svg:first-of-type, .sticky-panel .with-bg.active a svg:first-of-type {
    transform: translate(-50%,-50%)!important;
}

.sticky-panel .with-bg:not(.active) a svg:first-of-type, .sticky-panel .with-bg.active a svg:first-of-type {
    opacity: 1;
    visibility: visible;
}

.sticky-panel .with-bg:not(.active) a svg:last-of-type, .sticky-panel .with-bg.active a svg:last-of-type {
    transform: none;
    opacity: 0;
    visibility: hidden;
}

/* footer area */
footer {
    padding: 5vw 15px;
    background-color: #222;
    /*position: -webkit-sticky;*/
    /*position: sticky;*/
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0
}

@media only screen and (min-width: 961px) {
    footer {
        --h2-size-proportion: 3.85;
    }
}

footer .h2 {
    margin-bottom: 15px
}

footer .et-button {
    margin-top: 20px
}

footer .socials {
    font-size: 1.5rem;
}

footer .socials a {
    margin: 0 5px;
}

@media only screen and (max-width: 960px) {
    footer {
        padding: 50px 15px;
    }
}

/* responsive classes */
@media only screen and (min-width: 961px) {
    .dt-hide {
        display:none !important;
    }
}

/*!*@media only screen and (max-width: 992px) {*!*/
/*@media only screen and (max-width: 960px) {*/
/*    .md-hide {*/
/*        display:none !important;*/
/*    }*/
/*}*/

/*!*@media only screen and (min-width: 993px) {*!*/
/*@media only screen and (min-width: 961px) {*/
/*    .md-visible {*/
/*        display:none !important;*/
/*    }*/
/*}*/

@media only screen and (max-width: 960px) {
    .mob-hide,.version span.mob-hide {
        display:none!important
    }
}
@media only screen and (max-width: 480px) {
    .xs-hide {
        display: none !important;
    }
}


/* slick slider */
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: grab;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    margin: 0 10px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide .version-head {
    transition: all .3s linear;
}
.slick-slide:hover .version-head {
    transform: translateY(-5px);
}
.slick-slide .version-categories {
    text-transform: none;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-slider:not(.slick-initialized) .slick-slide {
    width: 25% !important;
    float: left;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
@media only screen and (max-width: 960px) {
    .slick-slider:not(.slick-initialized) .slick-slide {
        width: 33.33% !important;
    }
}
@media only screen and (max-width: 600px) {
    .slick-slider:not(.slick-initialized) .slick-slide {
        width: 50% !important;
    }
}
.slick-arrow.slick-hidden {
    display: none;
}

/* slick dots */
.slick-dots
{
    padding: 0;
    margin: 30px 0 0 0;
    width: 100%;
    display: block;
    text-align: center;
}
.slick-slider[data-one-slide] .slick-dots {
    position: absolute;
    z-index: 1;
    bottom: 0;
    margin: 0 0 20px;
}
@media only screen and (max-width: 768px) {
    .slick-slider[data-one-slide] .slick-dots {
        margin-bottom: 12px;
    }
}
.slick-dots li
{
    position: relative;
    padding: 0;
    display: inline-block;
    margin: 0 7px;
}
.slick-slider[data-one-slide] .slick-dots li {
    width: 10px;
    height: 10px;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: .75rem;
    height: .75rem;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #fff;
    border-radius: 50%;
    opacity: .25;
    transition: all .3s linear;
    padding: 0;
}
.slick-dots li.slick-active button, .slick-dots li:hover button {
    opacity: 1;
}
.slick-slider[data-one-slide] .slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
    color: transparent;
    padding: 0;
    border: 0;
    outline: none;
    background: #222;
}
.slick-slider[data-one-slide] .slick-dots li button:hover,
.slick-slider[data-one-slide] .slick-dots li button:focus
{
    outline: none;
}

.slick-slider[data-one-slide] .slick-dots li button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    border: 1px solid #222;
    transform: scale(0);
    transition: all .3s linear;
}

.slick-slider[data-one-slide] .slick-dots li:hover button:after,
.slick-slider[data-one-slide] .slick-dots li.slick-active button:after {
    transform: scale(2);
}

/* slick arrows */
.slick-arrow {
    font-size: 23px;
    position: absolute;
    top: calc(50% - 45px);
    color: #000;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #e1e1e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    transition: all .3s linear;
    z-index: 1;
    cursor: pointer;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-arrow:hover {
    border-color: #000;
}

@media(hover: hover) {
    .slick-arrow {
        top: calc(50% - 80px);
    }
    .slick-prev {
        transform: translateX(calc(-50% + 10px));
    }
    .slick-next {
        transform: translateX(calc(50% - 10px));
    }
    .slick-slider:not(:hover) .slick-prev {
        transform: translateX(50%);
        opacity: 0;
        visibility: hidden;
    }

    .slick-slider:not(:hover) .slick-next {
        transform: translateX(-50%);
        opacity: 0;
        visibility: hidden;
    }
}

/* xstore beacon feature */
#beacon-container .BeaconFabButtonFrame {
    box-shadow: 0px 0 15px 0px rgb(255 255 255 / 20%);
}
@media only screen and (max-width: 960px) {
    #beacon-container {
        display: none;
    }
}

/* new */
.page-heading {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    color: #222;
    --link-color: var(
            --font-color);
}

.page-heading .steps a, .page-heading .steps span {
    margin-inline-end: 7px;
}

.page-heading .steps a, .page-heading .steps .separator {
    color: var(--link-color);
}

.new-update .section-content {
    padding-top: 2.5vw;
}
@media only screen and (max-width: 960px) {
    .new-update {
        --h3-size-proportion: 1.8;
    }
    .new-update h3 {
        margin-bottom: 0;
    }
}
/* Open ai */
.open-ai {
    margin-bottom: 2.5vw;
}
.open-ai .section-content {
    background-color: #20361B;
    margin: 0;
    /*background-image: url(img/whats-new-9.1/open-ai/background.jpeg);*/
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 26% 100%;
}
.open-ai.loaded .section-content {
    background-image: url(img/whats-new-9.1/open-ai/background.jpeg);
}
.open-ai .section-heading {
    --heading-color: #F094F9;
    --p-size-proportion: 1.14;
}
.open-ai-features {
    --h4-size-proportion: 1.14;
    --p-size-proportion: 1;
    counter-reset: open-ai-features;
}

@media only screen and (min-width: 1200px) {
    .open-ai-features {
        grid-auto-flow: column;
        grid-template-rows: auto auto;
    }
}

.open-ai-features .feature-item:before {
    counter-increment: open-ai-features;
    content: counter(open-ai-features);
    color: #222;
    background: #fff;
    font-size: 1em;
    width: 1.5em;
    height: 1.5em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    vertical-align: middle;
    position: absolute;
    top: 2px;
    left: 0;
}

@media only screen and (min-width: 961px) {
    .open-ai-features .feature-item:before {
        top: -0.15em;
    }
}

.open-ai-features .feature-item {
    padding-inline-start: calc(1.5em + 5px); }

.open-ai-features .feature-title {
    margin-bottom: 5px;
}

.open-ai-buttons {
    margin-top: 35px;
}
.open-ai-buttons .et-button {
    margin-top: 15px;
}
.open-ai-buttons .et-button:first-child {
    --button-color: #20361B;
    --button-bg-color: #F094F9;
    --button-hover-overlay: transparent;
    margin-inline-end: 25px;
}

.open-ai-buttons .et-button:first-child:hover {
    --button-color: #000;
    --button-bg-color: #fff;
}

.open-ai-logo img {
    max-width: 90px;
}

/* theme ui/ux */

/* switcher toggle */
.switcher {
    cursor: pointer;
}
.switcher .switch:after, .switcher .switch:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -3px;
    transition: all 350ms cubic-bezier(0, 0.95, 0.38, 0.98), background 150ms ease;
}

.switcher .switch {
    position: relative;
    border: none;
    background-color: var(--switcher-active-color, #222);
    display: inline-flex;
    align-items: center;
    height: 2.5em;
    font-size: 1rem;
    top: 0;
    width: auto;
    border-radius: 1.7em;
    margin-inline-start: auto;
    cursor: pointer;
}

@media only screen and (max-width: 960px) {
    .switcher .switch {
        font-size: 1.4rem;
    }
}

.switcher input:checked + .switch:before {
    content: attr(data-text-on);
    left: 0.4em;
    margin-inline-start: 0.6em;
    margin-inline-end: 2.9em;
    transform: none;
    background-color: transparent;
    text-align: start;
    color: var(--switcher-active-color, #222);
    line-height: 1;
}

.switcher input:checked + .switch:after {
    left: calc(100% - 1.7em*2 - .4em);
    background: var(--switcher-active-color, #222);
    transform: translate3d(100%, -50%, 0);
}

.switcher .switch:before {
    width: auto;
    height: auto;
    content: attr(data-text-off);
    background: none;
    color: var(--switcher-color, #fff);
    display: block;
    position: relative;
    top: auto;
    transform: none;
    line-height: 1;
    right: 0.4em;
    margin-inline-end: 0.6em;
    margin-inline-start: 2.9em;
    text-align: end;
}

.switcher .switch:after {
    bottom: 0.4em;
    left: 0.4em;
    width: 1.7em;
    height: 1.7em;
    border: none;
    background-color: #fff;
    transform: translateY(-50%);
}

.switcher input:checked + .switch {
    background: var(--switcher-color, #fff);
}

.switcher input:checked + .switch:active:before, .switcher .switch:active:before {
    transform: none;
    background-color: transparent;
}


.theme-options-ui-ux img {
    border: 2px solid transparent;
    transition: all .3s linear;
}

.theme-options-ui-ux img.light-img-bordered {
    border-color: #222;
}

.theme-options-ui-ux {
    margin-bottom: 2.5vw;
    padding-bottom: 2vw;
    margin-top: 0;
    padding-top: 2vw;
    transition: all .3s linear;
}

.theme-options-ui-ux .grid-row {
    grid-template-columns: 9fr 5fr 5fr 5fr;
    --grid-gap: 15px;
}

@media only screen and (max-width: 480px) {
    .theme-options-ui-ux .grid-row {
        grid-template-columns: 9fr 5fr 5fr;
        --grid-gap: 7px;
    }
    .theme-options-ui-ux .grid-row .group-images-inline:nth-child(3) + .group-images-inline {
        display: none;
    }
}

.theme-options-ui-ux .group-images-inline {
    grid-gap: inherit;
    flex-wrap: wrap;
    align-items: stretch;
    grid-template-columns: auto;
}

.theme-options-ui-ux:not(.loaded) .group-images-inline img{
    transform: translateX(var(--x-offset, 20px));
    opacity: 0;
    visibility: hidden;
}
.theme-options-ui-ux .group-images-inline:nth-child(2) {
    --delay: .8s;
}
.theme-options-ui-ux .group-images-inline:nth-child(3) {
    --delay: 1s;
}
.theme-options-ui-ux .group-images-inline:nth-child(4) {
    --delay: 1.2s;
}
.theme-options-ui-ux .group-images-inline img:first-child {
    transition-delay: var(--delay, 0.4s);
}

.theme-options-ui-ux .group-images-inline img:nth-child(2) {
    transition-delay: calc(var(--delay, 0.4s) + .15s);
}

.theme-options-ui-ux .group-images-inline img:nth-child(3) {
    transition-delay: calc(var(--delay, 0.4s) + .45s);
}

.theme-options-ui-ux .group-images-inline img:nth-child(4) {
    transition-delay: calc(var(--delay, 0.4s) + 1s);
}

.theme-options-ui-ux .group-images-inline img:nth-child(5) {
    transition-delay: calc(var(--delay, 0.4s) + 1.3s);
}

.theme-options-ui-ux.ready .group-images-inline img {
    transition-delay: 0s !important;
}

.theme-options-ui-ux.hovered {
    --heading-color: #fff;
    color: #f7f7f7;
    background: #222;
}

.theme-options-ui-ux.hovered .et-button-transparent.inverse {
    --button-color: #fff;
    --button-br-color: #fff;
}
.theme-options-ui-ux.hovered .et-button-transparent.inverse:hover {
    --button-color: #222;
    --button-bg-color: #fff;
}

.theme-options-ui-ux.hovered img:not(.light-img-bordered) {
    border-color: #fff;
}

.new-demo .et-col-6 {
    position: relative;
}
.new-demo-img {
    position: absolute;
}

@media only screen and (min-width: 961px) {
    .new-demo img {
        /*     max-width: 370px; */
        max-width: 17vw;
    }

    .new-demo-img img {
        /*     max-width: 430px; */
        max-width: 20vw;
    }
}

@media only screen and (min-width: 1399px) {
    .new-demo img {
        max-width: 370px;
    }

    .new-demo-img img {
        max-width: 430px;
    }
}

@media only screen and (max-width: 960px) {
    .new-demo .group-images {
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
    }
    .new-demo-img {
        position: static;
        transform: none !important;
    }
    .new-demo img,
    .new-demo-img img {
        max-width: 100%;
    }
}

.compatible-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #000;
    color: var(--link-color);
    background: #fff;
    padding: 20px;
    line-height: 1;
    border-radius: 10px;
    font-size: 3.5em;
    transition: all .3s linear;
}
.compatible-item:nth-child(2) {
    transition-delay: calc(var(--delay, 0.4s) + .15s);
}
.compatible-item:nth-child(3) {
    transition-delay: calc(var(--delay, 0.4s) + .45s);
}
.compatible-item:nth-child(4) {
    transition-delay: calc(var(--delay, 0.4s) + .75s);
}
.compatible-item:not(:first-child) {
    margin-top: 25px;
}

/*.latest-compatibilities:not(.loaded) .compatible-item {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transform: translateY(20px);*/
/*}*/
.compatible-item svg, .compatible-item img {
    max-width: 40vw;
}
.compatible-item img {
    max-height: 46px;
    max-width: 230px;
}

@media only screen and (max-width: 960px) {
    .compatible-item {
        font-size: 2.5em;
    }
    .compatible-item img {
        max-width: 40vw;
        max-height: 37px;
    }
}

.changes-list {
    padding: 35px;
    border: 2px solid #000;
    border-radius: 10px;
}

.changes-list > h4 {
    --h4-size-proportion: 1.55;
}

.changes-list ul {
    margin: 0;
}

.changes-list ul li {
    margin-bottom: 0;
    padding: 15px 0;
    border-top: 1px solid #e1e1e1;
}

.changes-list ul li:first-child {
    border-top: none;
    padding-top: 0;
}
.changes-list ul li:last-child {
    padding-bottom: 0;
}

.changes-list .feature-title {
    position: relative;
    padding-inline-start: calc(1em + 7px);
}

.changes-list .h4 {
    font-family: inherit;
    word-break: break-word;
    margin-bottom: 0;
}

.changes-list .feature-title:not(.link-redirect) {
    color: var(--font-color);
}

.changes-list svg {
    position: absolute;
    top: 1px;
    left: 0;
}

.changes-list .mtips .mt-mes {
    height: auto;
    white-space: normal;
    line-height: 1.4;
    min-width: 250px;
}