@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&family=Poppins:wght@400;700&display=swap');

:root{
    --primary: #fbb404;
    --primary-rgb: 255, 153, 0;
    --primary-hover: hsl(36, 100%, 45%);

    --secondary: #222; /*ea5b0c*/
    --secondary-rgb: 234, 91, 12;
    --secondary-hover: hsl(21, 90%, 43%);

    --accent: #4361EE; 

    --success: #5caa13;
    --danger: #ff5757;
    --warning: #ffaa2e;
    --info: #008080;

    --dark: #161e2d;
    --dark-light: hsl(219, 34%, 17%);
    --dark-dark: hsl(219, 34%, 9%);

    --light: #fbfbfb;
    --light-light: hsl(28, 100%, 97%);
    --light-dark: hsl(28, 100%, 90%);    

    --light-red: #fef4ea;
    --light-green: #e6f6e9;
    --light-blue: #e8f5fd; 
    
    --gray: #595959;

    /* Gradient BGs */
    --primary-grade: linear-gradient(45deg, var(--primary-hover), var(--primary));
    --primary-grade-h: linear-gradient(45deg, var(--primary), var(--primary-hover));

    --secondary-grade: linear-gradient(45deg, var(--secondary-hover), var(--secondary));
    --secondary-grade-h: linear-gradient(45deg, var(--secondary), var(--secondary-hover));

    --dark-grade: linear-gradient(225deg, var(--dark), var(--dark-light) 90%);
    --color-grade: linear-gradient(315deg, #eadeff, #dfeaff 25%, #f1fcff 70%, #e5fffc);
    --color-grade-2: linear-gradient(315deg, #eadeff, #dfeaff 20%, #f1fcff, #f1fefe 80%, #dfeaff, #eadeff);
    --radial-light: radial-gradient(circle at 51% 34%, var(--light-light), var(--light));
    --radial-light-2: radial-gradient(circle at 51% 34%, var(--light-light), var(--light-dark));

    --radial-secondary: radial-gradient(circle at 51% 34%, var(--secondary-hover), var(--secondary));
    
    /* border-radius */
    --radius: .3rem;
    --radius-lg: .6rem;
    --radius-xlg: .75rem;
    --radius-sm: 3px;

    /* spacing */
    --padding: 1.25rem;


    /* fonts */
    --font-main: Poppins, Changa, Tahoma, system-ui, sans-serif;
    --font-english: Poppins, Tahoma, system-ui, sans-serif;
    --font-h1: var(--font-main);
    --bold: 700;

    /* text color */
    --txt-color: #232f3e;
    --h1-color: #232f3e;
    --a: var(--txt-color);
    --a-link: #1890ff;
    --a-hover: var(--primary-hover);
    --i-color: var(--primary); /* icon in links & headings */

    /* Main Body */
    --wrap: 1100px;
    --body-bg: #faf9f6; /*fef4f4 fbfbfb*/
    --section-bg: #fff;

    /* header & header panels */
    --header-height: 85px;
    --header-bg: var(--dark);
    --h-menu-margin: 30px;
    --h-logo-height: 50px;
    --h-logo-width: 50px;

    --h-panel: #fff;
    --h-panel-radius: var(--radius);
        
    --app-menu-bg: #fff;
    
    
    /* box shadows */
    --box-shadow: 0 0 15px rgb(0 0 0 / .1);
    --box-shadow-lg: 0 16px 32px -8px rgba(35,47,62,.1);
    --box-shadow-xlg: var(--box-shadow);

    --inset: inset 0 -2px 4px rgba(var(--primary-rgb), .04);

    /* border */
    --border: 1px solid #ebeced;

    /* Forms */
    --input-bg: #fff;
    --input-font: var(--font-main);
    --input-disabled-bg: #eee;
    --input-radius: .5rem;
    --input-border: 1px solid rgb(0 0 0 / 10%);
    --input-shadow: none;
    --input-height: 40px;
    --input-padding: 6px 10px;
    --input-margin: 10px;
    /* --input-focus-shadow: rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(10 132 255 / 60%) 0px 0px 0px 4px, rgb(0 0 0 / 12%) 0px 1px 1px 0px, rgb(60 66 87 / 16%) 0px 0px 0px 1px, rgb(0 0 0 / 0%) 0px 0px 0px 0px, rgb(0 0 0 / 0%) 0px 3px 9px 0px, rgb(60 66 87 / 12%) 0px 2px 5px 0px; */
    --input-focus-shadow: 0 0 0 3px rgb(164 202 254 / 45%);
    --input-focus-border: 1px solid var(--primary);    

    /* open box */
    --ob-footerBg: var(--light);
}



html,body{
    font: 16px/1.8 var(--font-main);
}











/* Breadcrumb */
.breadcrumb{
    font-weight: 500;
    margin: 20px 0 10px;
}



/* pagination */
.pagination{
    margin: var(--padding) 0 0;
}

.err404 img{
    height: 200px;
    margin: 0;
    opacity: .85;
}

.input.price input{
    padding-left: 30px !important;
}
[dir="ltr"] .input.price input, 
.input.price input{
    padding-right: 30px !important;
}


#xt-page {
    padding-top: 3rem;
}

.section, .card{
    border: var(--border);
}
.userInfo{
    padding: 0;

}
.userInfo .cover{
    height: 100px;
    background-color: var(--dark);
    border-radius: var(--radius) var(--radius) 0 0;
}
.userInfo .avatar{
    display: block;
    width: 100px;
    height: 100px;
    border: 3px solid var(--section-bg);
    margin: -40px auto 0;
}
.userInfo .avatar > span{
    font-size: 0;
}

@media print{
    .flexOnprint{
        display: -webkit-flex;
        display: flex;    
        -webkit-justify-content: space-between;
        justify-content: space-between;    
        -webkit-flex-flow: row wrap;
        flex-flow: row wrap;    
        align-items:flex-start;
        align-content:flex-start;
    }
    .flexOnprint > *{
        width: auto !important;
    }
}


















#preloader{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background: var(--light);

    display: flex;
    justify-content: center;
    align-items: center;
}
#preloader .loader{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100px;
}
.loader > *{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);

    animation: none;
    position: relative;
}
  
