/* New Aleart bar */


.SnackbarNewIcon {
    width: 50px;
    height: 50px;
    border: 3px solid gray;
    border-radius: 50%;
    margin-right: 6px;
    padding: 0;
    position: relative;
    box-sizing: content-box;
    transform: scale(0.7);
}

.SnackbarNewIcon.error {
    border-color: #f27474;
}

.SnackbarNewIcon.error .x-mark {
    position: relative;
    display: block;
}

.SnackbarNewIcon.error .errorLine {
    position: absolute;
    height: 3px;
    width: 30px;
    background-color: #f27474;
    display: block;
    top: 23px;
    border-radius: 1px;
}

.SnackbarNewIcon.error .errorLine.left {
    position: absolute;
    /* transition: all 0.7s ease-in-out; */
    left: 10px;
    animation: errorAnimationLeft 0.7s ease-in-out forwards;
    /* forwards ensures it stays at 45deg */
}

.SnackbarNewIcon.error .errorLine.right {
    position: absolute;
    /* transition: all 0.7s ease-in-out; */
    right: 10px;
    animation: errorAnimationRight 0.7s ease-in-out forwards;
    /* forwards ensures it stays at -45deg */
}

@keyframes errorAnimationLeft {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

@keyframes errorAnimationRight {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-45deg);
    }
}

.SnackbarNewIcon.warning {
    border-color: #f8bb86;
    overflow: hidden;
}

.SnackbarNewIcon.warning .body {
    position: absolute;
    width: 3px;
    height: 22px;
    left: 50%;
    top: 10px;
    border-radius: 1px;
    margin-left: -1.5px;
    background-color: #f8bb86;
    animation: warningbody .7s ease-in-out forwards;
}

.SnackbarNewIcon.warning .dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-left: -2px;
    left: 50%;
    bottom: 10px;
    background-color: #f8bb86;
    animation: warningdot .7s ease-in-out forwards;
    transition: all ease-in-out .7s;
}

@keyframes warningbody {
    0% {
        top: -20px;
    }

    100% {
        top: 10px;
    }
}

@keyframes warningdot {
    0% {
        bottom: 30px;
    }

    100% {
        left: 49.7%;
        bottom: 10px;
    }
}

.SnackbarNewIcon.info {
    border-color: #c9dae1;
    overflow: hidden;
}

.SnackbarNewIcon.info::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 18px;
    left: 50%;
    bottom: 10px;
    border-radius: 1px;
    margin-left: -1.5px;
    background-color: #c9dae1;
    animation: infobody .7s ease-in-out forwards;
}

.SnackbarNewIcon.info::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin-left: -2px;
    top: 11px;
    background-color: #c9dae1;
    animation: infodot .7s ease-in-out forwards;
    left: 50%;
}

@keyframes infobody {
    0% {
        bottom: -20px;
    }

    100% {
        bottom: 10px;
    }
}

@keyframes infodot {
    0% {
        top: 40px;
    }

    100% {
        left: 49.7%;
        top: 11px;
    }
}

.SnackbarNewIcon.success {
    border-color: green;
}

.SnackbarNewIcon.success .placeholder {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(165, 220, 134, 0.2);
    border-radius: 50%;
    box-sizing: content-box;
    position: absolute;
    left: -3px;
    top: -3px;
    z-index: 2;
}

.SnackbarNewIcon.success .successLine {
    height: 3px;
    background-color: green;
    display: block;
    border-radius: 1px;
    position: absolute;
    z-index: 2;
}

.SnackbarNewIcon.success .successLine.tip {
    width: 15px;
    left: 8px;
    top: 28px;
    transform: rotate(45deg);
}

.SnackbarNewIcon.success .successLine.long {
    width: 30px;
    right: 5px;
    top: 23px;
    transform: rotate(-45deg);
}

@keyframes animateSuccessTip {

    0%,
    54% {
        width: 0;
        left: 1px;
        top: 12px;
    }

    70% {
        width: 30px;
        left: -5px;
        top: 23px;
    }

    84% {
        width: 10px;
        left: 12px;
        top: 28px;
    }

    100% {
        width: 15px;
        left: 8px;
        top: 28px;
    }
}

@keyframes animateSuccessLong {

    0%,
    65% {
        width: 0;
        right: 28px;
        top: 33px;
    }

    84% {
        width: 33px;
        right: 0;
        top: 22px;
    }

    100% {
        width: 30px;
        right: 5px;
        top: 23px;
    }
}

.animateSuccessTip {
    animation: animateSuccessTip 0.75s;
}

.animateSuccessLong {
    animation: animateSuccessLong 0.75s;
}

