Old Pre-Design CSS Fixes
VEGA HEADER ICON HOVER
/* icons hover */
.usp-row .graphicWidget{
border-radius: 50%;
transition: all 0.3s ease;
border-radius: 50%;
background: rgba(255, 255, 255, 0) !important;
}
.usp-row .graphicWidget:hover {
background: rgba(255, 255, 255, 0.3) !important;
border-radius: 50%;
}
.usp-row svg{
padding:20px;
}
VEGA SHADOW
div.u_######## li {
-webkit-box-shadow:inset 15px 0px 25px -10px rgba(0,0,0,0.75) !important;
-moz-box-shadow:inset 15px 0px 25px -10px rgba(0,0,0,0.75) !important;
box-shadow:inset 15px 0px 25px -10px rgba !important;
}
DELTA ICON FLIP
.usp-col .svg:hover{
transform: rotateY(-180deg);
transition: 0.5s;
}
DELTA INTERNAL ICON FLIP
.u_######## .svg { -webkit-transition: all 0.35s linear; -moz-transition: all 0.35s linear; -ms-transition: all 0.35s linear; -o-transition: all 0.35s linear; transition: all 0.35s linear; }
.u_######## .svg:hover { -webkit-transform: rotateY(180deg); -moz-transform: rotateY(180deg); -ms-transform: rotateY(180deg); -o-transform: rotateY(180deg); transform: rotateY(180deg); }
