@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

html,body{
    width:100%;
    height:100%;
}
body{
    font-size:13px;
    font-family: "Work Sans", sans-serif;
    color:var(--text-color);
    background:#F2F2F2;
}
@media only screen and (max-width:767px){
    body{
        font-size:11px;
    }
}
html {
  scroll-padding-top: 200px; /* yukarıda 200px boşluk bırakır */
}
a{
    color:var(--text-color);
    text-decoration: none;
    transition:all .2s ease-in-out;
    -o-transition:all .2s ease-in-out;
    -moz-transition:all .2s ease-in-out;
    -webkit-transition:all .2s ease-in-out;
}
a:hover{
    color:var(--text-color-2);
}

p{margin-bottom:10px;}

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

/*MORE*/
.more{display:block;width:fit-content;line-height:2;color:#000;font-weight:700;font-size:1.12em;position:relative;}
.more:before{content:'';width:100%;height:1px;background:#C8102E;position:absolute;bottom:0;left:0;}
.more:after{content:'';width:25%;height:3px;background:#C8102E;position:absolute;bottom:-1px;right:0;}

.scrolled{background:#fff !important;}
header{position:absolute;top:0;left:0;width:100%;height:auto;z-index:999;background:linear-gradient(#fff,transparent);padding:20px;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
header .h-wrapper{display:flex;flex-direction:row;align-items:center;justify-content:space-between;}
/*--- HEADER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/

header .buttons{display:flex;flex-direction:row;border:1px solid #000;height:77px;border-radius:39px;align-items:center;}
header .buttons>a{color:#000;font-size:1.37em;display:block;padding:0 40px;text-align:center;position:relative;}
header .buttons>a>span{display:block;font-size:.7em;}
header .buttons>a:hover{color:#C8102E;}

header .logo img{max-width:100%;height:auto;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}


.menu{position:relative;}
.menu .menu-bar{display:none;}
.menu>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;gap:20px;justify-content:space-between;}
.menu>ul>li{position:relative;flex-grow:1;}
.menu>ul>li>a{display:block;font-size:1.2em;line-height:3em;text-align:center;}
.menu>ul>li:last-child>a{border:0;}
.menu>ul>li>.sub-menu-bar{display:none;}
.menu>ul>li>ul{list-style:none;padding:10px;margin:0;max-height:500px;overflow:scroll;position:absolute;left:0;min-width:100%; transform:translate(0,30px);background:#ffffff;opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.menu>ul>li:hover>ul{transform:translate(0,0);opacity:1;visibility:visible;}
.menu>ul>li>ul>li>a{display:block;line-height:2.2em;padding:0 10px;white-space:nowrap;color:#000;border-bottom:1px solid #ddd;}
.menu>ul>li>ul>li:last-child>a{border:0;}
.menu>ul>li>ul>li>a:hover{color:#ff0000;}

@media only screen and (max-width:991px){
    header .h-wrapper{flex-direction:column;justify-content:flex-start;gap:20px;align-items:unset;}
    header .logo img{max-width:150px;height:auto;}
    
    .menu{width:100%;}
    .menu .menu-bar{display:block;padding:10px 20px;font-size:1.2em;border:1px solid #000;}
    .menu>ul{position:absolute;left:0;width:100%;background:#fff;padding:10px;flex-direction:unset;gap:unset;display:none;max-height:80vh;overflow:scroll;}
    .menu>ul>li>a{line-height:2em;padding:5px 10px;border-bottom:1px dotted #ddd;text-align:left;}

    .menu>ul>li>.sub-menu-bar{display:block;line-height:2em;padding:5px 20px;position:absolute;top:0;right:0;}
    .menu>ul>li>ul{position:relative;opacity:1;visibility:visible;display:none;transform:translate(0,0);transition:unset;-webkit-transition:unset;-moz-transition:unset;-o-transition:unset;}

    header .buttons{position:absolute;top:20px;right:20px;height:40px;}
    header .buttons a{padding:0 15px;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    header .logo img{max-width:175px;height:auto;}
    .menu>ul{gap:10px;}
    .menu>ul>li>a{font-size:.9em;}

    header .buttons{height:40px;}
    header .buttons a{padding:0 10px;font-size:1em;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    header .logo img{max-width:175px;height:auto;}
    .menu>ul>li>a{font-size:1em;}
}
@media only screen and (min-width:1200px){
    .scrolled{position:fixed;}
    .scrolled .logo img{max-width:175px;height:auto;}
}
/*--- SLIDER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.slider{width:100%;height:auto;}
.slider video{width:100%;height:auto;min-height:100vh;object-fit:cover;}
.slider img{width:100%;height:100vh;object-fit:cover;}
.slider .text{position:absolute;left:10%;top:0;height:100%;display:flex;flex-direction:column;justify-content:center;width:50%;}
.slider .text p{font-size:4.18em;color:#fff;transform:translate(0,50px);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text p{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.3s;}
.slider .text p strong{display:block;}
.slider .text .more{color:#fff;transform:translate(0,50px);opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.slider .swiper-slide-active .text .more{transform:translate(0,0);opacity:1;visibility:visible;transition-delay:.6s;}

@media only screen and (min-width:992px) and (max-width:1199px){
    .slider .text p{font-size:3em;}
}
/*--- M1 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m1{padding:60px 0;background:#F2F2F2;}
.m1 .title{margin-bottom:60px;}
.m1 .title h2{font-size:3.18em;text-align:center;}
.m1 .title h2>span{display:block;font-weight:300;}
.m1 .title h2>span>strong{font-weight:800;}
.m1 .box-big{height:calc(100% - 25px);margin-bottom:25px;}
.m1 .box-big img{width:100%;height:100%;}
.m1 .box-small{margin-bottom:25px;}
.m1 .box-small img{width:100%;height:320px;}
@media only screen and (max-width:767px){
    .m1 .box img{height:320px !important;}
}
@media only screen and (min-width:768px) and (max-width:991px){
    .m1 .box img{height:405px !important;}
}
@media only screen and (min-width:1441px){
    .m1 .box-small img{height:405px;}
}
.m1 .box{position:relative;border-radius:47px;overflow:hidden;}
.m1 .box img{position:relative;z-index:1;border-radius:47px;object-fit:cover;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;}
.m1 .box:hover img{transform:scale(1.1);}
.m1 .box:before{content:'';width:100%;height:100%;background:linear-gradient(transparent,#000);position:absolute;top:0;left:0;z-index:2;}
.m1 .box .text{position:absolute;top:0;left:0;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:15px;width:100%;height:100%;z-index:3;}
.m1 .box .text h3{font-size:1.93em;font-weight:800;text-align:center;}
.m1 .box .text h3>a{color:#fff;}
.m1 .box:hover .text h3>a{color:#C8102E;}
.m1 .box .text .more{color:#fff;}
.m1 .box:hover .text .more{color:#C8102E;}
.m1 .box .text .more:before{left:15px;width:calc(100% - 15px);}
.m1 .box .text .more i{color:#C8102E;}
/*--- M2 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m2{background:#F2F2F2;padding:60px 0;}
.m2 .title{margin-bottom:40px;font-size:1.93em;font-weight:600;}
.m2 .m2-list{width:100%;margin-bottom:30px;}
.m2 .m2-list>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;justify-content:space-between;width:100%;}
.m2 .m2-list>ul>li{border-right:2px solid #707070;max-width:20%;flex:0 0 20%;text-align:center;}
.m2 .m2-list>ul>li:last-child{border:0;}
.m2 .m2-list>ul>li>button{border:0;background:unset;line-height:1;font-size:1em;max-width:106px;color:#333333;text-align:center;position:relative;min-height:50px;}
.m2 .m2-list>ul>li>button:before{content:'';width:50%;height:3px;background:#000;position:absolute;left:0;right:0;margin:0 auto;bottom:0;opacity:0;}
.m2 .m2-list>ul>li>.active:before{opacity:1 !important;}
.m2 .m2-list-body{position:relative;width:100%;height:auto;}
.m2 .m2-list-body .m2-list-body-item-active{}
.m2 .m2-list-body .swiper{width:100%;height:auto;}
.m2 .m2-list-body .swiper-slide{height: auto;}
.m2 .m2-list-body .box{border-radius:22px;margin-bottom:20px;padding:30px;background:#fff;}
.m2 .m2-list-body .box .img{}
.m2 .m2-list-body .box .img img{width:100%;height:210px;object-fit:contain;}
.m2 .m2-list-body .box .content{padding-top:15px;}
.m2 .m2-list-body .box .content h3{font-size:1.12em;color:#333333;font-weight:700;line-height:1.2;min-height:2.4em;}
.m2 .m2-list-body .box .price{display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:10px 0;}
.m2 .m2-list-body .box .price .old-price{font-size:1em;text-decoration:line-through;color:#333333;}
.m2 .m2-list-body .box .price .new-price{font-size:1.37em;font-weight:700;}
.m2 .m2-list-body .box .button{padding:10px 0;}
.m2 .m2-list-body .box .button a{display:flex;flex-direction:row;align-items:center;font-size:.8em;color:#525252;gap:15px;justify-content:center;border:1px solid transparent;border-radius:50px;}
.m2 .m2-list-body .box .button a:hover{border:1px solid #ddd;}
.m2 .m2-list-body .swiper-nav{display: flex;flex-direction:row;gap:10px;justify-content:center;margin-bottom:20px;}
.m2 .m2-list-body .swiper-nav>div{width:40px;height:40px;border:2px solid #444;text-align:center;line-height:40px;border-radius:50%;}
.m2 .m2-list-body .swiper-nav>div:active{opacity:.3;}
@media only screen and (max-width:767px){
    .m2 .m2-list>ul>li>button{font-size:.8em;}
    .m2 .m2-list-body .box{padding:10px;}
}
.m2 .m2-list-body .m2-list-body-item{position:absolute;top:0;left:0;width:100%;min-height:100px;opacity:0;visibility:hidden;transition:all .3s ease-in-out;-webkit-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;}
.m2 .m2-list-body .m2-list-body-item-active{position:relative;opacity:1;visibility:visible;}
/*--- M3 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m3{padding:120px 0;position:relative;}
.m3 .m3-body{display:flex;flex-direction:row;}
.m3 .icon1{position:absolute;left:0;bottom:0;height:90%;width:auto;z-index:-1;max-width:20%;}
.m3 .icon2{position:absolute;right:0;bottom:0;z-index:9;}
.m3 .m3-body .title{max-width:30%;flex:0 0 30%;display:flex;flex-direction:column;justify-content:center;gap:20px;padding:30px 30px 30px 14%;}
.m3 .m3-body .title h2{font-size:1.68em;font-weight:600;}
.m3 .m3-body .title p{font-size:1.06em;color:#363636;min-height:120px;}
.m3 .m3-body .title .more{font-weight:800;color:#333333;}
.m3 .m3-body .title .more:before{width:calc(100% - 13px) !important;left:13px;}
.m3 .m3-body .title .more>i{color:#C8102E;}
.m3 .m3-body .m3-wrapper{max-width:70%;flex:0 0 70%;overflow:hidden;}
.m3 .m3-body .m3-wrapper>div{width:110%;}
.co-box{position:relative;box-shadow: 0px 3px 6px #00000029;margin-bottom:30px;}
.co-box img{width:100%;height:auto;background:#fff;}
.co-box i{width:24px;height:24px;line-height:24px;text-align:center;color:#E30010;border-radius:50%;box-shadow: 0px 3px 6px #00000029;position:absolute;bottom:15px;left:15px;}
@media only screen and (max-width:991px){
    .m3 .m3-body{flex-direction:column;}
    .m3 .m3-body .title{padding:30px;max-width:100%;flex:0 0 100%;}
    .m3 .m3-body .m3-wrapper{max-width:100%;flex:0 0 100%;padding:0 15px;}
    .m3 .m3-body .m3-wrapper>div{width:100%;}
}
@media only screen and (min-width:992px) and (max-width:1199px){
    .m3 .m3-body .title{padding:30px;}
}

.m3 .swiper-nav{display: flex;flex-direction:row;gap:10px;justify-content:center;margin-bottom:20px;}
.m3 .swiper-nav>div{width:40px;height:40px;border:2px solid #444;text-align:center;line-height:40px;border-radius:50%;}
.m3 .swiper-nav>div:active{opacity:.3;}
/*--- M4 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m4{padding:115px 0;background:#F2F2F2;}
.m4 .title{margin-bottom:30px;}
.m4 .title h2{font-size:2.06em;font-weight:600;}
.m4 .box{margin-bottom:30px;background:#fff;padding:60px;min-height:300px;display:flex;flex-direction:column;justify-content:space-between;}
.m4 .box h3{font-size:1.43em;font-weight:700;}
.m4 .box p{font-size:1.06em;}
.m4 .box .more{font-weight:700;color:#333333;}
.m4 .box .more:before{left:13px;width:calc(100% - 13px);}
.m4 .box .more>i{color:#C8102E;}
.m4 .all .more{color:#333333;}
.m4 .all .more:before{content:'';width:calc(100% - 13px);left:13px;}
@media only screen and (min-width:992px) and (max-width:1199px){
    .m4 .box{padding:20px;}
}
@media only screen and (min-width:1200px) and (max-width:1440px){
    .m4 .box{padding:30px;}
}
.m4 .swiper-nav{display: flex;flex-direction:row;gap:10px;justify-content:center;margin-bottom:20px;}
.m4 .swiper-nav>div{width:40px;height:40px;border:2px solid #444;text-align:center;line-height:40px;border-radius:50%;}
.m4 .swiper-nav>div:active{opacity:.3;}
/*--- M5 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m5{padding:50px 0;background:#F2F2F2;overflow:hidden;}
.m5 .title{margin-bottom:50px;}
.m5 .title h2{text-align:center;font-size:1.93em;font-weight:600;text-transform:uppercase;}
.m5 .m5-body{width:120%;left:-10%;position:relative;}
.m5 .m5-body .box{position:relative;margin-bottom:50px;}
/*.m5 .m5-body .box:before{content:'';width:50%;height:100%;background:#E0E0E0;position:absolute;top:0;left:0;right:0;margin:0 auto;transform:skewX(-15deg);}*/
.m5 .m5-body .box img{width:100%;height:110px;object-fit:contain;position:relative;z-index:9;}
.m5 .swiper-nav{display:block;display:flex;flex-direction:row;gap:10px;justify-content:center;}
.m5 .swiper-nav>div{width:30px;height:30px;line-height:30px;text-align:center;border:1px solid #E0E0E0;border-radius:50%;text-align:center;}
.m5 .swiper-nav>div:active{background:#fff;}
@media only screen and (max-width:767px){
    .m5 .m5-body{width:100%;left:0;position:relative;}
}
/*--- M6 ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.m6{padding:50px 0;}
.m6 .title{margin-bottom:50px;}
.m6 .title h2{font-size:1.93em;font-weight:600;text-align:center;}
.m6 .title p{padding:0 30%;font-size:1.06em;text-align:center;}
.m6 .title .link{display:block;width:fit-content;margin:0 auto;font-size:1.81em;font-weight:800;color:#E30010;}
.m6 .m6-body img{width:100%;height:auto;}
/*--- FOOTER ----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
footer{padding:50px 0 0 0;background:#1A1A1A;color:#fff;}
footer a{color:#fff;}
footer h3{font-size:18px;font-weight:700;margin-bottom:20px;}
footer .logo{margin-bottom:50px;}
footer .logo img{max-width:60%;height:auto;}
footer .social-media{margin-bottom:30px;}
footer .social-media>ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:row;gap:20px;}
footer .social-media>ul>li>a{display:block;font-size:1.5em;}
footer .list{margin-bottom:50px;}
footer .list>ul{list-style:none;margin:0;padding:0;}
footer .list>ul>li{display:flex;align-items:center;}
footer .list>ul>li>i{margin-right:10px;}
footer .list>ul>li>span,footer .list>ul>li>a{display:inline-block;font-size:.9em;line-height:2em;transition:all .2s ease-in-out;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;}
footer .list>ul>li>span:hover,footer .list>ul>li>a:hover{padding-left:5px;}
footer .workhour{margin-bottom:50px;}
footer .map{margin-bottom:50px;}
footer .map>iframe{width:100%;height:250px;}
footer .copyright{margin-bottom:5px;font-size:11px;text-align:center;padding-top:25px;}
footer .swa{margin-bottom:50px;text-align:center;}
footer .swa>a>img{display:block;width:50px;height:50px;margin:0 auto;opacity:.95;filter:invert(100%);}
footer .contracts{margin-bottom:50px;display:flex;flex-wrap:wrap;justify-content:center;}
footer .contracts a{display:inline-block;padding:0 10px;font-size:.8em;margin:0 0 5px 0;}
/*--- PAGE ------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.page .page-head{padding:300px 0 35px 0;position:relative;background:url('../images/cover.jpg') no-repeat center center;background-size:cover;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;}
.page .page-head:before{content:'';width:100%;height:100%;position:absolute;top:0;left:0;background:#000;opacity:.5;}
.page .page-head h1{font-size:2.5em;font-weight:600;margin-bottom:25px;position:relative;z-index:9;color:#fff;text-align:center;}
.page .page-head p{font-size:1.3em;font-weight:200;margin-bottom:25px;position:relative;z-index:9;color:#fff;text-align:center;}
.page .page-head .breadcrumb{font-size:.8em;position:relative;z-index:9;justify-content:center;}
.page .page-head .title .breadcrumb-item+.breadcrumb-item::before{color:#fff;}
.page .page-head .title nav ol li{color:#fff;}
.page .page-head .title nav ol li a{color:#fff;}
.page .page-body{padding:50px 0 20px 0;}
.page .page-body .page-content{margin-bottom:30px;}
.page .page-foot{padding:50px 0 20px 0;background:var(--bg-color);margin-bottom:50px;}
.page .page-form{margin-bottom:50px;}
/*--- COOKIE-POLICY -----------------------------------------------------------------------------------------------------------------------------------------------------*/
.cookie-accept {position:fixed;bottom:-100%;left:0;right:0;width:100%;z-index:99999;border:1px solid #ddd;background:#fff;display:flex;justify-content:center;align-items:center;transition:bottom 1s ease-in-out;-webkit-transition:bottom 1s ease-in-out;-moz-transition:bottom 1s ease-in-out;-o-transition:bottom 1s ease-in-out;padding:20px;}
.cookie-accept.active {bottom:0;}
.cookie-accept .close {position:absolute;right:15px;top:-15px;width:30px;height:30px;border:1px solid #ddd;line-height:30px;text-align:center;font-size:1.5em;background:#fff;}
.cookie-accept .icon {text-align: center;}
.cookie-accept .icon i {font-size:4em;}
.cookie-accept .content {padding:1.5em;}
.cookie-accept .content strong {display:block;font-size:1.5em;line-height:1;margin-bottom:10px;}
.cookie-accept .content p {font-size:1.1em;font-weight:200;margin:0;}
.cookie-accept .buttons ul {list-style:none;margin:0;padding:0;display:flex;gap:10px;}
.cookie-accept .buttons ul > li {flex:1 1 auto;}
.cookie-accept .buttons ul > li > a{display:flex;padding:10px 20px;background:#aaa;color:#fff;text-align:center;text-decoration:none;align-items:center;height:100%;}
@media only screen and (max-width: 767px) {
    .cookie-accept {flex-direction: column;}
}
/*--- FORM --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.form-group{margin-bottom:20px;}
.form-group label{display:block;font-size:1em;font-weight:700;margin-bottom:5px;}
.form-group .form-control{min-height:45px;border:0;border:1px solid #eee;font-size:1em;}
.form-group .form-control::placeholder{font-size:1em;}
.form-group input[type="checkbox"]{width:25px;height:25px;}
.form-checkbox-group{display:flex;line-height: 25px;}
.form-checkbox-group>input{accent-color:var(--primary-color);}
.form-checkbox-group a{padding-left:15px;}
.form-group button{background-color:var(--primary-color);color:#fff;font-size:1em;}
.form-group button:hover{background-color:var(--secondary-color);color:#fff;}
/*rating*/
.stars {width:100%;text-align: center;border:1px solid #eee;border-radius:5px;overflow: hidden;display: flex;justify-content: center;flex-direction: row-reverse;margin-bottom:20px;}
.stars-focus{box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);}
input.star {display: none;}
label.star {margin:0;padding: 0 5px;font-size: 30px;color: #ddd;transition: all .2s;}
input.star:checked ~ label.star:before {content: '\f005';color: #FD4;transition: all .25s;font-weight: 900;}
input.star-5:checked ~ label.star:before {color: #FE7;}
input.star-1:checked ~ label.star:before {color: #F62;}
input.star-2:hover ~ label.star-1 {color: #F62;}
input.star-3:hover ~ label.star-1, input.star-3:hover ~ label.star-2 { color: #F62; }
input.star-4:hover ~ label.star-1, input.star-4:hover ~ label.star-2, input.star-4:hover ~ label.star-3 { color: #F62; }
input.star-5:hover ~ label.star-1, input.star-5:hover ~ label.star-2, input.star-5:hover ~ label.star-3, input.star-5:hover ~ label.star-4 {color: #F62;}
label.star:hover {color: #ffa300;}
label.star:before {content: '\f005';font-family: 'Font Awesome 5 Free';font-weight: 400;}
/*security-input*/
.security-group{margin-bottom:20px;position:relative;}
.security-group label{display: block;font-size:14px;font-weight:700;margin-bottom:5px;}
.security-group .img{position:absolute;bottom:0;left:0;}
.security-group .img img{min-height:45px;}
.security-group .img button{border:0;min-height:45px;min-width:45px;margin:0;background:transparent;}
.security-group input{text-indent:175px;min-height:45px;min-height:45px;border:1px solid #eee;font-size:1em;}
/*--- LOADING ---------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#loading{width:100%;height:100vh;position:fixed;top:0;left:0;background:rgba(0,0,0,.7);z-index:9999999;display:flex;flex-direction:column;justify-content:center;align-items:center;}
@keyframes spin{to{transform: rotate(360deg);}from{transform: rotate(0);}}
#loading:before{content:'\f110';color:#fff;font-family: 'Font Awesome 6 Free';font-weight:900;animation: spin infinite 1s linear;}
/*--- NO-CONTENT --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.no-content{padding:40px 20px;border:1px dashed #eee;border-radius:10px;text-align:center;margin-bottom:30px;}
.no-content>i{font-size:30px;margin-bottom:15px;color:#aaa;}
.no-content>p{font-size:18px;padding:0;margin:0;font-weight:200;}
/*--- HEMEN ARA - WHATSAPP --------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@-webkit-keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}
@keyframes ripple {0% {opacity: 1;-webkit-transform: scale(0);transform: scale(0);}100% {opacity: 0;-webkit-transform: scale(1);transform: scale(1);}}

.fixed-button{position:fixed;bottom:15px;left:15px;display:flex;flex-direction:column;gap:15px;z-index:99999;}
.fixed-button>a{height:40px !important;width:40px !important;text-align: center;border-radius:80px;z-index: 999;color: white;position:relative;}
.fixed-button>a>i{line-height:40px;font-size:20px;}
.fixed-button>a .ripple{position: absolute;width:120px;height:120px;z-index: -1;left: 50%;top: 50%;opacity: 0;margin: -60px 0 0 -60px;border-radius:80px;-webkit-animation: ripple 1.8s infinite;animation: ripple 1.8s infinite;}
.fixed-button>a .ripple:nth-child(2) {animation-delay: .3s;-webkit-animation-delay: .3s;}
.fixed-button>a .ripple:nth-child(3) {animation-delay: .6s;-webkit-animation-delay: .6s;}

.whatsAppBg{background-color: #068404 !important;background-image: linear-gradient(90deg, #068404, #0ba909);}
.hemenAraBg {background-color: #004080 !important;background-image: linear-gradient(90deg, #004080, #0073e6);}