.loader > *::after{
    content: "";
    position: absolute;
    background-color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: preloader-beat 900ms ease-in-out infinite;
}
.loader :nth-child(1){
    background-color: var(--primary);
}
.loader :nth-child(2){
    background-color: var(--secondary);
}
.loader :nth-child(3){
    background-color: var(--accent);
}

.loader :nth-child(2)::after{
    animation-delay: 200ms;
}
.loader :nth-child(3)::after{
    animation-delay: 400ms;
}

@keyframes preloader-beat{
    0%{opacity: 1; transform: scale(1)}
    100%{opacity: 0; transform: scale(3)}
}
@-webkit-keyframes preloader-beat{
    0%{opacity: 1; -webkit-transform: scale(1)}
    100%{opacity: 0; -webkit-transform: scale(3)}
}



/* Posts container */
.posts[data-columns="3"] > *{
    width: calc(33.333% - 20px);    
}
.posts[data-columns="3"] > *:nth-child(n+4){
    margin-top: 36px;
}
.posts[data-columns="2"] > *{
    width: calc(50% - 18px);
}
.posts[data-columns="2"] > *:nth-child(n+3){
    margin-top: 36px;
}
.posts[data-columns="1"] > *{
    width: 100%;
}
.posts[data-columns="1"] > *:not(:first-child){
    margin-top: 30px;
}


.question-block{
    position: relative;
    background: var(--light-light);
    padding: 11px 17px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.question-block p{
    color: var(--gray);
}
.question-block footer{
    --line-height: 30px;
    margin-top: 7px;
    padding-top: 7px;
    font-size: .9rem;
    box-shadow: 0px -1px rgb(0 0 0 / 7%);
    opacity: .9;
}
.question-block footer a[class^=av]{
    font-weight: 600;
    width: 180px;
    overflow: hidden;
    display: inline-block;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
}
.question-block footer a[class^=av]:is(:hover, :focus-visible){
    text-decoration: underline;
}
.question-block .avatar{
    --width: var(--line-height);
    margin-inline-end: 7px;
}
.question-block time{
    margin-inline-end: 25px;
    opacity: .65;
}
.question-block footer span{
    line-height: var(--line-height);
}
.question-block footer i{
    font-size: 1.1rem;
    opacity: .8;
    vertical-align: middle;
}






.recommend-block{
    --height: 185px;
    --color: var(--primary);

    display: block;
    /* background: transparent; */
    /* width: 100%; */
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    border-radius: var(--radius-lg);
    overflow: hidden;

    /* Remove if hover available and put to fron & back */
    border: 1px solid rgb(0 0 0 / 6%);
    border-bottom: var(--border-2);
    box-shadow: var(--box-shadow-xlg);
}
.recommend-block-inner{
    position: relative;
    width: 100%;    
    transition: transform 0.8s;
    transition-delay: .15s;
    transform-style: preserve-3d;
}
.recommend-block-front, 
.recommend-block-back{
    width: 100%;
    height: var(--height);
    background: var(--light-light);
    
    overflow: hidden;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}
.recommend-block-front{
    padding: 30px 20px 0;
    text-align: center;
}
.recommend-block-front::before{
    position: absolute;
    top: -80px;
    right: 0;
    left: 0;
    height: 160px;
    background: var(--primary-grade);
    box-shadow: inset 0 -5px 10px rgb(0 0 0 / 11%);    
    content: "";
    transform: skewY(15deg);
    transition: transform 0.15s;
}
.recommend-block-front > img{
    position: relative;
    display: inline-block;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--light-light);
    border: 3px solid var(--light-light);
    box-shadow: var(--box-shadow-lg);
}
.recommend-block h3{
    margin: 3px 0;
    font-size: 1.35rem;
    color: var(--h1-color);
}
.recommend-block small{
    display: inline-block;
    padding: 0 9px;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    background: var(--primary);
    text-shadow: 0px 0px 2px rgb(0 0 0 / 15%);
}
.recommend-block small::before{    
    font-family: "Font Awesome 5 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    font-display: swap;
    text-rendering: auto;
    line-height: 1;
    content: "\f508";
    margin-inline-end: 5px;
    font-size: 1.25em;
    vertical-align: middle;
}
.recommend-block small::after{
    display: inline-block;
    content: attr(data-title);
}

