@-webkit-keyframes bouncingLoader {
from {
width: 0.1rem;
height: 0.1rem;
opacity: 1;
-webkit-transform: translate3d(0);
transform: translate3d(0);
}
to {
width: 1rem;
height: 1rem;
opacity: 0.1;
-webkit-transform: translate3d(0, -1rem, 0);
transform: translate3d(0, -1rem, 0);
}
}
@keyframes bouncingLoader {
from {
width: 0.1rem;
height: 0.1rem;
opacity: 1;
-webkit-transform: translate3d(0);
transform: translate3d(0);
}
to {
width: 1rem;
height: 1rem;
opacity: 0.1;
-webkit-transform: translate3d(0, -1rem, 0);
transform: translate3d(0, -1rem, 0);
}
}
@-webkit-keyframes twirlAnimation {
0% {
-webkit-transform: translate(0, 0) rotate(0deg);
transform: translate(0, 0) rotate(0deg);
}
20% {
-webkit-transform: translate(16px, -1px) rotate(36deg);
transform: translate(16px, -1px) rotate(36deg);
}
40% {
-webkit-transform: translate(40px, 15px) rotate(72deg);
transform: translate(40px, 15px) rotate(72deg);
}
60% {
-webkit-transform: translate(40px, 30px) rotate(108deg);
transform: translate(40px, 30px) rotate(108deg);
}
80% {
-webkit-transform: translate(-30px, 15px) rotate(144deg);
transform: translate(-30px, 15px) rotate(144deg);
}
100% {
-webkit-transform: translate(0, 0) rotate(0deg);
transform: translate(0, 0) rotate(0deg);
}
}
@keyframes twirlAnimation {
0% {
-webkit-transform: translate(0, 0) rotate(0deg);
transform: translate(0, 0) rotate(0deg);
}
20% {
-webkit-transform: translate(16px, -1px) rotate(36deg);
transform: translate(16px, -1px) rotate(36deg);
}
40% {
-webkit-transform: translate(40px, 15px) rotate(72deg);
transform: translate(40px, 15px) rotate(72deg);
}
60% {
-webkit-transform: translate(40px, 30px) rotate(108deg);
transform: translate(40px, 30px) rotate(108deg);
}
80% {
-webkit-transform: translate(-30px, 15px) rotate(144deg);
transform: translate(-30px, 15px) rotate(144deg);
}
100% {
-webkit-transform: translate(0, 0) rotate(0deg);
transform: translate(0, 0) rotate(0deg);
}
}
@-webkit-keyframes rotated {
0% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotated {
0% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes rotatey {
0% {
-webkit-transform: rotateY(-360deg) rotateX(-90deg);
transform: rotateY(-360deg) rotateX(-90deg);
}
100% {
-webkit-transform: rotateY(360deg) rotateX(90deg);
transform: rotateY(360deg) rotateX(90deg);
}
}
@keyframes rotatey {
0% {
-webkit-transform: rotateY(-360deg) rotateX(-90deg);
transform: rotateY(-360deg) rotateX(-90deg);
}
100% {
-webkit-transform: rotateY(360deg) rotateX(90deg);
transform: rotateY(360deg) rotateX(90deg);
}
}
@-webkit-keyframes ripple-white {
0% {
opacity: 0;
-webkit-transform: scale(1);
transform: scale(1);
}
40% {
opacity: 1;
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
100% {
opacity: 0;
-webkit-transform: scale(1.4);
transform: scale(1.4);
}
}
@keyframes ripple-white {
0% {
opacity: 0;
-webkit-transform: scale(1);
transform: scale(1);
}
40% {
opacity: 1;
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
100% {
opacity: 0;
-webkit-transform: scale(1.4);
transform: scale(1.4);
}
}
@-webkit-keyframes scale-up-three {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
40% {
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes scale-up-three {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
40% {
-webkit-transform: scale(0.4);
transform: scale(0.4);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@-webkit-keyframes sticky {
0% {
top: -200px;
}
100% {
top: 0;
}
}
@keyframes sticky {
0% {
top: -200px;
}
100% {
top: 0;
}
}
.imp-tooltip{
-webkit-transition: all 0.4s ease-out 0s;
transition: all 0.4s ease-out 0s;
}
.imp-tooltip.imp-tooltip-visible{
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3); 
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.cssmagic{
-webkit-transition: all 0.4s ease-out 0s;
transition: all 0.4s ease-out 0s;
}
.cssmagic{
height:44px;
width: 44px;
background-color: white;
color: #000;
border-radius: 50%;
line-height: 100px;
text-align: center;
display: inline-block;
font-size: 30px;
position: relative;
}
.cssmagic:before {
position: absolute;
content: '';
left: 0;
top: 0;
height: 100%;
width: 100%;
border: 1px solid #fff;
-webkit-animation: ripple-white 1s linear infinite;
animation: ripple-white 1s linear infinite;
border-radius: 50%;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.cssmagic:after {
position: absolute;
content: '';
left: 0;
top: 0;
height: 100%;
width: 100%;
border: 1px solid #fff;
-webkit-animation: ripple-white 1.5s linear infinite;
animation: ripple-white 1.5s linear infinite;
border-radius: 50%;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.imp-shape img {
display:none!important
}
.cssmagic img{
display:none!important
}
.cssmagic i {
top: 8px;
left: 11px;
position: absolute;
font-size:30px;
}
.cssmagic .fa-plus{
color:#fff;
-webkit-transition: all 0.4s ease-out 0s;
transition: all 0.4s ease-out 0s;
font-weight: 300;
}
.cssmagic:hover {
background-color:#a59d87!important
}
.cssmagic:hover .fa-plus{
color:#e0b400;
}
.cssmagic:hover:before {
border: 1px solid #000;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3); 
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.cssmagic:hover:after {
border: 1px solid #000;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.imp-shape-highlighted .cssmagic {
background-color:#000!important
}
.imp-shape-highlighted .cssmagic .fa-plus{
color:#e0b400;
}
.imp-shape-highlighted .cssmagic:before {
border: 1px solid #000;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.imp-shape-highlighted .cssmagic:after {
border: 1px solid #000;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
} .cssmagicy{
height:100%;
width: 100%;
color: #000;
border-radius: 50%;
line-height: 100px;
text-align: center;
display: inline-block;
font-size: 30px;
position: relative;
-webkit-transition: all 0.4s ease-out 0s;
transition: all 0.4s ease-out 0s;
}
.cssmagicy:before {
position: absolute;
content: '';
left: 0;
top: 0;
height: 100%;
width: 100%;
border: 1px solid #fff;
-webkit-animation: ripple-white 1s linear infinite;
animation: ripple-white 1s linear infinite;
border-radius: 50%;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.cssmagicy:after {
position: absolute;
content: '';
left: 0;
top: 0;
height: 100%;
width: 100%;
border: 1px solid #fff;
-webkit-animation: ripple-white 1.5s linear infinite;
animation: ripple-white 1.5s linear infinite;
border-radius: 50%;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.cssmagicy:hover:before {
border: 1px solid #000;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3); 
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.cssmagicy:hover:after {
border: 1px solid #000;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.imp-shape-highlighted .cssmagicy:before {
border: 1px solid #000;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}
.imp-shape-highlighted .cssmagicy:after {
border: 1px solid #000;
-webkit-box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
box-shadow: 0px 5px 15px 5px rgba(0,0,0,0.3);
}