2026-03-18 22:36:12 +00:00

82 lines
2.0 KiB
CSS

#cbm-form-loader {
height:60px;
width:60px;
margin:0px auto;
position:relative;
-webkit-animation: rotation .6s infinite linear;
-moz-animation: rotation .6s infinite linear;
-o-animation: rotation .6s infinite linear;
animation: rotation .6s infinite linear;
border-left:6px solid rgba(255,90,110,.15);
border-right:6px solid rgba(255,90,110,.15);
border-bottom:6px solid rgba(255,90,110,.15);
border-top:6px solid rgba(255,90,110,.8);
border-radius:100%;
display: none;
}
@-webkit-keyframes rotation {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
from {-moz-transform: rotate(0deg);}
to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
from {-o-transform: rotate(0deg);}
to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
from {transform: rotate(0deg);}
to {transform: rotate(359deg);}
}
div.request-help-inputs .fas.fa-asterisk {
float: right;
margin-top: -25px;
margin-right: 5px;
font-size: 10px;
color: red;
}
/*Left Shadow*/
.request-help-shadow {
position: fixed;
top: 0;
left: 0;
z-index: 101;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.4);
content: '';
opacity: 0;
-webkit-transform: translate3d(100%,0,0);
transform: translate3d(100%,0,0);
-webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
transition: opacity 0.4s, transform 0s 0.4s;
-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
transition-timing-function: cubic-bezier(0.7,0,0.3,1)
}
.request-help-shadow.pull {
opacity: 1;
-webkit-transition: opacity 0.8s;
transition: opacity 0.8s;
-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
transition-timing-function: cubic-bezier(0.7,0,0.3,1);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.banner-area .iti__selected-dial-code , .banner-area .iti__arrow {
height: auto;
}
.banner-area .box-cell .container {
height: auto;
}