.recommend-block-back{
    padding: 20px;
    text-wrap: balance;
    color: var(--txt-color);
}
.recommend-block p{
    position: relative;
    font-size: 1.1rem;
    
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 5;
    line-clamp: 5; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommend-block[data-cat="202"] small{
    background: var(--danger);
}
.recommend-block[data-cat="202"] small::before{
    font-family: "Font Awesome 5 Brands";
    content: "\f167";
}
.recommend-block[data-cat="203"] small{
    background: var(--secondary-hover);
}
.recommend-block[data-cat="203"] small::before{
    content: "\f0c1";
}

@media (hover: hover) {
    .recommend-block{
        border: 0;
        box-shadow: none;
        height: var(--height);
        overflow: visible;
    }
    .recommend-block-inner{
        height: var(--height);
    }
    .recommend-block:hover .recommend-block-inner{
        transform: rotateY(180deg);
    }

    .recommend-block-front, 
    .recommend-block-back{
        position: absolute;
        border-radius: var(--radius-lg);
        border-bottom: var(--border);
    }
    .recommend-block-front{
        background: var(--light-light);        
    }
    .recommend-block-back{
        -webkit-justify-content: center !important;
        justify-content: center !important;

        background: var(--light);
        transform: rotateY(180deg);
    }

    .recommend-block:hover .recommend-block-front::before{
        transform: skewY(0deg);
    }
    
    /* .recommend-block-back::before {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 15%);
        content: "";
    } */
}





.posts-block{
    position: relative;
    background: var(--section-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0px 10px 20px rgb(0 0 0 / 5%);
    border: var(--border);
    transition: all .15s ease-in-out;
    overflow: hidden;
}
.posts-block .preview{
    display: block;
    margin: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.controls{
    margin-block: 1rem;
    margin-inline: 1.5rem;
}
.react{
    /* background: var(--light-light);
    border-radius: var(--radius-sm);
    padding: 6px 10px; */
}
.react > button{
    --size: 20px;
    background: transparent;
}
.react > .btn-save{
    --size: 28px;
}

.react > button i:not([data-count]){
    display: inline-block;
    width: var(--size);
    height: var(--size);
    background: url(../img/like.svg) center no-repeat;
    background-size: 110%;
    vertical-align: middle;
    opacity: .9;
    transition: all .1s ease-out;
}
.react > button i[data-count]{
    padding-inline-start: 8px;
}

.react > .btn-dislike{ border-inline-start: 1px solid rgb(0 0 0 / 9%); margin-inline-start: 10px; padding-inline-start: 10px; }
.react > .btn-dislike i:not([data-count]){ background-image: url(../img/dislike.svg); }
.react > .btn-save i:not([data-count]){ background-image: url(../img/save.svg); }

.btn-like:not(.d):is(:hover, :focus-visible) i:not([data-count]){
    opacity: 1;
    transform: scale(1.1) rotate(-10deg);
}
.btn-dislike:not(.d):is(:hover, :focus-visible) i:not([data-count]){
    opacity: 1;
    transform: scale(1.1) rotate(10deg);
}
.btn-save:not(.d):is(:hover, :focus-visible) i:not([data-count]){
    opacity: 1;
    transform: scale(1.1);
}

.btn-like.d i:not([data-count]){ background-image: url(../img/liked.svg); opacity: 1; }
.btn-dislike.d i:not([data-count]){ background-image: url(../img/disliked.svg); opacity: 1; }
.btn-save.d i:not([data-count]){ background-image: url(../img/saved.svg); opacity: 1; }

.posts-block h2{
    max-width: calc(100% - 70px);
    font-size: 1.5rem;
    margin: 0;
}
.posts-block p{
    margin-inline: 1.5rem;
}
.posts-block footer{
    font-size: .9rem;
    margin: 2rem 1.5rem 1rem;
}
.posts-block .closed{
    width: 100%;
    color: #fff;
    background: var(--gray);
    border-radius: var(--radius);
    padding: .7rem 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.posts-block .tags{
    width: calc(100% - 190px);
    margin-block: 1rem;
}
.posts-block .tags a{
    display: inline-block;
}
.posts-block .tags a::before{
    --icon: url(../img/hashtag.svg);
    --size: 16px;
    --mask: var(--primary);

    margin-inline-end: 2px;

    display: inline-block;
    width: var(--size);
    height: var(--size);
    content: "";
    vertical-align: middle;
    background: var(--mask);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
}
.posts-block .tags a:not(:last-child) {
    margin-inline-end: 14px;
}

.posts-block .comments{
    margin-inline-start: 10px;
}
.posts-block .comments i{
    --size: 18px;
}
.posts-block .comments [data-count="0"]+span{
    font-size: 0;
}
.posts-block .comments [data-count="0"]+span::before{
    font-size: .9rem;
    content: "-";
}

/*.post-counters{    
    position: relative;
    padding-top: 15px;
    padding-inline-start: 20px;
    padding-inline-end: 10px;

    margin-top: calc(var(--radius-xlg) * -1);
    border-top-right-radius: var(--radius-xlg);
    background: var(--post-bg);
    width: 100%;
    padding-bottom: 10px;
}
.post-counters::before{
    display: inline-block;
    width: 30px;
    height: 30px;
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    border-bottom-left-radius: 30px;
    border-left: 15px solid var(--post-bg);
    border-bottom: 15px solid var(--post-bg);
}

.reactions-multiple{
    --margin: 10px;
}
.reactions-multiple span{
    position: relative;
    display: inline-block;
    border: 2px solid var(--post-bg);
    vertical-align: middle;
    box-shadow: var(--box-shadow);

    margin-inline-end: calc(var(--margin) * -1);

    width: 32px;
    height: 32px;
    background: var(--light-dark) url(../../img/react/like.svg) center no-repeat;
    background-size: 80%;
    border-radius: 50%;
    transition: all .15s ease-in-out;
    cursor: pointer;
}
.reactions-multiple span:is(:hover, :focus-visible){
    z-index: 10;
    transform: scale(1.2);
}
.reactions-multiple i{
    font-size: .9rem;
    font-style: normal;
    margin-inline-start: calc(var(--margin) * 2);
    color: var(--gray);
}
.reactions-multiple i::after{
    display: inline-block;
    margin-inline-start: 5px;
    content: "تفاعل";
}

.reactions-multiple .wow{ background-image: url(../../img/react/wow.svg); }
.reactions-multiple .fire{ background-image: url(../../img/react/fire.svg); }
.reactions-multiple .dislike{ background-image: url(../../img/react/dislike.svg); }*/


.read-more{
    display: inline-block;
    margin-inline-start: 1ch;
    color: var(--a);
    border-bottom: var(--border);
    cursor: pointer;
}
.read-more:is(:hover, :focus){
    color: var(--a-hover);
    border-color: var(--a-hover);
}
.postGrid main{
    width: calc(100% - 270px);
}
.postGrid aside{
    width: 250px;
}

.post h1{
    max-width: calc(100% - 65px);
    font-size: 1.35rem;
    line-height: 2rem;
}

.post .section{
    padding-top: 33px;
}
.post .icons{
    direction: ltr;
    font-size: 1.25rem;
    width: 60px;
}
.post .icons i{
    transition: all .15s ease-in-out;
}

ul.react [data-action="fav"]:hover i,
ul.react [data-action="fav"].d i{
    font-weight: 700;
    color: var(--danger);
    transform: scale(1.05);
}

.btn-share:hover i,
.btn-share.d i{
    font-weight: 700;
    color: var(--info);
    transform: scale(1.05);
}

.post .price{
    font-weight: 700;
    color: var(--success);
}
.post time{
    font-size: .9rem;
    opacity: .75;
}

.post footer{
    border-top: var(--border);
}
.post footer img{
    width: 16px;
    height: 16px;
    margin-inline-end: 6px;
}

.post ul.react{
    display: inline-block;
    cursor: pointer;
    margin-inline-end: 15px;
}
.post ul.react .c{
    display: none;
}
.post .heart-flip{
    --base: 11px;
}

@media print{
    .post h1{
        max-width: unset !important;
    }
}

.post .gallery{
    text-align: center;
    background-color: var(--dark);
    border-radius: var(--radius);
}
.post .gallery picture{
    display: block;
    max-width: calc(100% - 120px);
    margin: 0 auto;
}
.post .gallery[data-onprint] picture{
    max-width: 100%;
}
.post .gallery img{
    width: 100%;
    height: 350px;
    object-fit: cover;
}
.gallery span.c{
    position: absolute;
    bottom: 7px;
    left: 7px;  
    z-index: 9999;
    direction: ltr;
    background-color: #fff;
    line-height: 1;
    padding: 4px 9px;
    border-radius: 20px;
    font-size: .9rem;
    color: #777;
    width: 64px;
    text-align: left;
    box-shadow: var(--box-shadow);
}
.gallery span.c::before{
    display: inline-block;
    margin-inline-end: 6px;
    font-size: 1rem;

    font-family: "Font Awesome 5 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-display: swap;
    text-rendering: auto;
    line-height: 1;
    content: "\f332";
}

.gallery .owl-dots{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-top: 7px;
    padding-bottom: 3px;
}
.gallery .owl-dots .owl-dot span{
    width: 8px;
    height: 8px;
    background-color: rgb(255 255 255 / 70%);
}
.gallery .owl-dots .owl-dot.active span{
    background-color: var(--secondary);
}

.gallery .owl-nav{
    opacity: 1;
}
.gallery .owl-carousel .owl-nav button.owl-next, 
.gallery .owl-carousel .owl-nav button.owl-prev{
    width: 60px;
    height: 350px;
    opacity: .5;
}
.gallery:hover .owl-carousel .owl-nav button.owl-next, 
.gallery:hover .owl-carousel .owl-nav button.owl-prev{
    opacity: .85;
}
/** Select Language */
.selectLang{
    text-align: center;
}
.selectLang p{
    font-size: .9rem;
    line-height: 1.5rem;
    margin-bottom: var(--padding);
}
.selectLang .flex.langs{
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.selectLang .langs a{
    display: inline-block;
    width: 30%;
    max-width: 100px;
    text-align: center;
    font-size: 1.2rem;
}
.selectLang .langs a img{
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
}

/** Share Link */
.shareLink{

}
.shareLink .btns{
    gap: 25px;
    margin-top: 15px;
    margin-bottom: 5px;
}
.shareLink .btns > a{
    display: inline-block;
    font-size: 33px;    
}
.shareLink .btns > a i{
    margin: 0 !important;
}

.shareLink .btns a:hover i{ transform: scale(1.1); }


/** Report Content **/
.reportContent p{
    background: var(--light) url(../img/msg-alert.png) top 16px right 10px no-repeat;
    background-size: 36px auto;
    font-weight: 600;
    padding: 10px;
    padding-inline-start: 56px;
    margin-bottom: var(--padding);
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);    
}
.reportContent .bubble.danger{
    color: #fff;
    background-color: var(--danger);
    padding: 5px 15px;
    border-radius: var(--radius);
}
#body{
    position: relative;
    min-height: calc(100vh - 226px);
}
#body * {
    scroll-margin-top: var(--header-height);
}

#aside{
    width: 330px;
}
#aside-2{
    width: 180px;
}
#main{
    width: calc(100% - 510px - 50px);
    max-width: 620px;
}

