@import url('../fonts/index.css');
@import url('bootstrap-icons.min.css');






.elm_c_btn.is_main {
    opacity: 1;
    margin: 0;
    cursor: pointer;
	display: flex;
	animation: jump-shaking 3s infinite;
}
.elm_c_btn.is_main:hover, .elm_c_btn.is_main.is_active{
	animation: unset;
}
.elm_c_btn.is_main:before, .elm_c_btn.is_main:after{
	content:'';
	width: 45px;
	height: 45px;
	background-color: inherit;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
	visibility:hidden
}
.elm_c_btn.is_main:hover{
	box-shadow: none;
}
.elm_c_btn.is_main:hover:before{
	opacity: 0.2;
	visibility:visible;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
.elm_c_btn.is_main:hover:after{
	opacity: 0.1;
	visibility:visible;
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
}
.elm_c_btn i{
    font-size: 25px;
}

.elm_c_btn.is_main .close, .elm_c_btn.is_main.is_active .open{
	display: none
}
.elm_c_btn.is_main.is_active .close{
	display: block;
}
.elm_c_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: var(--maincolor);
    color: white;
    border-radius: 50%;
    margin-top: 7px;
    box-shadow: 6px 7px 28px -12px rgba(16, 16, 16, 0.3);
    display: none
}
.elm_c_btn:hover:not(.is_main){
	transform: scale(0.9)
}
.elm_c_btn svg {
    fill: white;
    stroke: #FFF;
    width: 26px;
    height: 26px;
    margin: auto;
    display: block;
    margin-top: 16px;
    vertical-align: middle;
}
.elm_c_btn img {
	max-width: 26px;
    height: auto;
}


.elm_c_wrap {
    position: fixed;
    right: 25px;
    bottom: 45px;
    z-index: 999;
}
.body_ismobile .elm_c_wrap.elm_c_top{
	left: 12px;
    bottom: 90px;
}

.elm_c_btn.btn_c_all{
    background: #25d366;
}

@keyframes jump-shaking {
    0% { transform: translateX(0) }
    25% { transform: translateY(-9px) }
    35% { transform: translateY(-9px) rotate(17deg) }
    55% { transform: translateY(-9px) rotate(-17deg) }
    65% { transform: translateY(-9px) rotate(17deg) }
    75% { transform: translateY(-9px) rotate(-17deg) }
    100% { transform: translateY(0) rotate(0) }
  }


.privacypopup .modal-header {
   background: #fff !important;
}  

.privacypopup .modal-header{
        background: #fff;
    color: #000;
    padding: 19px 18px;
    border-bottom: 1px solid #00000033;
}


 .thank-you-content {
            text-align: center;
            padding: 40px;
        }

        .success-icon {    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #30ffa8 0%, #13583b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-icon i {
            font-size: 50px;
            color: white;
        }

        .thank-you-content h2 {
            font-size: 24px;
            font-weight: 700;
            color: #3b3c3f;
            margin-bottom: 16px;
        }

        .thank-you-content p {
            font-size: 16px;
            color: #505254;
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .close-btn {
            padding: 10px 20px;
     background:linear-gradient(135deg, #a19797 0%, #000000 100%);
         color: #fff;
    text-decoration: none;
    border-radius: 12px;
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.75px;
    font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(224, 228, 245, 0.3);
            border: none;
            cursor: pointer;
        }

        .close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px  rgba(224, 228, 245, 0.3);
            color: white;
        }

          @media (max-width: 768px) {
           

            .thank-you-content {
                padding: 40px 24px;
            }

            .thank-you-content h2 {
                font-size: 26px;
            }
        }


        .btn-closee {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    background: #000;
    color: #fff;
    align-items: center;
    font-weight: bold;
    justify-content: center;
    position: absolute;
    top: 10px;
        font-size: 28px;

    right: 19px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.19), 0 6px 3px 0 rgba(0, 0, 0, 0.23);
}
.privacypopup .modal-title{
        font-family: "Plus_Jakarta_Sans-Medium";
        font-size: 20px;
            letter-spacing: 0.80px;
}
.privacypopup p{
    font-size: 15px;
        margin-bottom: 16px;

}
.modal-backdrop{
        --bs-backdrop-opacity: 0.8;
}
.privacypopup a{
    text-decoration: none;
}

.privacypopup h2{
    margin-bottom: 8px;
}