body,html{
    font-family: "Montserrat", sans-serif;
}


@keyframes heart {
	0% {
		transform: scale(1)
	}

	4% {
		transform: scale(1.25)
	}

	8% {
		transform: scale(1.5)
	}

	12% {
		transform: scale(1.75)
	}

	16% {
		transform: scale(1)
	}

	20% {
		transform: scale(1.1)
	}

	24% {
		transform: scale(1.2)
	}

	28% {
		transform: scale(1)
	}

	to {
		transform: scale(1)
	}
}
.animate-droping-heart{
    animation: heart 1.5s linear infinite;
    transition-delay: 1s;
}

@keyframes waveOut {
	0% {
		transform: scale(0)
	}

	10% {
		transform: scale(.25)
	}

	20% {
		transform: scale(.5)
	}

	30% {
		transform: scale(.75)
	}

	40% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.1)
	}

	60% {
		transform: scale(1.2)
	}

	to {
		transform: scale(1)
	}
}

.animate-waving-out {
    animation: waveOut .3s linear;
}

.loading{
    position:fixed;
    top:0;left:0;width:100%;height:100%;
    z-index:999;
    background-image: linear-gradient(to right, #db2777, #ea580c);
    display:flex;
    align-items:center;
    justify-content: center;
}
.loading svg{
    width:200px;
}

.trans{
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .5s;
}
.trans-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}

.btn-custom, .btn-custom:hover, .btn-custom:active, .btn-custom:focus{
    border-radius:6px;
    padding:10px 50px;
    font-weight:bold;
}
.btn-red, .btn-red:hover, .btn-red:active, .btn-red:focus{
    background:linear-gradient(to left, #ea384d, #d31027);
    border:2px solid #ea384d;
    color:#fff;
}
.btn-white, .btn-white:hover, .btn-white:active, .btn-white:focus{
    background-color:#fff;
    color:#d31027;
}
.btn-form-white, .btn-form-white:active, .btn-form-white:focus{
    background-color:transparent;
    border:2px solid #f3f4f6;
    color:#000;
    padding:17px;
    width:100%;
}
.btn-form-white:hover{
    background-color:#eaeaea;
    border:2px solid #f3f4f6;
    color:#000;
    padding:17px;
    width:100%;
}

.btn-grey, .btn-grey:active, .btn-grey:focus, .btn-grey:hover{
    background:#333333;
    padding:6px 12px;
    border-radius:12px;
    color:#fff;
    font-weight:normal;
    font-size:12px;
}
.btn-pink, .btn-pink:active, .btn-pink:focus, .btn-pink:hover{
    background:#db2777;
    padding:6px 12px;
    border-radius:12px;
    color:#fff;
    font-weight:normal;
    font-size:12px;
}
.btn-purple, .btn-purple:active, .btn-purple:focus, .btn-purple:hover{
    background:#6366F1;
    padding:6px 12px;
    border-radius:12px;
    color:#fff;
    font-weight:normal;
    font-size:12px;
}
.btn-yellow, .btn-yellow:active, .btn-yellow:focus, .btn-yellow:hover{
    background:#facc15;
    padding:6px 12px;
    border-radius:12px;
    color:#fff;
    font-weight:normal;
    font-size:12px;
}
.btn-blue, .btn-blue:active, .btn-blue:focus, .btn-blue:hover{
    background:#2563EB;
    padding:6px 12px;
    border-radius:12px;
    color:#fff;
    font-weight:normal;
    font-size:12px;
}

.btn-orange, .btn-orange:active, .btn-orange:focus, .btn-orange:hover{
    background-image: linear-gradient(to right,#ffb664,#e87b40);
    border-radius:12px;
    color:#fff;
}

.section{
    padding:80px 0px;
}

.cred{
    color:#ea384d;
}

#errorModal .modal-content{
    background:#db2777;
    color:#fff;
}
#errorModal .modal-content .warning{
    color:#fff;
    fill:#fff;
    width:80px;height:80px;
    margin-bottom:25px;
}
#errorModal .modal-body{
    padding:35px;
}
#errorModal .modal-body .closebtn{
    color:#fff;
    fill:#fff;
    border:2px solid #fff;
    border-radius:50%;
    display:block;
    position:absolute;
    top:10px;right:10px;
    width:32px;height:32px;
    cursor:pointer;
}
#errorModal .modal-body .closebtn:hover{
    color:#000;
    border-radius:6px;
}

.modal .modal-header{
    background:#f5f7fa;
    padding:10px 15px;
    display:block;
    text-align:center;
    position: relative;
    border-top-left-radius:16px;
    border-top-right-radius:16px;
}
.modal .modal-header h5{
    font-size:18px;
}
.modal-header .btn-close{
    position: absolute;
    right:15px;
    top:15px;
    opacity:1;
}
.modal-content{
    border-radius:16px;
}
.modal-dialog{
    display:flex;
    height:100%;
    align-items:center;
    justify-content: center;
    margin-top:0;margin-bottom:0;
    max-width:420px;
}
.modal-dialog.big{
    max-width:800px;
}
.modal-backdrop{
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.5);
}
.modal-backdrop.show{
    opacity: 1;
}
.modal .form-control{
    background:#f5f7fa;
    border-radius:6px;
    border:none;
    outline:none;
    padding:15px 20px;
}
.modal-footer{
    background:#f5f7fa;
    border-bottom-left-radius:16px;
    border-bottom-right-radius:16px;
    padding:20px;
    display:block;
    font-size:14px;
}
.modal-footer small, .modal-footer a{
    color:#9ca3af;
}
.modal-header .backbtn{
    position: absolute;
    left:15px;
    top:15px;
    width:16px;
    cursor:pointer;
}


.ui-slider-horizontal{
    height:5px;
    background:#111111;
}
.light .ui-slider-horizontal{
    background:#e5e7eb;
}
.ui-widget.ui-widget-content{
    border:none;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
    background:#dc2626;
    border-radius:50%;
    border:none;
}
.ui-slider .ui-slider-range{
    background:#fca5a5;
}
.ui-slider .ui-slider-handle{
    width:16px;height:16px;
    top:-5px;
    outline:none!important;
}

@media only screen and (max-width:991px){
	
	.start{
        padding:150px 50px;
    }
    .modal-dialog{
        margin:0 auto;
    }
		
}