@media all and (max-width: 860px) {
    #page-aside{
        width: 240px;
    }
    #page-main{
        width: calc(100% - 240px - var(--padding));
    }
}

.aside-cats{
    margin-inline-start: -5px;
    max-width: 170px;
}
.aside-cats i{
    --icon-size: 24px;
}
.aside-cats a{
    display: block;

    padding: 1px 9px;
    border-radius: var(--radius-sm);
    line-height: 2;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all .1s ease-in-out;
}
.aside-cats .line-under::before{
    margin-top: 2px;
    bottom: 0;
}

.aside-cats a:is(:hover, :focus, .focus){
    background: var(--light-light);
    box-shadow: var(--inset);
    transform: scale(1.05) translateX(-10px);
}
.aside-cats img{
    width: var(--icon-size);
    height: var(--icon-size);
    line-height: var(--icon-size);
    text-align: center;
    margin-inline-end: 8px;
    
}
.aside-cats a:is(:hover, :focus, .focus){
    font-weight: 600;
}









/* Show more, next & previous buttons */
.btn-show-more:is(:hover, :focus) i{
    animation: move-arrow .6s linear infinite;
}
@keyframes move-arrow {
    0%{
        opacity: 1;
        transform: translate(0, 0);
    }

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

.btn-next{
    display: inline-block;
    width: 36px;
    height: 20px;
    background: url(../img/arrow-left.svg) center no-repeat;
    background-size: 100% auto;
    transition: transform .2s cubic-bezier(.45,0,.55,1);   
    opacity: .8;
    box-shadow: none;
}
.btn-next:is(:hover, :focus){
    transform: translateX(-4px);
    opacity: 1;
}



/*.wt-icon{
    display: inline-block;
    color: var(--gray);
    background: url(../img/icons/sitemap.png) top var(--align) no-repeat;
    background-size: 36px 36px;
    line-height: 36px;
    padding-inline-start: 42px;
}
a.wt-icon:is(:hover, :focus){
    color: var(--a-hover);
}

.wt-icon.top-members{ background-image: url(../img/icons/cup.webp); }
.wt-icon.top-members{ background-image: url(../img/icons/cup.webp); }*/

#aside .sticky,
#aside-2 .sticky{
    position: sticky;
    top: 100px;
}