@keyframes rotatePlaceholder {

    0%,
    5% {
        transform: rotate(-45deg);
    }

    100%,
    12% {
        transform: rotate(-405deg);
    }
}


.SnackbarNewIcon.success.animate::after {
    animation: rotatePlaceholder 4.25s ease-in;
}

.SnackbarNew {
    visibility: hidden;
    min-width: fit-content;
    background-color: #000;
    box-shadow: 0px 0px 3px #000;
    text-align: left;
    border-radius: 8px;
    padding: 5px 10px 5px 0px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translate(-50%, 30px) scale(0.9);
    transition: opacity 0.5s, transform 0.5s;
}

#SnackbarNewMessage {
    color: var(--color-white) !important;
}

.SnackbarNew.show {
    z-index: 9999;
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

@keyframes snackbarOut {
    0% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }

    25% {
        opacity: 0.8;
        transform: translate(-50%, 10px) scale(0.97);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, 20px) scale(0.94);
    }

    75% {
        opacity: 0.3;
        transform: translate(-50%, 25px) scale(0.92);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 30px) scale(0.9);
    }
}

.SnackbarNew.hide {
    animation: snackbarOut 0.2s ease-in forwards;
    z-index: 9999;
    visibility: visible;
}


#btn_spinner {
    position: static !important;
    animation: rotate 1s infinite linear;
    display: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }

}


:root {
     --gradientColorZero: #a960ee;
    --gradientColorOne: #ff333d;
    --gradientColorTwo: #90e0ff;
    --gradientColorThree: #ffcb57;

    /* Transparent versions */
    --gradientColorZeroTransparent: rgba(169, 96, 238, 0);
    --gradientColorOneTransparent: rgba(255, 51, 61, 0);
    --gradientColorTwoTransparent: rgba(144, 224, 255, 0);
    --gradientColorThreeTransparent: rgba(255, 203, 87, 0);

}

.homepage-hero-gradient {
    /* Replacing gradient colors */
   
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100vw; /* assumed final window width */
    height: 100%;
    transform-origin: 0 100%;
    overflow: hidden;
    border: none;
        z-index: -1;
}

.hero-gradient:after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 1000px;
    width: 100%;
    height: 100%;
    background: var(--color-white) !important;
    /* background: radial-gradient(var(--gradientColorThree) 23%, var(--gradientColorThreeTransparent) 67% 100%) 385px -24px, radial-gradient(var(--gradientColorOne) 0, var(--gradientColorOneTransparent) 60% 100%) -940px 290px, radial-gradient(var(--gradientColorTwo) 10%, var(--gradientColorTwoTransparent) 60% 100%) -120px 250px, radial-gradient(var(--gradientColorOne) 40%, var(--gradientColorOneTransparent) 57% 100%) 495px -44px, radial-gradient(var(--gradientColorZero) 30%, var(--gradientColorZeroTransparent) 67% 100%) 122px -120px, radial-gradient(var(--gradientColorZero) 10%, var(--gradientColorZeroTransparent) 60% 100%) -420px 120px, radial-gradient(var(--gradientColorTwo) 15%, var(--gradientColorTwoTransparent) 50% 100%) -620px 0, radial-gradient(var(--gradientColorTwo) 25%, var(--gradientColorTwoTransparent) 50% 100%) 520px -250px, var(--gradientColorZero); */
    background-repeat: repeat-y;
}

.rts-hosting-banner.rts-hosting-banner-bg {
    transform-origin: 0 100%;
    overflow: hidden;
}
.rts-hosting-banner.rts-hosting-banner-bg:before {
 /* background: radial-gradient(var(--gradientColorThree) 10%, var(--gradientColorThreeTransparent) 67% 100%) 385px -24px, radial-gradient(var(--gradientColorOne) 0, var(--gradientColorOneTransparent) 60% 100%) -940px 290px, radial-gradient(var(--gradientColorTwo) 10%, var(--gradientColorTwoTransparent) 60% 100%) -120px 250px, radial-gradient(var(--gradientColorOne) 40%, var(--gradientColorOneTransparent) 57% 100%) 495px -44px, radial-gradient(var(--gradientColorZero) 30%, var(--gradientColorZeroTransparent) 67% 100%) 122px -120px, radial-gradient(var(--gradientColorZero) 10%, var(--gradientColorZeroTransparent) 60% 100%) -420px 120px, radial-gradient(var(--gradientColorTwo) 15%, var(--gradientColorTwoTransparent) 50% 100%) -620px 0, radial-gradient(var(--gradientColorTwo) 25%, var(--gradientColorTwoTransparent) 50% 100%) 520px -250px, var(--gradientColorZero); */
    background-repeat: repeat-y;
    /* background: linear-gradient(0deg, #e89c1e  0%, #e21015 70%); */
    background: #e21015;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.2); /* light glass feel */
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* subtle depth */
  backdrop-filter: blur(10px); /* main blur */
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  border: 1px solid rgba(255, 255, 255, 0.3); /* frosted border */
}