.top-members{

}
.top-members a{
    display: block;
    position: relative;
    font-size: .9rem;
    margin-bottom: 5px;
    background: var(--light-light);
    border-radius: 30px;
    font-weight: 600;
    transition: transform .1s ease-in-out;

    --icon-size: 20px;
}
.top-members a::before{
    position: absolute;
    right: 0;
    content: attr(data-name);
    padding-inline-start: 44px;
    display: inline-block;
    
    top: 5px;
    line-height: 26px;
    width: 150px;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/*.top-members a::after{
    position: absolute;
    right: 56px;
    content: attr(data-points);
    bottom: 0;
    color: var(--gray);
    font-weight: 400;
}
.top-members a:is(:hover, :focus)::after{
    color: var(--third)
}*/
.top-members a:is(:hover, :focus){
    transform: scale(1.1);
}
.top-members .avatar{
    --width: 35px;
    border: 2px solid var(--body-bg);
    transition: transform .1s ease-in-out;
}
.top-members a:is(:hover, :focus) .avatar{
    transform: scale(1.1) rotate(15deg);
}
.top-members i{
    float: left;
    --icon-size: 22px;
}


.recommended{
    padding-top: 20px;
}
.recommended figure{
    position: relative;
    display: block;
    padding: 20px;  
    background: var(--light);
    border-radius: var(--radius);
    
    margin-bottom: 10px;

    text-shadow: 1px 1px 1px rgb(255 255 255 / 33%);
}
.recommended figure:nth-child(even){
    background: var(--light-light);
}
/*.recommended figure::after{
    display: block;
    content: attr(data-cat);
    font-size: .9rem;
    font-weight: 400;
    
    margin-top: 7px;
    background: #fff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1;
    color: var(--gray);
}*/
.recommended .img-container{
    position: absolute;
    top: -10px;
    right: 27px;
    width: 90px;
    height: 90px;
    border: 3px solid var(--body-bg);
    border-radius: var(--radius-lg);
    box-shadow: 0 0 9px 1px rgb(0 0 0 / 15%);

    background: var(--light);
    transform: translateX(15%)rotateZ(-11deg);
    transform-origin: 0 100%;
    overflow: hidden;

    transition: transform .2s ease-out;
}
.recommended img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    transform: scale(1.2)rotateZ(11deg);
    transition: transform .2s ease-out;
}
.recommended figcaption{
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.75rem;
    background: linear-gradient(45deg, transparent, var(--light-dark), transparent);
    padding-block: 8px;
    margin-inline: -20px;
    padding-inline: 20px;
}
.recommended > *:nth-child(odd) figcaption{
    padding-inline-start: 125px;
}
.recommended > *:nth-child(even) figcaption{
    padding-inline-end: 125px;
}
.recommended p{
    color: var(--gray);
}

.recommended > *:is(:hover, :focus) .img-container{
    transform: translateX(15%)rotateZ(0);
}
.recommended > *:is(:hover, :focus) img{
    transform: scale(1.2)rotateZ(0);
}
.recommended .img-shadow{
    display: block;
    height: 20px;
    width: 100%;

    position: absolute;
    top: 72px;
    right: 0;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAI8AAAASCAYAAABim40OAAACuElEQVRogc1XUZJjIQjEzN7/yMl8ucP0dkNjXrKh6pWAqERaICveR+vD96vo8cazOvoYX54NwOl6Z52ycc907E4C4a45DfKrwHH5vpPgd7aTYKNOyUvYKL7zRZG6WNRP5cne7pxrMwHLEbCqS3aDMglwpcvjMmTGVz4wejQ86lDfjZ0OeSY/az/VMaJ2XQZA/QQQChSKV99N8OpjvuHvUsGt+ErX2bI9q7Hy0dE580pnZ0R1uTi/eSVX2SLrbmKeAeQG34qIL2KDozo/kwosBv4Ouk5WOheMyrfK5t1Z8K++Ak9XVjK/ZRW8LnMgYDZQtpx5lBFoERxI//z40EFmQLgn2R27PZkP0fDVGmaj5thdoE7JEREPBR6nFJ1+CCAFgq9mVF91dhUcBRgGHMWjju0TZN7xi+nVGmaH8wG2IeaUHH+ibyqRTuxZCVGyAhgrZQi0KrtlYgHYAV1JXvET8IjfF7jnb4mPpMtg2TZbr0rpSnwQO9SzjLAauxV83Zj2j1FU9QtX0fQMfD1VM6zWn9D00agz3fOr866OwRF1mUe9EmaDL8d9HflF5jS/M8Yd1rHzsWzt87HMdr0D+sB6HixPXV/EyqH6QvCqBOE9qPXMTsmMqI3TMG9eNc7P9EJYYvK/KdUsZz0raZF06Hu+DCxBD+BZv1L1RKeAcXsZpnNtgtiEmEOeyRHx0zBvchtnHBWAUFa66q86ggltuj5HZU73pVdAcMHhAEX5xHys/Ge/j43IO/IvfZdxmM4FVDdOs1X1Twr3YWciTYPjZopXZILOxgWElVGIjs5V/Yw752QrxU/A1fGdL4yciz551U45qILa+fbsOmeutekud2I7BeJJhmPr3L07KlN0Y/eMzpmb2JzYntgfXfIr9nLWXgl0RuPLO1xzxdqPOPNK8FxJn+rXhP4HON5K31PHDhmjlm6fAAAAAElFTkSuQmCC);
    background-size: 140px 14px;
    background-position: var(--align) -12px bottom;
    background-repeat: no-repeat;
    opacity: .25;
    transition: opacity .3s ease-in-out;
}
.recommended > *:is(:hover, :focus) .img-shadow{
    opacity: 0;
}