.header-sticky .glass-effect {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: unset; 
  -webkit-backdrop-filter: unset;
  border: none;
}

.header-sticky {
    background: rgba(255, 255, 255, 0.9); /* light glass feel */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* subtle depth */
  backdrop-filter: blur(10px); /* main blur */
  -webkit-backdrop-filter: blur(10px); /* for Safari */
}
.mt-90 {
    margin-top: -90px;
}
header .site-logo{
    background-color: var(--color-white);
    display: block;
    border-radius: 10px;
    padding: 6px;
}

header .site-logo img{
    height: 64px !important;
}
 .swiper-pagination-bullet.swiper-pagination-bullet-active{
background: var(--color-primary) !important;
width: 30px !important;
border-radius: 4px !important;
     }
      
    .banner-content h1,.banner-content h2, .banner-content h3, .banner-content h4,.banner-content h5,.banner-content h6{
        color: #131313 !important;
        opacity: 1 !important;
    }
    .banner-content p{
        color: #4C5671 !important;
        opacity: 1 !important;
    }
    .rts-btn.btn__long ,.btn__two.btn__long.secondary__bg{
background: #e89c1e !important;
transition:all ease-in-out 0.4s ;
    }
      .rts-btn.btn__long i{
        transition: all ease-in-out 0.4s ;

position: relative;
    }
    .rts-btn.btn__long,.btn__two.btn__long.secondary__bg{
        color:var(--color-white) ;
background: #e89c1e ;
background: linear-gradient(232deg, rgb(247, 166, 36) 0%, #e89c1e 66%) ;    
    }
    .rts-btn.btn__long:hover,.btn__two.btn__long.secondary__bg:hover{
        color:var(--color-white) !important;
background: #e89c1e  !important; 
background: linear-gradient(232deg, rgb(251, 165, 28) 0%, #cc7e00 66%)  !important;    
    }
    .rts-about-reseller, .rts-pricing-five , .rts-brand , .rts-blog-area.area-5 , .rts-testimonial.area-3{
    background: var(--color-white)3f3 !important;
}
  
     .text-red , .rts-service-four__tab--content .tab__content--details .feature__list .feature__item::before , a:hover{
        color: var(--color-primary) !important;
     }
     .rts-about-reseller .single-about-info .single .icon , .rts-service-two .service-two-small.style-two .service-icon , .rts-service-two .service-two-small:hover .service-btn , .rts-hosting-feature-five .section-inner .feature-list-area .list-wrapper .icon , .rts-service-four__tab--content .tab__content--details{
        background:var(--color-primary) !important ;
     }
    .single-about-info .single .icon img  , .white-filter , .rts-hosting-feature-five .why-choose-icon{
    filter: invert(1) brightness(1000%) !important;
}

    .glass-effect,header{
        background: var(--color-primary) !important;
        box-shadow: none !important;
        border-radius: 0;
        border: 0;
    }
    .rts-header.style-five.header__default.header-sticky , .rts-service-two .service-two.style-two , .rts-service-four__tab .single__tab.active  , .rts-testimonial__single .content::-webkit-scrollbar-thumb , .hostie-menu .hostie-desktop-menu .hostie-submenu .nav-item a.nav-link::after{
                background: var(--color-primary) !important;
    }
    .rts-service-four__tab .single__tab ,.swiper-slide.swiper-slide-active .rts-testimonial__single .content::-webkit-scrollbar-thumb , .rts-testimonial__single:hover .content::-webkit-scrollbar-thumb{
        background: var(--color-white) !important;
    }
    .rts-service-four__tab .single__tab{
        border-color: var(--color-primary) !important;
    }
    .rts-service-two .service-two-small__content .service-btn {
    background: #ffd0d1 !important;
    color: var(--color-secondary);
}
    .rts-service-two .service-two.style-two::before , .rts-service-two .service-two-small.style-two::before , .rts-testimonial.area-3 .section-inner .rts-testimonial__single::before , .rts-testimonial.area-3 .section-inner .rts-testimonial__single::after{
        border-bottom-color:var(--color-primary) !important;
    }
    .rts-pricing-five .section-inner .pricing-list .pricing-wrapper::after , .rts-brand__slider--single  {
        border-bottom-color: #e89c1e !important;
    }
    .rts-service-two .service-two__content a{
        border-color: var(--color-white) !important;
    }
    .rts-pricing-five .section-inner .pricing-list .pricing-wrapper .content .desc{
        color: rgba(255, 255, 255, 0.8) !important;
    }
    .rts-service-two .service-two-small.style-two , .rts-testimonial__single ,.rts-testimonial.area-3 .section-inner .rts-testimonial__single::before{
        background: var(--color-white) !important;
    }
    .rts-blog__single--meta .cat__date .date{
        color:#8e8e8e ;
    }
    
    .rts-testimonial__single{
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
    }
    



    
      
.rts-hero-five{
    padding: 90px 0px;
}
      .rts-header.style-five{
        top: 0 !important;
      }
      .rts-header.style-five .rts-header__wrapper .rts-header__menu .hostie-menu .hostie-desktop-menu .menu-item .hostie-dropdown-main-element{
        color:var(--color-white);
      }
     .hostie-menu .hostie-desktop-menu .menu-item.active a.hostie-dropdown-main-element , .hostie-menu .hostie-desktop-menu .menu-item:hover a.hostie-dropdown-main-element , .hostie-menu .hostie-desktop-menu .menu-item:hover.hostie-has-dropdown .hostie-dropdown-main-element::before{
        color: var(--color-white) !important;
    }
     .hostie-menu .hostie-desktop-menu .menu-item.active .hostie-dropdown-main-element::after  , .hostie-menu .hostie-desktop-menu .menu-item:hover .hostie-dropdown-main-element::after , .rts-footer__widget a.footer__logo{
        background: var(--color-white) !important;
    }
    .hostie-menu .hostie-desktop-menu .hostie-has-dropdown .hostie-dropdown-main-element::before{
        color: var(--color-white);
    }
    .single__tab.tab__btn.active .tab__title {
        color: var(--color-white) !important;
    }
  
    .pricing-wrapper , .rts-testimonial.area-3 .section-inner .rts-testimonial__single::after{
background: #E89C1E !important;
background: linear-gradient(232deg, #f95f62 0%, var(--color-primary) 66%) !important;    }

.rts-hero-five .banner-content .banner-btn{
    padding-top: 18px !important;
}
.bg-transparent{
    background: transparent !important;
}
.stroke-btn.btn__long.rts-btn{
    border: 1px solid var(--color-primary);
    padding: 16px 10px !important;
    min-width:fit-content;
    border-radius: 4px;
    text-align: center;
    max-width: max-content;
    background-color: transparent !important;
    color: var(--color-primary);
}
.stroke-btn.btn__long.rts-btn:hover{
    border: 1px solid var(--color-primary) !important;
   background: linear-gradient(232deg, #fa494c 0%, var(--color-primary) 100%) !important ;
    color: var(--color-white) !important;
}
.mb-10{
    margin-bottom: 10px !important;
}
.rts-about-reseller .hosting-info__title , .rts-about-reseller .single-about-info .single .content h6 , .text-black , .rts-service-two .service-two-small__content .service-title , .rts-service-four__tab .single__tab .tab__title , .rts-blog__single--meta .title {
color: #000 !important;
}
.new-footer-bg-color{
    background-color: #000217 !important;
}
.social__media--list .media:hover{
background-color: var(--color-primary) !important;
border-color: var(--color-primary);
}
footer .rts-footer__widget a.footer__logo{
        background-color: var(--color-white) !important;
    border-radius: 10px !important;
    padding: 6px !important;
}
footer .rts-footer__widget a.footer__logo img{
        height: 64px !important;
}
footer .contact-method div.footer-mob-icon i{
    color: var(--color-primary) !important;
}
.rts-footer__widget--menu ul li a:hover{
    text-decoration-color:  var(--color-primary) !important;
}
 .rts-footer__copyright-two__wrapper .payment__method a{
    color: var(--color-white) !important;
}
 .rts-footer__copyright-two__wrapper .payment__method a:hover , .rts-footer .contact-method a:hover , .progress-wrap::after{
    color: var(--color-primary) !important;
}
.progress-wrap svg.progress-circle path{
    stroke: var(--color-primary) !important;
}
.progress-wrap::after{
    border-color: var(--color-primary) !important;
}
 html body .loader:after{
    border-top-color: var(--color-primary) !important;
    border-right-color: var(--color-primary) !important;
    border-bottom-color: var(--color-primary) !important;
}


@media (max-width: 576px) {
    .mt-0p{
margin-top: 00px !important;
    }
    
}