.recommended[data-columns="1"] > :nth-child(even) figure{
    padding: 10px 20px;
    padding-inline-end: 120px;
}
.recommended[data-columns="1"] > :nth-child(even) .img-container{
    right: auto;
    left: 27px;
}
.recommended[data-columns="1"] > :nth-child(even) .img-shadow{
    background-position: var(--align2) 14px bottom;
}


#download{

}
#download .timer{
    --value: 0;
    --progress-circle-bg: var(--primary);
}
#download .timer::before{
    content: attr(data-timer);
}
#download .btn-download{
    overflow: hidden;
    transition: all .15s ease-in-out;
}
#download .btn-download.hide{
    height: 0px;
    padding: 0;
    border: 0;
}




.home-intro{
    margin-top: -31px;

    --swiper-pagination-bullet-width: 24px;
    --swiper-pagination-bullet-height: 8px;
    --swiper-pagination-bullet-border-radius: 4px;

    --swiper-navigation-size: 36px;
    --swiper-navigation-color: #fff;
    --swiper-navigation-opacity: 1;

    --swiper-pagination-bullet-inactive-color: rgb(0 0 0 / 50%);
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-color: var(--secondary);
    --swiper-pagination-bullet-active-opacity: 1;
    --swiper-navigation-sides-offset: 2rem;
    --swiper-pagination-bullet-horizontal-gap: 6px;

    /* --slide-height: 250px; */
}
.swiper-pagination-bullet:not(.swiper-pagination-bullet-active):is(:hover, :focus, :active){
    --swiper-pagination-bullet-inactive-color: var(--primary);
}

.home-intro .swiper-slide{

}
.home-intro .swiper-slide :is(picture, img){
    width: 100%;

}
.home-intro .info{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    --h1-color: #fff;
    text-shadow: 1px 1px 5px #000;
}


.home-intro .wrap{
    padding-top: calc(var(--header-height) + 0px);
}
.home-intro h1{
    margin-top: 20px;
    font-size: 3.2rem;
    letter-spacing: -1px;
    text-wrap: balance;
    line-height: 1.4;
    /* text-shadow: -1px 1px 2px #fff, -2px 3px 4px rgb(0 0 0 / 17%); */
    margin-bottom: 3rem;
}
.home-intro h1 strong{
    color: var(--txt-color);
    font-weight: 900;
}
.home-intro h1::first-line{
    color: var(--primary);
}

[dir="ltr"] .home-intro h1{
    font-size: 2.75rem;
}

@media (width >= 1200px) {
    [dir="ltr"]h2, [dir="ltr"].h2 {
        font-size: 1.65rem;
    }
}

.home-intro .shape-wrapper{
    position: relative;
    z-index: 2;    
    text-align: end;
}
.home-intro .shape-wrapper img{
    max-height: 420px;    
    animation: anima-trasform-x-one 3s ease infinite alternate;
}
@keyframes anima-trasform-x-one{
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(30px);
    }
}
@keyframes anima-trasform-y-one{
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
@keyframes anima-trasform-z-one  {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }
}

.h2.mxw-600{
    line-height: 1.6;
}
.line-around{
    background: url(../img/line-around.svg) center no-repeat;
    background-size: 100% 100%;
    padding: 36px;
}



.intro-features{
    
}
.intro-features i{
    --size: 64px;
}
.intro-features span{
    width: calc(100% - 80px);
    text-wrap: balance;
}

@media (width < 1000px) {
    .intro-features .width50{
        width: 100%;
    }
}
@media (width < 900px) {
    .home-intro .first{
        width: 60%;
    }
    .home-intro .shape-wrapper{
        width: 40%;
    }
    .home-intro h1{
        font-size: 2.5rem;
    }
}
@media (width < 650px) {
    .home-intro :is(.first, .shape-wrapper){
        width: 100%;
        text-align: center;
    }
    .home-intro .lineunder::after{
        display: none;
    }
    .intro-features .width50{
        flex-flow: column !important;

    }
    .intro-features span{
        width: 100%;
        text-align: center;
    }
}

.lineunder::after{
    height: 32px;
    mask-image: url(../img/title_shape.svg);
    background: var(--secondary-grade);
    margin-top: 5px;
}

.footer-msg{
    --h1-color: #fff;
    background: var(--dark) url(../img/pattern-01.svg);
    padding: 3rem 2rem;
    border-radius: var(--radius-xlg);
    background-size: cover;
    background-position: center;
}
.top-header{
    background: var(--dark);
    padding: 1.5rem 0;
}

#r-header{
    position: relative;
    border: 0;
    box-shadow: none;
    background: linear-gradient(45deg, var(--dark), var(--dark)) no-repeat;
    background-size: 100% 39px;
}
#r-header.f-header{
    animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
}

.header--logo{
    width: 80px;
}
.header--info{
    width: calc(100% - 80px);
    line-height: 1;
    color: #fff;
}
.header--info--single{
    --icon-size: 28px;
    --mask: #fff;
}
.header--info--single small{
    font-size: .8rem;
}
.header--info--single span{
    font-size: .9rem;
    color: #fff;
}
.header--info--single:hover i{
    animation: .7s ease-out 0s 1 normal forwards running swing;
}

@keyframes swing{
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}


.header--white{
    background: #fff;
    border-radius: var(--radius);
    padding-inline-start: 2rem;
    height: 60px;
    box-shadow: var(--box-shadow);
}

.header--white nav{
    width: calc(100% - 240px - 2rem);
    position: relative;
    top: -3px;
}
.btn-header-create{
    border-radius: var(--radius);
    position: relative;
    top: -4px;
    z-index: 1;
    width: 240px;
    border: 0;
    padding-inline-start: 0;
    height: 68px;
    align-content: center;
    font-size: 1.12rem;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.btn-header-create::after{
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 25px;
    height: 100%;
    -webkit-transform: skewX(15deg);
    transform: skewX(15deg);
    background: var(--color);
    display: block;
    z-index: -1;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    box-shadow: 4px 0 4px rgb(0 0 0 / 10%);
}


.line-under::before{
    height: 1px;
}

.h-menu > li > a{
    font-weight: 600;
}


.h-panel{
    --_h-panel-bg: #fff;
    --_h-panel-radius: var(--radius);
    --_h-panel-a: var(--txt-color);
    --_h-panel-a-hover: var(--a-hover);
    --_h-panel-bg-hover: #eee;
    --_h-panel-hr: 1px solid rgb(0 0 0 / 9%);

    width: 240px;
}




header .btn-aside-menu{
    width: fit-content;
    border: 0;
    background: #f3f5f7;
}
header .btn-aside-menu i{
    --mask: var(--txt-color);
}
header .btn-aside-menu{
    display: none;
}

.aside-menu .site-logo{
    height: 60px;
    width: 100%;
    background-position: center;
}

.site-logo.logo-lg{
    height: 100px;
    width: 100%;
    background-position: center;
}


.f-header .header--white{
    border-radius: 0;
    border-bottom-right-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}
.f-header .btn-header-create{
    border-radius: 0;
    height: 64px;
    border-bottom-left-radius: var(--radius);
}

@media (width < 800px) {
    #r-header nav{
        display: none;
    }
    #r-header .btn-aside-menu{
        display: inline-block;
        margin-inline-end: 1rem;
        background: transparent;
    }
}

@media (width < 700px) {
    .header--info--single:nth-child(3) {
        display: none !important;
    }
}
@media (width < 450px) {
    .header--info--single i,
    .btn-header-create i{
        display: none !important;
    }
    .btn-header-create{
        font-size: 1.1rem;
        width: 200px;
    }
}
.mainFooter{    
    
}

.mainFooter nav a{
    transition: all .2s ease-out;
}
.mainFooter a:is(:hover, :focus){
    opacity: 1;
}

.mainFooter a svg{
    width: 24px;
    height: 24px;
}




.social-btns{

}
.social-btns a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;    
    border-radius: 50%;
    transition: all .2s linear 0s;
}
.social-btns a i{
    margin: 0;
    transition: all .2s linear 0s;
}
.social-btns a:is(:hover, :focus){
    background: var(--primary);
    box-shadow: var(--box-shadow);
}
.social-btns a:is(:hover, :focus) i{
    --mask: #fff !important;
}

.mainFooter .line-under::before{
    height: 1px;
}

.mainFooter small{
    background: var(--dark);
    --a: #eaeaea;
    color: #eaeaea;
    --a-hover: #fff;
}
#features{
    --icon-size: 64px;
    --mask: var(--primary-grade);

    padding-block: 3rem;
}
#features .row{
    row-gap: 3rem;
}
#features .section{
    position: relative;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    overflow: hidden;
    transition: all .15s ease-in-out;
}
#features .section:hover{
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), .1);
    transform: scale(1.05);
}
#features h3{
    margin: 0;
    font-size: 1.25rem;
}

#features .paragraph{
    font-size: 1.1rem;
    text-wrap: balance;
}
#features .section:hover .paragraph{
    top: 0;
}
#features .section img{
    max-width: min(200px, 100% - 3rem);
    height: 100px;
}

#features2 iframe{
    display: block;
    width: 100%;
    max-width: min(500px, 100%);
    height: 280px;
    border-radius: 10px;
    margin: 1rem auto 0;
}

.features-img{
    display: block;
    max-width: min(500px, 100%);
    margin-inline: auto;
    border-radius: 20px;
    max-height: 215px;
}
.features-p{
    max-width: min(500px, 100%);
    text-wrap: balance;
    font-size: 1.2rem;
}

@media (width < 768px) {
    #features3 .row:nth-child(even){
        flex-direction: column-reverse;
    }
    #features3 :is(h3, p){
        text-align: center;
        margin-inline: auto;
    }
}