@charset "UTF-8";
@charset "UTF-8";
@charset "UTF-8";
@charset "UTF-8";
@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}.lvca-container, .lvca-grid-container {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.lvca-container *, .lvca-container *::after, .lvca-container *::before, .lvca-grid-container *, .lvca-grid-container *::after, .lvca-grid-container *::before {
-webkit-box-sizing: inherit;
box-sizing: inherit; }
.lvca-container ol, .lvca-container ul, .lvca-container ol > li, .lvca-container ul > li, .lvca-container ol:hover, .lvca-container ul:hover, .lvca-container ul > li:hover, .lvca-container ol > li:hover, .lvca-container ol > li > a, .lvca-container ul > li > a, .lvca-container ol > li > a:hover, .lvca-container ul > li > a:hover, .lvca-container img, .lvca-grid-container ol, .lvca-grid-container ul, .lvca-grid-container ol > li, .lvca-grid-container ul > li, .lvca-grid-container ol:hover, .lvca-grid-container ul:hover, .lvca-grid-container ul > li:hover, .lvca-grid-container ol > li:hover, .lvca-grid-container ol > li > a, .lvca-grid-container ul > li > a, .lvca-grid-container ol > li > a:hover, .lvca-grid-container ul > li > a:hover, .lvca-grid-container img {
padding: 0;
margin: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none;
list-style: none;
background: none; }
.lvca-container ol:before, .lvca-container ol:after, .lvca-container ul:before, .lvca-container ul:after, .lvca-container ol > li:before, .lvca-container ol > li:after, .lvca-container ul > li:before, .lvca-container ul > li:after, .lvca-container ol:hover:before, .lvca-container ol:hover:after, .lvca-container ul:hover:before, .lvca-container ul:hover:after, .lvca-container ul > li:hover:before, .lvca-container ul > li:hover:after, .lvca-container ol > li:hover:before, .lvca-container ol > li:hover:after, .lvca-container ol > li > a:before, .lvca-container ol > li > a:after, .lvca-container ul > li > a:before, .lvca-container ul > li > a:after, .lvca-container ol > li > a:hover:before, .lvca-container ol > li > a:hover:after, .lvca-container ul > li > a:hover:before, .lvca-container ul > li > a:hover:after, .lvca-container img:before, .lvca-container img:after, .lvca-grid-container ol:before, .lvca-grid-container ol:after, .lvca-grid-container ul:before, .lvca-grid-container ul:after, .lvca-grid-container ol > li:before, .lvca-grid-container ol > li:after, .lvca-grid-container ul > li:before, .lvca-grid-container ul > li:after, .lvca-grid-container ol:hover:before, .lvca-grid-container ol:hover:after, .lvca-grid-container ul:hover:before, .lvca-grid-container ul:hover:after, .lvca-grid-container ul > li:hover:before, .lvca-grid-container ul > li:hover:after, .lvca-grid-container ol > li:hover:before, .lvca-grid-container ol > li:hover:after, .lvca-grid-container ol > li > a:before, .lvca-grid-container ol > li > a:after, .lvca-grid-container ul > li > a:before, .lvca-grid-container ul > li > a:after, .lvca-grid-container ol > li > a:hover:before, .lvca-grid-container ol > li > a:hover:after, .lvca-grid-container ul > li > a:hover:before, .lvca-grid-container ul > li > a:hover:after, .lvca-grid-container img:before, .lvca-grid-container img:after {
display: none; }
.lvca-container a, .lvca-grid-container a {
text-decoration: initial; }
.lvca-container img, .lvca-grid-container img {
max-width: 100%;
width: auto;
height: auto; } .lvca-container {
margin-left: auto;
margin-right: auto; }
.lvca-container::after {
clear: both;
content: "";
display: block; }
.panel-grid .widget {
border: 0; }
.lvca-center {
text-align: center; }
.lvca-grid-container {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px); }
.lvca-grid-container::after {
clear: both;
content: "";
display: block; }
.lvca-grid-container .lvca-grid-item {
min-height: 1px; }
@media (max-width: 479px) {
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media (min-width: 480px) and (max-width: 800px) {
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item:nth-child(2n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item:nth-child(3n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item:nth-child(4n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item:nth-child(5n+1) {
clear: left; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item:nth-child(6n+1) {
clear: left; } }
.lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; }
@media only screen and (min-width: 480px) {
.lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } }
@media only screen and (min-width: 801px) {
.lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100% - 40px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50% - 30px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333% - 26.66667px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25% - 25px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20% - 24px);
float: left;
margin-left: 20px; }
.lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667% - 23.33333px);
float: left;
margin-left: 20px; } } .lvca-gapless-grid .lvca-grid-container {
margin-left: 0;
margin-right: 0;
width: auto; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-mobile-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-tablet-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-1 .lvca-grid-item {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-2 .lvca-grid-item {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-3 .lvca-grid-item {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-4 .lvca-grid-item {
width: calc(25%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-5 .lvca-grid-item {
width: calc(20%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-grid-container.lvca-grid-desktop-6 .lvca-grid-item {
width: calc(16.66667%);
float: left;
margin-left: 0px; } } .lvca-gapless-grid .lvca-masonry { }
.lvca-gapless-grid .lvca-masonry .lvca-grid-item {
clear: none !important; }
.lvca-gapless-grid .lvca-masonry .lvca-grid-sizer {
width: calc(8.33333%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-mobile-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; }
@media only screen and (min-width: 480px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-tablet-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } }
@media only screen and (min-width: 801px) {
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-1 .lvca-grid-item.lvca-wide {
width: calc(100%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-2 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-3 .lvca-grid-item.lvca-wide {
width: calc(66.66667%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-4 .lvca-grid-item.lvca-wide {
width: calc(50%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-5 .lvca-grid-item.lvca-wide {
width: calc(40%);
float: left;
margin-left: 0px; }
.lvca-gapless-grid .lvca-masonry.lvca-grid-desktop-6 .lvca-grid-item.lvca-wide {
width: calc(33.33333%);
float: left;
margin-left: 0px; } } .lvca-container .lvca-thumbnailslider.lvca-flexslider {
margin-top: 15px; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide {
margin: 0 5px 0 0; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img {
display: block;
opacity: .5;
cursor: pointer; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide img:hover {
opacity: 1; }
.lvca-container .lvca-thumbnailslider.lvca-flexslider .lvca-slide.lvca-flex-active-slide img {
opacity: 1;
cursor: default; }
.lvca-container .lvca-flex-direction-nav {
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-direction-nav li {
position: initial; }
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
opacity: 1;
text-shadow: none;
background: none;
color: #888;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
width: 28px;
height: 28px;
margin: -14px 0 0;
bottom: initial;
left: initial;
right: initial;
top: 50%;
text-indent: 0;
text-align: center;
color: #aaa;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
outline: none; }
.lvca-container .lvca-flex-direction-nav a:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:before, .lvca-container .lvca-flex-direction-nav a:hover:hover:before {
margin: 2px;
vertical-align: middle;
display: inline;
font-family: inherit !important;
opacity: 1; }
.lvca-container .lvca-flex-direction-nav a:hover, .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover {
color: #888; }
.lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover, .lvca-dark-bg .lvca-container .lvca-flex-direction-nav a:hover:hover {
color: #aaa; }
@media only screen and (max-width: 960px) {
.lvca-container .lvca-flex-direction-nav a, .lvca-container .lvca-flex-direction-nav a:hover {
display: none; } }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev {
left: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-prev:before {
content: "\e900"; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next {
right: -30px; }
.lvca-container .lvca-flex-direction-nav a.lvca-flex-next:before {
content: "\e901"; }
.lvca-container .lvca-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
padding: 0 !important;
margin: 0 !important; }
.lvca-container .lvca-flex-control-nav li, .lvca-container .lvca-flex-control-nav li:hover {
margin: 0 8px 0 0;
padding: 0;
border: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lvca-container .lvca-flex-control-nav li a, .lvca-container .lvca-flex-control-nav li a:hover {
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.2s ease-in 0s;
transition: all 0.2s ease-in 0s;
display: inline-block;
vertical-align: middle;
outline: none; }
.lvca-dark-bg .lvca-container .lvca-flex-control-nav li a, .lvca-dark-bg .lvca-container .lvca-flex-control-nav li a:hover {
background: #ccc;
border-color: #ccc; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover {
background: none; }
.lvca-container .lvca-flex-control-nav li a.lvca-flex-active, .lvca-container .lvca-flex-control-nav li a:hover.lvca-flex-active {
width: 14px;
height: 14px; }
.lvca-container .lvca-flex-control-thumbs {
bottom: -120px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs {
bottom: -80px; } }
.lvca-container .lvca-flex-control-thumbs li {
width: auto;
float: none; }
.lvca-container .lvca-flex-control-thumbs li img {
max-width: 100%;
width: 150px; }
@media only screen and (max-width: 600px) {
.lvca-container .lvca-flex-control-thumbs li img {
width: 100px; } } .slick-loading .slick-list {
background: #fff url(https://fpfpuertorico.com/wp-content/plugins/addons-for-visual-composer/assets/css/ajax-loader.gif) center center no-repeat; }
@media only screen and (max-width: 1024px) {
.slick-slider {
padding: 0 10px; } }
.lvca-container .slick-prev, .lvca-container .slick-next {
position: absolute;
bottom: initial;
left: initial;
right: initial;
top: 50%;
width: 28px;
height: 28px;
margin: -14px 0 0; }
.rtl .lvca-container .slick-prev, .rtl .lvca-container .slick-next {
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
direction: ltr; }
.lvca-container .slick-prev, .lvca-container .slick-prev:before, .lvca-container .slick-prev:after, .lvca-container .slick-next, .lvca-container .slick-next:before, .lvca-container .slick-next:after {
text-shadow: none;
background: none;
border: none;
padding: 0;
opacity: 1;
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 24px;
color: #aaa;
overflow: hidden;
-webkit-box-shadow: none;
box-shadow: none;
outline: none;
text-indent: 0;
text-align: center;
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s; }
.lvca-container .slick-prev:before, .lvca-container .slick-next:before {
margin: 2px;
vertical-align: middle; }
.lvca-container .slick-prev:hover:before, .lvca-container .slick-prev:hover:after, .lvca-container .slick-next:hover:before, .lvca-container .slick-next:hover:after {
color: #888; }
.lvca-dark-bg .lvca-container .slick-prev:before, .lvca-dark-bg .lvca-container .slick-prev:after, .lvca-dark-bg .lvca-container .slick-next:before, .lvca-dark-bg .lvca-container .slick-next:after {
color: #888; }
.lvca-dark-bg .lvca-container .slick-prev:hover:before, .lvca-dark-bg .lvca-container .slick-prev:hover:after, .lvca-dark-bg .lvca-container .slick-next:hover:before, .lvca-dark-bg .lvca-container .slick-next:hover:after {
color: #aaa;
background: none; }
.lvca-container .slick-prev {
left: -40px; }
.lvca-container .slick-prev:before {
content: "\e900"; }
.lvca-container .slick-next {
right: -40px; }
.lvca-container .slick-next:before {
content: "\e901"; }
.lvca-container ul.slick-dots {
width: 100%;
position: absolute;
bottom: -30px;
text-align: center;
padding: 0;
margin: 0; }
.lvca-container ul.slick-dots li {
margin: 0 8px 0 0;
padding: 0;
display: inline-block;
font-size: 0; }
.lvca-container ul.slick-dots li button {
padding: 0;
background: #aaa;
border: 1px solid #aaa;
border-radius: 50%;
width: 12px;
height: 12px;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-transition: background 0.3s ease-in-out 0s;
transition: background 0.3s ease-in-out 0s;
font-size: 0;
outline: none; }
.lvca-container ul.slick-dots li button:before {
display: none; }
.lvca-dark-bg .lvca-container ul.slick-dots li button {
background: #888;
border-color: #888; }
.lvca-container ul.slick-dots li button:hover, .lvca-container ul.slick-dots li.slick-active button {
background: none;
border-color: #aaa; }
.lvca-container ul.slick-dots li.slick-active button {
width: 14px;
height: 14px; } .lvca-widget-heading {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 40px;
line-height: 52px;
text-align: center; }
@media only screen and (max-width: 767px) {
.lvca-widget-heading {
font-size: 32px;
line-height: 44px; } } .lvca-spacer {
clear: both; } input.lvca-button, button.lvca-button, a.lvca-button, .lvca-button:active, .lvca-button:visited {
display: inline-block;
text-align: center;
line-height: 1;
cursor: pointer;
-webkit-appearance: none;
vertical-align: middle;
border: 1px solid transparent;
border-radius: 3px;
padding: 16px 40px;
margin: 0;
font-size: 12px;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 2px;
background-color: #f94213;
color: #fefefe;
outline: none;
-webkit-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s; }
input.lvca-button.lvca-rounded, button.lvca-button.lvca-rounded, a.lvca-button.lvca-rounded, .lvca-button:active.lvca-rounded, .lvca-button:visited.lvca-rounded {
border-radius: 999px; }
input.lvca-button.lvca-large, button.lvca-button.lvca-large, a.lvca-button.lvca-large, .lvca-button:active.lvca-large, .lvca-button:visited.lvca-large {
padding: 20px 60px; }
input.lvca-button.lvca-small, button.lvca-button.lvca-small, a.lvca-button.lvca-small, .lvca-button:active.lvca-small, .lvca-button:visited.lvca-small {
padding: 12px 25px;
font-size: 11px; }
input.lvca-button:hover, button.lvca-button:hover, a.lvca-button:hover, .lvca-button:active:hover, .lvca-button:visited:hover {
background-color: #f9633e;
color: #fefefe; }
input.lvca-button img, input.lvca-button span.lvca-icon, button.lvca-button img, button.lvca-button span.lvca-icon, a.lvca-button img, a.lvca-button span.lvca-icon, .lvca-button:active img, .lvca-button:active span.lvca-icon, .lvca-button:visited img, .lvca-button:visited span.lvca-icon {
margin-right: 10px; }
.lvca-button.lvca-black {
background-color: #363636; }
.lvca-button.lvca-black:hover {
background-color: #434343; }
.lvca-button.lvca-blue {
background-color: #46a5d5; }
.lvca-button.lvca-blue:hover {
background-color: #5bafda; }
.lvca-button.lvca-cyan {
background-color: #57c0dc; }
.lvca-button.lvca-cyan:hover {
background-color: #6cc8e0; }
.lvca-button.lvca-green {
background-color: #00a57d; }
.lvca-button.lvca-green:hover {
background-color: #00bf90; }
.lvca-button.lvca-orange {
background-color: #e87151; }
.lvca-button.lvca-orange:hover {
background-color: #eb8368; }
.lvca-button.lvca-pink {
background-color: #dd5679; }
.lvca-button.lvca-pink:hover {
background-color: #e16b8a; }
.lvca-button.lvca-red {
background-color: #da4f49; }
.lvca-button.lvca-red:hover {
background-color: #de635e; }
.lvca-button.lvca-teal {
background-color: #28c2ba; }
.lvca-button.lvca-teal:hover {
background-color: #2fd4cc; }
.lvca-button.lvca-trans {
color: #333;
background-color: transparent; background-color: rgba(0, 0, 0, 0);
border: 2px solid #a5a5a5; }
.lvca-button.lvca-trans:hover {
background-color: #fff;
color: #333 !important;
border-color: #fff; }
.lvca-button.lvca-semitrans {
color: #fff;
background-color: transparent; background-color: rgba(125, 125, 125, 0.5); }
.lvca-button.lvca-semitrans:hover {
background-color: #fff;
color: #333 !important; } .lvca-post-link-overlay {
position: absolute;
top: 0px;
bottom: 0px;
left: 0px;
right: 0px;
width: 100%;
z-index: 1; }
.lvca-terms a, .lvca-post-title a {
-webkit-transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s; }
.lvca-read-more {
position: relative;
display: inline-block;
font-size: 0.75rem;
line-height: 1;
text-decoration: none;
padding: 8px 15px;
margin-top: 15px;
-webkit-transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s;
transition: all 0.5s ease-out 0s; }
.lvca-post-featured-img-bg {
position: relative;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
margin-bottom: 15px; }@font-face {
font-family: 'lvca-icomoon';
src:    url(//fpfpuertorico.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?qq9b0v);
src:    url(//fpfpuertorico.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.eot?qq9b0v#iefix) format('embedded-opentype'),
url(//fpfpuertorico.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.ttf?qq9b0v) format('truetype'),
url(//fpfpuertorico.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.woff?qq9b0v) format('woff'),
url(//fpfpuertorico.com/wp-content/plugins/addons-for-visual-composer/assets/css/fonts/icomoon/icomoon.svg?qq9b0v#icomoon) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="lvca-icon-"], [class*=" lvca-icon-"] { font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.lvca-icon-arrow-left:before {
content: "\e900";
}
.lvca-icon-arrow-right:before {
content: "\e901";
}
.lvca-icon-aim:before {
content: "\e902";
}
.lvca-icon-behance:before {
content: "\e903";
}
.lvca-icon-dribbble:before {
content: "\e904";
}
.lvca-icon-facebook:before {
content: "\e905";
}
.lvca-icon-flickr:before {
content: "\e906";
}
.lvca-icon-googleplus:before {
content: "\e907";
}
.lvca-icon-linkedin:before {
content: "\e908";
}
.lvca-icon-pinterest:before {
content: "\e909";
}
.lvca-icon-skype:before {
content: "\e90a";
}
.lvca-icon-twitter:before {
content: "\e90b";
}
.lvca-icon-vimeo:before {
content: "\e90c";
}
.lvca-icon-zerply:before {
content: "\e90d";
}
.lvca-icon-quote:before {
content: "\e90e";
}
.lvca-icon-video-play:before {
content: "\e90f";
}
.lvca-icon-email:before {
content: "\e910";
}
.lvca-icon-close:before {
content: "\e911";
}
.lvca-icon-plus:before {
content: "\e912";
}
.lvca-icon-arrow-right-toggle:before {
content: "\e913";
}
.lvca-icon-menu:before {
content: "\e914";
}
.lvca-icon-menu-2:before {
content: "\e915";
}
.lvca-icon-fit-to:before {
content: "\e916";
}
.lvca-icon-full-screen:before {
content: "\e917";
}
.lvca-icon-arrow-left2:before {
content: "\e918";
}
.lvca-icon-arrow-left3:before {
content: "\e919";
}
.lvca-icon-arrow-right2:before {
content: "\e91a";
}
.lvca-icon-arrow-right3:before {
content: "\e91b";
}
.lvca-icon-start:before {
content: "\e91c";
}
.lvca-icon-instagram:before {
content: "\ea92";
}
.lvca-icon-angle-left:before {
content: "\f104";
}
.lvca-icon-angle-right:before {
content: "\f105";
}.wpcf7 .screen-reader-response {
position: absolute;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
width: 1px;
margin: -1px;
padding: 0;
border: 0;
word-wrap: normal !important;
}
.wpcf7 form .wpcf7-response-output {
margin: 2em 0.5em 1em;
padding: 0.2em 1em;
border: 2px solid #00a0d2; }
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
display: none;
}
.wpcf7 form.sent .wpcf7-response-output {
border-color: #46b450; }
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
border-color: #dc3232; }
.wpcf7 form.spam .wpcf7-response-output {
border-color: #f56e28; }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
border-color: #ffb900; }
.wpcf7-form-control-wrap {
position: relative;
}
.wpcf7-not-valid-tip {
color: #dc3232; font-size: 1em;
font-weight: normal;
display: block;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
position: relative;
top: -2ex;
left: 1em;
z-index: 100;
border: 1px solid #dc3232;
background: #fff;
padding: .2em .8em;
width: 24em;
}
.wpcf7-list-item {
display: inline-block;
margin: 0 0 0 1em;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
content: " ";
}
.wpcf7-spinner {
visibility: hidden;
display: inline-block;
background-color: #23282d; opacity: 0.75;
width: 24px;
height: 24px;
border: none;
border-radius: 100%;
padding: 0;
margin: 0 24px;
position: relative;
}
form.submitting .wpcf7-spinner {
visibility: visible;
}
.wpcf7-spinner::before {
content: '';
position: absolute;
background-color: #fbfbfc; top: 4px;
left: 4px;
width: 6px;
height: 6px;
border: none;
border-radius: 100%;
transform-origin: 8px 8px;
animation-name: spin;
animation-duration: 1000ms;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@media (prefers-reduced-motion: reduce) {
.wpcf7-spinner::before {
animation-name: blink;
animation-duration: 2000ms;
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes blink {
from {
opacity: 0;
}
50% {
opacity: 1;
}
to {
opacity: 0;
}
}
.wpcf7 [inert] {
opacity: 0.5;
}
.wpcf7 input[type="file"] {
cursor: pointer;
}
.wpcf7 input[type="file"]:disabled {
cursor: default;
}
.wpcf7 .wpcf7-submit:disabled {
cursor: not-allowed;
}
.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
direction: ltr;
}
.wpcf7-reflection > output {
display: list-item;
list-style: none;
}
.wpcf7-reflection > output[hidden] {
display: none;
}.go-pricing * {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.gw-go * {
background: none;
border: none;
-moz-box-sizing: content-box !important;
-webkit-box-sizing: content-box !important;
box-sizing: content-box !important;
letter-spacing: normal !important;
margin: 0;
outline: none;
padding: 0;
text-transform: none;
text-decoration: none !important;
-moz-hyphens: none;
-webkit-hyphens: none;
hyphens: none;
word-break: normal;
word-break: break-word;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-font-smoothing: antialiased;
}  .gw-go-clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.gw-go-clearfix {
display: inline-block;
}/*\*/.gw-go-clearfix {
display: block;
}/**/.gw-go-clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
} .gw-go-clear {
clear: both;
display: block;
font-size: 0;
height: 0;
line-height: 0;
width: 100%;
} .gw-go-tcenter {
text-align: center;
}
.gw-go-tleft {
text-align: center;
}
.gw-go-tright {
text-align: right;
} .gw-go-video-wrapper {
padding-bottom: 56.25% !important;
position: relative;
height: 0;
}
.gw-go-header-bottom .gw-go-video-wrapper {
margin-bottom: -1px;
}
.gw-go-video-wrapper > div {
position: static !important;
padding-top: 100% !important;
}
.gw-go-video-wrapper iframe {
height: 100%;
left: 0;
margin: 0;
border: none;
outline: none;
position: absolute;
top: 0;
width: 100%;
} .gw-go-img-wrapper {
position: relative;
}
.gw-go img {
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important;
border-radius: 0 !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
display: inline-block;
vertical-align: bottom;
}
img.gw-go-responsive-img {
border: none !important;
height: auto !important;
margin: 0 !important;
padding: 0 !important;
max-width: 100% !important;
width: 100% !important;
}
.gw-go audio,
.gw-go video {
margin: 0;
padding: 0;
max-width: 100% !important;
width: 100% !important;
} .gw-go-gmap img {
max-width: none !important;
}
.gw-go .mejs-container img {
height: auto !important;
max-width: none !important;
width: 100% !important;
}
.gw-go-oldie .me-plugin,
.gw-go-oldie .mejs-mediaelement {
position: static !important;
} .gw-go table {
border: none;
margin: 0 auto;
width: auto;
text-align: center;
}
.gw-go td {
border: none;
margin: 0;
padding: 0 0 10px 0;
}
div.gw-go input {
border: none;
outline: none;
}
.gw-go input[type="text"] {
background: #fff !important;
border: solid 1px #b8b8b8 !important;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
font-size: 12px;
height: 20px;
line-height: 20px;
outline: none;
padding: 3px 5px;
-moz-transition: all 0.15s linear;
-o-transition: all 0.15s linear;
-webkit-transition: all 0.15s linear;
transition: all 0.15s linear;
}
.gw-go input[type="text"]:focus {
border: solid 1px #9d9d9d;
-moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
} .gw-go i {
display: inline-block;
line-height: 1;
position: relative;
vertical-align: middle;
text-align: left;
top: -1px;
}
.gw-go b,
.gw-go strong {
font-weight: bold;
}
.gw-go em {
font-style: italic !important;
}
.gw-go u {
text-decoration: underline !important;
}
.gw-go del {
text-decoration: line-through !important;
} .gw-go {
font-size: 0;
margin: 0 0 -20px 0;
visibility: hidden;
}
.gw-go[data-scroll-offset] {
opacity: 0;
} .vc_editor .gw-go[data-scroll-offset] {
opacity: 1;
}
.cs-preview .cs-content .gw-go[data-scroll-offset] {
opacity: 1;
} [dir="rtl"] .gw-go {
direction: ltr;
}
[dir="rtl"] .gw-go-col-wrap {
direction: rtl;
} .gw-go-1col .gw-go-col-wrap {
width: 100%;
}
.gw-go-2cols .gw-go-col-wrap {
width: 50%;
}
.gw-go-3cols .gw-go-col-wrap {
width: 33.33%;
}
.gw-go-4cols .gw-go-col-wrap {
width: 25%;
}
.gw-go-5cols .gw-go-col-wrap {
width: 20%;
}
.gw-go-6cols .gw-go-col-wrap {
width: 16.66%;
}
.gw-go-7cols .gw-go-col-wrap {
width: 14.285%;
}
.gw-go-8cols .gw-go-col-wrap {
width: 12.5%;
}
.gw-go-9cols .gw-go-col-wrap {
width: 11.11%;
}
.gw-go-10cols .gw-go-col-wrap {
width: 10%;
}
.gw-go-col-wrap {
display: inline-block !important;
-moz-box-sizing: border-box !important;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
float: none !important;
font-size: 12px;
line-height: 16px;
margin-left: -1px;
padding: 20px 0;
position: relative;
-moz-transition: padding 0.2s linear, margin 0.2s linear !important;
-o-transition: padding 0.2s linear, margin 0.2s linear !important;
-webkit-transition: padding 0.2s linear, margin 0.2s linear !important;
transition: padding 0.2s linear, margin 0.2s linear !important;
vertical-align: top !important;
}
.gw-go-col-wrap:first-child {
margin-left: 0;
}
.gw-go-col-wrap.gw-go-hover {
z-index: 2;
}
.gw-go-col-wrap.gw-go-curr {
z-index: 3 !important;
}
.gw-go-col {
border: solid 1px #ebebeb;
border-bottom: solid 2px #d3d3d3;
border-top-width: 2px;
position: relative;
top: 0;
-moz-transition: margin-top 0.2s linear, top 0.2s linear, -moz-box-shadow 0.2s linear;
-o-transition: margin-top 0.2s linear, top 0.2s linear, box-shadow 0.2s linear;
-webkit-transition: margin-top 0.2s linear, top 0.2s linear, -webkit-box-shadow 0.2s linear;
transition: margin-top 0.2s linear, top 0.2s linear, box-shadow 0.2s linear;
}
.gw-go-col-inner {
-moz-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0);
-webkit-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0);
box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0);
float: none !important;
overflow: hidden;
padding: 0 !important;
-moz-transition: -moz-box-shadow 0.2s linear;
-o-transition: box-shadow 0.2s linear;
-webkit-transition: -webkit-box-shadow 0.2s linear;
transition: box-shadow 0.2s linear;
}
.gw-go.gw-go-fullh-bg .gw-go-col {
height: 100%;
}
.gw-go.gw-go-fullh-bg .gw-go-col-inner {
height: 100%;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-col-inner {
-moz-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
-webkit-box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.25);
}
.gw-go-col:before {
content: "";
height: 20px;
margin-top: 2px;
filter: alpha(opacity=40);
-khtml-opacity: 0.4;
-moz-opacity: 0.4;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
opacity: 0.4;
position: absolute;
left: 0;
top: 100%;
width: 100%;
} .gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current {
padding: 20px 0 40px;
}
.gw-go.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-col,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-col {
margin-top: 0;
top: 0;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-current,
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current.gw-go-hover {
padding: 0;
margin-bottom: 0;
}
.gw-go.gw-go-enlarge-current.gw-go-no-footer.gw-go-hover .gw-go-col-wrap.gw-go-hover {
margin-bottom: 0;
} .gw-go-col-wrap.gw-go-disable-enlarge {
padding: 20px 0 20px !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-col {
margin-top: 0 !important;
top: 0 !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-footer {
top: 0 !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-footer-spacer {
height: 0.1px !important;
}
.gw-go-col-wrap.gw-go-disable-enlarge .gw-go-col {
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
} .gw-go-disable-box-shadow .gw-go-col-inner {
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
} .gw-go-header {
overflow: hidden;
position: relative;
text-align: center;
width: 100%;
}
.gw-go-header img {
border-radius: 0 !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
margin: 0 !important;
}
.gw-go-header small {
font-size: inherit;
margin-bottom: 4px;
}  .gw-go-header-top {
height: 95px;
position: relative;
}
.gw-go-header h2 {
color: inherit;
font-size: 26px !important;
line-height: 32px !important;
font-weight: normal !important;
letter-spacing: normal !important;
margin-bottom: 15px !important;
padding: 0 !important;
text-transform: none !important;
top: 15px;
}
.gw-go-header h2 small {
font-size: 22px;
}
.gw-go-header h3 {
border: none !important;
color: inherit;
font-size: 18px !important;
line-height: 16px !important;
font-weight: normal !important;
left: 0;
letter-spacing: normal !important;
margin: 0 !important;
padding: 0 !important;
position: absolute;
text-align: center;
text-transform: none !important;
top: 19px;
width: 100%;
}
.gw-go-header h3 small {
display: block;
font-size: 12px;
}
.gw-go-header-bottom {
border-top: solid 1px transparent;
height: 50px;
} .gw-go-coin-wrap {
font-size: 32px;
height: 80px;
left: 50%;
margin: 0 0 0 -40px;
position: absolute;
top: 54px;
width: 80px;
z-index: 1;
}
.gw-go-coinf,
.gw-go-coinb {
background: #fff;
border-width: 1px !important;
border-radius: 50px;
display: table;
height: 78px;
left: 0;
position: absolute;
table-layout: fixed;
text-align: center;
width: 78px;
}
.gw-go-coinf div,
.gw-go-coinb div {
-moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.38) inset, 0 0 1px rgba(0, 0, 0, 0.38);
-webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.38) inset, 0 0 1px rgba(0, 0, 0, 0.38);
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.38) inset, 0 0 1px rgba(0, 0, 0, 0.38);
-moz-box-sizing: content-box !important;
-webkit-box-sizing: content-box !important;
box-sizing: content-box !important;
border-radius: 50px;
border-width: 1px !important;
display: table-cell;
font-size: 32px;
line-height: 24px;
vertical-align: middle;
}
.gw-go-coinf div span[data-id="currency"],
.gw-go-coinb div span[data-id="currency"] {
font-size: 0.5em;
margin: 0 2px;
position: relative;
top: 0;
vertical-align: top;
}
.gw-go-coinf small,
.gw-go-coinb small {
display: block;
font-size: 12px;
line-height: 16px;
margin-bottom: -5px;
margin-top: 3px;
}
.gw-go-coinb,
.gw-go-col-wrap.gw-go-hover .gw-go-coinf,
.gw-go-col-wrap.gw-go-current .gw-go-coinf {
visibility: hidden;
}
.gw-go-coinf,
.gw-go-col-wrap.gw-go-hover .gw-go-coinb,
.gw-go-col-wrap.gw-go-current .gw-go-coinb {
visibility: visible;
}
.gw-go-price-wrap > span {
font-size: 32px;
}
.gw-go-price-wrap > small {
font-size: 12px;
} ul.gw-go-body {
border-bottom: solid 1px transparent;
float: none !important;
list-style: none !important;
margin: 0 !important;
padding: 0 !important;
position: relative;
text-align: center;
width: 100%;
}
.gw-go-no-footer ul.gw-go-body {
border-bottom: none !important;
padding-bottom: none !important;
}
ul.gw-go-body > li {
background: none;
border-top: solid 1px #fff;
-moz-box-sizing: border-box !important;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
display: table !important;
position: relative;
min-height: 17px;
line-height: 16px !important;
list-style: none !important;
margin: 0 !important;
padding: 10px 5px !important;
table-layout: fixed;
text-align: inherit !important;
width: 100%;
}
ul.gw-go-body > li .gw-go-body-cell {
display: table-cell;
vertical-align: middle;
width: 100%;
position: relative;
z-index: 1;
}
ul.gw-go-body > li .gw-go-body-cell-valign-top {
vertical-align: top;
}
ul.gw-go-body > li .gw-go-body-cell-valign-bottom {
vertical-align: bottom;
}
.gw-go-ie ul.gw-go-body > li .gw-go-body-cell {
display: block;
}
ul.gw-go-body > li:before,
ul.gw-go-body > li:after {
display: none !important;
}
ul.gw-go-body > li .gw-go-body-cell:before,
ul.gw-go-body > li .gw-go-body-cell:after {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
} .gw-go-tooltip {
left: 50%;
margin-top: 15px !important;
margin-left: -15px;
opacity: 0;
position: absolute;
-moz-transition: none;
-o-transition: none;
-webkit-transition: none;
transition: none;
visibility: hidden;
z-index: 4;
}
.gw-go-tooltip-visible {
margin-top: 5px !important;
opacity: 1;
visibility: visible;
-moz-transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
-o-transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
-webkit-transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
transition: opacity 0.2s linear, visibility 0.2s linear, margin-top 0.2s ease-in-out;
}
.gw-go-tooltip-content:before {
border-right: 6px solid transparent;
border-left: 6px solid transparent;
border-top: 6px solid #9d9d9d;
border-top-color: inherit;
content: "";
left: 10px;
position: absolute;
top: 100%;
}
.gw-go-tooltip-content {
-moz-box-sizing: border-box !important;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
background: #9d9d9d;
border-color: #9d9d9d;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
color: #333333;
display: none;
padding: 6px 10px 6px 10px;
text-decoration: none !important;
transition: none;
text-align: left;
width: 130px;
max-width: 100%;
}
.gw-go-tooltip .gw-go-tooltip-content {
display: block;
}
ul.gw-go-body li a,
ul.gw-go-body li a:visited,
ul.gw-go-body li a:active {
color: inherit;
text-decoration: none !important;
}
ul.gw-go-body li a:hover {
text-decoration: underline !important;
}  .gw-go-footer-wrap {
padding: 15px 0;
}
.gw-go-footer {
display: table;
width: 100%;
position: relative;
table-layout: fixed;
-moz-transition: padding 0.2s linear;
-o-transition: padding 0.2s linear;
-webkit-transition: top 0.2s linear;
transition: top 0.2s linear;
text-align: center;
top: 0;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-footer,
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-current .gw-go-footer,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current.gw-go-hover .gw-go-footer {
top: -20px;
}
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-footer {
bottom: 20px;
}
.gw-go-footer-spacer {
height: 0.1px;
-moz-transition: height 0.2s linear;
-o-transition: height 0.2s linear;
-webkit-transition: height 0.2s linear;
transition: height 0.2s linear;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-footer-spacer,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-hover .gw-go-footer-spacer {
height: 40px;
}
.gw-go-footer-inner {
-moz-transition: top 0.2s linear;
-o-transition: top 0.2s linear;
-webkit-transition: top 0.2s linear;
transition: top 0.2s linear;
top: 0;
}
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-hover .gw-go-footer-inner,
.gw-go.gw-go-enlarge-current .gw-go-col-wrap.gw-go-current .gw-go-footer-inner,
.gw-go.gw-go-enlarge-current.gw-go-hover .gw-go-col-wrap.gw-go-current.gw-go-hover .gw-go-footer-innner {
top: 20px;
}
.gw-go-footer-rows {
display: table-cell;
vertical-align: middle;
width: 100%;
}
.gw-go-footer-row {
-moz-box-sizing: border-box !important;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
display: table;
table-layout: fixed;
width: 100%;
}
div.gw-go-footer-row a,
div.gw-go-footer-row a:visited,
div.gw-go-footer-row a:active {
color: inherit;
text-decoration: none !important;
}
.gw-go-footer-row-inner {
display: table-cell;
padding: 5px;
vertical-align: middle;
}
.gw-go-footer-row-inner.gw-go-footer-row-inner-valign-top {
vertical-align: top;
}
.gw-go-footer-row-inner.gw-go-footer-row-inner-valign-bottom {
vertical-align: bottom;
} .gw-go-btn,
a.gw-go-btn {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
-moz-box-sizing: border-box !important;
-webkit-box-sizing: border-box !important;
box-sizing: border-box !important;
cursor: pointer;
display: inline-block;
font-family: inherit !important;
margin: 0 5px !important;
line-height: 1.4 !important;
text-decoration: none !important;
overflow: hidden;
position: relative;
vertical-align: middle;
}
.gw-go-btn,
a.gw-go-btn:hover,
ul.gw-go-body li a.gw-go-btn:hover {
text-decoration: none !important;
}
.gw-go-btn:active {
top: 1px;
}
.gw-go-btn form {
display: none !important;
} .gw-go-col-wrap.gw-go-hover .gw-go-btn:active,
.gw-go.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-btn:active {
-moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.15) inset;
-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.15) inset;
box-shadow: 0 0 0 rgba(0, 0, 0, 0.15) inset;
-moz-transition: none;
-o-transition: none;
-webkit-transition: none;
transition: none;
} .gw-go-btn-small {
padding: 1px 11px 0;
}
.gw-go-btn-medium {
padding: 5px 13px 4px;
}
.gw-go-btn-large {
padding: 11px 18px 10px;
}
.gw-go-btn > .gw-go-btn-inner {
display: table-cell;
height: 23px;
vertical-align: middle;
}
.gw-go-btn-fullwidth > .gw-go-btn-inner {
max-width: 100%;
width: 1000px;
} .gw-go-icon-left {
margin-left: 0 !important;
}
.gw-go-icon-right {
margin-right: 0 !important;
} span[class*="gw-go-icon"] {
background-position: 50% 50% no-repeat;
display: inline-block;
height: 16px;
margin: 0 3px -4px;
width: 16px;
} .gw-go-icon-light-skype {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_skype.png) 50% 50% no-repeat;
}
.gw-go-icon-light-facebook {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_facebook.png) 50% 50% no-repeat;
}
.gw-go-icon-light-twitter {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_twitter.png) 50% 50% no-repeat;
}
.gw-go-icon-light-email {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_light_email.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-skype {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_skype.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-facebook {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_facebook.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-twitter {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_twitter.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-email {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_team_dark_email.png) 50% 50% no-repeat;
} .gw-go-icon-light-arrow {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-light-arrow2 {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-light-circle {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-light-cross {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-light-dot {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-light-minus {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-light-ok {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-light-plus {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-light-star {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_light_star.png) 50% 50% no-repeat;
} .gw-go-icon-dark-arrow {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-arrow2 {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-circle {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-cross {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-dot {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-minus {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-ok {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-plus {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-dark-star {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_dark_star.png) 50% 50% no-repeat;
} .gw-go-icon-red-arrow {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-red-arrow2 {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-red-circle {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-red-cross {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-red-dot {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-red-minus {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-red-ok {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-red-plus {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-red-star {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_red_star.png) 50% 50% no-repeat;
} .gw-go-icon-green-arrow {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_arrow.png) 50% 50% no-repeat;
}
.gw-go-icon-green-arrow2 {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_arrow2.png) 50% 50% no-repeat;
}
.gw-go-icon-green-circle {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_circle.png) 50% 50% no-repeat;
}
.gw-go-icon-green-cross {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_cross.png) 50% 50% no-repeat;
}
.gw-go-icon-green-dot {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_dot.png) 50% 50% no-repeat;
}
.gw-go-icon-green-minus {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_minus.png) 50% 50% no-repeat;
}
.gw-go-icon-green-ok {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_ok.png) 50% 50% no-repeat;
}
.gw-go-icon-green-plus {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_plus.png) 50% 50% no-repeat;
}
.gw-go-icon-green-star {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_green_star.png) 50% 50% no-repeat;
} span[class*="gw-go-btn-icon"] {
display: inline-block;
height: 20px;
margin-bottom: 0;
margin-top: 0;
vertical-align: middle;
width: 20px;
}
span[class*="gw-go-btn-icon"][class*="gw-go-btn-icon-large"] {
height: 24px;
width: 24px;
}
.gw-go-btn-icon-medium-white-basket {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_white_basket_medium.png) 50% 50% no-repeat;
}
.gw-go-btn-icon-medium-white-download {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_white_download_medium.png) 50% 50% no-repeat;
}
.gw-go-btn-icon-large-white-basket {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/icons/icon_white_basket_large.png) 50% 50% no-repeat;
} [class*="gw-go-ribbon"] img {
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
border-radius: 0 !important;
display: block !important;
margin: 0 !important;
}
[class*="gw-go-ribbon-right"] img {
float: right;
}
[class*="gw-go-ribbon-left"],
[class*="gw-go-ribbon-right"] {
left: 0;
margin-left: -1px;
margin-top: -2px;
position: absolute;
top: 0;
z-index: 2;
}
[class*="gw-go-ribbon-right"] {
left: auto;
margin-right: -1px;
right: 0;
} .gw-go-ribbon-text {
height: 110px;
overflow: hidden;
width: 110px;
}
.gw-go-ribbon-text span {
display: inline-block;
line-height: 26px;
text-align: center;
text-shadow: none;
width: 100%;
}
.gw-go-ribbon-text.gw-go-ribbon-left span {
-moz-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-moz-transform-origin: 55% 200%;
-o-transform-origin: 55% 200%;
-webkit-transform-origin: 55% 200%;
transform-origin: 55% 200%;
}
.gw-go-ribbon-text.gw-go-ribbon-right span {
-moz-transform: rotate(45deg);
-o-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-moz-transform-origin: 45% 200%;
-o-transform-origin: 45% 200%;
-webkit-transform-origin: 45% 200%;
transform-origin: 45% 200%;
}
.gw-go-ribbon-text.gw-go-ribbon-shadow span {
-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
-webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
} .gw-go-col.gw-go-shadow1:before {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_1.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow2:before {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_2.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow3:before {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_3.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow4:before {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_4.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow5:before {
background: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/shadows/shadow_5.png) 50% 100% no-repeat;
}
.gw-go-col.gw-go-shadow1:before,
.gw-go-col.gw-go-shadow2:before,
.gw-go-col.gw-go-shadow3:before,
.gw-go-col.gw-go-shadow4:before,
.gw-go-col.gw-go-shadow5:before {
background-size: 100% 20px;
}  .gw-go-col[class*="gw-go-clean-style"] {
border: none;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
-moz-transition: margin-top 0.2s linear, top 0.2s linear;
-o-transition: margin-top 0.2s linear, top 0.2s linear;
-webkit-transition: margin-top 0.2s linear, top 0.2s linear;
transition: margin-top 0.2s linear, top 0.2s linear;
}
.gw-go-col[class*="gw-go-clean-style"]:before {
margin-top: 0;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-col-inner {
border: solid 1px #ebebeb;
border-bottom: solid 2px #d3d3d3;
border-top-width: 2px;
-moz-transition: -moz-box-shadow 0.2s linear;
-o-transition: box-shadow 0.2s linear;
-webkit-transition: -webkit-box-shadow 0.2s linear;
transition: box-shadow 0.2s linear;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-top {
height: 100px;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-bottom {
height: 60px;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coin-wrap {
height: 90px;
margin: 0 0 0 -45px;
width: 90px;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinf,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinb {
height: 88px;
width: 88px;
border-width: 2px !important;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinf div,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-coinb div {
-webkit-box-shadow: none;
box-shadow: none;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-header-top {
display: table;
height: 50px;
table-layout: fixed;
width: 100%;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-header-top h3 {
display: table-cell;
position: relative;
top: 0;
vertical-align: middle;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-header-bottom {
display: table;
table-layout: fixed;
height: 110px;
width: 100%;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap span[data-id="currency"],
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap span[data-id="currency"] {
font-size: 0.5em;
position: relative;
top: 2px;
vertical-align: text-top;
margin: 0 2px;
vertical-align: top;
top: 0;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap small,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-standard .gw-go-price-wrap small {
display: block;
font-size: 12px;
line-height: 16px;
margin-bottom: -5px;
margin-top: 3px;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-img,
.gw-go-col[class*="gw-go-clean-style"] .gw-go-header-img h3 {
background-color: transparent !important;
background-repeat: no-repeat;
background-size: cover;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.gw-go-col[class*="gw-go-clean-style"] [class*="gw-go-ribbon-left"],
.gw-go-col[class*="gw-go-clean-style"] [class*="gw-go-ribbon-right"] {
margin-left: 0;
margin-top: 0;
}
.gw-go-col[class*="gw-go-clean-style"] [class*="gw-go-ribbon-right"] {
left: auto;
margin-right: 0;
}
.gw-go-col[class*="gw-go-clean-style"] .gw-go-btn {
border: none;
} .gw-go-col.gw-go-clean-style1 .gw-go-col-inner {
background: #fff;
}  .gw-go-col.gw-go-clean-style1 .gw-go-header-top {
background: none;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-bottom {
background: #f5f5f5;
border-top-color: #f5f5f5;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-top {
background: none !important;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-bottom {
background: none !important;
border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
background: #fff;
content: "" !important;
display: block !important;
height: 60px;
left: 0;
filter: alpha(opacity=30);
-khtml-opacity: 0.3;
-moz-opacity: 0.3;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
opacity: 0.3;
position: absolute;
width: 100%;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-img .gw-go-header-top:before {
height: 50px !important;
}
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-header-bottom:before {
display: none !important;
} .gw-go-col.gw-go-clean-style1 .gw-go-header h3 {
color: #333;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-header h3,
.gw-go-col.gw-go-clean-style1 .gw-go-header-img h3,
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style1 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap small {
color: #fff !important;
}
.gw-go-col.gw-go-clean-style1 .gw-go-coinf,
.gw-go-col.gw-go-clean-style1 .gw-go-coinb {
border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style1 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style1 .gw-go-coinb small {
color: #333;
} .gw-go-col.gw-go-clean-style1 .gw-go-body > li {
background: #ebebeb;
}
.gw-go-col.gw-go-clean-style1 .gw-go-body > li.gw-go-even {
background: #f5f5f5;
}
.gw-go-col.gw-go-clean-style1 .gw-go-body {
border-bottom-color: #ebebeb;
} .gw-go-col.gw-go-clean-style1 .gw-go-body > li {
color: #9d9d9d;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-body > li {
color: #333333;
} .gw-go-col.gw-go-clean-style1 .gw-go-btn.gw-go-btn-small {
margin-top: 45px;
}
.gw-go-col.gw-go-clean-style1 .gw-go-btn.gw-go-btn-medium {
margin-top: 40px;
}
.gw-go-col.gw-go-clean-style1 .gw-go-btn.gw-go-btn-large {
margin-top: 33px;
} .gw-go-col.gw-go-clean-style1 .gw-go-btn {
background: #9d9d9d;
color: #ffffff;
} .gw-go-col.gw-go-clean-style1 .gw-go-btn:hover {
background: #333333;
} .gw-go-col.gw-go-clean-style1 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-footer-row {
color: #9d9d9d;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style1 .gw-go-footer-row {
color: #333;
} .gw-go-col.gw-go-clean-style2 .gw-go-col-inner {
background: #fff;
}  .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-top,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-bottom {
background: #333333 !important;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-top,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-bottom {
background: none !important;
} .gw-go-col.gw-go-clean-style2 .gw-go-header-bottom {
border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-header-top:before {
background: #fff;
content: "" !important;
display: block !important;
height: 100%;
left: 0;
filter: alpha(opacity=10);
-khtml-opacity: 0.1;
-moz-opacity: 0.1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
opacity: 0.15;
position: absolute;
width: 100%;
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-header-top:before {
height: 50px;
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-bottom {
border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
filter: alpha(opacity=30);
-khtml-opacity: 0.3;
-moz-opacity: 0.3;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
opacity: 0.3;
}
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-header-bottom:before {
display: none !important;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style1 .gw-go-header h3,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style2 .gw-go-header-standard .gw-go-price-wrap small {
color: #fff !important;
}
.gw-go-col.gw-go-clean-style2 .gw-go-header h3 {
color: #fff;
}
.gw-go-col.gw-go-clean-style2 .gw-go-coinf,
.gw-go-col.gw-go-clean-style2 .gw-go-coinb {
border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style2 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style2 .gw-go-coinb small {
color: #333;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-coinf div,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style2 .gw-go-coinb div {
color: #333 !important;
} .gw-go-col.gw-go-clean-style2 .gw-go-body {
border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style2 .gw-go-body > li {
background: #ebebeb;
color: #333333;
}
.gw-go-col.gw-go-clean-style2 .gw-go-body > li.gw-go-even {
background: #f5f5f5;
}  .gw-go-col.gw-go-clean-style2 .gw-go-btn {
background: #333;
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
} .gw-go-col.gw-go-clean-style2 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
}
.gw-go-col.gw-go-clean-style2 .gw-go-footer-row {
color: #333;
} .gw-go-col.gw-go-clean-style3 .gw-go-col-inner {
background: #fff;
} .gw-go-col.gw-go-clean-style3 .gw-go-header-bottom {
border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-header-top:before {
background: #fff;
content: "" !important;
display: block !important;
height: 60px;
left: 0;
filter: alpha(opacity=15);
-khtml-opacity: 0.15;
-moz-opacity: 0.15;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
opacity: 0.15;
position: absolute;
width: 100%;
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-header-top:before {
height: 50px;
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-img .gw-go-header-bottom {
border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
filter: alpha(opacity=30);
-khtml-opacity: 0.3;
-moz-opacity: 0.3;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
opacity: 0.3;
}
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-header-bottom:before {
display: none !important;
}
.gw-go-col.gw-go-clean-style3 .gw-go-header h3,
.gw-go-col.gw-go-clean-style3 .gw-go-header-standard .gw-go-price-wrap {
color: #fff;
}
.gw-go-col.gw-go-clean-style3 .gw-go-coinf,
.gw-go-col.gw-go-clean-style3 .gw-go-coinb {
border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style3 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style3 .gw-go-coinb small {
color: #9d9d9d;
} .gw-go-col.gw-go-clean-style3 .gw-go-body {
border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style3 .gw-go-body > li {
background: #ebebeb;
}
.gw-go-col.gw-go-clean-style3 .gw-go-body > li.gw-go-even {
background: #f5f5f5;
} .gw-go-col.gw-go-clean-style3 .gw-go-body > li {
color: #9d9d9d;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style3 .gw-go-body > li {
color: #333333;
}  .gw-go-col.gw-go-clean-style3 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 20px 0;
background-repeat: no-repeat;
color: #fff !important;
} .gw-go-col.gw-go-clean-style3 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
} .gw-go-col.gw-go-clean-style3 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style3 .gw-go-footer-row {
color: #9d9d9d;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style3 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style3 .gw-go-footer-row {
color: #333;
} .gw-go-col.gw-go-clean-style4 .gw-go-col-inner {
background: #fff;
} .gw-go-col.gw-go-clean-style4 .gw-go-header-bottom {
border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-header-top:before {
background: #fff;
content: "" !important;
display: block !important;
height: 60px;
left: 0;
filter: alpha(opacity=15);
-khtml-opacity: 0.15;
-moz-opacity: 0.15;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
opacity: 0.15;
position: absolute;
width: 100%;
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-header-top:before {
height: 50px;
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-img .gw-go-header-bottom {
border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
filter: alpha(opacity=30);
-khtml-opacity: 0.3;
-moz-opacity: 0.3;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
opacity: 0.3;
}
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-header-bottom:before {
display: none !important;
}
.gw-go-col.gw-go-clean-style4 .gw-go-header h3,
.gw-go-col.gw-go-clean-style4 .gw-go-header-standard .gw-go-price-wrap {
color: #fff;
}
.gw-go-col.gw-go-clean-style4 .gw-go-coinf,
.gw-go-col.gw-go-clean-style4 .gw-go-coinb {
border: solid 2px #c9c9c9;
} .gw-go-col.gw-go-clean-style4 .gw-go-body {
border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style4 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col.gw-go-clean-style4 .gw-go-body > li .gw-go-body-cell:before {
content: "";
display: block;
height: 100%;
left: -5px;
margin-left: -1px;
filter: alpha(opacity=7);
-khtml-opacity: 0.07;
-moz-opacity: 0.07;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=7)";
opacity: 0.07;
padding: 10px 5px;
position: absolute;
top: -10px;
width: 101%;
z-index: -1;
}
.gw-go-col.gw-go-clean-style4 .gw-go-body > li .gw-go-body-cell:before {
filter: alpha(opacity=14);
-khtml-opacity: 0.14;
-moz-opacity: 0.14;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=14)";
opacity: 0.14;
} .gw-go-col.gw-go-clean-style4 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
} .gw-go-col.gw-go-clean-style4 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
}
.gw-go-col.gw-go-clean-style4 .gw-go-footer-row {
color: #333;
} .gw-go-col.gw-go-clean-style5 .gw-go-col-inner {
background: #fff;
}  .gw-go-col.gw-go-clean-style5 .gw-go-header-bottom {
background: #f5f5f5;
border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-img .gw-go-header-bottom {
background: transparent !important;
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard .gw-go-header-top:before {
background: #fff;
content: "" !important;
display: block !important;
height: 60px;
left: 0;
filter: alpha(opacity=15);
-khtml-opacity: 0.15;
-moz-opacity: 0.15;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
opacity: 0.15;
position: absolute;
width: 100%;
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard .gw-go-header-top:before {
height: 50px;
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-img .gw-go-header-bottom {
border-top: solid 1px rgba(255, 255, 255, 0.35);
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-img .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
filter: alpha(opacity=30);
-khtml-opacity: 0.3;
-moz-opacity: 0.3;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
opacity: 0.3;
}
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard .gw-go-header-bottom:before {
display: none !important;
}
.gw-go-col.gw-go-clean-style5 .gw-go-header h3,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-price-wrap span,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-price-wrap small,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard.gw-go-header-img span,
.gw-go-col.gw-go-clean-style5 .gw-go-header-standard.gw-go-header-img small {
color: #fff !important;
}
.gw-go-col.gw-go-clean-style5 .gw-go-coinf,
.gw-go-col.gw-go-clean-style5 .gw-go-coinb {
border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style5 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style5 .gw-go-coinb small {
color: #333;
} .gw-go-col.gw-go-clean-style5 .gw-go-body {
border-bottom-color: #ebebeb;
} .gw-go-col.gw-go-clean-style5 .gw-go-body > li {
background: #ebebeb;
color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style5 .gw-go-body > li.gw-go-even {
background: #f5f5f5;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li {
background: none !important;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col-wrap .gw-go-col.gw-go-clean-style5 .gw-go-body > li .gw-go-body-cell:before {
content: "";
display: block;
height: 100%;
left: -5px;
margin-left: -1px;
position: absolute;
top: -10px;
z-index: -1;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li.gw-go-even .gw-go-body-cell:before {
filter: alpha(opacity=10);
-khtml-opacity: 0.1;
-moz-opacity: 0.1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
opacity: 0.1;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li .gw-go-body-cell:before {
filter: alpha(opacity=15);
-khtml-opacity: 0.15;
-moz-opacity: 0.15;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
opacity: 0.15;
padding: 10px 5px;
width: 101%;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-body > li {
color: #333;
} .gw-go-col.gw-go-clean-style5 .gw-go-footer-row {
color: #9d9d9d;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style5 .gw-go-footer-row {
color: #333;
} .gw-go-col.gw-go-clean-style5 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
} .gw-go-col.gw-go-clean-style5 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
}  .gw-go-col.gw-go-clean-style6 .gw-go-col-inner,
.gw-go.gw-go-hover .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style6 .gw-go-col-inner {
background: #fff;
} .gw-go-col.gw-go-clean-style6 .gw-go-header-bottom {
border-top: solid 1px transparent;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-img .gw-go-header-bottom {
border-top: solid 1px transparent;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-bottom {
border-top: solid 1px rgba(255, 255, 255, 0.2) !important;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-header-bottom {
border-top: solid 1px rgba(255, 255, 255, 0.35) !important;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-top:before {
background: #fff;
content: "" !important;
display: block !important;
height: 60px;
left: 0;
filter: alpha(opacity=15);
-khtml-opacity: 0.15;
-moz-opacity: 0.15;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
opacity: 0.15;
position: absolute;
width: 100%;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-top:before {
height: 50px;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-header-top:before {
filter: alpha(opacity=30);
-khtml-opacity: 0.3;
-moz-opacity: 0.3;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
opacity: 0.3;
}
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard .gw-go-header-bottom:before {
display: none !important;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-header h3 {
color: #fff !important;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-price-wrap,
.gw-go-col.gw-go-clean-style6 .gw-go-header-img h3,
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style6 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap small {
color: #fff !important;
} .gw-go-coin-wrap:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 1px;
top: 1px;
border-radius: 50px;
}
.gw-go-col.gw-go-clean-style6 .gw-go-coinf div,
.gw-go-col.gw-go-clean-style6 .gw-go-coinb div {
color: #fff;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinf,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinb {
border: solid 2px #c9c9c9;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinf div,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-coinb div {
background: #fff !important;
} .gw-go-col.gw-go-clean-style6 .gw-go-body {
border-bottom-color: #ebebeb;
} .gw-go-col.gw-go-clean-style6 .gw-go-body > li {
background: #ebebeb;
border-top-color: #fff;
color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style6 .gw-go-body > li.gw-go-even {
background: #f5f5f5;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-body {
border-bottom-color: #fff !important;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-body > li {
background: none;
border-top-color: #fff;
color: #fff !important;
}  .gw-go-col.gw-go-clean-style6 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
}  .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-btn {
background: #fff !important;
} .gw-go-col.gw-go-clean-style6 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
} .gw-go-col.gw-go-clean-style6 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-footer-row {
color: #9d9d9d;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style6 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style6 .gw-go-footer-row {
color: #fff;
} .gw-go-col.gw-go-clean-style7 .gw-go-col-inner {
background: #fff;
} .gw-go-col.gw-go-clean-style7 .gw-go-body {
border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style7 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col.gw-go-clean-style7 .gw-go-body > li .gw-go-body-cell:before {
content: "";
display: block;
height: 100%;
left: -5px;
margin-left: -1px;
filter: alpha(opacity=10);
-khtml-opacity: 0.1;
-moz-opacity: 0.1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
opacity: 0.1;
padding: 10px 5px;
position: absolute;
top: -10px;
width: 101%;
z-index: -1;
}
.gw-go-col.gw-go-clean-style7 .gw-go-body > li .gw-go-body-cell:before {
filter: alpha(opacity=15);
-khtml-opacity: 0.15;
-moz-opacity: 0.15;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
opacity: 0.15;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-body {
border-bottom-color: #fff !important;
}  .gw-go-col.gw-go-clean-style7 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
} .gw-go-col.gw-go-clean-style7 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
}
.gw-go-col.gw-go-clean-style7 .gw-go-footer-row {
color: #333;
}  .gw-go-col.gw-go-clean-style8 .gw-go-col-inner {
background: #fff;
} .gw-go-col.gw-go-clean-style8 .gw-go-header-bottom {
border-top: solid 1px transparent;
} .gw-go-col.gw-go-clean-style8 .gw-go-body {
border-bottom-color: #ebebeb;
} .gw-go-col.gw-go-clean-style8 .gw-go-body > li {
background: #ebebeb;
border-top-color: #fff;
color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style8 .gw-go-body > li.gw-go-even {
background: #f5f5f5;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-body > li {
background: none;
border-top-color: #fff;
color: #fff;
}  .gw-go-col.gw-go-clean-style8 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
}  .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-btn {
background: #fff !important;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-footer-row {
color: #fff !important;
} .gw-go-col.gw-go-clean-style8 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
} .gw-go-col.gw-go-clean-style8 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-footer-row {
color: #9d9d9d;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style8 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style8 .gw-go-footer-row {
color: #fff;
}  .gw-go-col.gw-go-clean-style9 .gw-go-header-bottom {
height: auto;
border-top: solid 1px transparent;
}
.gw-go-col.gw-go-clean-style9 .gw-go-header h3 {
color: #fff;
}
.gw-go-col.gw-go-clean-style9 .gw-go-coinf,
.gw-go-col.gw-go-clean-style9 .gw-go-coinb {
border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style9 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style9 .gw-go-coinb small {
color: #333;
} .gw-go-col.gw-go-clean-style9 .gw-go-body > li {
background: #fff;
}
.gw-go-col.gw-go-clean-style9 .gw-go-body > li.gw-go-even .gw-go-body-cell:before,
.gw-go-col.gw-go-clean-style9 .gw-go-body > li .gw-go-body-cell:before {
content: "";
display: block;
height: 100%;
left: -5px;
margin-left: -1px;
filter: alpha(opacity=10);
-khtml-opacity: 0.1;
-moz-opacity: 0.1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
opacity: 0.1;
padding: 10px 5px;
position: absolute;
top: -10px;
width: 101%;
z-index: -1;
}
.gw-go-col.gw-go-clean-style9 .gw-go-body > li .gw-go-body-cell:before {
filter: alpha(opacity=15);
-khtml-opacity: 0.15;
-moz-opacity: 0.15;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
opacity: 0.15;
}  .gw-go-col.gw-go-clean-style9 .gw-go-btn {
background: #fff;
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
}
.gw-go-col.gw-go-clean-style9 .gw-go-footer-row {
color: #fff !important;
} .gw-go-col.gw-go-clean-style9 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
} .gw-go-col.gw-go-clean-style10 .gw-go-col-inner {
background: #fff;
}
.gw-go-col.gw-go-clean-style10 .gw-go-header-bottom {
height: auto;
border-top: none;
}
.gw-go-col.gw-go-clean-style10 .gw-go-header h3 {
color: #fff;
}
.gw-go-col.gw-go-clean-style10 .gw-go-coinf,
.gw-go-col.gw-go-clean-style10 .gw-go-coinb {
border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style10 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style10 .gw-go-coinb small {
color: #333;
} .gw-go-col.gw-go-clean-style10 .gw-go-body {
border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style10 .gw-go-body > li {
background: #ebebeb;
border-top-color: #fff;
color: #333;
}
.gw-go-col.gw-go-clean-style10 .gw-go-body > li.gw-go-even {
background: #f5f5f5;
}  .gw-go-col.gw-go-clean-style10 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
} .gw-go-col.gw-go-clean-style10 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
}
.gw-go-col.gw-go-clean-style10 .gw-go-footer-row {
color: #333;
} .gw-go-col.gw-go-clean-style12 .gw-go-col-inner {
background: #fff;
} .gw-go-col.gw-go-clean-style12 .gw-go-header-bottom {
height: auto;
border-top: none;
}
.gw-go-col.gw-go-clean-style12 .gw-go-header h3 small {
color: #333;
} .gw-go-col.gw-go-clean-style12 .gw-go-body {
border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li {
background: #ebebeb;
border-top-color: #f5f5f5;
color: #333;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li a {
color: #333;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li:first-child {
border-top-color: #fff;
}
.gw-go-col.gw-go-clean-style12 .gw-go-body > li.gw-go-even {
background: #f5f5f5;
border-top-color: #ebebeb;
}  .gw-go-col.gw-go-clean-style12 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
} .gw-go-col.gw-go-clean-style12 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
}
.gw-go-col.gw-go-clean-style12 .gw-go-footer-row {
color: #333;
} .gw-go-col.gw-go-clean-style13 .gw-go-header-bottom {
height: auto;
border-top: none;
} .gw-go-col.gw-go-clean-style13 .gw-go-col-inner {
background: #fff;
}  .gw-go-col.gw-go-clean-style13 .gw-go-header p {
color: #333;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-header,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-header h2,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-header p {
color: #fff !important;
}  .gw-go-col.gw-go-clean-style13 .gw-go-body {
border-bottom-color: #ebebeb;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-body {
border-bottom-color: #fff;
} .gw-go-col.gw-go-clean-style13 .gw-go-body > li {
background: #ebebeb;
border-top-color: #fff;
color: #9d9d9d;
}
.gw-go-col.gw-go-clean-style13 .gw-go-body > li.gw-go-even {
background: #f5f5f5;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-body > li {
background: none;
border-top-color: #fff;
color: #fff;
}  .gw-go-col.gw-go-clean-style13 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
}  .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-btn {
background: #fff !important;
} .gw-go-col.gw-go-clean-style13 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
} .gw-go-col.gw-go-clean-style13 .gw-go-footer-row,
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-footer-row {
color: #9d9d9d;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style13 .gw-go-footer-row,
.gw-go .gw-go-col-wrap.gw-go-current .gw-go-col.gw-go-clean-style13 .gw-go-footer-row {
color: #fff;
}  .gw-go-col.gw-go-clean-style14 .gw-go-col-inner {
background: #f5f5f5;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-col-inner {
background: #fff;
} .gw-go-col.gw-go-clean-style14 .gw-go-header-top {
background: #fff;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-img .gw-go-header-top {
background: transparent;
} .gw-go-col.gw-go-clean-style14 .gw-go-header h3 {
color: #333;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-img h3 {
color: #fff !important;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap span,
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard.gw-go-header-img .gw-go-price-wrap small {
color: #fff !important;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-bottom:before,
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard .gw-go-header-top:before {
background: #fff;
content: "" !important;
display: block !important;
height: 60px;
left: 0;
filter: alpha(opacity=30);
-khtml-opacity: 0.3;
-moz-opacity: 0.3;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
opacity: 0.3;
position: absolute;
width: 100%;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard .gw-go-header-top:before {
height: 50px;
}
.gw-go-col.gw-go-clean-style14 .gw-go-header-standard .gw-go-header-bottom:before {
display: none !important;
}
.gw-go-col.gw-go-clean-style14 .gw-go-coinf,
.gw-go-col.gw-go-clean-style14 .gw-go-coinb {
border: solid 2px #c9c9c9;
}
.gw-go-col.gw-go-clean-style14 .gw-go-coinf small,
.gw-go-col.gw-go-clean-style14 .gw-go-coinb small {
color: #9d9d9d;
}  .gw-go-col.gw-go-clean-style14 .gw-go-body {
border-bottom-color: #fff;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-body {
border-bottom-color: #ebebeb;
} .gw-go-col.gw-go-clean-style14 .gw-go-body > li {
border-top-color: #fff;
color: #9d9d9d;
} .gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-body > li {
border-top-color: #ebebeb;
color: #333333;
} .gw-go-col.gw-go-clean-style14 .gw-go-footer-row {
color: #9d9d9d;
}
.gw-go-col-wrap.gw-go-hover .gw-go-col.gw-go-clean-style14 .gw-go-footer-row {
color: #333;
} .gw-go-col.gw-go-clean-style14 .gw-go-btn {
background: #9d9d9d;
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
} .gw-go-col.gw-go-clean-style14 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
} .gw-go-col.gw-go-clean-style15 .gw-go-col-inner {
background: #fff;
} .gw-go-col.gw-go-clean-style15 .gw-go-body {
border-bottom-color: #ebebeb;
}
.gw-go-col.gw-go-clean-style15 .gw-go-body > li {
background: #ebebeb;
}
.gw-go-col.gw-go-clean-style15 .gw-go-body > li.gw-go-even {
background: none;
}
.gw-go-col.gw-go-clean-style15 .gw-go-body > li.gw-go-even .gw-go-body-cell:before {
content: "";
display: block;
height: 100%;
left: -5px;
margin-left: -1px;
filter: alpha(opacity=10);
-khtml-opacity: 0.1;
-moz-opacity: 0.1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
opacity: 0.1;
padding: 10px 5px;
position: absolute;
top: -10px;
width: 101%;
z-index: -1;
}  .gw-go-col.gw-go-clean-style15 .gw-go-btn {
background-image: url(//fpfpuertorico.com/wp-content/plugins/go_pricing/assets/images/hover.png);
background-position: 200px 0;
background-repeat: no-repeat;
color: #fff !important;
} .gw-go-col.gw-go-clean-style15 .gw-go-btn:hover {
background-position: 0 0;
background-repeat: repeat;
}
.gw-go-col.gw-go-clean-style15 .gw-go-footer-row {
color: #333;
}.image-hover-page-container {   }
.ih-item img {
display: block;
}
.bs-glyphicons,
.ih-item.square.effect1,
.ih-item.square.effect11,
.ih-item.square.effect12,
.ih-item.square.effect13,
.ih-item.square.effect15,
.ih-item.square.effect16,
.ih-item.square.effect17,
.ih-item.square.effect18,
.ih-item.square.effect19,
.ih-item.square.effect2,
.ih-item.square.effect3,
.ih-item.square.effect4,
.ih-item.square.effect6,
.ih-item.square.effect7,
.ih-item.square.effect8 {
overflow: hidden
}
.ih-item.circle .info,
.ih-item.square .info {
right: 0;
text-align: center;
bottom: 0;
top: 0;
left: 0
}
.ih-item {
position: relative;
transition: all .35s ease-in-out
}
.ih-item.circle .img:before,
;
.ih-item {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item,
.ih-item * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
.ih-item a {
color: #333
}
.ih-item a:hover {
text-decoration: none
}
.ih-item img {
width: 100%;
height: 100%
}
.ih-item.circle,
.ih-item.circle .img {
border-radius: 50%;
position: relative;
}
.ih-item.circle {
}
.ih-item.circle .img span {
position: absolute;
display: block;
content: '';
width: 100%;
height: 100%;
border-radius: 50%; transition: all .35s ease-in-out
}
.ih-item.square .img span {
box-shadow: none !important;
display: none;
}
.ih-item.circle .img img {
border-radius: 50%
}
.ih-item.circle .info {
position: absolute;
border-radius: 50%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.ih-item.square {
position: relative;
width: 100%;
height: 100%;  }
.ih-item.square .info {
position: absolute;
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.ih-item.circle.effect1 .spinner {
width: 230px;
height: 230px;
border: 10px solid #ecab18;
border-right-color: #1ad280;
border-bottom-color: #1ad280;
border-radius: 50%;
transition: all .8s ease-in-out
}
.ih-item.circle.effect1 .info,
.ih-item.circle.effect1 .spinner {
-webkit-transition: all .8s ease-in-out;
-moz-transition: all .8s ease-in-out
}
.ih-item.circle.effect1 .info p,
.ih-item.circle.effect11 .info p,
.ih-item.circle.effect12 .info p,
.ih-item.circle.effect13 .info p,
.ih-item.circle.effect14 .info p,
.ih-item.circle.effect15 .info p,
.ih-item.circle.effect16 .info p,
.ih-item.circle.effect17 .info p,
.ih-item.circle.effect18 .info p,
.ih-item.circle.effect19 .info p,
.ih-item.circle.effect2 .info p,
.ih-item.circle.effect20 .info p,
.ih-item.circle.effect3 .info p,
.ih-item.circle.effect4 .info p,
.ih-item.circle.effect5 .info p,
.ih-item.circle.effect6 .info p,
.ih-item.circle.effect7 .info p,
.ih-item.circle.effect8 .info p,
.ih-item.circle.effect9 .info p { }
.bs-docs-nav .navbar-toggle,
.top-header.bs-docs-nav {
border-color: #222132
}
.ih-item.circle.effect1 .img {
position: absolute;
top: 10px;
bottom: 0;
left: 10px;
right: 0;
width: auto;
height: auto
}
.ih-item.circle.effect1 .info h3,
.ih-item.circle.effect2 .info h3,
.ih-item.circle.effect3 .info h3,
.ih-item.circle.effect4 .info h3 {
margin: 0 30px;
text-transform: uppercase;
position: relative;
letter-spacing: 2px;
height: 110px;
text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, .3)
}
.ih-item.circle.effect1 .img:before {
display: none
}
.ih-item.circle.effect1.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.circle.effect1 .info {
top: 10px;
bottom: 0;
left: 10px;
right: 0;
background: #333;
background: rgba(0, 0, 0, .6);
opacity: 0;
transition: all .8s ease-in-out
}
.ih-item.circle.effect1 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0
}
.ih-item.circle.effect1 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect1 a:hover .spinner {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg)
}
.ih-item.circle.effect1 a:hover .info {
opacity: 1
}
.ih-item.circle.effect2 .img {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
transition: all .35s ease-in-out
}
.ih-item.circle.effect2 .img,
.ih-item.circle.effect2 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.circle.effect2.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6);
}
.ih-item.circle.effect2 .info {
background: #333;
opacity: 0;
pointer-events: none;
transition: all .35s ease-in-out
}
.ih-item.circle.effect2 a:hover .info {
opacity: 0.8 !important;
}
.ih-item.circle.effect2 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0
}
.ih-item.circle.effect2 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect2.left_to_right .info {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.circle.effect2.left_to_right a:hover .img {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg)
}
.ih-item.circle.effect2.left_to_right a:hover .info {
opacity: 1;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect2.right_to_left .info {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.circle.effect2.right_to_left a:hover .img {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg)
}
.ih-item.circle.effect2.right_to_left a:hover .info {
opacity: 1;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect2.top_to_bottom .info {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.circle.effect2.top_to_bottom a:hover .img {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg)
}
.ih-item.circle.effect2.top_to_bottom a:hover .info {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect2.bottom_to_top .info {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.circle.effect2.bottom_to_top a:hover .img {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg)
}
.ih-item.circle.effect2.bottom_to_top a:hover .info {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect3 .img {
z-index: 11;
transition: all .35s ease-in-out
}
.ih-item.circle.effect3 .img,
.ih-item.circle.effect3 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.circle.effect3.colored .info {
background: #1a4a72
}
.ih-item.circle.effect3 .info {
background: #333;
opacity: 0;
pointer-events: none;
transition: all .35s ease-in-out
}
.ih-item.circle.effect3 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0
}
.ih-item.circle.effect3 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect3.left_to_right .img {
-webkit-transform: scale(1) translateX(0);
-moz-transform: scale(1) translateX(0);
-ms-transform: scale(1) translateX(0);
-o-transform: scale(1) translateX(0);
transform: scale(1) translateX(0)
}
.ih-item.circle.effect3.left_to_right .info {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.circle.effect3.left_to_right a:hover .img {
-webkit-transform: scale(.5) translateX(100%);
-moz-transform: scale(.5) translateX(100%);
-ms-transform: scale(.5) translateX(100%);
-o-transform: scale(.5) translateX(100%);
transform: scale(.5) translateX(100%)
}
.ih-item.circle.effect3.left_to_right a:hover .info {
opacity: 1;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect3.right_to_left .img {
-webkit-transform: scale(1) translateX(0);
-moz-transform: scale(1) translateX(0);
-ms-transform: scale(1) translateX(0);
-o-transform: scale(1) translateX(0);
transform: scale(1) translateX(0)
}
.ih-item.circle.effect3.right_to_left .info {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.circle.effect3.right_to_left a:hover .img {
-webkit-transform: scale(.5) translateX(-100%);
-moz-transform: scale(.5) translateX(-100%);
-ms-transform: scale(.5) translateX(-100%);
-o-transform: scale(.5) translateX(-100%);
transform: scale(.5) translateX(-100%)
}
.ih-item.circle.effect3.right_to_left a:hover .info {
opacity: 1;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect3.top_to_bottom .img {
-webkit-transform: scale(1) translateY(0);
-moz-transform: scale(1) translateY(0);
-ms-transform: scale(1) translateY(0);
-o-transform: scale(1) translateY(0);
transform: scale(1) translateY(0)
}
.ih-item.circle.effect3.top_to_bottom .info {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.circle.effect3.top_to_bottom a:hover .img {
-webkit-transform: scale(.5) translateY(100%);
-moz-transform: scale(.5) translateY(100%);
-ms-transform: scale(.5) translateY(100%);
-o-transform: scale(.5) translateY(100%);
transform: scale(.5) translateY(100%)
}
.ih-item.circle.effect3.top_to_bottom a:hover .info {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect3.bottom_to_top .img {
-webkit-transform: scale(1) translateY(0);
-moz-transform: scale(1) translateY(0);
-ms-transform: scale(1) translateY(0);
-o-transform: scale(1) translateY(0);
transform: scale(1) translateY(0)
}
.ih-item.circle.effect3.bottom_to_top .info {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.circle.effect3.bottom_to_top a:hover .img {
-webkit-transform: scale(.5) translateY(-100%);
-moz-transform: scale(.5) translateY(-100%);
-ms-transform: scale(.5) translateY(-100%);
-o-transform: scale(.5) translateY(-100%);
transform: scale(.5) translateY(-100%)
}
.ih-item.circle.effect3.bottom_to_top a:hover .info {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect4 .img {
opacity: 1;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
transition: all .4s ease-in-out
}
.ih-item.circle.effect4 .info,
.ih-item.circle.effect4 a:hover .img {
pointer-events: none;
opacity: 0
}
.ih-item.circle.effect4.colored .info {
background: #1a4a72
}
.ih-item.circle.effect4 .info {
background: #333;
visibility: hidden;
-webkit-transition: all .35s ease;
-moz-transition: all .35s ease;
transition: all .35s ease
}
.ih-item.circle.effect4 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0
}
.ih-item.circle.effect4 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px;
transition: all .35s ease-in-out
}
.ih-item.circle.effect4 .info p,
.ih-item.circle.effect5 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.circle.effect4 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.circle.effect4.left_to_right .img {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect4.left_to_right .info {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.circle.effect4.left_to_right a:hover .img {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.circle.effect4.left_to_right a:hover .info,
.ih-item.circle.effect4.right_to_left .img {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect4.right_to_left .info {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.circle.effect4.right_to_left a:hover .img {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.circle.effect4.right_to_left a:hover .info {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect4.top_to_bottom .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect4.top_to_bottom .info {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.circle.effect4.top_to_bottom a:hover .img {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.circle.effect4.bottom_to_top .img,
.ih-item.circle.effect4.top_to_bottom a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect4.bottom_to_top .info {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.circle.effect4.bottom_to_top a:hover .img {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.circle.effect4.bottom_to_top a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect5 {
-webkit-perspective: 900px;
-moz-perspective: 900px;
perspective: 900px
}
.ih-item.circle.effect5.colored .info .info-back {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.circle.effect5 .info {
transition: all .35s ease-in-out;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d
}
.ih-item.circle.effect5 .info .info-back {
visibility: hidden;
border-radius: 50%;
width: 100%;
height: 100%;
background: #333;
background: rgba(0, 0, 0, .6);
-webkit-transform: rotate3d(0, 1, 0, 180deg);
-moz-transform: rotate3d(0, 1, 0, 180deg);
-ms-transform: rotate3d(0, 1, 0, 180deg);
-o-transform: rotate3d(0, 1, 0, 180deg);
transform: rotate3d(0, 1, 0, 180deg);
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.ih-item.circle.effect5 .info h3,
.ih-item.circle.effect6 .info h3,
.ih-item.circle.effect7 .info h3 {
margin: 0 30px;
text-transform: uppercase;
position: relative;
letter-spacing: 2px;
height: 110px;
text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, .3)
}
.ih-item.circle.effect5 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0
}
.ih-item.circle.effect5 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect5 a:hover .info {
-webkit-transform: rotate3d(0, 1, 0, -180deg);
-moz-transform: rotate3d(0, 1, 0, -180deg);
-ms-transform: rotate3d(0, 1, 0, -180deg);
-o-transform: rotate3d(0, 1, 0, -180deg);
transform: rotate3d(0, 1, 0, -180deg)
}
.ih-item.circle.effect5 a:hover .info .info-back {
visibility: visible
}
.ih-item.circle.effect6 .img {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
transition: all .35s ease-in-out
}
.ih-item.circle.effect6 .img,
.ih-item.circle.effect6 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.circle.effect6.colored .info {
background: #1a4a72
}
.ih-item.circle.effect6 .info {
background: #333;
opacity: 0;
transition: all .35s ease-in-out
}
.ih-item.circle.effect6 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0
}
.ih-item.circle.effect6 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect6.scale_up .info {
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5);
transform: scale(.5)
}
.ih-item.circle.effect6.scale_up a:hover .img {
opacity: 0;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5)
}
.ih-item.circle.effect6.scale_up a:hover .info {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.circle.effect6.scale_down .info {
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5)
}
.ih-item.circle.effect6.scale_down a:hover .img {
opacity: 0;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5);
transform: scale(.5)
}
.ih-item.circle.effect6.scale_down a:hover .info {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.circle.effect6.scale_down_up .info {
transform: scale(.5);
-webkit-transition: all .35s ease-in-out .2s;
-moz-transition: all .35s ease-in-out .2s;
transition: all .35s ease-in-out .2s
}
.ih-item.circle.effect6.scale_down_up .info,
.ih-item.circle.effect6.scale_down_up a:hover .img {
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5)
}
.ih-item.circle.effect6.scale_down_up a:hover .img {
opacity: 0;
transform: scale(.5)
}
.ih-item.circle.effect6.scale_down_up a:hover .info {
transform: scale(1)
}
.ih-item.circle.effect6.scale_down_up a:hover .info,
.ih-item.circle.effect7 .img {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1)
}
.ih-item.circle.effect7 .img {
transform: scale(1);
-webkit-transition: all .35s ease-out;
-moz-transition: all .35s ease-out;
transition: all .35s ease-out
}
.ih-item.circle.effect7.colored .info {
background: #1a4a72
}
.ih-item.circle.effect7 .info {
background: #333;
opacity: 0;
visibility: hidden;
pointer-events: none;
-webkit-transition: all .35s ease .2s;
-moz-transition: all .35s ease .2s;
transition: all .35s ease .2s
}
.ih-item.circle.effect7 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0
}
.ih-item.circle.effect7 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect7 a:hover .img {
opacity: 0;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5);
transform: scale(.5)
}
.ih-item.circle.effect7 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.circle.effect7.left_to_right .info {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.circle.effect7.left_to_right a:hover .info {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect7.right_to_left .info {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.circle.effect7.right_to_left a:hover .info {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect7.top_to_bottom .info {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.circle.effect7.top_to_bottom a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect7.bottom_to_top .info {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.circle.effect7.bottom_to_top a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect8.colored .info {
background: #1a4a72
}
.ih-item.circle.effect8 .img-container {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
transition: all .3s ease-in-out
}
.ih-item.circle.effect8 .img-container .img {
opacity: 1;
-webkit-transition: all .3s ease-in-out .3s;
-moz-transition: all .3s ease-in-out .3s;
transition: all .3s ease-in-out .3s
}
.ih-item.circle.effect8 .info-container {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
text-align: center;
border-radius: 50%;
opacity: 0;
pointer-events: none;
-webkit-transition: all .3s ease-in-out .3s;
-moz-transition: all .3s ease-in-out .3s;
transition: all .3s ease-in-out .3s
}
.ih-item.circle.effect10 .info h3,
.ih-item.circle.effect9 .info h3 {
text-transform: uppercase;
position: relative;
letter-spacing: 2px;
text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, .3)
}
.ih-item.circle.effect8 .info {
width: 100%;
height: 100%;
background: #333;
transform: scale(.5);
-webkit-transition: all .35s ease-in-out .6s;
-moz-transition: all .35s ease-in-out .6s;
transition: all .35s ease-in-out .6s
}
.ih-item.circle.effect8 .info,
.ih-item.circle.effect8 a:hover .img-container {
pointer-events: none;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5)
}
.ih-item.circle.effect8 .info h3 {
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 22px;
margin: 0 30px;
padding: 45px 0 0;
height: 140px;
text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, .3)
}
.ih-item.circle.effect8 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect8 a:hover .img-container {
transform: scale(.5)
}
.ih-item.circle.effect8 a:hover .img-container .img {
opacity: 0;
pointer-events: none
}
.ih-item.circle.effect8 a:hover .info-container {
opacity: 1
}
.ih-item.circle.effect8 a:hover .info-container .info {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.circle.effect8.left_to_right .img-container .img {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect8.left_to_right .info-container {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.circle.effect8.left_to_right a:hover .img-container .img {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.circle.effect8.left_to_right a:hover .info-container,
.ih-item.circle.effect8.right_to_left .img-container .img {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect8.right_to_left .info-container {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.circle.effect8.right_to_left a:hover .img-container .img {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.circle.effect8.right_to_left a:hover .info-container {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect8.top_to_bottom .img-container .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect8.top_to_bottom .info-container {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.circle.effect8.top_to_bottom a:hover .img-container .img {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.circle.effect8.bottom_to_top .img-container .img,
.ih-item.circle.effect8.top_to_bottom a:hover .info-container {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect8.bottom_to_top .info-container {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.circle.effect8.bottom_to_top a:hover .img-container .img {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.circle.effect8.bottom_to_top a:hover .info-container {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect9 .img {
opacity: 1;
-webkit-transition: all .35s ease-out;
-moz-transition: all .35s ease-out;
transition: all .35s ease-out
}
.ih-item.circle.effect9.colored .info {
background: #1a4a72
}
.ih-item.circle.effect9 .info {
background: #333;
visibility: hidden;
transform: scale(.5);
-webkit-transition: all .35s ease .2s;
-moz-transition: all .35s ease .2s;
transition: all .35s ease .2s
}
.ih-item.circle.effect9 .info,
.ih-item.circle.effect9 a:hover .img {
opacity: 0;
pointer-events: none;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5)
}
.ih-item.circle.effect9 .info h3 {
color: #fff;
font-size: 22px;
margin: 0 30px;
padding: 55px 0 0;
height: 110px
}
.ih-item.circle.effect9 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect9 a:hover .img {
transform: scale(.5)
}
.ih-item.circle.effect9 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.circle.effect9.left_to_right .img {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0)
}
.ih-item.circle.effect9.left_to_right a:hover .img {
-webkit-transform: translateX(100%) rotate(180deg);
-moz-transform: translateX(100%) rotate(180deg);
-ms-transform: translateX(100%) rotate(180deg);
-o-transform: translateX(100%) rotate(180deg);
transform: translateX(100%) rotate(180deg)
}
.ih-item.circle.effect9.right_to_left .img {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0)
}
.ih-item.circle.effect9.right_to_left a:hover .img {
-webkit-transform: translateX(-100%) rotate(-180deg);
-moz-transform: translateX(-100%) rotate(-180deg);
-ms-transform: translateX(-100%) rotate(-180deg);
-o-transform: translateX(-100%) rotate(-180deg);
transform: translateX(-100%) rotate(-180deg)
}
.ih-item.circle.effect9.top_to_bottom .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect9.top_to_bottom a:hover .img {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.circle.effect9.bottom_to_top .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect9.bottom_to_top a:hover .img {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.circle.effect10 .img {
z-index: 11;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out
}
.ih-item.circle.effect10.colored .info {
background: #1a4a72
}
.ih-item.circle.effect10 .info {
background: #333;
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
transition: all .35s ease-in-out
}
.ih-item.circle.effect10 .info,
.ih-item.circle.effect11 .img {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.circle.effect10 .info h3 {
color: #fff;
font-size: 22px
}
.ih-item.circle.effect10 .info p {
color: #bbb;
font-size: 12px;
border-top: 1px solid rgba(255, 255, 255, .5)
}
.ih-item.circle.effect10 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.circle.effect10.top_to_bottom .info h3 {
margin: 0 30px;
padding: 25px 0 0;
height: 78px
}
.ih-item.circle.effect10.top_to_bottom .info p {
margin: 0 30px;
padding: 5px
}
.ih-item.circle.effect10.top_to_bottom a:hover .img {
-webkit-transform: translateY(50px) scale(.5);
-moz-transform: translateY(50px) scale(.5);
-ms-transform: translateY(50px) scale(.5);
-o-transform: translateY(50px) scale(.5);
transform: translateY(50px) scale(.5)
}
.ih-item.circle.effect10.bottom_to_top .info h3 {
margin: 95px 30px 0;
padding: 25px 0 0;
height: 78px
}
.ih-item.circle.effect11 .info h3,
.ih-item.circle.effect12 .info h3,
.ih-item.circle.effect13 .info h3,
.ih-item.circle.effect14 .info h3,
.ih-item.circle.effect15 .info h3,
.ih-item.circle.effect16 .info h3 {
text-transform: uppercase;
position: relative;
letter-spacing: 2px;
height: 110px;
text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, .3)
}
.ih-item.circle.effect10.bottom_to_top .info p {
margin: 0 30px;
padding: 5px
}
.ih-item.circle.effect10.bottom_to_top a:hover .img {
-webkit-transform: translateY(-50px) scale(.5);
-moz-transform: translateY(-50px) scale(.5);
-ms-transform: translateY(-50px) scale(.5);
-o-transform: translateY(-50px) scale(.5);
transform: translateY(-50px) scale(.5)
}
.ih-item.circle.effect11 {
-webkit-perspective: 900px;
-moz-perspective: 900px;
perspective: 900px
}
.ih-item.circle.effect11 .img {
opacity: 1;
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
transition: all .35s ease-in-out
}
.ih-item.circle.effect11.colored .info {
background: #1a4a72
}
.ih-item.circle.effect11 .info {
background: #333;
opacity: 0;
visibility: hidden;
-webkit-transition: all .35s ease .35s;
-moz-transition: all .35s ease .35s;
transition: all .35s ease .35s
}
.ih-item.circle.effect11 .info h3 {
color: #fff;
font-size: 22px;
margin: 0 30px;
padding: 55px 0 0
}
.ih-item.circle.effect11 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect11 a:hover .img {
opacity: 0
}
.ih-item.circle.effect11 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.circle.effect11.left_to_right .img {
-webkit-transform: translateZ(0) rotateY(0);
-moz-transform: translateZ(0) rotateY(0);
-ms-transform: translateZ(0) rotateY(0);
-o-transform: translateZ(0) rotateY(0);
transform: translateZ(0) rotateY(0)
}
.ih-item.circle.effect11.left_to_right .info {
-webkit-transform: translateZ(-1000px) rotateY(-90deg);
-moz-transform: translateZ(-1000px) rotateY(-90deg);
-ms-transform: translateZ(-1000px) rotateY(-90deg);
-o-transform: translateZ(-1000px) rotateY(-90deg);
transform: translateZ(-1000px) rotateY(-90deg)
}
.ih-item.circle.effect11.left_to_right a:hover .img {
-webkit-transform: translateZ(-1000px) rotateY(90deg);
-moz-transform: translateZ(-1000px) rotateY(90deg);
-ms-transform: translateZ(-1000px) rotateY(90deg);
-o-transform: translateZ(-1000px) rotateY(90deg);
transform: translateZ(-1000px) rotateY(90deg)
}
.ih-item.circle.effect11.left_to_right a:hover .info,
.ih-item.circle.effect11.right_to_left .img {
-webkit-transform: translateZ(0) rotateY(0);
-moz-transform: translateZ(0) rotateY(0);
-ms-transform: translateZ(0) rotateY(0);
-o-transform: translateZ(0) rotateY(0);
transform: translateZ(0) rotateY(0)
}
.ih-item.circle.effect11.right_to_left .info {
-webkit-transform: translateZ(-1000px) rotateY(90deg);
-moz-transform: translateZ(-1000px) rotateY(90deg);
-ms-transform: translateZ(-1000px) rotateY(90deg);
-o-transform: translateZ(-1000px) rotateY(90deg);
transform: translateZ(-1000px) rotateY(90deg)
}
.ih-item.circle.effect11.right_to_left a:hover .img {
-webkit-transform: translateZ(-1000px) rotateY(-90deg);
-moz-transform: translateZ(-1000px) rotateY(-90deg);
-ms-transform: translateZ(-1000px) rotateY(-90deg);
-o-transform: translateZ(-1000px) rotateY(-90deg);
transform: translateZ(-1000px) rotateY(-90deg)
}
.ih-item.circle.effect11.right_to_left a:hover .info {
-webkit-transform: translateZ(0) rotateY(0);
-moz-transform: translateZ(0) rotateY(0);
-ms-transform: translateZ(0) rotateY(0);
-o-transform: translateZ(0) rotateY(0);
transform: translateZ(0) rotateY(0)
}
.ih-item.circle.effect11.top_to_bottom .img {
-webkit-transform: translateZ(0) rotateX(0);
-moz-transform: translateZ(0) rotateX(0);
-ms-transform: translateZ(0) rotateX(0);
-o-transform: translateZ(0) rotateX(0);
transform: translateZ(0) rotateX(0)
}
.ih-item.circle.effect11.top_to_bottom .info {
-webkit-transform: translateZ(-1000px) rotateX(90deg);
-moz-transform: translateZ(-1000px) rotateX(90deg);
-ms-transform: translateZ(-1000px) rotateX(90deg);
-o-transform: translateZ(-1000px) rotateX(90deg);
transform: translateZ(-1000px) rotateX(90deg)
}
.ih-item.circle.effect11.top_to_bottom a:hover .img {
-webkit-transform: translateZ(-1000px) rotateX(-90deg);
-moz-transform: translateZ(-1000px) rotateX(-90deg);
-ms-transform: translateZ(-1000px) rotateX(-90deg);
-o-transform: translateZ(-1000px) rotateX(-90deg);
transform: translateZ(-1000px) rotateX(-90deg)
}
.ih-item.circle.effect11.bottom_to_top .img,
.ih-item.circle.effect11.top_to_bottom a:hover .info {
-webkit-transform: translateZ(0) rotateX(0);
-moz-transform: translateZ(0) rotateX(0);
-ms-transform: translateZ(0) rotateX(0);
-o-transform: translateZ(0) rotateX(0);
transform: translateZ(0) rotateX(0)
}
.ih-item.circle.effect11.bottom_to_top .info {
-webkit-transform: translateZ(-1000px) rotateX(-90deg);
-moz-transform: translateZ(-1000px) rotateX(-90deg);
-ms-transform: translateZ(-1000px) rotateX(-90deg);
-o-transform: translateZ(-1000px) rotateX(-90deg);
transform: translateZ(-1000px) rotateX(-90deg)
}
.ih-item.circle.effect11.bottom_to_top a:hover .img {
-webkit-transform: translateZ(-1000px) rotateX(90deg);
-moz-transform: translateZ(-1000px) rotateX(90deg);
-ms-transform: translateZ(-1000px) rotateX(90deg);
-o-transform: translateZ(-1000px) rotateX(90deg);
transform: translateZ(-1000px) rotateX(90deg)
}
.ih-item.circle.effect11.bottom_to_top a:hover .info {
-webkit-transform: translateZ(0) rotateX(0);
-moz-transform: translateZ(0) rotateX(0);
-ms-transform: translateZ(0) rotateX(0);
-o-transform: translateZ(0) rotateX(0);
transform: translateZ(0) rotateX(0)
}
.ih-item.circle.effect12 .img {
opacity: 1;
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out
}
.ih-item.circle.effect12.colored .info {
background: #1a4a72
}
.ih-item.circle.effect12 .info {
background: #333;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5);
transform: scale(.5);
transition: all .35s ease-in-out
}
.ih-item.circle.effect12 .info,
.ih-item.circle.effect13 .info {
pointer-events: none;
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.circle.effect12 .info h3 {
color: #fff;
font-size: 22px;
margin: 0 30px;
padding: 55px 0 0
}
.ih-item.circle.effect12 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect12 a:hover .img {
opacity: 0;
pointer-events: none
}
.ih-item.circle.effect12 a:hover .info {
opacity: 1;
visibility: visible
}
.ih-item.circle.effect12.left_to_right .img {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0)
}
.ih-item.circle.effect12.left_to_right .info,
.ih-item.circle.effect12.left_to_right a:hover .img {
-webkit-transform: translateX(100%) rotate(180deg);
-moz-transform: translateX(100%) rotate(180deg);
-ms-transform: translateX(100%) rotate(180deg);
-o-transform: translateX(100%) rotate(180deg);
transform: translateX(100%) rotate(180deg)
}
.ih-item.circle.effect12.left_to_right a:hover .info {
transform: translateX(0) rotate(0);
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
transition-delay: .4s
}
.ih-item.circle.effect12.left_to_right a:hover .info,
.ih-item.circle.effect12.right_to_left .img {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0)
}
.ih-item.circle.effect12.right_to_left .img {
transform: translateX(0) rotate(0)
}
.ih-item.circle.effect12.right_to_left .info,
.ih-item.circle.effect12.right_to_left a:hover .img {
-webkit-transform: translateX(-100%) rotate(-180deg);
-moz-transform: translateX(-100%) rotate(-180deg);
-ms-transform: translateX(-100%) rotate(-180deg);
-o-transform: translateX(-100%) rotate(-180deg);
transform: translateX(-100%) rotate(-180deg)
}
.ih-item.circle.effect12.right_to_left a:hover .info {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0);
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
transition-delay: .4s
}
.ih-item.circle.effect12.top_to_bottom .img {
-webkit-transform: translateY(0) rotate(0);
-moz-transform: translateY(0) rotate(0);
-ms-transform: translateY(0) rotate(0);
-o-transform: translateY(0) rotate(0);
transform: translateY(0) rotate(0)
}
.ih-item.circle.effect12.top_to_bottom .info,
.ih-item.circle.effect12.top_to_bottom a:hover .img {
-webkit-transform: translateY(-100%) rotate(-180deg);
-moz-transform: translateY(-100%) rotate(-180deg);
-ms-transform: translateY(-100%) rotate(-180deg);
-o-transform: translateY(-100%) rotate(-180deg);
transform: translateY(-100%) rotate(-180deg)
}
.ih-item.circle.effect12.top_to_bottom a:hover .info {
transform: translateY(0) rotate(0);
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
transition-delay: .4s
}
.ih-item.circle.effect12.bottom_to_top .img,
.ih-item.circle.effect12.top_to_bottom a:hover .info {
-webkit-transform: translateY(0) rotate(0);
-moz-transform: translateY(0) rotate(0);
-ms-transform: translateY(0) rotate(0);
-o-transform: translateY(0) rotate(0)
}
.ih-item.circle.effect12.bottom_to_top .img {
transform: translateY(0) rotate(0)
}
.ih-item.circle.effect12.bottom_to_top .info,
.ih-item.circle.effect12.bottom_to_top a:hover .img {
-webkit-transform: translateY(100%) rotate(180deg);
-moz-transform: translateY(100%) rotate(180deg);
-ms-transform: translateY(100%) rotate(180deg);
-o-transform: translateY(100%) rotate(180deg);
transform: translateY(100%) rotate(180deg)
}
.ih-item.circle.effect12.bottom_to_top a:hover .info {
-webkit-transform: translateY(0) rotate(0);
-moz-transform: translateY(0) rotate(0);
-ms-transform: translateY(0) rotate(0);
-o-transform: translateY(0) rotate(0);
transform: translateY(0) rotate(0);
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
transition-delay: .4s
}
.ih-item.circle.effect13.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.circle.effect13 .info {
background: #333;
opacity: 0;
transition: all .35s ease-in-out
}
.ih-item.circle.effect13 a:hover .info {
opacity: 0.8 !important;
}
.ih-item.circle.effect13 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0;
transition: all .35s ease-in-out
}
.ih-item.circle.effect13 .info h3,
.ih-item.circle.effect13 .info p {
margin: 0 30px;
visibility: hidden;
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.circle.effect13 .info p {
color: #bbb;
padding: 10px 5px;
font-size: 12px;
transition: all .35s ease-in-out
}
.ih-item.circle.effect13 a:hover .info {
opacity: 1
}
.ih-item.circle.effect13 a:hover h3,
.ih-item.circle.effect13 a:hover p {
visibility: visible
}
.ih-item.circle.effect13.from_left_and_right .info h3 {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.circle.effect13.from_left_and_right .info p {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.circle.effect13.from_left_and_right a:hover h3,
.ih-item.circle.effect13.from_left_and_right a:hover p {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.circle.effect13.top_to_bottom .info h3,
.ih-item.circle.effect13.top_to_bottom .info p {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.circle.effect13.top_to_bottom a:hover h3,
.ih-item.circle.effect13.top_to_bottom a:hover p {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect13.bottom_to_top .info h3,
.ih-item.circle.effect13.bottom_to_top .info p {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.circle.effect13.bottom_to_top a:hover h3,
.ih-item.circle.effect13.bottom_to_top a:hover p {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.circle.effect14 {
-webkit-perspective: 900px;
-moz-perspective: 900px;
perspective: 900px
}
.ih-item.circle.effect14 .img {
visibility: visible;
opacity: 1;
-webkit-transition: all .4s ease-out;
-moz-transition: all .4s ease-out;
transition: all .4s ease-out
}
.ih-item.circle.effect14.colored .info {
background: #1a4a72
}
.ih-item.circle.effect14 .info {
background: #333;
opacity: 0;
visibility: hidden;
-webkit-transition: all .35s ease-in-out .3s;
-moz-transition: all .35s ease-in-out .3s;
transition: all .35s ease-in-out .3s
}
.ih-item.circle.effect14 .info h3 {
color: #fff;
font-size: 22px;
margin: 0 30px;
padding: 55px 0 0
}
.ih-item.circle.effect14 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect14 a:hover .img {
opacity: 0;
visibility: hidden
}
.ih-item.circle.effect14 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.circle.effect14.left_to_right .img {
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
-ms-transform: rotateY(0);
-o-transform: rotateY(0);
transform: rotateY(0);
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%
}
.ih-item.circle.effect14.left_to_right .info {
-webkit-transform: rotateY(90deg);
-moz-transform: rotateY(90deg);
-ms-transform: rotateY(90deg);
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
-ms-transform-origin: 0 50%;
-o-transform-origin: 0 50%;
transform-origin: 0 50%
}
.ih-item.circle.effect14.left_to_right a:hover .img {
-webkit-transform: rotateY(-90deg);
-moz-transform: rotateY(-90deg);
-ms-transform: rotateY(-90deg);
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg)
}
.ih-item.circle.effect14.left_to_right a:hover .info {
transform: rotateY(0)
}
.ih-item.circle.effect14.left_to_right a:hover .info,
.ih-item.circle.effect14.right_to_left .img {
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
-ms-transform: rotateY(0);
-o-transform: rotateY(0)
}
.ih-item.circle.effect14.right_to_left .img {
transform: rotateY(0);
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
-ms-transform-origin: 0 50%;
-o-transform-origin: 0 50%;
transform-origin: 0 50%
}
.ih-item.circle.effect14.right_to_left .info {
-webkit-transform: rotateY(-90deg);
-moz-transform: rotateY(-90deg);
-ms-transform: rotateY(-90deg);
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%
}
.ih-item.circle.effect14.right_to_left a:hover .img {
-webkit-transform: rotateY(90deg);
-moz-transform: rotateY(90deg);
-ms-transform: rotateY(90deg);
-o-transform: rotateY(90deg);
transform: rotateY(90deg)
}
.ih-item.circle.effect14.right_to_left a:hover .info {
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
-ms-transform: rotateY(0);
-o-transform: rotateY(0);
transform: rotateY(0)
}
.ih-item.circle.effect14.top_to_bottom .img {
-webkit-transform: rotateX(0);
-moz-transform: rotateX(0);
-ms-transform: rotateX(0);
-o-transform: rotateX(0);
transform: rotateX(0);
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%
}
.ih-item.circle.effect14.top_to_bottom .info {
-webkit-transform: rotateX(-90deg);
-moz-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
-o-transform-origin: 50% 0;
transform-origin: 50% 0
}
.ih-item.circle.effect14.top_to_bottom a:hover .img {
-webkit-transform: rotateX(90deg);
-moz-transform: rotateX(90deg);
-ms-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg)
}
.ih-item.circle.effect14.top_to_bottom a:hover .info {
transform: rotateX(0)
}
.ih-item.circle.effect14.bottom_to_top .img,
.ih-item.circle.effect14.top_to_bottom a:hover .info {
-webkit-transform: rotateX(0);
-moz-transform: rotateX(0);
-ms-transform: rotateX(0);
-o-transform: rotateX(0)
}
.ih-item.circle.effect14.bottom_to_top .img {
transform: rotateX(0);
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
-o-transform-origin: 50% 0;
transform-origin: 50% 0
}
.ih-item.circle.effect14.bottom_to_top .info {
-webkit-transform: rotateX(90deg);
-moz-transform: rotateX(90deg);
-ms-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%
}
.ih-item.circle.effect14.bottom_to_top a:hover .img {
-webkit-transform: rotateX(-90deg);
-moz-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg)
}
.ih-item.circle.effect14.bottom_to_top a:hover .info {
-webkit-transform: rotateX(0);
-moz-transform: rotateX(0);
-ms-transform: rotateX(0);
-o-transform: rotateX(0);
transform: rotateX(0)
}
.ih-item.circle.effect15 .img {
opacity: 1;
visibility: visible;
-webkit-transform: scale(1) rotate(0);
-moz-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
-o-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out
}
.ih-item.circle.effect15.colored .info {
background: #1a4a72
}
.ih-item.circle.effect15 .info {
background: #333;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(.5) rotate(-720deg);
-moz-transform: scale(.5) rotate(-720deg);
-ms-transform: scale(.5) rotate(-720deg);
-o-transform: scale(.5) rotate(-720deg);
transform: scale(.5) rotate(-720deg);
-webkit-transition: all .35s ease-in-out .3s;
-moz-transition: all .35s ease-in-out .3s;
transition: all .35s ease-in-out .3s
}
.ih-item.circle.effect15 .info h3 {
color: #fff;
font-size: 22px;
margin: 0 30px;
padding: 55px 0 0
}
.ih-item.circle.effect15 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect15 a:hover .img {
opacity: 0;
visibility: hidden;
-webkit-transform: scale(.5) rotate(720deg);
-moz-transform: scale(.5) rotate(720deg);
-ms-transform: scale(.5) rotate(720deg);
-o-transform: scale(.5) rotate(720deg);
transform: scale(.5) rotate(720deg)
}
.ih-item.circle.effect15 a:hover .info {
opacity: 1;
visibility: visible;
-webkit-transform: scale(1) rotate(0);
-moz-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
-o-transform: scale(1) rotate(0);
transform: scale(1) rotate(0)
}
.ih-item.circle.effect16 .img {
z-index: 11;
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out
}
.ih-item.circle.effect16.colored .info {
background: #1a4a72
}
.ih-item.circle.effect16 .info {
background: #333;
transition: all .35s ease-in-out
}
.ih-item.circle.effect16 .info,
.ih-item.circle.effect16 .info p {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.circle.effect16 .info h3 {
color: #fff;
font-size: 22px;
margin: 0 30px;
padding: 55px 0 0
}
.ih-item.circle.effect16 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px;
transition: all .35s ease-in-out
}
.ih-item.circle.effect16.left_to_right .img:after,
.ih-item.circle.effect16.right_to_left .img:after {
border-radius: 50%;
content: '';
width: 8px;
height: 8px;
position: absolute;
top: 40%;
margin: -4px 0 0 -4px;
background: rgba(0, 0, 0, .8);
box-shadow: 0 0 1px rgba(255, 255, 255, .9)
}
.ih-item.circle.effect16.left_to_right .img {
-webkit-transform-origin: 95% 40%;
-moz-transform-origin: 95% 40%;
-ms-transform-origin: 95% 40%;
-o-transform-origin: 95% 40%;
transform-origin: 95% 40%
}
.ih-item.circle.effect16.left_to_right .img:after {
left: 95%
}
.ih-item.circle.effect16.left_to_right a:hover .img {
-webkit-transform: rotate(-120deg);
-moz-transform: rotate(-120deg);
-ms-transform: rotate(-120deg);
-o-transform: rotate(-120deg);
transform: rotate(-120deg)
}
.ih-item.circle.effect16.right_to_left .img {
-webkit-transform-origin: 5% 40%;
-moz-transform-origin: 5% 40%;
-ms-transform-origin: 5% 40%;
-o-transform-origin: 5% 40%;
transform-origin: 5% 40%
}
.ih-item.circle.effect16.right_to_left .img:after {
left: 5%
}
.ih-item.circle.effect17 .info h3,
.ih-item.circle.effect18 .info h3,
.ih-item.circle.effect20 .info h3 {
text-transform: uppercase;
margin: 0 30px;
position: relative;
letter-spacing: 2px;
text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, .3)
}
.ih-item.circle.effect16.right_to_left a:hover .img {
-webkit-transform: rotate(120deg);
-moz-transform: rotate(120deg);
-ms-transform: rotate(120deg);
-o-transform: rotate(120deg);
transform: rotate(120deg)
}
.ih-item.circle.effect17 .info {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
transition: all .35s ease-in-out
}
.ih-item.circle.effect17 .info,
.ih-item.circle.effect17 .info p {
opacity: 0;
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.circle.effect17 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0;
height: 110px
}
.ih-item.circle.effect17 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px;
transition: all .35s ease-in-out
}
.ih-item.circle.effect17 a:hover .img:before {
box-shadow: inset 0 0 0 110px #333, inset 0 0 0 16px rgba(255, 255, 255, .8), 0 1px 2px rgba(0, 0, 0, .1);
box-shadow: inset 0 0 0 110px rgba(0, 0, 0, .6), inset 0 0 0 16px rgba(255, 255, 255, .8), 0 1px 2px rgba(0, 0, 0, .1)
}
.ih-item.circle.effect17 a:hover .info {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.circle.effect17 a:hover .info p {
opacity: 1
}
.ih-item.circle.effect17.colored a:hover .img:before {
box-shadow: inset 0 0 0 110px #1a4a72, inset 0 0 0 16px rgba(255, 255, 255, .8), 0 1px 2px rgba(0, 0, 0, .1);
box-shadow: inset 0 0 0 110px rgba(26, 74, 114, .6), inset 0 0 0 16px rgba(255, 255, 255, .8), 0 1px 2px rgba(0, 0, 0, .1)
}
.ih-item.circle.effect18 {
-webkit-perspective: 900px;
-moz-perspective: 900px;
perspective: 900px
}
.ih-item.circle.effect18 .img {
z-index: 11;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
transition: all .5s ease-in-out
}
.ih-item.circle.effect18.colored .info .info-back {
background: #1a4a72
}
.ih-item.circle.effect18 .info {
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d
}
.ih-item.circle.effect18 .info .info-back {
opacity: 1;
border-radius: 50%;
width: 100%;
height: 100%;
background: #333
}
.ih-item.circle.effect18 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0;
height: 110px
}
.ih-item.circle.effect18 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect18.bottom_to_top .img {
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
-o-transform-origin: 50% 0;
transform-origin: 50% 0
}
.ih-item.circle.effect18.bottom_to_top a:hover .img {
-webkit-transform: rotate3d(1, 0, 0, 180deg);
-moz-transform: rotate3d(1, 0, 0, 180deg);
-ms-transform: rotate3d(1, 0, 0, 180deg);
-o-transform: rotate3d(1, 0, 0, 180deg);
transform: rotate3d(1, 0, 0, 180deg)
}
.ih-item.circle.effect18.top_to_bottom .img {
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%
}
.ih-item.circle.effect18.top_to_bottom a:hover .img {
-webkit-transform: rotate3d(1, 0, 0, -180deg);
-moz-transform: rotate3d(1, 0, 0, -180deg);
-ms-transform: rotate3d(1, 0, 0, -180deg);
-o-transform: rotate3d(1, 0, 0, -180deg);
transform: rotate3d(1, 0, 0, -180deg)
}
.ih-item.circle.effect18.left_to_right .img {
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%
}
.ih-item.circle.effect18.left_to_right a:hover .img {
-webkit-transform: rotate3d(0, 1, 0, 180deg);
-moz-transform: rotate3d(0, 1, 0, 180deg);
-ms-transform: rotate3d(0, 1, 0, 180deg);
-o-transform: rotate3d(0, 1, 0, 180deg);
transform: rotate3d(0, 1, 0, 180deg)
}
.ih-item.circle.effect18.right_to_left .img {
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
-ms-transform-origin: 0 50%;
-o-transform-origin: 0 50%;
transform-origin: 0 50%
}
.ih-item.circle.effect18.right_to_left a:hover .img {
-webkit-transform: rotate3d(0, 1, 0, -180deg);
-moz-transform: rotate3d(0, 1, 0, -180deg);
-ms-transform: rotate3d(0, 1, 0, -180deg);
-o-transform: rotate3d(0, 1, 0, -180deg);
transform: rotate3d(0, 1, 0, -180deg)
}
.ih-item.circle.effect19.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.circle.effect19 .info {
background: #333;
background: rgba(0, 0, 0, .6);
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out
}
.ih-item.circle.effect19 .info h3 {
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 22px;
margin: 0 30px;
padding: 45px 0 0;
height: 140px;
text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, .3)
}
.ih-item.circle.effect19 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect19 a:hover .info {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.circle.effect20 {
-webkit-perspective: 900px;
-moz-perspective: 900px;
perspective: 900px
}
.ih-item.circle.effect20 .img {
-webkit-transition: all .35s linear;
-moz-transition: all .35s linear;
transition: all .35s linear;
transform-origin: 50% 0
}
.ih-item.circle.effect20 .img,
.ih-item.circle.effect20 .info .info-back {
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
-o-transform-origin: 50% 0
}
.ih-item.circle.effect20.colored .info .info-back {
background: #1a4a72
}
.ih-item.circle.effect20 .info {
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d
}
.ih-item.circle.effect20 .info .info-back {
opacity: 1;
visibility: hidden;
border-radius: 50%;
width: 100%;
height: 100%;
background: #333;
-webkit-transition: all .35s linear;
-moz-transition: all .35s linear;
transition: all .35s linear;
transform-origin: 50% 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden
}
.ih-item.circle.effect20 .info h3 {
color: #fff;
font-size: 22px;
padding: 55px 0 0;
height: 110px
}
.ih-item.circle.effect20 .info p {
color: #bbb;
padding: 10px 5px;
margin: 0 30px;
font-size: 12px
}
.ih-item.circle.effect20 a:hover .img {
opacity: 0
}
.ih-item.circle.effect20 a:hover .info .info-back {
opacity: 1;
visibility: visible
}
.ih-item.circle.effect20.top_to_bottom .info .info-back {
-webkit-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
-moz-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
-ms-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
-o-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg)
}
.ih-item.circle.effect20.top_to_bottom a:hover .img {
-webkit-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
-moz-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
-ms-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
-o-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg)
}
.ih-item.circle.effect20.top_to_bottom a:hover .info .info-back {
-webkit-transform: rotate3d(1, 0, 0, 0deg);
-moz-transform: rotate3d(1, 0, 0, 0deg);
-ms-transform: rotate3d(1, 0, 0, 0deg);
-o-transform: rotate3d(1, 0, 0, 0deg);
transform: rotate3d(1, 0, 0, 0deg)
}
.ih-item.circle.effect20.bottom_to_top .info .info-back {
-webkit-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
-moz-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
-ms-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
-o-transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg);
transform: translate3d(0, 280px, 0) rotate3d(1, 0, 0, -90deg)
}
.ih-item.circle.effect20.bottom_to_top a:hover .img {
-webkit-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
-moz-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
-ms-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
-o-transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg);
transform: translate3d(0, 0, -220px) rotate3d(1, 0, 0, 90deg)
}
.ih-item.circle.effect20.bottom_to_top a:hover .info .info-back {
-webkit-transform: rotate3d(1, 0, 0, 0deg);
-moz-transform: rotate3d(1, 0, 0, 0deg);
-ms-transform: rotate3d(1, 0, 0, 0deg);
-o-transform: rotate3d(1, 0, 0, 0deg);
transform: rotate3d(1, 0, 0, 0deg)
}
.ih-item.square.effect1.colored .info {
background: #1a4a72
}
.ih-item.square.effect1 .img {
z-index: 11;
position: absolute;
transition: all .35s ease-in-out;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect1 .img,
.ih-item.square.effect1 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect1 .info {
background: #333;
visibility: hidden;
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
transition: all .35s ease-in-out
}
.ih-item.square.effect1 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect1.left_and_right .info h3 {
position: absolute;
top: 12px;
left: 12px;
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
margin: 0
}
.ih-item.square.effect1.left_and_right .info p {
position: absolute;
right: 12px;
bottom: 12px;
margin: 0;
font-size: 12px;
color: #bbb
}
.ih-item.square.effect1.left_and_right a:hover .img {
-webkit-transform: scale(.6);
-moz-transform: scale(.6);
-ms-transform: scale(.6);
-o-transform: scale(.6);
transform: scale(.6)
}
.ih-item.square.effect1.top_to_bottom .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px 10px 0 4px;
margin: 10px 0 0
}
.ih-item.square.effect1.top_to_bottom .info p {
font-size: 12px;
color: #bbb;
padding: 5px;
text-align: center
}
.ih-item.square.effect1.top_to_bottom a:hover .img {
-webkit-transform: translateY(30px) scale(.6);
-moz-transform: translateY(30px) scale(.6);
-ms-transform: translateY(30px) scale(.6);
-o-transform: translateY(30px) scale(.6);
transform: translateY(30px) scale(.6)
}
.ih-item.square.effect1.bottom_to_top .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px 10px 0 4px;
margin: 134px 0 0
}
.ih-item.square.effect1.bottom_to_top .info p {
font-size: 12px;
color: #bbb;
padding: 5px;
text-align: center
}
.ih-item.square.effect1.bottom_to_top a:hover .img {
-webkit-transform: translateY(-30px) scale(.6);
-moz-transform: translateY(-30px) scale(.6);
-ms-transform: translateY(-30px) scale(.6);
-o-transform: translateY(-30px) scale(.6);
transform: translateY(-30px) scale(.6)
}
.ih-item.square.effect2.colored .info {
background: #1a4a72
}
.ih-item.square.effect2.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect2 .img {
opacity: 1;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
-webkit-transform: rotate(0) scale(1);
-moz-transform: rotate(0) scale(1);
-ms-transform: rotate(0) scale(1);
-o-transform: rotate(0) scale(1);
transform: rotate(0) scale(1)
}
.ih-item.square.effect2 .info {
background: #333;
visibility: hidden;
-webkit-transition: all .35s .3s ease-in-out;
-moz-transition: all .35s .3s ease-in-out;
transition: all .35s .3s ease-in-out
}
.ih-item.square.effect2 .info h3 {
text-transform: uppercase;
color: #fff;
font-size: 17px;
padding: 10px;
background: #111;
margin: 30px 0 0;
transform: translateY(-200px);
-webkit-transition: all .35s .6s ease-in-out;
-moz-transition: all .35s .6s ease-in-out;
transition: all .35s .6s ease-in-out
}
.ih-item.square.effect2 .info h3,
.ih-item.square.effect2 .info p {
text-align: center;
-webkit-transform: translateY(-200px);
-moz-transform: translateY(-200px);
-ms-transform: translateY(-200px);
-o-transform: translateY(-200px)
}
.ih-item.square.effect2 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
transform: translateY(-200px);
-webkit-transition: all .35s .5s linear;
-moz-transition: all .35s .5s linear;
transition: all .35s .5s linear
}
.ih-item.square.effect2 a:hover .img {
-webkit-transform: rotate(720deg) scale(0);
-moz-transform: rotate(720deg) scale(0);
-ms-transform: rotate(720deg) scale(0);
-o-transform: rotate(720deg) scale(0);
transform: rotate(720deg) scale(0);
opacity: 0
}
.ih-item.square.effect2 a:hover .info {
visibility: visible
}
.ih-item.square.effect2 a:hover .info h3,
.ih-item.square.effect2 a:hover .info p {
transform: translateY(0)
}
.ih-item.square.effect2 a:hover .info h3,
.ih-item.square.effect2 a:hover .info p,
.ih-item.square.effect3 .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0)
}
.ih-item.square.effect3.colored .info {
background: #1a4a72
}
.ih-item.square.effect3 .img {
transform: translateY(0);
transition: all .35s ease-in-out
}
.ih-item.square.effect3 .img,
.ih-item.square.effect3 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect3 .info {
height: 65px;
background: #333;
opacity: 0;
transition: all .35s ease-in-out
}
.ih-item.square.effect3 .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px 10px 0 4px;
margin: 4px 0 0
}
.ih-item.square.effect3 .info p {
font-size: 12px;
position: relative;
color: #bbb; text-align: center
}
.ih-item.square.effect3 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect3.bottom_to_top .info {
top: auto;
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect3.bottom_to_top a:hover .img {
-webkit-transform: translateY(-50px);
-moz-transform: translateY(-50px);
-ms-transform: translateY(-50px);
-o-transform: translateY(-50px);
transform: translateY(-50px)
}
.ih-item.square.effect3.bottom_to_top a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect3.top_to_bottom .info {
bottom: auto;
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect3.top_to_bottom a:hover .img {
-webkit-transform: translateY(50px);
-moz-transform: translateY(50px);
-ms-transform: translateY(50px);
-o-transform: translateY(50px);
transform: translateY(50px)
}
.ih-item.square.effect3.top_to_bottom a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect4 {
position: relative
}
.ih-item.square.effect4.colored .info {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect4.colored .mask1,
.ih-item.square.effect4.colored .mask2 {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.square.effect4 .img {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out
}
.ih-item.square.effect4 .mask1,
.ih-item.square.effect4 .mask2 {
position: absolute;
background: #333;
background: rgba(0, 0, 0, .6);
height: 361px;
width: 361px;
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out
}
.ih-item.square.effect4 .mask1 {
left: auto;
right: 0;
top: 0;
-webkit-transform: rotate(56.5deg) translateX(-180px);
-moz-transform: rotate(56.5deg) translateX(-180px);
-ms-transform: rotate(56.5deg) translateX(-180px);
-o-transform: rotate(56.5deg) translateX(-180px);
transform: rotate(56.5deg) translateX(-180px);
-webkit-transform-origin: 100% 0;
-moz-transform-origin: 100% 0;
-ms-transform-origin: 100% 0;
-o-transform-origin: 100% 0;
transform-origin: 100% 0
}
.ih-item.square.effect4 .mask2 {
top: auto;
bottom: 0;
left: 0;
-webkit-transform: rotate(56.5deg) translateX(180px);
-moz-transform: rotate(56.5deg) translateX(180px);
-ms-transform: rotate(56.5deg) translateX(180px);
-o-transform: rotate(56.5deg) translateX(180px);
transform: rotate(56.5deg) translateX(180px);
-webkit-transform-origin: 0 100%;
-moz-transform-origin: 0 100%;
-ms-transform-origin: 0 100%;
-o-transform-origin: 0 100%;
transform-origin: 0 100%
}
.ih-item.square.effect4 .info {
background: #111;
height: 0;
visibility: hidden;
width: 361px;
-webkit-transform: rotate(-33.5deg) translate(-112px, 166px);
-moz-transform: rotate(-33.5deg) translate(-112px, 166px);
-ms-transform: rotate(-33.5deg) translate(-112px, 166px);
-o-transform: rotate(-33.5deg) translate(-112px, 166px);
transform: rotate(-33.5deg) translate(-112px, 166px);
-webkit-transform-origin: 0 100%;
-moz-transform-origin: 0 100%;
-ms-transform-origin: 0 100%;
-o-transform-origin: 0 100%;
transform-origin: 0 100%;
-webkit-transition: all .35s ease-in-out .35s;
-moz-transition: all .35s ease-in-out .35s;
transition: all .35s ease-in-out .35s
}
.ih-item.square.effect4 .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: 0 0;
margin-top: 5px;
border-bottom: 1px solid rgba(255, 255, 255, .2);
transition: all .35s ease-in-out .35s
}
.ih-item.square.effect4 .info h3,
.ih-item.square.effect4 .info p {
opacity: 0;
-webkit-transition: all .35s ease-in-out .35s;
-moz-transition: all .35s ease-in-out .35s
}
.ih-item.square.effect5 .info h3,
.ih-item.square.effect6 .info h3,
.ih-item.square.effect7 .info h3,
.ih-item.square.effect8 .info h3 {
text-align: center;
text-transform: uppercase;
margin: 30px 0 0
}
.ih-item.square.effect4 .info h3 {
margin-bottom: 0px;
}
.ih-item.square.effect4 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 15px 15px 10px 15px;
text-align: center;
transition: all .35s ease-in-out .35s
}
.ih-item.square.effect4 a:hover .mask1 {
-webkit-transform: rotate(56.5deg) translateX(1px);
-moz-transform: rotate(56.5deg) translateX(1px);
-ms-transform: rotate(56.5deg) translateX(1px);
-o-transform: rotate(56.5deg) translateX(1px);
transform: rotate(56.5deg) translateX(1px)
}
.ih-item.square.effect4 a:hover .mask2 {
-webkit-transform: rotate(56.5deg) translateX(-1px);
-moz-transform: rotate(56.5deg) translateX(-1px);
-ms-transform: rotate(56.5deg) translateX(-1px);
-o-transform: rotate(56.5deg) translateX(-1px);
transform: rotate(56.5deg) translateX(-1px)
}
.ih-item.square.effect4 a:hover .info {
width: 100%;
height: 130px;
visibility: visible;
top: 40px;
-webkit-transform: rotate(0) translate(0, 0);
-moz-transform: rotate(0) translate(0, 0);
-ms-transform: rotate(0) translate(0, 0);
-o-transform: rotate(0) translate(0, 0);
transform: rotate(0) translate(0, 0)
}
.ih-item.square.effect4 a:hover .info h3,
.ih-item.square.effect4 a:hover .info p {
opacity: 1
}
.ih-item.square.effect5.colored .info {
background: #1a4a72
}
.ih-item.square.effect5.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect5 .img {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect5 .info {
background: #333;
opacity: 0;
transition: all .35s ease-in-out
}
.ih-item.square.effect5 .info,
.ih-item.square.effect6 .img {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect5 .info h3 {
color: #fff;
font-size: 17px;
padding: 10px;
background: #111
}
.ih-item.square.effect5 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center
}
.ih-item.square.effect5 a:hover .img {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
-webkit-transition-delay: 0;
-moz-transition-delay: 0;
transition-delay: 0
}
.ih-item.square.effect5 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1) rotate(0);
-moz-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
-o-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s;
transition-delay: .3s
}
.ih-item.square.effect5.left_to_right .info {
-webkit-transform: scale(0) rotate(-180deg);
-moz-transform: scale(0) rotate(-180deg);
-ms-transform: scale(0) rotate(-180deg);
-o-transform: scale(0) rotate(-180deg);
transform: scale(0) rotate(-180deg)
}
.ih-item.square.effect5.right_to_left .info {
-webkit-transform: scale(0) rotate(180deg);
-moz-transform: scale(0) rotate(180deg);
-ms-transform: scale(0) rotate(180deg);
-o-transform: scale(0) rotate(180deg);
transform: scale(0) rotate(180deg)
}
.ih-item.square.effect6.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.square.effect6.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect6 .img {
transition: all .35s ease-in-out;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect6 .info {
background: #333;
visibility: hidden;
opacity: 0.8 !important;
transition: all .35s ease-in-out
}
.ih-item.square.effect6 .info,
.ih-item.square.effect6 .info h3 {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect6 .info h3 {
color: #fff;
font-size: 17px;
padding: 10px;
background: #111;
transition: all .35s ease-in-out
}
.ih-item.square.effect6 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center;
-webkit-transition: all .05s linear;
-moz-transition: all .05s linear;
transition: all .05s linear
}
.ih-item.square.effect6 a:hover .img {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2)
}
.ih-item.square.effect6 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect6.from_top_and_bottom .info h3 {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect6.from_top_and_bottom .info p {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect6.from_top_and_bottom a:hover .info h3,
.ih-item.square.effect6.from_top_and_bottom a:hover .info p {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect6.from_left_and_right .info h3 {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.square.effect6.from_left_and_right .info p {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.square.effect6.from_left_and_right a:hover .info h3,
.ih-item.square.effect6.from_left_and_right a:hover .info p {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect6.top_to_bottom .info h3,
.ih-item.square.effect6.top_to_bottom .info p {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect6.top_to_bottom a:hover .info h3,
.ih-item.square.effect6.top_to_bottom a:hover .info p {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect6.bottom_to_top .info h3,
.ih-item.square.effect6.bottom_to_top .info p {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect6.bottom_to_top a:hover .info h3,
.ih-item.square.effect6.bottom_to_top a:hover .info p {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect7.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.square.effect7.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect7 .img {
transition: all .35s ease-in-out;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect7 .img,
.ih-item.square.effect7 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect7 .info {
background: #333;
visibility: hidden;
opacity: 0.8 !important;
transition: all .35s ease-in-out
}
.ih-item.square.effect7 .info h3 {
color: #fff;
font-size: 17px;
padding: 10px;
background: #111;
-webkit-transform: scale(4);
-moz-transform: scale(4);
-ms-transform: scale(4);
-o-transform: scale(4);
transform: scale(4);
-webkit-transition: all .35s .1s ease-in-out;
-moz-transition: all .35s .1s ease-in-out;
transition: all .35s .1s ease-in-out
}
.ih-item.square.effect7 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center;
-webkit-transform: scale(5);
-moz-transform: scale(5);
-ms-transform: scale(5);
-o-transform: scale(5);
transform: scale(5);
-webkit-transition: all .35s .3s linear;
-moz-transition: all .35s .3s linear;
transition: all .35s .3s linear
}
.ih-item.square.effect7 a:hover .img {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2)
}
.ih-item.square.effect7 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect7 a:hover .info h3,
.ih-item.square.effect7 a:hover .info p {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect8.colored .info {
background: #1a4a72
}
.ih-item.square.effect8.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect8 .img {
opacity: 1;
transition: all .35s ease-in-out
}
.ih-item.square.effect8 .img,
.ih-item.square.effect8 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect8 .info {
background: #333;
visibility: hidden;
opacity: 0;
transition: all .35s ease-in-out
}
.ih-item.square.effect8 .info h3 {
color: #fff;
font-size: 17px;
padding: 10px;
background: #111;
-webkit-transition: all .35s .1s ease-in-out;
-moz-transition: all .35s .1s ease-in-out;
transition: all .35s .1s ease-in-out
}
.ih-item.square.effect8 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center;
-webkit-transition: all .35s .15s linear;
-moz-transition: all .35s .15s linear;
transition: all .35s .15s linear
}
.ih-item.square.effect8 a:hover .img {
opacity: 0
}
.ih-item.square.effect8 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect8.scale_up .img {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect8.scale_up .info,
.ih-item.square.effect8.scale_up .info h3,
.ih-item.square.effect8.scale_up .info p {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0)
}
.ih-item.square.effect8.scale_up a:hover .img {
-webkit-transform: scale(5);
-moz-transform: scale(5);
-ms-transform: scale(5);
-o-transform: scale(5);
transform: scale(5)
}
.ih-item.square.effect8.scale_down .img,
.ih-item.square.effect8.scale_up a:hover .info,
.ih-item.square.effect8.scale_up a:hover .info h3,
.ih-item.square.effect8.scale_up a:hover .info p {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect8.scale_down .info,
.ih-item.square.effect8.scale_down .info h3,
.ih-item.square.effect8.scale_down .info p {
-webkit-transform: scale(5);
-moz-transform: scale(5);
-ms-transform: scale(5);
-o-transform: scale(5);
transform: scale(5)
}
.ih-item.square.effect8.scale_down a:hover .img {
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5);
transform: scale(.5)
}
.ih-item.square.effect8.scale_down a:hover .info,
.ih-item.square.effect8.scale_down a:hover .info h3,
.ih-item.square.effect8.scale_down a:hover .info p {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect9 {
perspective: 900px
}
.ih-item.square.effect15,
.ih-item.square.effect9 {
-webkit-perspective: 900px;
-moz-perspective: 900px
}
.ih-item.square.effect9.colored .info .info-back {
background: #1a4a72
}
.ih-item.square.effect9.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect9 .img {
position: relative;
z-index: 11;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
transition: all .5s ease-in-out
}
.ih-item.square.effect9 .info {
z-index: 0;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d
}
.ih-item.square.effect9 .info .info-back {
opacity: 1;
width: 100%;
height: 100%;
padding-top: 30px;
background: #333
}
.ih-item.square.effect9 .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111;
margin: 0
}
.ih-item.square.effect10 .info h3,
.ih-item.square.effect11 .info h3,
.ih-item.square.effect12 .info h3,
.ih-item.square.effect13 .info h3,
.ih-item.square.effect14 .info h3,
.ih-item.square.effect15 .info h3 {
text-transform: uppercase;
margin: 30px 0 0
}
.ih-item.square.effect9 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center
}
.ih-item.square.effect9.left_to_right .img {
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%
}
.ih-item.square.effect9.left_to_right a:hover .img {
-webkit-transform: rotate3d(0, 1, 0, 180deg);
-moz-transform: rotate3d(0, 1, 0, 180deg);
-ms-transform: rotate3d(0, 1, 0, 180deg);
-o-transform: rotate3d(0, 1, 0, 180deg);
transform: rotate3d(0, 1, 0, 180deg)
}
.ih-item.square.effect9.right_to_left .img {
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
-ms-transform-origin: 0 50%;
-o-transform-origin: 0 50%;
transform-origin: 0 50%
}
.ih-item.square.effect9.right_to_left a:hover .img {
-webkit-transform: rotate3d(0, 1, 0, -180deg);
-moz-transform: rotate3d(0, 1, 0, -180deg);
-ms-transform: rotate3d(0, 1, 0, -180deg);
-o-transform: rotate3d(0, 1, 0, -180deg);
transform: rotate3d(0, 1, 0, -180deg)
}
.ih-item.square.effect9.top_to_bottom .img {
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%
}
.ih-item.square.effect9.top_to_bottom a:hover .img {
-webkit-transform: rotate3d(1, 0, 0, -180deg);
-moz-transform: rotate3d(1, 0, 0, -180deg);
-ms-transform: rotate3d(1, 0, 0, -180deg);
-o-transform: rotate3d(1, 0, 0, -180deg);
transform: rotate3d(1, 0, 0, -180deg)
}
.ih-item.square.effect9.bottom_to_top .img {
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
-o-transform-origin: 50% 0;
transform-origin: 50% 0
}
.ih-item.square.effect9.bottom_to_top a:hover .img {
-webkit-transform: rotate3d(1, 0, 0, 180deg);
-moz-transform: rotate3d(1, 0, 0, 180deg);
-ms-transform: rotate3d(1, 0, 0, 180deg);
-o-transform: rotate3d(1, 0, 0, 180deg);
transform: rotate3d(1, 0, 0, 180deg)
}
.ih-item.square.effect10 {
overflow: hidden
}
.ih-item.square.effect10.colored .info {
background: #1a4a72
}
.ih-item.square.effect10.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect10 .img {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out
}
.ih-item.square.effect10 .info {
background: #333;
visibility: hidden;
opacity: 0;
transition: all .35s ease-in-out
}
.ih-item.square.effect10 .info,
.ih-item.square.effect11 .img {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect10 .info h3 {
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111
}
.ih-item.square.effect10 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center
}
.ih-item.square.effect10 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect10.left_to_right .img {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect10.left_to_right .info {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.square.effect10.left_to_right a:hover .img {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.square.effect10.left_to_right a:hover .info,
.ih-item.square.effect10.right_to_left .img {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect10.right_to_left .info {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.square.effect10.right_to_left a:hover .img {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.square.effect10.right_to_left a:hover .info {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect10.top_to_bottom .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect10.top_to_bottom .info {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect10.top_to_bottom a:hover .img {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect10.bottom_to_top .img,
.ih-item.square.effect10.top_to_bottom a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect10.bottom_to_top .info {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect10.bottom_to_top a:hover .img {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect10.bottom_to_top a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect11.colored .info {
background: #1a4a72
}
.ih-item.square.effect11.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect11 .img {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
transition: all .35s ease-in-out
}
.ih-item.square.effect11 .info {
background: #333;
visibility: hidden;
opacity: 0;
-webkit-transition: all .35s ease .2s;
-moz-transition: all .35s ease .2s;
transition: all .35s ease .2s
}
.ih-item.square.effect11 .info h3 {
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111
}
.ih-item.square.effect11 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center
}
.ih-item.square.effect11 a:hover .img {
opacity: 0;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5);
transform: scale(.5)
}
.ih-item.square.effect11 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect11.left_to_right .info {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.square.effect11.left_to_right a:hover .info {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect11.right_to_left .info {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.square.effect11.right_to_left a:hover .info {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect11.top_to_bottom .info {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect11.top_to_bottom a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect11.bottom_to_top .info {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect11.bottom_to_top a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect12.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.square.effect12.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect12 .img {
transition: all .35s ease-in
}
.ih-item.square.effect12 .img,
.ih-item.square.effect12 .info {
-webkit-transition: all .35s ease-in;
-moz-transition: all .35s ease-in
}
.ih-item.square.effect12 .info {
background: #333;
visibility: hidden;
opacity: 0.8 !important;
transition: all .35s ease-in
}
.ih-item.square.effect12 .info h3 {
color: #fff;
font-size: 17px;
padding: 10px;
background: #111;
transition: all .35s ease-in
}
.ih-item.square.effect12 .info h3,
.ih-item.square.effect12 .info p {
text-align: center;
-webkit-transition: all .35s ease-in;
-moz-transition: all .35s ease-in
}
.ih-item.square.effect12 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
transition: all .35s ease-in
}
.ih-item.square.effect12 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transition-delay: .2s;
-moz-transition-delay: .2s;
transition-delay: .2s
}
.ih-item.square.effect12 a:hover .info h3 {
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s;
transition-delay: .3s
}
.ih-item.square.effect12 a:hover .info p {
-webkit-transition-delay: .25s;
-moz-transition-delay: .25s;
transition-delay: .25s
}
.ih-item.square.effect12.left_to_right .info {
-webkit-transform: translate(-460px, -100px) rotate(-180deg);
-moz-transform: translate(-460px, -100px) rotate(-180deg);
-ms-transform: translate(-460px, -100px) rotate(-180deg);
-o-transform: translate(-460px, -100px) rotate(-180deg);
transform: translate(-460px, -100px) rotate(-180deg)
}
.ih-item.square.effect12.left_to_right .info h3 {
-webkit-transform: translateY(-100px);
-moz-transform: translateY(-100px);
-ms-transform: translateY(-100px);
-o-transform: translateY(-100px);
transform: translateY(-100px)
}
.ih-item.square.effect12.left_to_right .info p {
-webkit-transform: translateX(-300px) rotate(-90deg);
-moz-transform: translateX(-300px) rotate(-90deg);
-ms-transform: translateX(-300px) rotate(-90deg);
-o-transform: translateX(-300px) rotate(-90deg);
transform: translateX(-300px) rotate(-90deg)
}
.ih-item.square.effect12.left_to_right a:hover .info {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0)
}
.ih-item.square.effect12.left_to_right a:hover .info h3 {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect12.left_to_right a:hover .info p {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0)
}
.ih-item.square.effect12.right_to_left .info {
-webkit-transform: translate(460px, -100px) rotate(180deg);
-moz-transform: translate(460px, -100px) rotate(180deg);
-ms-transform: translate(460px, -100px) rotate(180deg);
-o-transform: translate(460px, -100px) rotate(180deg);
transform: translate(460px, -100px) rotate(180deg)
}
.ih-item.square.effect12.right_to_left .info h3 {
-webkit-transform: translateY(-100px);
-moz-transform: translateY(-100px);
-ms-transform: translateY(-100px);
-o-transform: translateY(-100px);
transform: translateY(-100px)
}
.ih-item.square.effect12.right_to_left .info p {
-webkit-transform: translateX(300px) rotate(90deg);
-moz-transform: translateX(300px) rotate(90deg);
-ms-transform: translateX(300px) rotate(90deg);
-o-transform: translateX(300px) rotate(90deg);
transform: translateX(300px) rotate(90deg)
}
.ih-item.square.effect12.right_to_left a:hover .info {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0)
}
.ih-item.square.effect12.right_to_left a:hover .info h3 {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect12.right_to_left a:hover .info p {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0)
}
.ih-item.square.effect12.top_to_bottom .info {
-webkit-transform: translate(-265px, -145px) rotate(-45deg);
-moz-transform: translate(-265px, -145px) rotate(-45deg);
-ms-transform: translate(-265px, -145px) rotate(-45deg);
-o-transform: translate(-265px, -145px) rotate(-45deg);
transform: translate(-265px, -145px) rotate(-45deg)
}
.ih-item.square.effect12.top_to_bottom .info h3,
.ih-item.square.effect12.top_to_bottom .info p {
-webkit-transform: translate(200px, -200px);
-moz-transform: translate(200px, -200px);
-ms-transform: translate(200px, -200px);
-o-transform: translate(200px, -200px);
transform: translate(200px, -200px)
}
.ih-item.square.effect12.top_to_bottom a:hover .info {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
-webkit-transition-delay: .2s;
-moz-transition-delay: .2s;
transition-delay: .2s
}
.ih-item.square.effect12.top_to_bottom a:hover .info h3 {
transform: translate(0, 0);
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s;
transition-delay: .3s
}
.ih-item.square.effect12.top_to_bottom a:hover .info h3,
.ih-item.square.effect12.top_to_bottom a:hover .info p {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0)
}
.ih-item.square.effect12.top_to_bottom a:hover .info p {
transform: translate(0, 0);
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
transition-delay: .4s
}
.ih-item.square.effect12.bottom_to_top .info {
-webkit-transform: translate(265px, 145px) rotate(45deg);
-moz-transform: translate(265px, 145px) rotate(45deg);
-ms-transform: translate(265px, 145px) rotate(45deg);
-o-transform: translate(265px, 145px) rotate(45deg);
transform: translate(265px, 145px) rotate(45deg)
}
.ih-item.square.effect12.bottom_to_top .info h3 {
-webkit-transform: translate(200px, -200px);
-moz-transform: translate(200px, -200px);
-ms-transform: translate(200px, -200px);
-o-transform: translate(200px, -200px);
transform: translate(200px, -200px)
}
.ih-item.square.effect12.bottom_to_top .info p {
-webkit-transform: translate(-200px, 200px);
-moz-transform: translate(-200px, 200px);
-ms-transform: translate(-200px, 200px);
-o-transform: translate(-200px, 200px);
transform: translate(-200px, 200px)
}
.ih-item.square.effect12.bottom_to_top a:hover .info {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
-webkit-transition-delay: .2s;
-moz-transition-delay: .2s;
transition-delay: .2s
}
.ih-item.square.effect12.bottom_to_top a:hover .info h3 {
transform: translate(0, 0);
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s;
transition-delay: .3s
}
.ih-item.square.effect12.bottom_to_top a:hover .info h3,
.ih-item.square.effect12.bottom_to_top a:hover .info p {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0)
}
.ih-item.square.effect12.bottom_to_top a:hover .info p {
transform: translate(0, 0);
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
transition-delay: .4s
}
.ih-item.square.effect13.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.square.effect13.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect13 .img {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out;
transition: all .35s ease-in-out;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect13 .info {
background: #333;
visibility: hidden;
opacity: 0.8 !important;
pointer-events: none;
transition: all .35s ease-in-out
}
.ih-item.square.effect13 .info,
.ih-item.square.effect14 .img {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect13 .info h3 {
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111
}
.ih-item.square.effect13 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center
}
.ih-item.square.effect13 a:hover .img {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2)
}
.ih-item.square.effect13 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect13.left_to_right .info {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.square.effect13.left_to_right a:hover .info {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect13.right_to_left .info {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.square.effect13.right_to_left a:hover .info {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect13.top_to_bottom .info {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect13.top_to_bottom a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect13.bottom_to_top .info {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect13.bottom_to_top a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect14.colored .info {
background: #1a4a72
}
.ih-item.square.effect14.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect14 .img {
opacity: 1;
transition: all .35s ease-in-out
}
.ih-item.square.effect14 .info {
background: #333;
visibility: hidden;
transform: scale(.5);
-webkit-transition: all .35s ease .2s;
-moz-transition: all .35s ease .2s;
transition: all .35s ease .2s
}
.ih-item.square.effect14 .info,
.ih-item.square.effect14 a:hover .img {
opacity: 0;
pointer-events: none;
-webkit-transform: scale(.5);
-moz-transform: scale(.5);
-ms-transform: scale(.5);
-o-transform: scale(.5)
}
.ih-item.square.effect14 .info h3 {
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111
}
.ih-item.square.effect14 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center
}
.ih-item.square.effect14 a:hover .img {
transform: scale(.5)
}
.ih-item.square.effect14 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect14.left_to_right .img {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0)
}
.ih-item.square.effect14.left_to_right a:hover .img {
-webkit-transform: translateX(100%) rotate(180deg);
-moz-transform: translateX(100%) rotate(180deg);
-ms-transform: translateX(100%) rotate(180deg);
-o-transform: translateX(100%) rotate(180deg);
transform: translateX(100%) rotate(180deg)
}
.ih-item.square.effect14.right_to_left .img {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0)
}
.ih-item.square.effect14.right_to_left a:hover .img {
-webkit-transform: translateX(-100%) rotate(-180deg);
-moz-transform: translateX(-100%) rotate(-180deg);
-ms-transform: translateX(-100%) rotate(-180deg);
-o-transform: translateX(-100%) rotate(-180deg);
transform: translateX(-100%) rotate(-180deg)
}
.ih-item.square.effect14.top_to_bottom .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect14.top_to_bottom a:hover .img {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect14.bottom_to_top .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect14.bottom_to_top a:hover .img {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect15 {
perspective: 900px
}
.ih-item.square.effect15.colored .info {
background: #1a4a72
}
.ih-item.square.effect15 .img {
opacity: 1;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
transition: all .4s ease-in-out
}
.ih-item.square.effect15 .info {
background: #333;
opacity: 0;
-webkit-transition: all .35s ease-in-out .3s;
-moz-transition: all .35s ease-in-out .3s;
transition: all .35s ease-in-out .3s
}
.ih-item.square.effect15 .info h3 {
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111
}
.ih-item.square.effect15 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center
}
.ih-item.square.effect15 a:hover .img {
opacity: 0;
visibility: hidden
}
.ih-item.square.effect15 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect15.left_to_right .img {
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
-ms-transform: rotateY(0);
-o-transform: rotateY(0);
transform: rotateY(0);
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%
}
.ih-item.square.effect15.left_to_right .info {
-webkit-transform: rotateY(90deg);
-moz-transform: rotateY(90deg);
-ms-transform: rotateY(90deg);
-o-transform: rotateY(90deg);
transform: rotateY(90deg);
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
-ms-transform-origin: 0 50%;
-o-transform-origin: 0 50%;
transform-origin: 0 50%
}
.ih-item.square.effect15.left_to_right a:hover .img {
-webkit-transform: rotateY(-90deg);
-moz-transform: rotateY(-90deg);
-ms-transform: rotateY(-90deg);
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg)
}
.ih-item.square.effect15.left_to_right a:hover .info {
transform: rotateY(0)
}
.ih-item.square.effect15.left_to_right a:hover .info,
.ih-item.square.effect15.right_to_left .img {
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
-ms-transform: rotateY(0);
-o-transform: rotateY(0)
}
.ih-item.square.effect15.right_to_left .img {
transform: rotateY(0);
-webkit-transform-origin: 0 50%;
-moz-transform-origin: 0 50%;
-ms-transform-origin: 0 50%;
-o-transform-origin: 0 50%;
transform-origin: 0 50%
}
.ih-item.square.effect15.right_to_left .info {
-webkit-transform: rotateY(-90deg);
-moz-transform: rotateY(-90deg);
-ms-transform: rotateY(-90deg);
-o-transform: rotateY(-90deg);
transform: rotateY(-90deg);
-webkit-transform-origin: 100% 50%;
-moz-transform-origin: 100% 50%;
-ms-transform-origin: 100% 50%;
-o-transform-origin: 100% 50%;
transform-origin: 100% 50%
}
.ih-item.square.effect15.right_to_left a:hover .img {
-webkit-transform: rotateY(90deg);
-moz-transform: rotateY(90deg);
-ms-transform: rotateY(90deg);
-o-transform: rotateY(90deg);
transform: rotateY(90deg)
}
.ih-item.square.effect15.right_to_left a:hover .info {
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
-ms-transform: rotateY(0);
-o-transform: rotateY(0);
transform: rotateY(0)
}
.ih-item.square.effect15.top_to_bottom .img {
-webkit-transform: rotateX(0);
-moz-transform: rotateX(0);
-ms-transform: rotateX(0);
-o-transform: rotateX(0);
transform: rotateX(0);
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%
}
.ih-item.square.effect15.top_to_bottom .info {
-webkit-transform: rotateX(-90deg);
-moz-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
-o-transform-origin: 50% 0;
transform-origin: 50% 0
}
.ih-item.square.effect15.top_to_bottom a:hover .img {
-webkit-transform: rotateX(90deg);
-moz-transform: rotateX(90deg);
-ms-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg)
}
.ih-item.square.effect15.top_to_bottom a:hover .info {
transform: rotateX(0)
}
.ih-item.square.effect15.bottom_to_top .img,
.ih-item.square.effect15.top_to_bottom a:hover .info {
-webkit-transform: rotateX(0);
-moz-transform: rotateX(0);
-ms-transform: rotateX(0);
-o-transform: rotateX(0)
}
.ih-item.square.effect15.bottom_to_top .img {
transform: rotateX(0);
-webkit-transform-origin: 50% 0;
-moz-transform-origin: 50% 0;
-ms-transform-origin: 50% 0;
-o-transform-origin: 50% 0;
transform-origin: 50% 0
}
.ih-item.square.effect15.bottom_to_top .info {
-webkit-transform: rotateX(90deg);
-moz-transform: rotateX(90deg);
-ms-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
-webkit-transform-origin: 50% 100%;
-moz-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-o-transform-origin: 50% 100%;
transform-origin: 50% 100%
}
.ih-item.square.effect15.bottom_to_top a:hover .img {
-webkit-transform: rotateX(-90deg);
-moz-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg)
}
.ih-item.square.effect15.bottom_to_top a:hover .info {
-webkit-transform: rotateX(0);
-moz-transform: rotateX(0);
-ms-transform: rotateX(0);
-o-transform: rotateX(0);
transform: rotateX(0)
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
;
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: Lustria, Georgia, "Times New Roman", Times, serif
}
.bs-docs-nav .navbar-nav>.active>a,
.bs-docs-nav .navbar-nav>.active>a:hover {
background-color: #222132
}
.bs-docs-nav .navbar-toggle:hover {
background-color: #383550;
border-color: #222132
}
.navbar-nav {
margin: 0 -15px
}
@media (min-width:768px) {
.navbar-nav {
margin: 0
}
}
.bs-docs-nav .navbar-collapse {
border-color: transparent
}
.header { }
.bs-docs-home,
.bs-header {
color: #c8c8e6
}
.bs-footer,
.bs-footer a {
color: #575781
}
.highlight pre {
white-space: pre
}
.section-heading {
padding-top: 80px
}
.section-heading.first-child {
margin-top: 0;
padding-top: 0
}
.bs-footer {
background-color: #2C2C44
}
.ih-item.square .img,
.ih-item.square .img img { }
.ih-item.square.effect16.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.square.effect16.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect16 .img {
transition: all .35s ease-in
}
.ih-item.square.effect16 .img,
.ih-item.square.effect16 .info {
-webkit-transition: all .35s ease-in;
-moz-transition: all .35s ease-in
}
.ih-item.square.effect16 .info {
background: #333;
background: rgba(0, 0, 0, .6);
visibility: hidden;
opacity: 0;
transition: all .35s ease-in
}
.ih-item.square.effect16 .info h3 {
text-transform: uppercase;
color: #fff;
font-size: 17px;
padding: 10px;
background: #111;
margin: 30px 0 0;
transition: all .35s ease-in
}
.ih-item.square.effect16 .info h3,
.ih-item.square.effect16 .info p {
text-align: center;
-webkit-transition: all .35s ease-in;
-moz-transition: all .35s ease-in
}
.ih-item.square.effect16 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
transition: all .35s ease-in
}
.ih-item.square.effect16 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transition-delay: .2s;
-moz-transition-delay: .2s;
transition-delay: .2s
}
.ih-item.square.effect16 a:hover .info h3 {
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s;
transition-delay: .3s
}
.ih-item.square.effect16 a:hover .info p {
-webkit-transition-delay: .25s;
-moz-transition-delay: .25s;
transition-delay: .25s
}
.ih-item.square.effect16.left_to_right .info {
-webkit-transform: translate(-460px, -100px) rotate(-180deg);
-moz-transform: translate(-460px, -100px) rotate(-180deg);
-ms-transform: translate(-460px, -100px) rotate(-180deg);
-o-transform: translate(-460px, -100px) rotate(-180deg);
transform: translate(-460px, -100px) rotate(-180deg)
}
.ih-item.square.effect16.left_to_right .info h3 {
-webkit-transform: translateY(-100px);
-moz-transform: translateY(-100px);
-ms-transform: translateY(-100px);
-o-transform: translateY(-100px);
transform: translateY(-100px)
}
.ih-item.square.effect16.left_to_right .info p {
-webkit-transform: translateX(-300px) rotate(-90deg);
-moz-transform: translateX(-300px) rotate(-90deg);
-ms-transform: translateX(-300px) rotate(-90deg);
-o-transform: translateX(-300px) rotate(-90deg);
transform: translateX(-300px) rotate(-90deg)
}
.ih-item.square.effect16.left_to_right a:hover .info {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0)
}
.ih-item.square.effect16.left_to_right a:hover .info h3 {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect16.left_to_right a:hover .info p {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0)
}
.ih-item.square.effect16.right_to_left .info {
-webkit-transform: translate(460px, -100px) rotate(180deg);
-moz-transform: translate(460px, -100px) rotate(180deg);
-ms-transform: translate(460px, -100px) rotate(180deg);
-o-transform: translate(460px, -100px) rotate(180deg);
transform: translate(460px, -100px) rotate(180deg)
}
.ih-item.square.effect16.right_to_left .info h3 {
-webkit-transform: translateY(-100px);
-moz-transform: translateY(-100px);
-ms-transform: translateY(-100px);
-o-transform: translateY(-100px);
transform: translateY(-100px)
}
.ih-item.square.effect16.right_to_left .info p {
-webkit-transform: translateX(300px) rotate(90deg);
-moz-transform: translateX(300px) rotate(90deg);
-ms-transform: translateX(300px) rotate(90deg);
-o-transform: translateX(300px) rotate(90deg);
transform: translateX(300px) rotate(90deg)
}
.ih-item.square.effect16.right_to_left a:hover .info {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0)
}
.ih-item.square.effect16.right_to_left a:hover .info h3 {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect16.right_to_left a:hover .info p {
-webkit-transform: translateX(0) rotate(0);
-moz-transform: translateX(0) rotate(0);
-ms-transform: translateX(0) rotate(0);
-o-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0)
}
.ih-item.square.effect16.top_to_bottom .info {
-webkit-transform: translate(-265px, -145px) rotate(-45deg);
-moz-transform: translate(-265px, -145px) rotate(-45deg);
-ms-transform: translate(-265px, -145px) rotate(-45deg);
-o-transform: translate(-265px, -145px) rotate(-45deg);
transform: translate(-265px, -145px) rotate(-45deg)
}
.ih-item.square.effect16.top_to_bottom .info h3,
.ih-item.square.effect16.top_to_bottom .info p {
-webkit-transform: translate(200px, -200px);
-moz-transform: translate(200px, -200px);
-ms-transform: translate(200px, -200px);
-o-transform: translate(200px, -200px);
transform: translate(200px, -200px)
}
.ih-item.square.effect16.top_to_bottom a:hover .info {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
-webkit-transition-delay: .2s;
-moz-transition-delay: .2s;
transition-delay: .2s
}
.ih-item.square.effect16.top_to_bottom a:hover .info h3 {
transform: translate(0, 0);
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s;
transition-delay: .3s
}
.ih-item.square.effect16.top_to_bottom a:hover .info h3,
.ih-item.square.effect16.top_to_bottom a:hover .info p {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0)
}
.ih-item.square.effect16.top_to_bottom a:hover .info p {
transform: translate(0, 0);
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
transition-delay: .4s
}
.ih-item.square.effect16.bottom_to_top .info {
-webkit-transform: translate(265px, 145px) rotate(45deg);
-moz-transform: translate(265px, 145px) rotate(45deg);
-ms-transform: translate(265px, 145px) rotate(45deg);
-o-transform: translate(265px, 145px) rotate(45deg);
transform: translate(265px, 145px) rotate(45deg)
}
.ih-item.square.effect16.bottom_to_top .info h3 {
-webkit-transform: translate(200px, -200px);
-moz-transform: translate(200px, -200px);
-ms-transform: translate(200px, -200px);
-o-transform: translate(200px, -200px);
transform: translate(200px, -200px)
}
.ih-item.square.effect16.bottom_to_top .info p {
-webkit-transform: translate(-200px, 200px);
-moz-transform: translate(-200px, 200px);
-ms-transform: translate(-200px, 200px);
-o-transform: translate(-200px, 200px);
transform: translate(-200px, 200px)
}
.ih-item.square.effect16.bottom_to_top a:hover .info {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
-webkit-transition-delay: .2s;
-moz-transition-delay: .2s;
transition-delay: .2s
}
.ih-item.square.effect16.bottom_to_top a:hover .info h3 {
transform: translate(0, 0);
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s;
transition-delay: .3s
}
.ih-item.square.effect16.bottom_to_top a:hover .info h3,
.ih-item.square.effect16.bottom_to_top a:hover .info p {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0)
}
.ih-item.square.effect16.bottom_to_top a:hover .info p {
transform: translate(0, 0);
-webkit-transition-delay: .4s;
-moz-transition-delay: .4s;
transition-delay: .4s
}
.ih-item.square.effect17.colored .info {
background: #1a4a72
}
.ih-item.square.effect17.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect17 .img {
transition: all .35s ease-in-out
}
.ih-item.square.effect17 .img,
.ih-item.square.effect17 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect17 .info {
background: #333;
visibility: hidden;
opacity: 0;
transition: all .35s ease-in-out
}
.ih-item.square.effect17 .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111;
margin: 30px 0 0
}
.ih-item.square.effect17 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center
}
.ih-item.square.effect17 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect17.left_to_right .img {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect17.left_to_right .info {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.square.effect17.left_to_right a:hover .img {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.square.effect17.left_to_right a:hover .info,
.ih-item.square.effect17.right_to_left .img {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect17.right_to_left .info {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%)
}
.ih-item.square.effect17.right_to_left a:hover .img {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
transform: translateX(-100%)
}
.ih-item.square.effect17.right_to_left a:hover .info {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0)
}
.ih-item.square.effect17.top_to_bottom .img {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect17.top_to_bottom .info {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect17.top_to_bottom a:hover .img {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect17.bottom_to_top .img,
.ih-item.square.effect17.top_to_bottom a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect17.bottom_to_top .info {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%)
}
.ih-item.square.effect17.bottom_to_top a:hover .img {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
transform: translateY(-100%)
}
.ih-item.square.effect17.bottom_to_top a:hover .info {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect18.colored .info {
background: #1a4a72;
background: rgba(26, 74, 114, .6)
}
.ih-item.square.effect18.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect18 .img {
transition: all .35s ease-in-out;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect18 .img,
.ih-item.square.effect18 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect18 .info {
background: #333;
background: rgba(0, 0, 0, .6);
visibility: hidden;
opacity: 0;
transition: all .35s ease-in-out
}
.ih-item.square.effect18 .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111;
margin: 30px 0 0;
-webkit-transform: scale(4);
-moz-transform: scale(4);
-ms-transform: scale(4);
-o-transform: scale(4);
transform: scale(4);
-webkit-transition: all .35s .1s ease-in-out;
-moz-transition: all .35s .1s ease-in-out;
transition: all .35s .1s ease-in-out
}
.ih-item.square.effect18 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center;
-webkit-transform: scale(5);
-moz-transform: scale(5);
-ms-transform: scale(5);
-o-transform: scale(5);
transform: scale(5);
-webkit-transition: all .35s .3s linear;
-moz-transition: all .35s .3s linear;
transition: all .35s .3s linear
}
.ih-item.square.effect18 a:hover .img {
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2)
}
.ih-item.square.effect18 a:hover .info {
visibility: visible;
opacity: 1
}
.ih-item.square.effect18 a:hover .info h3,
.ih-item.square.effect18 a:hover .info p {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect19.colored .info {
background: #1a4a72
}
.ih-item.square.effect19.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect19 .img {
opacity: 1;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
-webkit-transform: rotate(0) scale(1);
-moz-transform: rotate(0) scale(1);
-ms-transform: rotate(0) scale(1);
-o-transform: rotate(0) scale(1);
transform: rotate(0) scale(1)
}
.ih-item.square.effect19 .info {
background: #333;
visibility: hidden;
-webkit-transition: all .35s .3s ease-in-out;
-moz-transition: all .35s .3s ease-in-out;
transition: all .35s .3s ease-in-out
}
.ih-item.square.effect19 .info h3 {
text-transform: uppercase;
color: #fff;
font-size: 17px;
padding: 10px;
background: #111;
margin: 30px 0 0;
transform: translateY(-200px);
-webkit-transition: all .35s .6s ease-in-out;
-moz-transition: all .35s .6s ease-in-out;
transition: all .35s .6s ease-in-out
}
.ih-item.square.effect19 .info h3,
.ih-item.square.effect19 .info p {
text-align: center;
-webkit-transform: translateY(-200px);
-moz-transform: translateY(-200px);
-ms-transform: translateY(-200px);
-o-transform: translateY(-200px)
}
.ih-item.square.effect19 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
transform: translateY(-200px);
-webkit-transition: all .35s .5s linear;
-moz-transition: all .35s .5s linear;
transition: all .35s .5s linear
}
.ih-item.square.effect19 a:hover .img {
-webkit-transform: rotate(720deg) scale(0);
-moz-transform: rotate(720deg) scale(0);
-ms-transform: rotate(720deg) scale(0);
-o-transform: rotate(720deg) scale(0);
transform: rotate(720deg) scale(0);
opacity: 0
}
.ih-item.square.effect19 a:hover .info {
visibility: visible
}
.ih-item.square.effect19 a:hover .info h3,
.ih-item.square.effect19 a:hover .info p {
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0)
}
.ih-item.square.effect20.colored .info {
background: #1a4a72
}
.ih-item.square.effect20.colored .info h3 {
background: rgba(12, 34, 52, .6)
}
.ih-item.square.effect20 .img {
transition: all .35s ease-in-out;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1)
}
.ih-item.square.effect20 .img,
.ih-item.square.effect20 .info {
-webkit-transition: all .35s ease-in-out;
-moz-transition: all .35s ease-in-out
}
.ih-item.square.effect20 .info {
background: #333;
opacity: 0;
transition: all .35s ease-in-out
}
.ih-item.square.effect20 .info h3 {
text-transform: uppercase;
color: #fff;
text-align: center;
font-size: 17px;
padding: 10px;
background: #111;
margin: 30px 0 0
}
.ih-item.square.effect20 .info p {
font-size: 12px;
position: relative;
color: #bbb;
padding: 20px;
text-align: center
}
.ih-item.square.effect20 a:hover .img {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
-webkit-transition-delay: 0;
-moz-transition-delay: 0;
transition-delay: 0
}
.ih-item.square.effect20 a:hover .info {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1) rotate(0);
-moz-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
-o-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
-webkit-transition-delay: .3s;
-moz-transition-delay: .3s;
transition-delay: .3s
}
.ih-item.square.effect20.left_to_right .info {
-webkit-transform: scale(0) rotate(-180deg);
-moz-transform: scale(0) rotate(-180deg);
-ms-transform: scale(0) rotate(-180deg);
-o-transform: scale(0) rotate(-180deg);
transform: scale(0) rotate(-180deg)
}
.ih-item.square.effect20.right_to_left .info {
-webkit-transform: scale(0) rotate(180deg);
-moz-transform: scale(0) rotate(180deg);
-ms-transform: scale(0) rotate(180deg);
-o-transform: scale(0) rotate(180deg);
transform: scale(0) rotate(180deg)
}
.ih-item.circle {
border: none !important;
} .ih-item.square.effect6.ihe-fade:hover .info{ }
.ih-item.square.effect6.ihe-fade:hover .img{
transform: scale(1.0) !important;
}
.ih-item.square.effect6.ihe-fade .info {
background: ;
visibility: hidden;
opacity: 0 !important;
transition: opacity 1s linear; 
transition: all .35s ease-in-out;
background-color: rgba(0,0,0,0.5) !important;
}
.ih-item.square.effect6.ihe-fade a:hover .info {
visibility: visible;
opacity: 1 !important;
}
.ih-item.square.effect6.ihe-fade h3,
.ih-item.square.effect6.ihe-fade p {
background: transparent;
-webkit-transform: translateY(0%) !important;
-moz-transform: translateY(0%) !important;
-ms-transform: translateY(0%) !important;
-o-transform: translateY(0%) !important;
transform: translateY(0%) !important;
padding: 0;
} .maw_portfolioGallery_wrapper .ih-item a {
display: block;
}
.maw_portfolioGallery_wrapper .ih-item.square {
box-shadow: none;
} .maw_image_swap.ih-item.square.effect6 .info,
.maw_image_swap.ih-item.square.effect6 .info h3 {
-webkit-transition: all .20s ease-in-out;
-moz-transition: all .20s ease-in-out
}
.maw_image_swap.ih-item {
box-sizing: initial !important;
} .maw_img_swap_fade {
position: relative;
width: 100%;
}
.maw_img_swap_fade img {
display: block;
width: 100%;
height: auto;
}
.maw_img_swap_fade .info {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
opacity: 0;
transition: .2s ease;
}
.maw_img_swap_fade:not( :hover ) .info{
transition-delay: .3s !important;
}
.maw_img_swap_fade:hover .info {
opacity: 1;
}.blink_me {
animation: blinker 0.5s linear infinite;
font-size: 15px;
}
@keyframes blinker {  
50% { opacity: 0; }
} .mega-info-list li:first-child{
padding-top: 0px !important;
}.fa,
.fas,
.far,
.fal,
.fad,
.fab {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1; }
.fa-lg {
font-size: 1.33333em;
line-height: 0.75em;
vertical-align: -.0667em; }
.fa-xs {
font-size: .75em; }
.fa-sm {
font-size: .875em; }
.fa-1x {
font-size: 1em; }
.fa-2x {
font-size: 2em; }
.fa-3x {
font-size: 3em; }
.fa-4x {
font-size: 4em; }
.fa-5x {
font-size: 5em; }
.fa-6x {
font-size: 6em; }
.fa-7x {
font-size: 7em; }
.fa-8x {
font-size: 8em; }
.fa-9x {
font-size: 9em; }
.fa-10x {
font-size: 10em; }
.fa-fw {
text-align: center;
width: 1.25em; }
.fa-ul {
list-style-type: none;
margin-left: 2.5em;
padding-left: 0; }
.fa-ul > li {
position: relative; }
.fa-li {
left: -2em;
position: absolute;
text-align: center;
width: 2em;
line-height: inherit; }
.fa-border {
border: solid 0.08em #eee;
border-radius: .1em;
padding: .2em .25em .15em; }
.fa-pull-left {
float: left; }
.fa-pull-right {
float: right; }
.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
margin-right: .3em; }
.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
margin-left: .3em; }
.fa-spin {
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear; }
.fa-pulse {
-webkit-animation: fa-spin 1s infinite steps(8);
animation: fa-spin 1s infinite steps(8); }
@-webkit-keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg); } }
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg); } }
.fa-rotate-90 {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
-webkit-transform: rotate(90deg);
transform: rotate(90deg); }
.fa-rotate-180 {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
.fa-rotate-270 {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
-webkit-transform: rotate(270deg);
transform: rotate(270deg); }
.fa-flip-horizontal {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1); }
.fa-flip-vertical {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
-webkit-transform: scale(1, -1);
transform: scale(1, -1); }
.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
-webkit-transform: scale(-1, -1);
transform: scale(-1, -1); }
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
-webkit-filter: none;
filter: none; }
.fa-stack {
display: inline-block;
height: 2em;
line-height: 2em;
position: relative;
vertical-align: middle;
width: 2.5em; }
.fa-stack-1x,
.fa-stack-2x {
left: 0;
position: absolute;
text-align: center;
width: 100%; }
.fa-stack-1x {
line-height: inherit; }
.fa-stack-2x {
font-size: 2em; }
.fa-inverse {
color: #fff; } .fa-500px:before {
content: "\f26e"; }
.fa-accessible-icon:before {
content: "\f368"; }
.fa-accusoft:before {
content: "\f369"; }
.fa-acquisitions-incorporated:before {
content: "\f6af"; }
.fa-ad:before {
content: "\f641"; }
.fa-address-book:before {
content: "\f2b9"; }
.fa-address-card:before {
content: "\f2bb"; }
.fa-adjust:before {
content: "\f042"; }
.fa-adn:before {
content: "\f170"; }
.fa-adobe:before {
content: "\f778"; }
.fa-adversal:before {
content: "\f36a"; }
.fa-affiliatetheme:before {
content: "\f36b"; }
.fa-air-freshener:before {
content: "\f5d0"; }
.fa-airbnb:before {
content: "\f834"; }
.fa-algolia:before {
content: "\f36c"; }
.fa-align-center:before {
content: "\f037"; }
.fa-align-justify:before {
content: "\f039"; }
.fa-align-left:before {
content: "\f036"; }
.fa-align-right:before {
content: "\f038"; }
.fa-alipay:before {
content: "\f642"; }
.fa-allergies:before {
content: "\f461"; }
.fa-amazon:before {
content: "\f270"; }
.fa-amazon-pay:before {
content: "\f42c"; }
.fa-ambulance:before {
content: "\f0f9"; }
.fa-american-sign-language-interpreting:before {
content: "\f2a3"; }
.fa-amilia:before {
content: "\f36d"; }
.fa-anchor:before {
content: "\f13d"; }
.fa-android:before {
content: "\f17b"; }
.fa-angellist:before {
content: "\f209"; }
.fa-angle-double-down:before {
content: "\f103"; }
.fa-angle-double-left:before {
content: "\f100"; }
.fa-angle-double-right:before {
content: "\f101"; }
.fa-angle-double-up:before {
content: "\f102"; }
.fa-angle-down:before {
content: "\f107"; }
.fa-angle-left:before {
content: "\f104"; }
.fa-angle-right:before {
content: "\f105"; }
.fa-angle-up:before {
content: "\f106"; }
.fa-angry:before {
content: "\f556"; }
.fa-angrycreative:before {
content: "\f36e"; }
.fa-angular:before {
content: "\f420"; }
.fa-ankh:before {
content: "\f644"; }
.fa-app-store:before {
content: "\f36f"; }
.fa-app-store-ios:before {
content: "\f370"; }
.fa-apper:before {
content: "\f371"; }
.fa-apple:before {
content: "\f179"; }
.fa-apple-alt:before {
content: "\f5d1"; }
.fa-apple-pay:before {
content: "\f415"; }
.fa-archive:before {
content: "\f187"; }
.fa-archway:before {
content: "\f557"; }
.fa-arrow-alt-circle-down:before {
content: "\f358"; }
.fa-arrow-alt-circle-left:before {
content: "\f359"; }
.fa-arrow-alt-circle-right:before {
content: "\f35a"; }
.fa-arrow-alt-circle-up:before {
content: "\f35b"; }
.fa-arrow-circle-down:before {
content: "\f0ab"; }
.fa-arrow-circle-left:before {
content: "\f0a8"; }
.fa-arrow-circle-right:before {
content: "\f0a9"; }
.fa-arrow-circle-up:before {
content: "\f0aa"; }
.fa-arrow-down:before {
content: "\f063"; }
.fa-arrow-left:before {
content: "\f060"; }
.fa-arrow-right:before {
content: "\f061"; }
.fa-arrow-up:before {
content: "\f062"; }
.fa-arrows-alt:before {
content: "\f0b2"; }
.fa-arrows-alt-h:before {
content: "\f337"; }
.fa-arrows-alt-v:before {
content: "\f338"; }
.fa-artstation:before {
content: "\f77a"; }
.fa-assistive-listening-systems:before {
content: "\f2a2"; }
.fa-asterisk:before {
content: "\f069"; }
.fa-asymmetrik:before {
content: "\f372"; }
.fa-at:before {
content: "\f1fa"; }
.fa-atlas:before {
content: "\f558"; }
.fa-atlassian:before {
content: "\f77b"; }
.fa-atom:before {
content: "\f5d2"; }
.fa-audible:before {
content: "\f373"; }
.fa-audio-description:before {
content: "\f29e"; }
.fa-autoprefixer:before {
content: "\f41c"; }
.fa-avianex:before {
content: "\f374"; }
.fa-aviato:before {
content: "\f421"; }
.fa-award:before {
content: "\f559"; }
.fa-aws:before {
content: "\f375"; }
.fa-baby:before {
content: "\f77c"; }
.fa-baby-carriage:before {
content: "\f77d"; }
.fa-backspace:before {
content: "\f55a"; }
.fa-backward:before {
content: "\f04a"; }
.fa-bacon:before {
content: "\f7e5"; }
.fa-bahai:before {
content: "\f666"; }
.fa-balance-scale:before {
content: "\f24e"; }
.fa-balance-scale-left:before {
content: "\f515"; }
.fa-balance-scale-right:before {
content: "\f516"; }
.fa-ban:before {
content: "\f05e"; }
.fa-band-aid:before {
content: "\f462"; }
.fa-bandcamp:before {
content: "\f2d5"; }
.fa-barcode:before {
content: "\f02a"; }
.fa-bars:before {
content: "\f0c9"; }
.fa-baseball-ball:before {
content: "\f433"; }
.fa-basketball-ball:before {
content: "\f434"; }
.fa-bath:before {
content: "\f2cd"; }
.fa-battery-empty:before {
content: "\f244"; }
.fa-battery-full:before {
content: "\f240"; }
.fa-battery-half:before {
content: "\f242"; }
.fa-battery-quarter:before {
content: "\f243"; }
.fa-battery-three-quarters:before {
content: "\f241"; }
.fa-battle-net:before {
content: "\f835"; }
.fa-bed:before {
content: "\f236"; }
.fa-beer:before {
content: "\f0fc"; }
.fa-behance:before {
content: "\f1b4"; }
.fa-behance-square:before {
content: "\f1b5"; }
.fa-bell:before {
content: "\f0f3"; }
.fa-bell-slash:before {
content: "\f1f6"; }
.fa-bezier-curve:before {
content: "\f55b"; }
.fa-bible:before {
content: "\f647"; }
.fa-bicycle:before {
content: "\f206"; }
.fa-biking:before {
content: "\f84a"; }
.fa-bimobject:before {
content: "\f378"; }
.fa-binoculars:before {
content: "\f1e5"; }
.fa-biohazard:before {
content: "\f780"; }
.fa-birthday-cake:before {
content: "\f1fd"; }
.fa-bitbucket:before {
content: "\f171"; }
.fa-bitcoin:before {
content: "\f379"; }
.fa-bity:before {
content: "\f37a"; }
.fa-black-tie:before {
content: "\f27e"; }
.fa-blackberry:before {
content: "\f37b"; }
.fa-blender:before {
content: "\f517"; }
.fa-blender-phone:before {
content: "\f6b6"; }
.fa-blind:before {
content: "\f29d"; }
.fa-blog:before {
content: "\f781"; }
.fa-blogger:before {
content: "\f37c"; }
.fa-blogger-b:before {
content: "\f37d"; }
.fa-bluetooth:before {
content: "\f293"; }
.fa-bluetooth-b:before {
content: "\f294"; }
.fa-bold:before {
content: "\f032"; }
.fa-bolt:before {
content: "\f0e7"; }
.fa-bomb:before {
content: "\f1e2"; }
.fa-bone:before {
content: "\f5d7"; }
.fa-bong:before {
content: "\f55c"; }
.fa-book:before {
content: "\f02d"; }
.fa-book-dead:before {
content: "\f6b7"; }
.fa-book-medical:before {
content: "\f7e6"; }
.fa-book-open:before {
content: "\f518"; }
.fa-book-reader:before {
content: "\f5da"; }
.fa-bookmark:before {
content: "\f02e"; }
.fa-bootstrap:before {
content: "\f836"; }
.fa-border-all:before {
content: "\f84c"; }
.fa-border-none:before {
content: "\f850"; }
.fa-border-style:before {
content: "\f853"; }
.fa-bowling-ball:before {
content: "\f436"; }
.fa-box:before {
content: "\f466"; }
.fa-box-open:before {
content: "\f49e"; }
.fa-boxes:before {
content: "\f468"; }
.fa-braille:before {
content: "\f2a1"; }
.fa-brain:before {
content: "\f5dc"; }
.fa-bread-slice:before {
content: "\f7ec"; }
.fa-briefcase:before {
content: "\f0b1"; }
.fa-briefcase-medical:before {
content: "\f469"; }
.fa-broadcast-tower:before {
content: "\f519"; }
.fa-broom:before {
content: "\f51a"; }
.fa-brush:before {
content: "\f55d"; }
.fa-btc:before {
content: "\f15a"; }
.fa-buffer:before {
content: "\f837"; }
.fa-bug:before {
content: "\f188"; }
.fa-building:before {
content: "\f1ad"; }
.fa-bullhorn:before {
content: "\f0a1"; }
.fa-bullseye:before {
content: "\f140"; }
.fa-burn:before {
content: "\f46a"; }
.fa-buromobelexperte:before {
content: "\f37f"; }
.fa-bus:before {
content: "\f207"; }
.fa-bus-alt:before {
content: "\f55e"; }
.fa-business-time:before {
content: "\f64a"; }
.fa-buy-n-large:before {
content: "\f8a6"; }
.fa-buysellads:before {
content: "\f20d"; }
.fa-calculator:before {
content: "\f1ec"; }
.fa-calendar:before {
content: "\f133"; }
.fa-calendar-alt:before {
content: "\f073"; }
.fa-calendar-check:before {
content: "\f274"; }
.fa-calendar-day:before {
content: "\f783"; }
.fa-calendar-minus:before {
content: "\f272"; }
.fa-calendar-plus:before {
content: "\f271"; }
.fa-calendar-times:before {
content: "\f273"; }
.fa-calendar-week:before {
content: "\f784"; }
.fa-camera:before {
content: "\f030"; }
.fa-camera-retro:before {
content: "\f083"; }
.fa-campground:before {
content: "\f6bb"; }
.fa-canadian-maple-leaf:before {
content: "\f785"; }
.fa-candy-cane:before {
content: "\f786"; }
.fa-cannabis:before {
content: "\f55f"; }
.fa-capsules:before {
content: "\f46b"; }
.fa-car:before {
content: "\f1b9"; }
.fa-car-alt:before {
content: "\f5de"; }
.fa-car-battery:before {
content: "\f5df"; }
.fa-car-crash:before {
content: "\f5e1"; }
.fa-car-side:before {
content: "\f5e4"; }
.fa-caravan:before {
content: "\f8ff"; }
.fa-caret-down:before {
content: "\f0d7"; }
.fa-caret-left:before {
content: "\f0d9"; }
.fa-caret-right:before {
content: "\f0da"; }
.fa-caret-square-down:before {
content: "\f150"; }
.fa-caret-square-left:before {
content: "\f191"; }
.fa-caret-square-right:before {
content: "\f152"; }
.fa-caret-square-up:before {
content: "\f151"; }
.fa-caret-up:before {
content: "\f0d8"; }
.fa-carrot:before {
content: "\f787"; }
.fa-cart-arrow-down:before {
content: "\f218"; }
.fa-cart-plus:before {
content: "\f217"; }
.fa-cash-register:before {
content: "\f788"; }
.fa-cat:before {
content: "\f6be"; }
.fa-cc-amazon-pay:before {
content: "\f42d"; }
.fa-cc-amex:before {
content: "\f1f3"; }
.fa-cc-apple-pay:before {
content: "\f416"; }
.fa-cc-diners-club:before {
content: "\f24c"; }
.fa-cc-discover:before {
content: "\f1f2"; }
.fa-cc-jcb:before {
content: "\f24b"; }
.fa-cc-mastercard:before {
content: "\f1f1"; }
.fa-cc-paypal:before {
content: "\f1f4"; }
.fa-cc-stripe:before {
content: "\f1f5"; }
.fa-cc-visa:before {
content: "\f1f0"; }
.fa-centercode:before {
content: "\f380"; }
.fa-centos:before {
content: "\f789"; }
.fa-certificate:before {
content: "\f0a3"; }
.fa-chair:before {
content: "\f6c0"; }
.fa-chalkboard:before {
content: "\f51b"; }
.fa-chalkboard-teacher:before {
content: "\f51c"; }
.fa-charging-station:before {
content: "\f5e7"; }
.fa-chart-area:before {
content: "\f1fe"; }
.fa-chart-bar:before {
content: "\f080"; }
.fa-chart-line:before {
content: "\f201"; }
.fa-chart-pie:before {
content: "\f200"; }
.fa-check:before {
content: "\f00c"; }
.fa-check-circle:before {
content: "\f058"; }
.fa-check-double:before {
content: "\f560"; }
.fa-check-square:before {
content: "\f14a"; }
.fa-cheese:before {
content: "\f7ef"; }
.fa-chess:before {
content: "\f439"; }
.fa-chess-bishop:before {
content: "\f43a"; }
.fa-chess-board:before {
content: "\f43c"; }
.fa-chess-king:before {
content: "\f43f"; }
.fa-chess-knight:before {
content: "\f441"; }
.fa-chess-pawn:before {
content: "\f443"; }
.fa-chess-queen:before {
content: "\f445"; }
.fa-chess-rook:before {
content: "\f447"; }
.fa-chevron-circle-down:before {
content: "\f13a"; }
.fa-chevron-circle-left:before {
content: "\f137"; }
.fa-chevron-circle-right:before {
content: "\f138"; }
.fa-chevron-circle-up:before {
content: "\f139"; }
.fa-chevron-down:before {
content: "\f078"; }
.fa-chevron-left:before {
content: "\f053"; }
.fa-chevron-right:before {
content: "\f054"; }
.fa-chevron-up:before {
content: "\f077"; }
.fa-child:before {
content: "\f1ae"; }
.fa-chrome:before {
content: "\f268"; }
.fa-chromecast:before {
content: "\f838"; }
.fa-church:before {
content: "\f51d"; }
.fa-circle:before {
content: "\f111"; }
.fa-circle-notch:before {
content: "\f1ce"; }
.fa-city:before {
content: "\f64f"; }
.fa-clinic-medical:before {
content: "\f7f2"; }
.fa-clipboard:before {
content: "\f328"; }
.fa-clipboard-check:before {
content: "\f46c"; }
.fa-clipboard-list:before {
content: "\f46d"; }
.fa-clock:before {
content: "\f017"; }
.fa-clone:before {
content: "\f24d"; }
.fa-closed-captioning:before {
content: "\f20a"; }
.fa-cloud:before {
content: "\f0c2"; }
.fa-cloud-download-alt:before {
content: "\f381"; }
.fa-cloud-meatball:before {
content: "\f73b"; }
.fa-cloud-moon:before {
content: "\f6c3"; }
.fa-cloud-moon-rain:before {
content: "\f73c"; }
.fa-cloud-rain:before {
content: "\f73d"; }
.fa-cloud-showers-heavy:before {
content: "\f740"; }
.fa-cloud-sun:before {
content: "\f6c4"; }
.fa-cloud-sun-rain:before {
content: "\f743"; }
.fa-cloud-upload-alt:before {
content: "\f382"; }
.fa-cloudscale:before {
content: "\f383"; }
.fa-cloudsmith:before {
content: "\f384"; }
.fa-cloudversify:before {
content: "\f385"; }
.fa-cocktail:before {
content: "\f561"; }
.fa-code:before {
content: "\f121"; }
.fa-code-branch:before {
content: "\f126"; }
.fa-codepen:before {
content: "\f1cb"; }
.fa-codiepie:before {
content: "\f284"; }
.fa-coffee:before {
content: "\f0f4"; }
.fa-cog:before {
content: "\f013"; }
.fa-cogs:before {
content: "\f085"; }
.fa-coins:before {
content: "\f51e"; }
.fa-columns:before {
content: "\f0db"; }
.fa-comment:before {
content: "\f075"; }
.fa-comment-alt:before {
content: "\f27a"; }
.fa-comment-dollar:before {
content: "\f651"; }
.fa-comment-dots:before {
content: "\f4ad"; }
.fa-comment-medical:before {
content: "\f7f5"; }
.fa-comment-slash:before {
content: "\f4b3"; }
.fa-comments:before {
content: "\f086"; }
.fa-comments-dollar:before {
content: "\f653"; }
.fa-compact-disc:before {
content: "\f51f"; }
.fa-compass:before {
content: "\f14e"; }
.fa-compress:before {
content: "\f066"; }
.fa-compress-alt:before {
content: "\f422"; }
.fa-compress-arrows-alt:before {
content: "\f78c"; }
.fa-concierge-bell:before {
content: "\f562"; }
.fa-confluence:before {
content: "\f78d"; }
.fa-connectdevelop:before {
content: "\f20e"; }
.fa-contao:before {
content: "\f26d"; }
.fa-cookie:before {
content: "\f563"; }
.fa-cookie-bite:before {
content: "\f564"; }
.fa-copy:before {
content: "\f0c5"; }
.fa-copyright:before {
content: "\f1f9"; }
.fa-cotton-bureau:before {
content: "\f89e"; }
.fa-couch:before {
content: "\f4b8"; }
.fa-cpanel:before {
content: "\f388"; }
.fa-creative-commons:before {
content: "\f25e"; }
.fa-creative-commons-by:before {
content: "\f4e7"; }
.fa-creative-commons-nc:before {
content: "\f4e8"; }
.fa-creative-commons-nc-eu:before {
content: "\f4e9"; }
.fa-creative-commons-nc-jp:before {
content: "\f4ea"; }
.fa-creative-commons-nd:before {
content: "\f4eb"; }
.fa-creative-commons-pd:before {
content: "\f4ec"; }
.fa-creative-commons-pd-alt:before {
content: "\f4ed"; }
.fa-creative-commons-remix:before {
content: "\f4ee"; }
.fa-creative-commons-sa:before {
content: "\f4ef"; }
.fa-creative-commons-sampling:before {
content: "\f4f0"; }
.fa-creative-commons-sampling-plus:before {
content: "\f4f1"; }
.fa-creative-commons-share:before {
content: "\f4f2"; }
.fa-creative-commons-zero:before {
content: "\f4f3"; }
.fa-credit-card:before {
content: "\f09d"; }
.fa-critical-role:before {
content: "\f6c9"; }
.fa-crop:before {
content: "\f125"; }
.fa-crop-alt:before {
content: "\f565"; }
.fa-cross:before {
content: "\f654"; }
.fa-crosshairs:before {
content: "\f05b"; }
.fa-crow:before {
content: "\f520"; }
.fa-crown:before {
content: "\f521"; }
.fa-crutch:before {
content: "\f7f7"; }
.fa-css3:before {
content: "\f13c"; }
.fa-css3-alt:before {
content: "\f38b"; }
.fa-cube:before {
content: "\f1b2"; }
.fa-cubes:before {
content: "\f1b3"; }
.fa-cut:before {
content: "\f0c4"; }
.fa-cuttlefish:before {
content: "\f38c"; }
.fa-d-and-d:before {
content: "\f38d"; }
.fa-d-and-d-beyond:before {
content: "\f6ca"; }
.fa-dashcube:before {
content: "\f210"; }
.fa-database:before {
content: "\f1c0"; }
.fa-deaf:before {
content: "\f2a4"; }
.fa-delicious:before {
content: "\f1a5"; }
.fa-democrat:before {
content: "\f747"; }
.fa-deploydog:before {
content: "\f38e"; }
.fa-deskpro:before {
content: "\f38f"; }
.fa-desktop:before {
content: "\f108"; }
.fa-dev:before {
content: "\f6cc"; }
.fa-deviantart:before {
content: "\f1bd"; }
.fa-dharmachakra:before {
content: "\f655"; }
.fa-dhl:before {
content: "\f790"; }
.fa-diagnoses:before {
content: "\f470"; }
.fa-diaspora:before {
content: "\f791"; }
.fa-dice:before {
content: "\f522"; }
.fa-dice-d20:before {
content: "\f6cf"; }
.fa-dice-d6:before {
content: "\f6d1"; }
.fa-dice-five:before {
content: "\f523"; }
.fa-dice-four:before {
content: "\f524"; }
.fa-dice-one:before {
content: "\f525"; }
.fa-dice-six:before {
content: "\f526"; }
.fa-dice-three:before {
content: "\f527"; }
.fa-dice-two:before {
content: "\f528"; }
.fa-digg:before {
content: "\f1a6"; }
.fa-digital-ocean:before {
content: "\f391"; }
.fa-digital-tachograph:before {
content: "\f566"; }
.fa-directions:before {
content: "\f5eb"; }
.fa-discord:before {
content: "\f392"; }
.fa-discourse:before {
content: "\f393"; }
.fa-divide:before {
content: "\f529"; }
.fa-dizzy:before {
content: "\f567"; }
.fa-dna:before {
content: "\f471"; }
.fa-dochub:before {
content: "\f394"; }
.fa-docker:before {
content: "\f395"; }
.fa-dog:before {
content: "\f6d3"; }
.fa-dollar-sign:before {
content: "\f155"; }
.fa-dolly:before {
content: "\f472"; }
.fa-dolly-flatbed:before {
content: "\f474"; }
.fa-donate:before {
content: "\f4b9"; }
.fa-door-closed:before {
content: "\f52a"; }
.fa-door-open:before {
content: "\f52b"; }
.fa-dot-circle:before {
content: "\f192"; }
.fa-dove:before {
content: "\f4ba"; }
.fa-download:before {
content: "\f019"; }
.fa-draft2digital:before {
content: "\f396"; }
.fa-drafting-compass:before {
content: "\f568"; }
.fa-dragon:before {
content: "\f6d5"; }
.fa-draw-polygon:before {
content: "\f5ee"; }
.fa-dribbble:before {
content: "\f17d"; }
.fa-dribbble-square:before {
content: "\f397"; }
.fa-dropbox:before {
content: "\f16b"; }
.fa-drum:before {
content: "\f569"; }
.fa-drum-steelpan:before {
content: "\f56a"; }
.fa-drumstick-bite:before {
content: "\f6d7"; }
.fa-drupal:before {
content: "\f1a9"; }
.fa-dumbbell:before {
content: "\f44b"; }
.fa-dumpster:before {
content: "\f793"; }
.fa-dumpster-fire:before {
content: "\f794"; }
.fa-dungeon:before {
content: "\f6d9"; }
.fa-dyalog:before {
content: "\f399"; }
.fa-earlybirds:before {
content: "\f39a"; }
.fa-ebay:before {
content: "\f4f4"; }
.fa-edge:before {
content: "\f282"; }
.fa-edit:before {
content: "\f044"; }
.fa-egg:before {
content: "\f7fb"; }
.fa-eject:before {
content: "\f052"; }
.fa-elementor:before {
content: "\f430"; }
.fa-ellipsis-h:before {
content: "\f141"; }
.fa-ellipsis-v:before {
content: "\f142"; }
.fa-ello:before {
content: "\f5f1"; }
.fa-ember:before {
content: "\f423"; }
.fa-empire:before {
content: "\f1d1"; }
.fa-envelope:before {
content: "\f0e0"; }
.fa-envelope-open:before {
content: "\f2b6"; }
.fa-envelope-open-text:before {
content: "\f658"; }
.fa-envelope-square:before {
content: "\f199"; }
.fa-envira:before {
content: "\f299"; }
.fa-equals:before {
content: "\f52c"; }
.fa-eraser:before {
content: "\f12d"; }
.fa-erlang:before {
content: "\f39d"; }
.fa-ethereum:before {
content: "\f42e"; }
.fa-ethernet:before {
content: "\f796"; }
.fa-etsy:before {
content: "\f2d7"; }
.fa-euro-sign:before {
content: "\f153"; }
.fa-evernote:before {
content: "\f839"; }
.fa-exchange-alt:before {
content: "\f362"; }
.fa-exclamation:before {
content: "\f12a"; }
.fa-exclamation-circle:before {
content: "\f06a"; }
.fa-exclamation-triangle:before {
content: "\f071"; }
.fa-expand:before {
content: "\f065"; }
.fa-expand-alt:before {
content: "\f424"; }
.fa-expand-arrows-alt:before {
content: "\f31e"; }
.fa-expeditedssl:before {
content: "\f23e"; }
.fa-external-link-alt:before {
content: "\f35d"; }
.fa-external-link-square-alt:before {
content: "\f360"; }
.fa-eye:before {
content: "\f06e"; }
.fa-eye-dropper:before {
content: "\f1fb"; }
.fa-eye-slash:before {
content: "\f070"; }
.fa-facebook:before {
content: "\f09a"; }
.fa-facebook-f:before {
content: "\f39e"; }
.fa-facebook-messenger:before {
content: "\f39f"; }
.fa-facebook-square:before {
content: "\f082"; }
.fa-fan:before {
content: "\f863"; }
.fa-fantasy-flight-games:before {
content: "\f6dc"; }
.fa-fast-backward:before {
content: "\f049"; }
.fa-fast-forward:before {
content: "\f050"; }
.fa-fax:before {
content: "\f1ac"; }
.fa-feather:before {
content: "\f52d"; }
.fa-feather-alt:before {
content: "\f56b"; }
.fa-fedex:before {
content: "\f797"; }
.fa-fedora:before {
content: "\f798"; }
.fa-female:before {
content: "\f182"; }
.fa-fighter-jet:before {
content: "\f0fb"; }
.fa-figma:before {
content: "\f799"; }
.fa-file:before {
content: "\f15b"; }
.fa-file-alt:before {
content: "\f15c"; }
.fa-file-archive:before {
content: "\f1c6"; }
.fa-file-audio:before {
content: "\f1c7"; }
.fa-file-code:before {
content: "\f1c9"; }
.fa-file-contract:before {
content: "\f56c"; }
.fa-file-csv:before {
content: "\f6dd"; }
.fa-file-download:before {
content: "\f56d"; }
.fa-file-excel:before {
content: "\f1c3"; }
.fa-file-export:before {
content: "\f56e"; }
.fa-file-image:before {
content: "\f1c5"; }
.fa-file-import:before {
content: "\f56f"; }
.fa-file-invoice:before {
content: "\f570"; }
.fa-file-invoice-dollar:before {
content: "\f571"; }
.fa-file-medical:before {
content: "\f477"; }
.fa-file-medical-alt:before {
content: "\f478"; }
.fa-file-pdf:before {
content: "\f1c1"; }
.fa-file-powerpoint:before {
content: "\f1c4"; }
.fa-file-prescription:before {
content: "\f572"; }
.fa-file-signature:before {
content: "\f573"; }
.fa-file-upload:before {
content: "\f574"; }
.fa-file-video:before {
content: "\f1c8"; }
.fa-file-word:before {
content: "\f1c2"; }
.fa-fill:before {
content: "\f575"; }
.fa-fill-drip:before {
content: "\f576"; }
.fa-film:before {
content: "\f008"; }
.fa-filter:before {
content: "\f0b0"; }
.fa-fingerprint:before {
content: "\f577"; }
.fa-fire:before {
content: "\f06d"; }
.fa-fire-alt:before {
content: "\f7e4"; }
.fa-fire-extinguisher:before {
content: "\f134"; }
.fa-firefox:before {
content: "\f269"; }
.fa-firefox-browser:before {
content: "\f907"; }
.fa-first-aid:before {
content: "\f479"; }
.fa-first-order:before {
content: "\f2b0"; }
.fa-first-order-alt:before {
content: "\f50a"; }
.fa-firstdraft:before {
content: "\f3a1"; }
.fa-fish:before {
content: "\f578"; }
.fa-fist-raised:before {
content: "\f6de"; }
.fa-flag:before {
content: "\f024"; }
.fa-flag-checkered:before {
content: "\f11e"; }
.fa-flag-usa:before {
content: "\f74d"; }
.fa-flask:before {
content: "\f0c3"; }
.fa-flickr:before {
content: "\f16e"; }
.fa-flipboard:before {
content: "\f44d"; }
.fa-flushed:before {
content: "\f579"; }
.fa-fly:before {
content: "\f417"; }
.fa-folder:before {
content: "\f07b"; }
.fa-folder-minus:before {
content: "\f65d"; }
.fa-folder-open:before {
content: "\f07c"; }
.fa-folder-plus:before {
content: "\f65e"; }
.fa-font:before {
content: "\f031"; }
.fa-font-awesome:before {
content: "\f2b4"; }
.fa-font-awesome-alt:before {
content: "\f35c"; }
.fa-font-awesome-flag:before {
content: "\f425"; }
.fa-font-awesome-logo-full:before {
content: "\f4e6"; }
.fa-fonticons:before {
content: "\f280"; }
.fa-fonticons-fi:before {
content: "\f3a2"; }
.fa-football-ball:before {
content: "\f44e"; }
.fa-fort-awesome:before {
content: "\f286"; }
.fa-fort-awesome-alt:before {
content: "\f3a3"; }
.fa-forumbee:before {
content: "\f211"; }
.fa-forward:before {
content: "\f04e"; }
.fa-foursquare:before {
content: "\f180"; }
.fa-free-code-camp:before {
content: "\f2c5"; }
.fa-freebsd:before {
content: "\f3a4"; }
.fa-frog:before {
content: "\f52e"; }
.fa-frown:before {
content: "\f119"; }
.fa-frown-open:before {
content: "\f57a"; }
.fa-fulcrum:before {
content: "\f50b"; }
.fa-funnel-dollar:before {
content: "\f662"; }
.fa-futbol:before {
content: "\f1e3"; }
.fa-galactic-republic:before {
content: "\f50c"; }
.fa-galactic-senate:before {
content: "\f50d"; }
.fa-gamepad:before {
content: "\f11b"; }
.fa-gas-pump:before {
content: "\f52f"; }
.fa-gavel:before {
content: "\f0e3"; }
.fa-gem:before {
content: "\f3a5"; }
.fa-genderless:before {
content: "\f22d"; }
.fa-get-pocket:before {
content: "\f265"; }
.fa-gg:before {
content: "\f260"; }
.fa-gg-circle:before {
content: "\f261"; }
.fa-ghost:before {
content: "\f6e2"; }
.fa-gift:before {
content: "\f06b"; }
.fa-gifts:before {
content: "\f79c"; }
.fa-git:before {
content: "\f1d3"; }
.fa-git-alt:before {
content: "\f841"; }
.fa-git-square:before {
content: "\f1d2"; }
.fa-github:before {
content: "\f09b"; }
.fa-github-alt:before {
content: "\f113"; }
.fa-github-square:before {
content: "\f092"; }
.fa-gitkraken:before {
content: "\f3a6"; }
.fa-gitlab:before {
content: "\f296"; }
.fa-gitter:before {
content: "\f426"; }
.fa-glass-cheers:before {
content: "\f79f"; }
.fa-glass-martini:before {
content: "\f000"; }
.fa-glass-martini-alt:before {
content: "\f57b"; }
.fa-glass-whiskey:before {
content: "\f7a0"; }
.fa-glasses:before {
content: "\f530"; }
.fa-glide:before {
content: "\f2a5"; }
.fa-glide-g:before {
content: "\f2a6"; }
.fa-globe:before {
content: "\f0ac"; }
.fa-globe-africa:before {
content: "\f57c"; }
.fa-globe-americas:before {
content: "\f57d"; }
.fa-globe-asia:before {
content: "\f57e"; }
.fa-globe-europe:before {
content: "\f7a2"; }
.fa-gofore:before {
content: "\f3a7"; }
.fa-golf-ball:before {
content: "\f450"; }
.fa-goodreads:before {
content: "\f3a8"; }
.fa-goodreads-g:before {
content: "\f3a9"; }
.fa-google:before {
content: "\f1a0"; }
.fa-google-drive:before {
content: "\f3aa"; }
.fa-google-play:before {
content: "\f3ab"; }
.fa-google-plus:before {
content: "\f2b3"; }
.fa-google-plus-g:before {
content: "\f0d5"; }
.fa-google-plus-square:before {
content: "\f0d4"; }
.fa-google-wallet:before {
content: "\f1ee"; }
.fa-gopuram:before {
content: "\f664"; }
.fa-graduation-cap:before {
content: "\f19d"; }
.fa-gratipay:before {
content: "\f184"; }
.fa-grav:before {
content: "\f2d6"; }
.fa-greater-than:before {
content: "\f531"; }
.fa-greater-than-equal:before {
content: "\f532"; }
.fa-grimace:before {
content: "\f57f"; }
.fa-grin:before {
content: "\f580"; }
.fa-grin-alt:before {
content: "\f581"; }
.fa-grin-beam:before {
content: "\f582"; }
.fa-grin-beam-sweat:before {
content: "\f583"; }
.fa-grin-hearts:before {
content: "\f584"; }
.fa-grin-squint:before {
content: "\f585"; }
.fa-grin-squint-tears:before {
content: "\f586"; }
.fa-grin-stars:before {
content: "\f587"; }
.fa-grin-tears:before {
content: "\f588"; }
.fa-grin-tongue:before {
content: "\f589"; }
.fa-grin-tongue-squint:before {
content: "\f58a"; }
.fa-grin-tongue-wink:before {
content: "\f58b"; }
.fa-grin-wink:before {
content: "\f58c"; }
.fa-grip-horizontal:before {
content: "\f58d"; }
.fa-grip-lines:before {
content: "\f7a4"; }
.fa-grip-lines-vertical:before {
content: "\f7a5"; }
.fa-grip-vertical:before {
content: "\f58e"; }
.fa-gripfire:before {
content: "\f3ac"; }
.fa-grunt:before {
content: "\f3ad"; }
.fa-guitar:before {
content: "\f7a6"; }
.fa-gulp:before {
content: "\f3ae"; }
.fa-h-square:before {
content: "\f0fd"; }
.fa-hacker-news:before {
content: "\f1d4"; }
.fa-hacker-news-square:before {
content: "\f3af"; }
.fa-hackerrank:before {
content: "\f5f7"; }
.fa-hamburger:before {
content: "\f805"; }
.fa-hammer:before {
content: "\f6e3"; }
.fa-hamsa:before {
content: "\f665"; }
.fa-hand-holding:before {
content: "\f4bd"; }
.fa-hand-holding-heart:before {
content: "\f4be"; }
.fa-hand-holding-usd:before {
content: "\f4c0"; }
.fa-hand-lizard:before {
content: "\f258"; }
.fa-hand-middle-finger:before {
content: "\f806"; }
.fa-hand-paper:before {
content: "\f256"; }
.fa-hand-peace:before {
content: "\f25b"; }
.fa-hand-point-down:before {
content: "\f0a7"; }
.fa-hand-point-left:before {
content: "\f0a5"; }
.fa-hand-point-right:before {
content: "\f0a4"; }
.fa-hand-point-up:before {
content: "\f0a6"; }
.fa-hand-pointer:before {
content: "\f25a"; }
.fa-hand-rock:before {
content: "\f255"; }
.fa-hand-scissors:before {
content: "\f257"; }
.fa-hand-spock:before {
content: "\f259"; }
.fa-hands:before {
content: "\f4c2"; }
.fa-hands-helping:before {
content: "\f4c4"; }
.fa-handshake:before {
content: "\f2b5"; }
.fa-hanukiah:before {
content: "\f6e6"; }
.fa-hard-hat:before {
content: "\f807"; }
.fa-hashtag:before {
content: "\f292"; }
.fa-hat-cowboy:before {
content: "\f8c0"; }
.fa-hat-cowboy-side:before {
content: "\f8c1"; }
.fa-hat-wizard:before {
content: "\f6e8"; }
.fa-hdd:before {
content: "\f0a0"; }
.fa-heading:before {
content: "\f1dc"; }
.fa-headphones:before {
content: "\f025"; }
.fa-headphones-alt:before {
content: "\f58f"; }
.fa-headset:before {
content: "\f590"; }
.fa-heart:before {
content: "\f004"; }
.fa-heart-broken:before {
content: "\f7a9"; }
.fa-heartbeat:before {
content: "\f21e"; }
.fa-helicopter:before {
content: "\f533"; }
.fa-highlighter:before {
content: "\f591"; }
.fa-hiking:before {
content: "\f6ec"; }
.fa-hippo:before {
content: "\f6ed"; }
.fa-hips:before {
content: "\f452"; }
.fa-hire-a-helper:before {
content: "\f3b0"; }
.fa-history:before {
content: "\f1da"; }
.fa-hockey-puck:before {
content: "\f453"; }
.fa-holly-berry:before {
content: "\f7aa"; }
.fa-home:before {
content: "\f015"; }
.fa-hooli:before {
content: "\f427"; }
.fa-hornbill:before {
content: "\f592"; }
.fa-horse:before {
content: "\f6f0"; }
.fa-horse-head:before {
content: "\f7ab"; }
.fa-hospital:before {
content: "\f0f8"; }
.fa-hospital-alt:before {
content: "\f47d"; }
.fa-hospital-symbol:before {
content: "\f47e"; }
.fa-hot-tub:before {
content: "\f593"; }
.fa-hotdog:before {
content: "\f80f"; }
.fa-hotel:before {
content: "\f594"; }
.fa-hotjar:before {
content: "\f3b1"; }
.fa-hourglass:before {
content: "\f254"; }
.fa-hourglass-end:before {
content: "\f253"; }
.fa-hourglass-half:before {
content: "\f252"; }
.fa-hourglass-start:before {
content: "\f251"; }
.fa-house-damage:before {
content: "\f6f1"; }
.fa-houzz:before {
content: "\f27c"; }
.fa-hryvnia:before {
content: "\f6f2"; }
.fa-html5:before {
content: "\f13b"; }
.fa-hubspot:before {
content: "\f3b2"; }
.fa-i-cursor:before {
content: "\f246"; }
.fa-ice-cream:before {
content: "\f810"; }
.fa-icicles:before {
content: "\f7ad"; }
.fa-icons:before {
content: "\f86d"; }
.fa-id-badge:before {
content: "\f2c1"; }
.fa-id-card:before {
content: "\f2c2"; }
.fa-id-card-alt:before {
content: "\f47f"; }
.fa-ideal:before {
content: "\f913"; }
.fa-igloo:before {
content: "\f7ae"; }
.fa-image:before {
content: "\f03e"; }
.fa-images:before {
content: "\f302"; }
.fa-imdb:before {
content: "\f2d8"; }
.fa-inbox:before {
content: "\f01c"; }
.fa-indent:before {
content: "\f03c"; }
.fa-industry:before {
content: "\f275"; }
.fa-infinity:before {
content: "\f534"; }
.fa-info:before {
content: "\f129"; }
.fa-info-circle:before {
content: "\f05a"; }
.fa-instagram:before {
content: "\f16d"; }
.fa-intercom:before {
content: "\f7af"; }
.fa-internet-explorer:before {
content: "\f26b"; }
.fa-invision:before {
content: "\f7b0"; }
.fa-ioxhost:before {
content: "\f208"; }
.fa-italic:before {
content: "\f033"; }
.fa-itch-io:before {
content: "\f83a"; }
.fa-itunes:before {
content: "\f3b4"; }
.fa-itunes-note:before {
content: "\f3b5"; }
.fa-java:before {
content: "\f4e4"; }
.fa-jedi:before {
content: "\f669"; }
.fa-jedi-order:before {
content: "\f50e"; }
.fa-jenkins:before {
content: "\f3b6"; }
.fa-jira:before {
content: "\f7b1"; }
.fa-joget:before {
content: "\f3b7"; }
.fa-joint:before {
content: "\f595"; }
.fa-joomla:before {
content: "\f1aa"; }
.fa-journal-whills:before {
content: "\f66a"; }
.fa-js:before {
content: "\f3b8"; }
.fa-js-square:before {
content: "\f3b9"; }
.fa-jsfiddle:before {
content: "\f1cc"; }
.fa-kaaba:before {
content: "\f66b"; }
.fa-kaggle:before {
content: "\f5fa"; }
.fa-key:before {
content: "\f084"; }
.fa-keybase:before {
content: "\f4f5"; }
.fa-keyboard:before {
content: "\f11c"; }
.fa-keycdn:before {
content: "\f3ba"; }
.fa-khanda:before {
content: "\f66d"; }
.fa-kickstarter:before {
content: "\f3bb"; }
.fa-kickstarter-k:before {
content: "\f3bc"; }
.fa-kiss:before {
content: "\f596"; }
.fa-kiss-beam:before {
content: "\f597"; }
.fa-kiss-wink-heart:before {
content: "\f598"; }
.fa-kiwi-bird:before {
content: "\f535"; }
.fa-korvue:before {
content: "\f42f"; }
.fa-landmark:before {
content: "\f66f"; }
.fa-language:before {
content: "\f1ab"; }
.fa-laptop:before {
content: "\f109"; }
.fa-laptop-code:before {
content: "\f5fc"; }
.fa-laptop-medical:before {
content: "\f812"; }
.fa-laravel:before {
content: "\f3bd"; }
.fa-lastfm:before {
content: "\f202"; }
.fa-lastfm-square:before {
content: "\f203"; }
.fa-laugh:before {
content: "\f599"; }
.fa-laugh-beam:before {
content: "\f59a"; }
.fa-laugh-squint:before {
content: "\f59b"; }
.fa-laugh-wink:before {
content: "\f59c"; }
.fa-layer-group:before {
content: "\f5fd"; }
.fa-leaf:before {
content: "\f06c"; }
.fa-leanpub:before {
content: "\f212"; }
.fa-lemon:before {
content: "\f094"; }
.fa-less:before {
content: "\f41d"; }
.fa-less-than:before {
content: "\f536"; }
.fa-less-than-equal:before {
content: "\f537"; }
.fa-level-down-alt:before {
content: "\f3be"; }
.fa-level-up-alt:before {
content: "\f3bf"; }
.fa-life-ring:before {
content: "\f1cd"; }
.fa-lightbulb:before {
content: "\f0eb"; }
.fa-line:before {
content: "\f3c0"; }
.fa-link:before {
content: "\f0c1"; }
.fa-linkedin:before {
content: "\f08c"; }
.fa-linkedin-in:before {
content: "\f0e1"; }
.fa-linode:before {
content: "\f2b8"; }
.fa-linux:before {
content: "\f17c"; }
.fa-lira-sign:before {
content: "\f195"; }
.fa-list:before {
content: "\f03a"; }
.fa-list-alt:before {
content: "\f022"; }
.fa-list-ol:before {
content: "\f0cb"; }
.fa-list-ul:before {
content: "\f0ca"; }
.fa-location-arrow:before {
content: "\f124"; }
.fa-lock:before {
content: "\f023"; }
.fa-lock-open:before {
content: "\f3c1"; }
.fa-long-arrow-alt-down:before {
content: "\f309"; }
.fa-long-arrow-alt-left:before {
content: "\f30a"; }
.fa-long-arrow-alt-right:before {
content: "\f30b"; }
.fa-long-arrow-alt-up:before {
content: "\f30c"; }
.fa-low-vision:before {
content: "\f2a8"; }
.fa-luggage-cart:before {
content: "\f59d"; }
.fa-lyft:before {
content: "\f3c3"; }
.fa-magento:before {
content: "\f3c4"; }
.fa-magic:before {
content: "\f0d0"; }
.fa-magnet:before {
content: "\f076"; }
.fa-mail-bulk:before {
content: "\f674"; }
.fa-mailchimp:before {
content: "\f59e"; }
.fa-male:before {
content: "\f183"; }
.fa-mandalorian:before {
content: "\f50f"; }
.fa-map:before {
content: "\f279"; }
.fa-map-marked:before {
content: "\f59f"; }
.fa-map-marked-alt:before {
content: "\f5a0"; }
.fa-map-marker:before {
content: "\f041"; }
.fa-map-marker-alt:before {
content: "\f3c5"; }
.fa-map-pin:before {
content: "\f276"; }
.fa-map-signs:before {
content: "\f277"; }
.fa-markdown:before {
content: "\f60f"; }
.fa-marker:before {
content: "\f5a1"; }
.fa-mars:before {
content: "\f222"; }
.fa-mars-double:before {
content: "\f227"; }
.fa-mars-stroke:before {
content: "\f229"; }
.fa-mars-stroke-h:before {
content: "\f22b"; }
.fa-mars-stroke-v:before {
content: "\f22a"; }
.fa-mask:before {
content: "\f6fa"; }
.fa-mastodon:before {
content: "\f4f6"; }
.fa-maxcdn:before {
content: "\f136"; }
.fa-mdb:before {
content: "\f8ca"; }
.fa-medal:before {
content: "\f5a2"; }
.fa-medapps:before {
content: "\f3c6"; }
.fa-medium:before {
content: "\f23a"; }
.fa-medium-m:before {
content: "\f3c7"; }
.fa-medkit:before {
content: "\f0fa"; }
.fa-medrt:before {
content: "\f3c8"; }
.fa-meetup:before {
content: "\f2e0"; }
.fa-megaport:before {
content: "\f5a3"; }
.fa-meh:before {
content: "\f11a"; }
.fa-meh-blank:before {
content: "\f5a4"; }
.fa-meh-rolling-eyes:before {
content: "\f5a5"; }
.fa-memory:before {
content: "\f538"; }
.fa-mendeley:before {
content: "\f7b3"; }
.fa-menorah:before {
content: "\f676"; }
.fa-mercury:before {
content: "\f223"; }
.fa-meteor:before {
content: "\f753"; }
.fa-microblog:before {
content: "\f91a"; }
.fa-microchip:before {
content: "\f2db"; }
.fa-microphone:before {
content: "\f130"; }
.fa-microphone-alt:before {
content: "\f3c9"; }
.fa-microphone-alt-slash:before {
content: "\f539"; }
.fa-microphone-slash:before {
content: "\f131"; }
.fa-microscope:before {
content: "\f610"; }
.fa-microsoft:before {
content: "\f3ca"; }
.fa-minus:before {
content: "\f068"; }
.fa-minus-circle:before {
content: "\f056"; }
.fa-minus-square:before {
content: "\f146"; }
.fa-mitten:before {
content: "\f7b5"; }
.fa-mix:before {
content: "\f3cb"; }
.fa-mixcloud:before {
content: "\f289"; }
.fa-mizuni:before {
content: "\f3cc"; }
.fa-mobile:before {
content: "\f10b"; }
.fa-mobile-alt:before {
content: "\f3cd"; }
.fa-modx:before {
content: "\f285"; }
.fa-monero:before {
content: "\f3d0"; }
.fa-money-bill:before {
content: "\f0d6"; }
.fa-money-bill-alt:before {
content: "\f3d1"; }
.fa-money-bill-wave:before {
content: "\f53a"; }
.fa-money-bill-wave-alt:before {
content: "\f53b"; }
.fa-money-check:before {
content: "\f53c"; }
.fa-money-check-alt:before {
content: "\f53d"; }
.fa-monument:before {
content: "\f5a6"; }
.fa-moon:before {
content: "\f186"; }
.fa-mortar-pestle:before {
content: "\f5a7"; }
.fa-mosque:before {
content: "\f678"; }
.fa-motorcycle:before {
content: "\f21c"; }
.fa-mountain:before {
content: "\f6fc"; }
.fa-mouse:before {
content: "\f8cc"; }
.fa-mouse-pointer:before {
content: "\f245"; }
.fa-mug-hot:before {
content: "\f7b6"; }
.fa-music:before {
content: "\f001"; }
.fa-napster:before {
content: "\f3d2"; }
.fa-neos:before {
content: "\f612"; }
.fa-network-wired:before {
content: "\f6ff"; }
.fa-neuter:before {
content: "\f22c"; }
.fa-newspaper:before {
content: "\f1ea"; }
.fa-nimblr:before {
content: "\f5a8"; }
.fa-node:before {
content: "\f419"; }
.fa-node-js:before {
content: "\f3d3"; }
.fa-not-equal:before {
content: "\f53e"; }
.fa-notes-medical:before {
content: "\f481"; }
.fa-npm:before {
content: "\f3d4"; }
.fa-ns8:before {
content: "\f3d5"; }
.fa-nutritionix:before {
content: "\f3d6"; }
.fa-object-group:before {
content: "\f247"; }
.fa-object-ungroup:before {
content: "\f248"; }
.fa-odnoklassniki:before {
content: "\f263"; }
.fa-odnoklassniki-square:before {
content: "\f264"; }
.fa-oil-can:before {
content: "\f613"; }
.fa-old-republic:before {
content: "\f510"; }
.fa-om:before {
content: "\f679"; }
.fa-opencart:before {
content: "\f23d"; }
.fa-openid:before {
content: "\f19b"; }
.fa-opera:before {
content: "\f26a"; }
.fa-optin-monster:before {
content: "\f23c"; }
.fa-orcid:before {
content: "\f8d2"; }
.fa-osi:before {
content: "\f41a"; }
.fa-otter:before {
content: "\f700"; }
.fa-outdent:before {
content: "\f03b"; }
.fa-page4:before {
content: "\f3d7"; }
.fa-pagelines:before {
content: "\f18c"; }
.fa-pager:before {
content: "\f815"; }
.fa-paint-brush:before {
content: "\f1fc"; }
.fa-paint-roller:before {
content: "\f5aa"; }
.fa-palette:before {
content: "\f53f"; }
.fa-palfed:before {
content: "\f3d8"; }
.fa-pallet:before {
content: "\f482"; }
.fa-paper-plane:before {
content: "\f1d8"; }
.fa-paperclip:before {
content: "\f0c6"; }
.fa-parachute-box:before {
content: "\f4cd"; }
.fa-paragraph:before {
content: "\f1dd"; }
.fa-parking:before {
content: "\f540"; }
.fa-passport:before {
content: "\f5ab"; }
.fa-pastafarianism:before {
content: "\f67b"; }
.fa-paste:before {
content: "\f0ea"; }
.fa-patreon:before {
content: "\f3d9"; }
.fa-pause:before {
content: "\f04c"; }
.fa-pause-circle:before {
content: "\f28b"; }
.fa-paw:before {
content: "\f1b0"; }
.fa-paypal:before {
content: "\f1ed"; }
.fa-peace:before {
content: "\f67c"; }
.fa-pen:before {
content: "\f304"; }
.fa-pen-alt:before {
content: "\f305"; }
.fa-pen-fancy:before {
content: "\f5ac"; }
.fa-pen-nib:before {
content: "\f5ad"; }
.fa-pen-square:before {
content: "\f14b"; }
.fa-pencil-alt:before {
content: "\f303"; }
.fa-pencil-ruler:before {
content: "\f5ae"; }
.fa-penny-arcade:before {
content: "\f704"; }
.fa-people-carry:before {
content: "\f4ce"; }
.fa-pepper-hot:before {
content: "\f816"; }
.fa-percent:before {
content: "\f295"; }
.fa-percentage:before {
content: "\f541"; }
.fa-periscope:before {
content: "\f3da"; }
.fa-person-booth:before {
content: "\f756"; }
.fa-phabricator:before {
content: "\f3db"; }
.fa-phoenix-framework:before {
content: "\f3dc"; }
.fa-phoenix-squadron:before {
content: "\f511"; }
.fa-phone:before {
content: "\f095"; }
.fa-phone-alt:before {
content: "\f879"; }
.fa-phone-slash:before {
content: "\f3dd"; }
.fa-phone-square:before {
content: "\f098"; }
.fa-phone-square-alt:before {
content: "\f87b"; }
.fa-phone-volume:before {
content: "\f2a0"; }
.fa-photo-video:before {
content: "\f87c"; }
.fa-php:before {
content: "\f457"; }
.fa-pied-piper:before {
content: "\f2ae"; }
.fa-pied-piper-alt:before {
content: "\f1a8"; }
.fa-pied-piper-hat:before {
content: "\f4e5"; }
.fa-pied-piper-pp:before {
content: "\f1a7"; }
.fa-pied-piper-square:before {
content: "\f91e"; }
.fa-piggy-bank:before {
content: "\f4d3"; }
.fa-pills:before {
content: "\f484"; }
.fa-pinterest:before {
content: "\f0d2"; }
.fa-pinterest-p:before {
content: "\f231"; }
.fa-pinterest-square:before {
content: "\f0d3"; }
.fa-pizza-slice:before {
content: "\f818"; }
.fa-place-of-worship:before {
content: "\f67f"; }
.fa-plane:before {
content: "\f072"; }
.fa-plane-arrival:before {
content: "\f5af"; }
.fa-plane-departure:before {
content: "\f5b0"; }
.fa-play:before {
content: "\f04b"; }
.fa-play-circle:before {
content: "\f144"; }
.fa-playstation:before {
content: "\f3df"; }
.fa-plug:before {
content: "\f1e6"; }
.fa-plus:before {
content: "\f067"; }
.fa-plus-circle:before {
content: "\f055"; }
.fa-plus-square:before {
content: "\f0fe"; }
.fa-podcast:before {
content: "\f2ce"; }
.fa-poll:before {
content: "\f681"; }
.fa-poll-h:before {
content: "\f682"; }
.fa-poo:before {
content: "\f2fe"; }
.fa-poo-storm:before {
content: "\f75a"; }
.fa-poop:before {
content: "\f619"; }
.fa-portrait:before {
content: "\f3e0"; }
.fa-pound-sign:before {
content: "\f154"; }
.fa-power-off:before {
content: "\f011"; }
.fa-pray:before {
content: "\f683"; }
.fa-praying-hands:before {
content: "\f684"; }
.fa-prescription:before {
content: "\f5b1"; }
.fa-prescription-bottle:before {
content: "\f485"; }
.fa-prescription-bottle-alt:before {
content: "\f486"; }
.fa-print:before {
content: "\f02f"; }
.fa-procedures:before {
content: "\f487"; }
.fa-product-hunt:before {
content: "\f288"; }
.fa-project-diagram:before {
content: "\f542"; }
.fa-pushed:before {
content: "\f3e1"; }
.fa-puzzle-piece:before {
content: "\f12e"; }
.fa-python:before {
content: "\f3e2"; }
.fa-qq:before {
content: "\f1d6"; }
.fa-qrcode:before {
content: "\f029"; }
.fa-question:before {
content: "\f128"; }
.fa-question-circle:before {
content: "\f059"; }
.fa-quidditch:before {
content: "\f458"; }
.fa-quinscape:before {
content: "\f459"; }
.fa-quora:before {
content: "\f2c4"; }
.fa-quote-left:before {
content: "\f10d"; }
.fa-quote-right:before {
content: "\f10e"; }
.fa-quran:before {
content: "\f687"; }
.fa-r-project:before {
content: "\f4f7"; }
.fa-radiation:before {
content: "\f7b9"; }
.fa-radiation-alt:before {
content: "\f7ba"; }
.fa-rainbow:before {
content: "\f75b"; }
.fa-random:before {
content: "\f074"; }
.fa-raspberry-pi:before {
content: "\f7bb"; }
.fa-ravelry:before {
content: "\f2d9"; }
.fa-react:before {
content: "\f41b"; }
.fa-reacteurope:before {
content: "\f75d"; }
.fa-readme:before {
content: "\f4d5"; }
.fa-rebel:before {
content: "\f1d0"; }
.fa-receipt:before {
content: "\f543"; }
.fa-record-vinyl:before {
content: "\f8d9"; }
.fa-recycle:before {
content: "\f1b8"; }
.fa-red-river:before {
content: "\f3e3"; }
.fa-reddit:before {
content: "\f1a1"; }
.fa-reddit-alien:before {
content: "\f281"; }
.fa-reddit-square:before {
content: "\f1a2"; }
.fa-redhat:before {
content: "\f7bc"; }
.fa-redo:before {
content: "\f01e"; }
.fa-redo-alt:before {
content: "\f2f9"; }
.fa-registered:before {
content: "\f25d"; }
.fa-remove-format:before {
content: "\f87d"; }
.fa-renren:before {
content: "\f18b"; }
.fa-reply:before {
content: "\f3e5"; }
.fa-reply-all:before {
content: "\f122"; }
.fa-replyd:before {
content: "\f3e6"; }
.fa-republican:before {
content: "\f75e"; }
.fa-researchgate:before {
content: "\f4f8"; }
.fa-resolving:before {
content: "\f3e7"; }
.fa-restroom:before {
content: "\f7bd"; }
.fa-retweet:before {
content: "\f079"; }
.fa-rev:before {
content: "\f5b2"; }
.fa-ribbon:before {
content: "\f4d6"; }
.fa-ring:before {
content: "\f70b"; }
.fa-road:before {
content: "\f018"; }
.fa-robot:before {
content: "\f544"; }
.fa-rocket:before {
content: "\f135"; }
.fa-rocketchat:before {
content: "\f3e8"; }
.fa-rockrms:before {
content: "\f3e9"; }
.fa-route:before {
content: "\f4d7"; }
.fa-rss:before {
content: "\f09e"; }
.fa-rss-square:before {
content: "\f143"; }
.fa-ruble-sign:before {
content: "\f158"; }
.fa-ruler:before {
content: "\f545"; }
.fa-ruler-combined:before {
content: "\f546"; }
.fa-ruler-horizontal:before {
content: "\f547"; }
.fa-ruler-vertical:before {
content: "\f548"; }
.fa-running:before {
content: "\f70c"; }
.fa-rupee-sign:before {
content: "\f156"; }
.fa-sad-cry:before {
content: "\f5b3"; }
.fa-sad-tear:before {
content: "\f5b4"; }
.fa-safari:before {
content: "\f267"; }
.fa-salesforce:before {
content: "\f83b"; }
.fa-sass:before {
content: "\f41e"; }
.fa-satellite:before {
content: "\f7bf"; }
.fa-satellite-dish:before {
content: "\f7c0"; }
.fa-save:before {
content: "\f0c7"; }
.fa-schlix:before {
content: "\f3ea"; }
.fa-school:before {
content: "\f549"; }
.fa-screwdriver:before {
content: "\f54a"; }
.fa-scribd:before {
content: "\f28a"; }
.fa-scroll:before {
content: "\f70e"; }
.fa-sd-card:before {
content: "\f7c2"; }
.fa-search:before {
content: "\f002"; }
.fa-search-dollar:before {
content: "\f688"; }
.fa-search-location:before {
content: "\f689"; }
.fa-search-minus:before {
content: "\f010"; }
.fa-search-plus:before {
content: "\f00e"; }
.fa-searchengin:before {
content: "\f3eb"; }
.fa-seedling:before {
content: "\f4d8"; }
.fa-sellcast:before {
content: "\f2da"; }
.fa-sellsy:before {
content: "\f213"; }
.fa-server:before {
content: "\f233"; }
.fa-servicestack:before {
content: "\f3ec"; }
.fa-shapes:before {
content: "\f61f"; }
.fa-share:before {
content: "\f064"; }
.fa-share-alt:before {
content: "\f1e0"; }
.fa-share-alt-square:before {
content: "\f1e1"; }
.fa-share-square:before {
content: "\f14d"; }
.fa-shekel-sign:before {
content: "\f20b"; }
.fa-shield-alt:before {
content: "\f3ed"; }
.fa-ship:before {
content: "\f21a"; }
.fa-shipping-fast:before {
content: "\f48b"; }
.fa-shirtsinbulk:before {
content: "\f214"; }
.fa-shoe-prints:before {
content: "\f54b"; }
.fa-shopping-bag:before {
content: "\f290"; }
.fa-shopping-basket:before {
content: "\f291"; }
.fa-shopping-cart:before {
content: "\f07a"; }
.fa-shopware:before {
content: "\f5b5"; }
.fa-shower:before {
content: "\f2cc"; }
.fa-shuttle-van:before {
content: "\f5b6"; }
.fa-sign:before {
content: "\f4d9"; }
.fa-sign-in-alt:before {
content: "\f2f6"; }
.fa-sign-language:before {
content: "\f2a7"; }
.fa-sign-out-alt:before {
content: "\f2f5"; }
.fa-signal:before {
content: "\f012"; }
.fa-signature:before {
content: "\f5b7"; }
.fa-sim-card:before {
content: "\f7c4"; }
.fa-simplybuilt:before {
content: "\f215"; }
.fa-sistrix:before {
content: "\f3ee"; }
.fa-sitemap:before {
content: "\f0e8"; }
.fa-sith:before {
content: "\f512"; }
.fa-skating:before {
content: "\f7c5"; }
.fa-sketch:before {
content: "\f7c6"; }
.fa-skiing:before {
content: "\f7c9"; }
.fa-skiing-nordic:before {
content: "\f7ca"; }
.fa-skull:before {
content: "\f54c"; }
.fa-skull-crossbones:before {
content: "\f714"; }
.fa-skyatlas:before {
content: "\f216"; }
.fa-skype:before {
content: "\f17e"; }
.fa-slack:before {
content: "\f198"; }
.fa-slack-hash:before {
content: "\f3ef"; }
.fa-slash:before {
content: "\f715"; }
.fa-sleigh:before {
content: "\f7cc"; }
.fa-sliders-h:before {
content: "\f1de"; }
.fa-slideshare:before {
content: "\f1e7"; }
.fa-smile:before {
content: "\f118"; }
.fa-smile-beam:before {
content: "\f5b8"; }
.fa-smile-wink:before {
content: "\f4da"; }
.fa-smog:before {
content: "\f75f"; }
.fa-smoking:before {
content: "\f48d"; }
.fa-smoking-ban:before {
content: "\f54d"; }
.fa-sms:before {
content: "\f7cd"; }
.fa-snapchat:before {
content: "\f2ab"; }
.fa-snapchat-ghost:before {
content: "\f2ac"; }
.fa-snapchat-square:before {
content: "\f2ad"; }
.fa-snowboarding:before {
content: "\f7ce"; }
.fa-snowflake:before {
content: "\f2dc"; }
.fa-snowman:before {
content: "\f7d0"; }
.fa-snowplow:before {
content: "\f7d2"; }
.fa-socks:before {
content: "\f696"; }
.fa-solar-panel:before {
content: "\f5ba"; }
.fa-sort:before {
content: "\f0dc"; }
.fa-sort-alpha-down:before {
content: "\f15d"; }
.fa-sort-alpha-down-alt:before {
content: "\f881"; }
.fa-sort-alpha-up:before {
content: "\f15e"; }
.fa-sort-alpha-up-alt:before {
content: "\f882"; }
.fa-sort-amount-down:before {
content: "\f160"; }
.fa-sort-amount-down-alt:before {
content: "\f884"; }
.fa-sort-amount-up:before {
content: "\f161"; }
.fa-sort-amount-up-alt:before {
content: "\f885"; }
.fa-sort-down:before {
content: "\f0dd"; }
.fa-sort-numeric-down:before {
content: "\f162"; }
.fa-sort-numeric-down-alt:before {
content: "\f886"; }
.fa-sort-numeric-up:before {
content: "\f163"; }
.fa-sort-numeric-up-alt:before {
content: "\f887"; }
.fa-sort-up:before {
content: "\f0de"; }
.fa-soundcloud:before {
content: "\f1be"; }
.fa-sourcetree:before {
content: "\f7d3"; }
.fa-spa:before {
content: "\f5bb"; }
.fa-space-shuttle:before {
content: "\f197"; }
.fa-speakap:before {
content: "\f3f3"; }
.fa-speaker-deck:before {
content: "\f83c"; }
.fa-spell-check:before {
content: "\f891"; }
.fa-spider:before {
content: "\f717"; }
.fa-spinner:before {
content: "\f110"; }
.fa-splotch:before {
content: "\f5bc"; }
.fa-spotify:before {
content: "\f1bc"; }
.fa-spray-can:before {
content: "\f5bd"; }
.fa-square:before {
content: "\f0c8"; }
.fa-square-full:before {
content: "\f45c"; }
.fa-square-root-alt:before {
content: "\f698"; }
.fa-squarespace:before {
content: "\f5be"; }
.fa-stack-exchange:before {
content: "\f18d"; }
.fa-stack-overflow:before {
content: "\f16c"; }
.fa-stackpath:before {
content: "\f842"; }
.fa-stamp:before {
content: "\f5bf"; }
.fa-star:before {
content: "\f005"; }
.fa-star-and-crescent:before {
content: "\f699"; }
.fa-star-half:before {
content: "\f089"; }
.fa-star-half-alt:before {
content: "\f5c0"; }
.fa-star-of-david:before {
content: "\f69a"; }
.fa-star-of-life:before {
content: "\f621"; }
.fa-staylinked:before {
content: "\f3f5"; }
.fa-steam:before {
content: "\f1b6"; }
.fa-steam-square:before {
content: "\f1b7"; }
.fa-steam-symbol:before {
content: "\f3f6"; }
.fa-step-backward:before {
content: "\f048"; }
.fa-step-forward:before {
content: "\f051"; }
.fa-stethoscope:before {
content: "\f0f1"; }
.fa-sticker-mule:before {
content: "\f3f7"; }
.fa-sticky-note:before {
content: "\f249"; }
.fa-stop:before {
content: "\f04d"; }
.fa-stop-circle:before {
content: "\f28d"; }
.fa-stopwatch:before {
content: "\f2f2"; }
.fa-store:before {
content: "\f54e"; }
.fa-store-alt:before {
content: "\f54f"; }
.fa-strava:before {
content: "\f428"; }
.fa-stream:before {
content: "\f550"; }
.fa-street-view:before {
content: "\f21d"; }
.fa-strikethrough:before {
content: "\f0cc"; }
.fa-stripe:before {
content: "\f429"; }
.fa-stripe-s:before {
content: "\f42a"; }
.fa-stroopwafel:before {
content: "\f551"; }
.fa-studiovinari:before {
content: "\f3f8"; }
.fa-stumbleupon:before {
content: "\f1a4"; }
.fa-stumbleupon-circle:before {
content: "\f1a3"; }
.fa-subscript:before {
content: "\f12c"; }
.fa-subway:before {
content: "\f239"; }
.fa-suitcase:before {
content: "\f0f2"; }
.fa-suitcase-rolling:before {
content: "\f5c1"; }
.fa-sun:before {
content: "\f185"; }
.fa-superpowers:before {
content: "\f2dd"; }
.fa-superscript:before {
content: "\f12b"; }
.fa-supple:before {
content: "\f3f9"; }
.fa-surprise:before {
content: "\f5c2"; }
.fa-suse:before {
content: "\f7d6"; }
.fa-swatchbook:before {
content: "\f5c3"; }
.fa-swift:before {
content: "\f8e1"; }
.fa-swimmer:before {
content: "\f5c4"; }
.fa-swimming-pool:before {
content: "\f5c5"; }
.fa-symfony:before {
content: "\f83d"; }
.fa-synagogue:before {
content: "\f69b"; }
.fa-sync:before {
content: "\f021"; }
.fa-sync-alt:before {
content: "\f2f1"; }
.fa-syringe:before {
content: "\f48e"; }
.fa-table:before {
content: "\f0ce"; }
.fa-table-tennis:before {
content: "\f45d"; }
.fa-tablet:before {
content: "\f10a"; }
.fa-tablet-alt:before {
content: "\f3fa"; }
.fa-tablets:before {
content: "\f490"; }
.fa-tachometer-alt:before {
content: "\f3fd"; }
.fa-tag:before {
content: "\f02b"; }
.fa-tags:before {
content: "\f02c"; }
.fa-tape:before {
content: "\f4db"; }
.fa-tasks:before {
content: "\f0ae"; }
.fa-taxi:before {
content: "\f1ba"; }
.fa-teamspeak:before {
content: "\f4f9"; }
.fa-teeth:before {
content: "\f62e"; }
.fa-teeth-open:before {
content: "\f62f"; }
.fa-telegram:before {
content: "\f2c6"; }
.fa-telegram-plane:before {
content: "\f3fe"; }
.fa-temperature-high:before {
content: "\f769"; }
.fa-temperature-low:before {
content: "\f76b"; }
.fa-tencent-weibo:before {
content: "\f1d5"; }
.fa-tenge:before {
content: "\f7d7"; }
.fa-terminal:before {
content: "\f120"; }
.fa-text-height:before {
content: "\f034"; }
.fa-text-width:before {
content: "\f035"; }
.fa-th:before {
content: "\f00a"; }
.fa-th-large:before {
content: "\f009"; }
.fa-th-list:before {
content: "\f00b"; }
.fa-the-red-yeti:before {
content: "\f69d"; }
.fa-theater-masks:before {
content: "\f630"; }
.fa-themeco:before {
content: "\f5c6"; }
.fa-themeisle:before {
content: "\f2b2"; }
.fa-thermometer:before {
content: "\f491"; }
.fa-thermometer-empty:before {
content: "\f2cb"; }
.fa-thermometer-full:before {
content: "\f2c7"; }
.fa-thermometer-half:before {
content: "\f2c9"; }
.fa-thermometer-quarter:before {
content: "\f2ca"; }
.fa-thermometer-three-quarters:before {
content: "\f2c8"; }
.fa-think-peaks:before {
content: "\f731"; }
.fa-thumbs-down:before {
content: "\f165"; }
.fa-thumbs-up:before {
content: "\f164"; }
.fa-thumbtack:before {
content: "\f08d"; }
.fa-ticket-alt:before {
content: "\f3ff"; }
.fa-times:before {
content: "\f00d"; }
.fa-times-circle:before {
content: "\f057"; }
.fa-tint:before {
content: "\f043"; }
.fa-tint-slash:before {
content: "\f5c7"; }
.fa-tired:before {
content: "\f5c8"; }
.fa-toggle-off:before {
content: "\f204"; }
.fa-toggle-on:before {
content: "\f205"; }
.fa-toilet:before {
content: "\f7d8"; }
.fa-toilet-paper:before {
content: "\f71e"; }
.fa-toolbox:before {
content: "\f552"; }
.fa-tools:before {
content: "\f7d9"; }
.fa-tooth:before {
content: "\f5c9"; }
.fa-torah:before {
content: "\f6a0"; }
.fa-torii-gate:before {
content: "\f6a1"; }
.fa-tractor:before {
content: "\f722"; }
.fa-trade-federation:before {
content: "\f513"; }
.fa-trademark:before {
content: "\f25c"; }
.fa-traffic-light:before {
content: "\f637"; }
.fa-trailer:before {
content: "\f941"; }
.fa-train:before {
content: "\f238"; }
.fa-tram:before {
content: "\f7da"; }
.fa-transgender:before {
content: "\f224"; }
.fa-transgender-alt:before {
content: "\f225"; }
.fa-trash:before {
content: "\f1f8"; }
.fa-trash-alt:before {
content: "\f2ed"; }
.fa-trash-restore:before {
content: "\f829"; }
.fa-trash-restore-alt:before {
content: "\f82a"; }
.fa-tree:before {
content: "\f1bb"; }
.fa-trello:before {
content: "\f181"; }
.fa-tripadvisor:before {
content: "\f262"; }
.fa-trophy:before {
content: "\f091"; }
.fa-truck:before {
content: "\f0d1"; }
.fa-truck-loading:before {
content: "\f4de"; }
.fa-truck-monster:before {
content: "\f63b"; }
.fa-truck-moving:before {
content: "\f4df"; }
.fa-truck-pickup:before {
content: "\f63c"; }
.fa-tshirt:before {
content: "\f553"; }
.fa-tty:before {
content: "\f1e4"; }
.fa-tumblr:before {
content: "\f173"; }
.fa-tumblr-square:before {
content: "\f174"; }
.fa-tv:before {
content: "\f26c"; }
.fa-twitch:before {
content: "\f1e8"; }
.fa-twitter:before {
content: "\f099"; }
.fa-twitter-square:before {
content: "\f081"; }
.fa-typo3:before {
content: "\f42b"; }
.fa-uber:before {
content: "\f402"; }
.fa-ubuntu:before {
content: "\f7df"; }
.fa-uikit:before {
content: "\f403"; }
.fa-umbraco:before {
content: "\f8e8"; }
.fa-umbrella:before {
content: "\f0e9"; }
.fa-umbrella-beach:before {
content: "\f5ca"; }
.fa-underline:before {
content: "\f0cd"; }
.fa-undo:before {
content: "\f0e2"; }
.fa-undo-alt:before {
content: "\f2ea"; }
.fa-uniregistry:before {
content: "\f404"; }
.fa-unity:before {
content: "\f949"; }
.fa-universal-access:before {
content: "\f29a"; }
.fa-university:before {
content: "\f19c"; }
.fa-unlink:before {
content: "\f127"; }
.fa-unlock:before {
content: "\f09c"; }
.fa-unlock-alt:before {
content: "\f13e"; }
.fa-untappd:before {
content: "\f405"; }
.fa-upload:before {
content: "\f093"; }
.fa-ups:before {
content: "\f7e0"; }
.fa-usb:before {
content: "\f287"; }
.fa-user:before {
content: "\f007"; }
.fa-user-alt:before {
content: "\f406"; }
.fa-user-alt-slash:before {
content: "\f4fa"; }
.fa-user-astronaut:before {
content: "\f4fb"; }
.fa-user-check:before {
content: "\f4fc"; }
.fa-user-circle:before {
content: "\f2bd"; }
.fa-user-clock:before {
content: "\f4fd"; }
.fa-user-cog:before {
content: "\f4fe"; }
.fa-user-edit:before {
content: "\f4ff"; }
.fa-user-friends:before {
content: "\f500"; }
.fa-user-graduate:before {
content: "\f501"; }
.fa-user-injured:before {
content: "\f728"; }
.fa-user-lock:before {
content: "\f502"; }
.fa-user-md:before {
content: "\f0f0"; }
.fa-user-minus:before {
content: "\f503"; }
.fa-user-ninja:before {
content: "\f504"; }
.fa-user-nurse:before {
content: "\f82f"; }
.fa-user-plus:before {
content: "\f234"; }
.fa-user-secret:before {
content: "\f21b"; }
.fa-user-shield:before {
content: "\f505"; }
.fa-user-slash:before {
content: "\f506"; }
.fa-user-tag:before {
content: "\f507"; }
.fa-user-tie:before {
content: "\f508"; }
.fa-user-times:before {
content: "\f235"; }
.fa-users:before {
content: "\f0c0"; }
.fa-users-cog:before {
content: "\f509"; }
.fa-usps:before {
content: "\f7e1"; }
.fa-ussunnah:before {
content: "\f407"; }
.fa-utensil-spoon:before {
content: "\f2e5"; }
.fa-utensils:before {
content: "\f2e7"; }
.fa-vaadin:before {
content: "\f408"; }
.fa-vector-square:before {
content: "\f5cb"; }
.fa-venus:before {
content: "\f221"; }
.fa-venus-double:before {
content: "\f226"; }
.fa-venus-mars:before {
content: "\f228"; }
.fa-viacoin:before {
content: "\f237"; }
.fa-viadeo:before {
content: "\f2a9"; }
.fa-viadeo-square:before {
content: "\f2aa"; }
.fa-vial:before {
content: "\f492"; }
.fa-vials:before {
content: "\f493"; }
.fa-viber:before {
content: "\f409"; }
.fa-video:before {
content: "\f03d"; }
.fa-video-slash:before {
content: "\f4e2"; }
.fa-vihara:before {
content: "\f6a7"; }
.fa-vimeo:before {
content: "\f40a"; }
.fa-vimeo-square:before {
content: "\f194"; }
.fa-vimeo-v:before {
content: "\f27d"; }
.fa-vine:before {
content: "\f1ca"; }
.fa-vk:before {
content: "\f189"; }
.fa-vnv:before {
content: "\f40b"; }
.fa-voicemail:before {
content: "\f897"; }
.fa-volleyball-ball:before {
content: "\f45f"; }
.fa-volume-down:before {
content: "\f027"; }
.fa-volume-mute:before {
content: "\f6a9"; }
.fa-volume-off:before {
content: "\f026"; }
.fa-volume-up:before {
content: "\f028"; }
.fa-vote-yea:before {
content: "\f772"; }
.fa-vr-cardboard:before {
content: "\f729"; }
.fa-vuejs:before {
content: "\f41f"; }
.fa-walking:before {
content: "\f554"; }
.fa-wallet:before {
content: "\f555"; }
.fa-warehouse:before {
content: "\f494"; }
.fa-water:before {
content: "\f773"; }
.fa-wave-square:before {
content: "\f83e"; }
.fa-waze:before {
content: "\f83f"; }
.fa-weebly:before {
content: "\f5cc"; }
.fa-weibo:before {
content: "\f18a"; }
.fa-weight:before {
content: "\f496"; }
.fa-weight-hanging:before {
content: "\f5cd"; }
.fa-weixin:before {
content: "\f1d7"; }
.fa-whatsapp:before {
content: "\f232"; }
.fa-whatsapp-square:before {
content: "\f40c"; }
.fa-wheelchair:before {
content: "\f193"; }
.fa-whmcs:before {
content: "\f40d"; }
.fa-wifi:before {
content: "\f1eb"; }
.fa-wikipedia-w:before {
content: "\f266"; }
.fa-wind:before {
content: "\f72e"; }
.fa-window-close:before {
content: "\f410"; }
.fa-window-maximize:before {
content: "\f2d0"; }
.fa-window-minimize:before {
content: "\f2d1"; }
.fa-window-restore:before {
content: "\f2d2"; }
.fa-windows:before {
content: "\f17a"; }
.fa-wine-bottle:before {
content: "\f72f"; }
.fa-wine-glass:before {
content: "\f4e3"; }
.fa-wine-glass-alt:before {
content: "\f5ce"; }
.fa-wix:before {
content: "\f5cf"; }
.fa-wizards-of-the-coast:before {
content: "\f730"; }
.fa-wolf-pack-battalion:before {
content: "\f514"; }
.fa-won-sign:before {
content: "\f159"; }
.fa-wordpress:before {
content: "\f19a"; }
.fa-wordpress-simple:before {
content: "\f411"; }
.fa-wpbeginner:before {
content: "\f297"; }
.fa-wpexplorer:before {
content: "\f2de"; }
.fa-wpforms:before {
content: "\f298"; }
.fa-wpressr:before {
content: "\f3e4"; }
.fa-wrench:before {
content: "\f0ad"; }
.fa-x-ray:before {
content: "\f497"; }
.fa-xbox:before {
content: "\f412"; }
.fa-xing:before {
content: "\f168"; }
.fa-xing-square:before {
content: "\f169"; }
.fa-y-combinator:before {
content: "\f23b"; }
.fa-yahoo:before {
content: "\f19e"; }
.fa-yammer:before {
content: "\f840"; }
.fa-yandex:before {
content: "\f413"; }
.fa-yandex-international:before {
content: "\f414"; }
.fa-yarn:before {
content: "\f7e3"; }
.fa-yelp:before {
content: "\f1e9"; }
.fa-yen-sign:before {
content: "\f157"; }
.fa-yin-yang:before {
content: "\f6ad"; }
.fa-yoast:before {
content: "\f2b1"; }
.fa-youtube:before {
content: "\f167"; }
.fa-youtube-square:before {
content: "\f431"; }
.fa-zhihu:before {
content: "\f63f"; }
.sr-only {
border: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px; }
.sr-only-focusable:active, .sr-only-focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto; }
@font-face {
font-family: 'Font Awesome 5 Brands';
font-style: normal;
font-weight: normal;
font-display: auto;
src: url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-brands-400.eot);
src: url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-brands-400.woff) format("woff"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-brands-400.ttf) format("truetype"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-brands-400.svg#fontawesome) format("svg"); }
.fab {
font-family: 'Font Awesome 5 Brands'; }
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 400;
font-display: auto;
src: url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-regular-400.eot);
src: url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-regular-400.woff2) format("woff2"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-regular-400.woff) format("woff"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-regular-400.ttf) format("truetype"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-regular-400.svg#fontawesome) format("svg"); }
.far {
font-family: 'Font Awesome 5 Free';
font-weight: 400; }
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 900;
font-display: auto;
src: url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-solid-900.eot);
src: url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-solid-900.woff) format("woff"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"), url(//fpfpuertorico.com/wp-content/plugins/mega-addons-for-visual-composer/css/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg"); }
.fa,
.fas {
font-family: 'Font Awesome 5 Free';
font-weight: 900; }hr { display: block; height: 1px; border: 0; border-top: 1px solid #cad2d7; padding: 0; margin: 3em 0;  }
hr.dash { display: block; height: 1px; border: 0; border-top: 1px dashed #cad2d7; margin: 2em 0; padding: 0; }
hr.dots { display: block; height: 1px; border: 0; border-top: 1px dotted #cad2d7; margin: 2em 0; padding: 0; } a.btn{
border: none;
font-weight: normal;
padding: .6em 1.2em;
white-space: normal;
display: inline-block;
-webkit-transition: all 250ms ease-in-out;
-moz-transition: all 250ms ease-in-out;
-ms-transition: all 250ms ease-in-out;
-o-transition: all 250ms ease-in-out;
transition: all 250ms ease-in-out;
margin-bottom: .5em;
margin-top: .5em;
background-color: #fd542d;
text-align: center; 
}
a.btn:hover{
background-color: #3c464c; 
}
a.small-btn{
font-size: 14px;
padding: .4em .9em;
}
a.xsmall-btn{
font-size: 12px;
padding: .2em .7em;
} .lead, blockquote{ } .highlight{ } .message{
border-width: 1px;
border-style: solid;
display: block;
padding: .5em 1em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-border-radius: 3px;
border-radius: 3px;
margin-bottom: 1em;
}
.message.success{
border-color: #a2e29d;
background: #e2f5e4;
color: #333;
}
.message.info{
border-color: #7bb8e2;
background: #d2e4f1;
color: #333;
}
.message.error{
border-color: #fc604a;
background: #ffd4ce;
color: #333;
}
.message.notice{
border-color: #fcc84a;
background: #fffcce;
color: #333;
} ul.tab-nav {
position: relative;
width:100%;
margin: 0 auto!important;
top: 1px;
}
ul.tab-nav li {
float:left;
position:relative;
display:block;
text-align:center;
margin-right: 1px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-style: solid;
border-width: 1px;
border-bottom: none;
padding: .5em 1em!important;
text-transform: none;
} 
ul.tab-nav li:before{
display: none;
}
ul.tab-nav li:hover {
cursor:pointer;
}
ul.tab-nav li.active {
z-index:50;
border: none;
border-style: solid;
border-width: 1px;
border-bottom: none;
}
.tab-content-block {
clear:both;
position:relative;
width: 100%;
border-style: solid;
border-width: 1px;
}
.tab_content {
padding: 0px .5em 0px .5em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
h3.v_nav {display: none;}
h3.v_nav{
background: #ededed;
text-transform: none;
font-size: 16px;
} .toggle-btn { 
text-decoration:none; 
display:block;
}
.toggle-content{ 
display:none;
}
.toggle-content.active{
display: block;
}
ul.toggle li:first-child, ul.accordion li:first-child, ul.sc_accordion li:first-child{
border-top-style: solid;
border-top-width: 1px;
}
ul.toggle li {
position:relative;
overflow:hidden;
border-bottom-style: solid;
border-bottom-width: 1px;
padding-top: .25em;
padding-bottom: .25em;
}
ul.toggle li a{
padding-top: .45em;
padding-right: 0;
padding-bottom: .45em;
}
ul.toggle li:before{
top: 13px;
}
ul.toggle{
margin-bottom: 1.5em;
} .sc_accordion-btn { 
text-decoration:none; 
display:block;
}
.sc_accordion-content{ 
display:none;
}
.sc_accordion-content.active{
display: block;
}
ul.sc_accordion li {
position:relative;
overflow:hidden;
border-bottom-style: solid;
border-bottom-width: 1px;
padding-top: .25em!important;
padding-bottom: .25em!important;
}
ul.sc_accordion li a{
padding-top: .45em;
padding-right: 0;
padding-bottom: .45em;
}
ul.sc_accordion li:before{
top: 13px!important;
}
ul.sc_accordion{
margin-bottom: 1.5em;
} .mosaic-block {
position:relative;
overflow:hidden;
background:#ffffff url(https://fpfpuertorico.com/wp-content/plugins/sport-shortcodes-plugin/css/img/progress.gif) no-repeat center center;
margin: 1em 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.widget .mosaic-block {
margin-top: .25em;
margin-bottom: .25em;
}
.mosaic-block img{
margin: 0;
border: none;
}
.mosaic-backdrop {
display:none;
top:0;
height:100%;
width:100%;
background:#fff;
}
.mosaic-overlay {
display:none;
z-index:5;
position:absolute;
width:100%;
height:100%;
background:#111;
}		
.fade .mosaic-overlay {
background:url(https://fpfpuertorico.com/wp-content/plugins/sport-shortcodes-plugin/css/img/hover-magnify.png) no-repeat center center;
background-color: rgba(0, 0, 0, .5);
opacity:0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
filter:alpha(opacity=00);
display:none;
}
.fade .mosaic-overlay.link{
background:url(//fpfpuertorico.com/wp-content/plugins/sport-shortcodes-plugin/css/img/hover-gotopost.png) no-repeat center center;
background-color: rgba(0, 0, 0, .5);
opacity:0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=00)";
filter:alpha(opacity=00);
display:none;
}
@media (min--moz-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(-webkit-min-device-pixel-ratio: 1.5),
(min-device-pixel-ratio: 1.5),
(min-resolution: 1.5dppx) { .fade .mosaic-overlay {
background:url(https://fpfpuertorico.com/wp-content/plugins/sport-shortcodes-plugin/css/img/hover-magnify@2x.png) no-repeat center center;
background-size: 18px 18px;
}
}.flex-container a:active,
.flexslider a:active, .flexslider-quote a:active,
.flex-container a:focus, .flexslider-quote a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;} .flexslider, .flexslider-quote {margin: 0; padding: 0;}
.flexslider-quote blockquote{
margin-top: 0;
}
.flexslider .slides > li, .flexslider-quote .slides > li {display: none; -webkit-backface-visibility: hidden; padding-left: 0;} .flexslider .slides img {width: 100%; display: block; margin-top: 0; }
.flexslider_single .slides img {max-width: 100%; display: block; margin-top: 0; width: auto; }
.flex-pauseplay span {text-transform: capitalize;} .slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;}  .no-js .slides > li:first-child {display: block;} .flexslider, .flexslider-quote {margin: 0 0 20px;  position: relative;  zoom: 1;}
.flexslider-quote {margin: 0 0 20px;  position: relative;  zoom: 1;}
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides {zoom: 1;}
.flexslider-quote, .sc_flexslider-quote{
text-align: center;
}
.flexslider .slides li{
padding-top: 0;
}
.flexslider li:before, .flexslider-quote li:before{
display: none;
}
.flexslider ul, .flexslider ol, .flexslider-quote ul, .flexslider-quote ol{
margin-left: 0;
}
.flexslider-quote cite{
margin-bottom: 2em;
}
.sc_flexslider-quote cite{
}
.carousel li {margin-right: 5px} .flex-direction-nav {*height: 0; height: 0;}
ul.flex-direction-nav li{
position: static;
}
.flexslider-quote .flex-direction-nav, .sc_flexslider-quote .flex-direction-nav{
display: none!important;
}
.sc_flexslider-quote .flex-control-nav{
bottom: -20px;
}
.flex-direction-nav a { 
margin: -20px 0 0; 
display: block;
position: absolute; 
top: 50%; 
z-index: 10; 
cursor: pointer;  
opacity: .6; 
-webkit-transition: all .3s ease;
background-color: rgba(0, 0, 0, .2);
-webkit-border-radius: 100px;
border-radius: 100px;
color: #fff;
font: 24px 'bulletsregular';
padding: .2em .5em;
}
.flex-direction-nav .flex-next { 
right: 8px;
padding: 0.5em 0.5em 0.25em 0.8em;
}
.flex-direction-nav .flex-prev {
left: 8px;
padding: 0.5em 0.6em 0.25em 0.7em; 
}
.flexslider:hover .flex-next {right: 8px;}
.flexslider:hover .flex-prev { left: 8px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}
.flex-direction-nav .flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;} .flex-control-nav {width: 100%; position: absolute; bottom: 0px; text-align: center;}
.flexslider-quote .flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.flex-control-nav li {margin: 0 2px; display: inline-block; zoom: 1; *display: inline;}
.flex-control-paging li a {width: 14px; height: 14px; display: block; cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; }
.flex-control-paging li a:hover {  }
.flex-control-paging li a.flex-active { cursor: default; }
.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}
@media screen and (max-width: 860px) {
.flex-direction-nav .flex-prev {opacity: 1; left: 8px;}
.flex-direction-nav .flex-next {opacity: 1; right: 8px;  }
}@font-face{font-family:dashicons;src:url(//fpfpuertorico.com/wp-includes/fonts/dashicons.eot?99ac726223c749443b642ce33df8b800);src:url(//fpfpuertorico.com/wp-includes/fonts/dashicons.eot?99ac726223c749443b642ce33df8b800#iefix) format("embedded-opentype"),url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAHvwAAsAAAAA3EgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAAQAAAAFZAuk8lY21hcAAAAXwAAAk/AAAU9l+BPsxnbHlmAAAKvAAAYwIAAKlAcWTMRWhlYWQAAG3AAAAALwAAADYXkmaRaGhlYQAAbfAAAAAfAAAAJAQ3A0hobXR4AABuEAAAACUAAAVQpgT/9mxvY2EAAG44AAACqgAAAqps5EEYbWF4cAAAcOQAAAAfAAAAIAJvAKBuYW1lAABxBAAAATAAAAIiwytf8nBvc3QAAHI0AAAJvAAAEhojMlz2eJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/Mc4gYGVgYOBhzGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHD4yfHVnAnH1mBgZGIE0CDMAAI/zCGl4nN3Y93/eVRnG8c/9JE2bstLdQIF0N8x0t8w0pSMt0BZKS5ml7F32lrL3hlKmCxEQtzjAhQMRRcEJijhQQWV4vgNBGV4nl3+B/mbTd8+reeVJvuc859znvgL0A5pkO2nW3xcJ8qee02ej7/NNDOz7fHPTw/r/LnTo60ale4ooWov2orOYXXQXPWVr2V52lrPL3qq3WlmtqlZXx1bnVFdVd9TNdWvdXnfWk+tZ9dx6wfvvQ6KgaCraio6iq+/VUbaVHWVX2V0trJb2vXpNtbZaV91YU7fUbXVH3VVPrbvrefnV//WfYJc4M86OS2N9PBCP9n08FS/E6w0agxtDG2P6ProaPY3ljaMaJzVOb1ze2NC4s3Ff46G+VzfRQn8GsBEbM4RN2YQtGMVlMY2v8COGai0Hxm6MjEWxOBZGb+zJArbidjajjUGxJHbgUzwYG/EJPsNDfJLFsYzpXM6Pmcd8Ps1BvB8LGEE7W7KSzdmGA9ifgzmau7ibcUxkB7bnHhZxb+xDgw/yYb7GU/yQp2NgDI9xMZ61sWVsFZtHkxb5+ZgQE2NSdMYmDOM5HmZrfs6H+Cbf4bt8m28xhb2YyjQWciDHxk7RGg2W8DFWxbyYE20cx/GcwImcxKmxWYyIGXr3l7MPp/MAn+PzfIFH+Co/4296Q2v+wdvRHP1iQIyKMTE2ZsZesW8QSzmHi7mFK7iWsziTs7mIG/gAl3Irl3Az13A117GeC7iSdVzIjdzGMXycP/ITfskv+B5PRk/MjT1iCPuyLAbF4Jgds2Jj7uOj7MmX+DI78hfejBa6+Kxmekp0s5TBXM/kiNg29uaNmM5p0c6fmMmMGMbLMZS/8w2+zh78lPFMYFvt9Ul0Moax/IA/s5P2+hy6mcXO7EoPu7F7bM1feSR25wzuZAN3xBasiJGxDSfH9pzLeVzF7NgxtmM0+/FK7MLrvBNTeZSXYlP+wO/5J//SV/2O3/Iiv+EFfs2veDf68xHOj53p5Yt8n72ZG6MZzhoO5wgO4VCO5CgOY3VM4S1epYxdYzKP8QSPx3xu4v7o4Fmdydbo4j1eo+IZbdaW/+Gc/L/82Tj/0zbS/4kVue5YrmzpP3L1Sw3T+SY1mU46qdl05kn9TKef1GL5J6T+popAGmCqDaRWU5UgDTTVC9JGpspB2ti4TOMmpmpC2tRUV0ibmSoMqc1Ua0iDLFfwNNhypU5DTJWINNTQGqRhFos0DrdYrHGExUKNIy16Nbabqhhpc1M9I21hqmykUaYaR9rSyM+7lZGfd2sjP2+HxRKNo01VkTTGVB9JY40HNY6zyGs23lQ9SRNMdZQ00VRRSZNMtZXUaeQ5bmOqt6RtTZWXtJ2pBpO2N1Vj0g6mukza0VShSV2mWk2abKrapClGvtumWuS1mmbkNZ5u5HWdYeQ1m2mq+KRZRl7v2UZ+9p1M9wFpZ9PNQNrFdEeQdjXdFqTdTPcGaXfTDULqNvK6zjHy+vUYed5zjbwee5juHNI8I++f+ca9GheYbiTSQiOfp17TLUVaZLqvSItNNxdpT9MdRtrLdJuR9jae1rjEIu/tpRZ5/y6zyHPZxyLvkX2NtRqXW+R13s8i780VFnmdV1rkc7+/5SKRVhnPazzAIu+7Ay3yuh1kkffdwRZ53x1ikc/0oUY+f6tNNxTpMNOtTFpj5LNyuOmmJh1hurNJR5pub9JRpnucdLTpRicdY7rbSceabnnScUbep8cbeb1PMPKePdHIe/YkI7+fJxt53muN/L1Psch781SLXPNOs8h74HQjv4dnmLoL0plGXuOzLPL+Otsi781zLHINOdfI8zjPyPM438jzuMDI8/iAkedxoZGfcZ1FrlEXWeSzebFFPpeXGLlWXWrkfXSZkffa5Uae3xWmjoh0pak3Il1l6pJIV5v6JdI1ps6JdK2phyJdZ+qmSNeb+irSDaYOi3Sjqdci3WTqukg3G29rvMUi3123WuQ74jaLfEett8j1+3aLXIM3WOQafIdFrk93WuQ9c5dFPmd3W75G0z2mbi8/ah/1fRRh6gDV85t6QYpmU1dI0c/UH1K0mDpFiv6mnpFigKl7pGg19ZEUbaaOkmKQqbekGGzqMimGmPpNiqGmzpNimKkHpRhu6kYpRpj6UoqRpg6Vot3Uq1J0mLpWitGm/pVijKmTpRhr6mkpxpm6W4rxpj6XYoKp46WYaOp9KSaZumCKTlM/TNFl6owpJpt6ZIoppm6ZYqrxpMZpFqrvxXQL1fdihoXqezHTIq/TLFOnTTHbUJ0tui3yGvdYaH3LsNDXlQ0Lvb5sMnXplM2mfp2yn6lzp2wx9fCU/U3dPOUAU19P2Wrq8CnbTL0+5SDjTY2DLXe95RBTEqAcasoElMMs195yuKH6VY4wJQbKkabsQNlu5O/dYcoTlKMNrXs5xiKvwVgL9RblOFPuoBxvvKFxgimLUE40VCvLSRb5Z3aakgpllymzUE429J6VUyzynKYaL2ucZpHnPd2UcihnmPIO5UxT8qGcZcpAlLNNaYiy28jPPsfIz95j5DnOtfybg3IPI89jnpHnMd/I67TAyOu00JSzKHtNiYtqoSl7UfWaUhjVUlMeo1pmSmZU+5gyGtW+prRGtdyU26j2MyU4qhWmLEe10lBvVK0y5Tuq1aakR7XGcq2uDrfIX3+EKQdSHWlKhFRHmbIh1dGGamh1jCkvUh1r5GdZa6E9V51iSpNUpxq6d6vTTAmT6nRT1qQ6w5Qnqc405U+qswy9l9XZFjo71TmmdEq1zpRTqS4y8jpdbLyi8RKLvP6XmvIs1WXGOxovN2VcqitMaZfqSuMljVeZEjDVjaYsTHWTKRVT3WzKx1S3mJIy1a3WN8fbTOmZar0pR1PdbkrUVBtM2ZrqDlPKztdlH+Vt6jAlb+qG8a7GJlMap2425XLqFkN9Rt3flNWpB5hSO3WrKb9Tt5mSPPUgU6anHmzozNRDTDmfeqgp8VMPM2V/6uGG9lw9wtCeq0ca6i/rdkP9Zd1haC/Wow3txXqMoV6zHmtof9fjLFRH6vHGWxonGK9qnGiUGidZ6EzVnRaqR3WX8ZjGycYTGqcaj2ucZqFaUE839N7XM4z7Nc60yPOYZTyrsdvybyfrOUZe7x6L/PPnGu9pnGe8pnG+UWlcYDzzb8iLsxoAeJysvQmcJMdZJ5qRlZmR91F5VWXdZ/bd0511zEzP9PSMPKOrS5JHEpJGI0uyRbUk27KMMMuitVU25lgW+cAyuGt3f17A2Muaw6bHwMIzC5g15jFlMNcaA7vAmp41ZtnfW1h48PbVvC8is46eGZnj97qrIiMjj7i/+H9HfMWwDPyh/wddZTRmnWEaYbfj+cl/F4dYcErIc7BgIAHDv9ftdDtnEASbkL7ZRS98qimf8DXL84pOsbr/qTWMc6Io59OWVFC0WiVfkDTFUbEr5kQX/8mnmgpniLqtmTzGQ7gb0rGH4Q5NKuTLdU0pSJZZUDHOY0yKFpfvV9CvMCpjQGyziBwdVddQaxvZbYyY7uVO5/Jzlzvdy898EP0KjXYuv/mxzvi3Pvt68ih9fohGTJph7GjTKyBHWEa4Xas2T6NWZ3DoFYteNIjcYhGNiu4VtzgY0MMk7y+iX2fKTASxTrsTNsMmruIN2hg4aZJtRFql20GdbvLv+cW4vdBvI4RYLKqYU+or9XVPVZRUyg/8SMnUcjl//ICnYlHgJT29YkoCVvOrC+iHUqwoSIKEkODnc7WMlgm8IMOynpI51lipj39AdxQ/LemylrKkak3J8VxS1hHUM2SOQT/WBOzjUMBurd0McdhthrV21OmGXb/TbUeu53d97PkR3uy0mlXB8dDoONYXOgte0At8OOq42xWMhU7o5XuBB0ddOP6l8urqzurqKOeH8Q30CT/YTZ44flzQQ5LwArltZ5UUKUXL9Qvo5xmJ0UkfICgWlMdvR9h3K22/XXPRMMx99KO5X+i3hsPx1VEfNZPzaGF/f/+lwWD6nq+i/8x4TJU5DnFoYQPpCAYs1MBATRiW28hLkVMyWh2vg7sevWWNpdd8GMzeJvqsaxhu6J7IP2uW18xnsU5OTvz2PxctX/xO0fTVZ0VI8o6fWIb7FtzjhWetyir693AP3KjjZ821svlsnpwYxvhL/1z0TYRpGNFUT9eXZ7dWSLE5WvZr6BpjM3lmielA/7RbzWUU1nCtKsCI9KLKZifc9Byh2mx1/MiKI9EmNA+G7pqcop6hLFf71WXZMGTEKMYw12i0m83RgISBgHv9KI4dXpGNKDJkOBifbLbJXeH4L+nd7LvelXuExqBYUjzJ0G8yPKPADHOZHIz2BrPIQPch2lMGCtswWqCjfHJeilMbPgwtGpArFdKNb37zm+3BINj7+n5/t4XpyX+n4XjQv4r6/auDFmq10H1PPGE///zWQw/bly61lpf3Hn88/fzzaRpGj1y69Ah8dyL4S8b076P/RtuN9jiGDjfYGoznDkw7bzZ8fyJrWdnCPfVjvWYv+6tprZA5dy7UHSfvOOjnsufOZgua+aD4ePQfG68twK3fQi7knckcJ/QhRdqia1UsPnIrVjREzPhwdJ2JBqg3Pggi1EvG4GfRLzMYWqkGcWiITpHF0Dow14GqkG46g9qtbscnFwyE7rv/2P1CxuF+079W0kqFzFNlpewpZSx9FpJtHt+P3gd3YN7xW4VrriaJZcWDW96QLVQvQbKdEe5PaNgfoD9mYDghyKxJhzWZSJTINGOiHHY9Os6Rsv6D6+6G5Vi8trZ9B3ayaU/W5LSB79hedzbSdppHB2s/sK5xEN1wyS1GWtYkP51x8e3bSfp0zo3QFRgXy8ztMGqtVrNWqQquFY/YRkSG7DKi4/M0qpFBugXV72x6rj9/VkDzd7bRyFDGB3QM9xTjOpNVDEPJirI4jQwCcjXACg5IEon0UYukja9C+F2GazQFDFWHyMsk8shNKZN5N2IRrB0R8wBzGVaAqo6cItrcRq015OsIr6Gw021WsQALXgER6t6EZux2Qph7ReRvdrpeClK7HZg/zRDuhgMl8ckS6cGITAG9F3Cne7j97Pb2s28nwTt535RWSrwh2YLEsaInNyqcqAeSXpDa60GR5QwO/x92iuU5JImKUMAqdLaPc4WgYpXltMln3DvfbZQk00McyyRvheCjVh6XI81SBFGxJA1xWgbZnosUxcgG9omKKWrjrzielrUlQ8EplktxUr6TFnguldILS0iqr4Tn0JsESTM4RWFg1s/aaAFWjlPMG29oJRtinS40BtS0RhpICGmjkVUvJO2jo2YXmsrzyaXmOnLXYCKQxvPIdCUDFK7FLUf+BZc0IcS2WeiAuTZTeUlkeV3lUq7Ga6JTNNQ0JxliKFsPWTlWQk7uQmpTcQRsBxBWNZ9nWVZjOY7n0rwoaBiX/BrmIDGFrbKSYhGbUrx7X3/M9eebcPxLWEKiyIoFQ0urCPE4lTJVhDmfFwsZS87ZXAlaS4BLLMe77xQMSYYsDF7UeFbiBMnzcx5b9FRXF6DAdU8xpAa09tqWZTptaE5rrk3TTIYpAK1YYNZgDJ5gdpjzzC5zkXmYeYx5A/PMDW3NR55fa3bbMLIAXvm1dujWyFgjIYZvJPiRW2v6pAlDWELJ9D+N4ABXyHUYpPCGELoJQpKSglO4kzyJ55p6/Ndnkdg1vti0RV6V2Mdqtwui3XyMlZpnOaMrBo9dlB4l1565wEP6ZQTpKfO4yCLpuJFqrqn+sfL/8tXVcnlV9TdKf+lrq+Vj8038f9eqlR+7z2hoeq1aO/8N9xla4w3na9Xz9Ur1wvnqbffqDc249x5I1b8hSa7Wq9VKfa9e8JbPFurL4/9aK3or54q1JW9Kh2h7nmTuuGl84s5kbIUwKEndaSQeeHS0wsgssnS+kqGKJ3fPtUjwNGAuXUqrvMilMvbpNdYo2Xb/LCBRjktrupgXZFHXontdG/NVuRMoJtAkTeXE1JGx9fndlapnq1jGHAFfkrxoq2pu+96Uk81nChYrcDbisF7K6apsqvfV1pqXli1d0hVBlmd49zfQFxgHxg1DAE6yqjRhvmAfIA3vJase+nj2Qvm77E7T/pimbZ4t3XXHXbI+/jD2DMMDBJTV9Y/Zzbb9L8rnN3XlrjvvKu18GhsE/Uzz+RlY9xxY6xlUJQ2yDjO5s+l7CdjHXUDbBTqDq+RiGzB3hBjH0CSBSwmW07MtPgUTQjWcC4VOOVerHrv/WLWaK7ZLyNYVW7e0Zr5czjc1S7cV/dx6tZPfwRIviryEdwrtygSffwHquwXHJmE0CKILm8YU2QHJIFgWlxCBr9toHU0uzI4Avj+j+2njkW2T41Kav6Zxosw5mllWXjl5SbtvLS3sfFAVRN5NYSWluT6HZdYIntR5AX1GEwT99QHQwxQGTKqlZIFzBcxrr2wL6bX7tEsnX1GrmuZwsshpGz45GKcfUhyfFF2gnYbRb1F0WwT0vcXcyzDtShv4AjZcY3G74ls1i9cJAWwDCoXx522jNehZD+gfjM5tBHO9SwhqkRDOW6QhZvtU67zjpHffsHmdObyKHta6gSqaq25g38/JmIUVBF30o4zAszLPLVRsJSVLbErncmdLgsBKAt9ZDdI0zY6w6dkPvKm1cVtGw8F4iPq/EdiaID1hibLW5VNIkgUkKk8akoBkmUdQXM3iWUHm/K6t80iCvJBQtHI8yytceYoTrgBOSAEygkXFrrQrqF1xMRx7qA95RACkaGQAseGwH83G+uQ5QBcVyydPHoyHMMyuMwckgFv5G95vAB6kediAOhsRBPDlJ3kdHqJsD/7G1+Yy3IuG0X70NcpaQNOyQqZHizp5Zjh5pgsd2k3yPdwfAZOyD+hkfPUK5DKXx/T+Btwfwt0ufNHBfmv6wLWoFTGvXj9aL8imFlGIHZevB+HhoNdLyrgfDYd/R91c0qoDWq8oadoj/RDjpF9DP8eYwFvdxzwKJRZqMOXJKh7BEg/TrNuMuX/AcQnPGwJMAoq6eQYR8ttuwVivEaLhRICaYKDDNexWAQH4ruN1XU9nARG2W+jDd97/lsspjl16+vjqgw0eL6dDI4VYw0hjWQC8YhhfcRd0Q4ZJVeU4nWP5XC3dyJR4vAJPuYEmppaW/Ry7cInlJEvWjG8tdRCXaoRBFgkpX+RUJMC6X5M5xGqNFrLSrsyyJU7Scj3ADRmF1dM1zPOsZrCaZfKmGGaUbO2fyWo2rVjmMsOIU16atKMJPFEWaHEFuCI6RslIwW6U8GptwLpd4K3dyZe0+WjcR3vjq6h1rUdY4ZNucbhH/0hahIZwuRf0epSfjqKimw32WnvBXjDpw2uzsYMIk1yxKg3CYR2OW1n6dDBEw1arB3MkCBIaegXKKxIZhwUcAhDKw1Y/OjiI+lCYUT84OAj6zFQecgXtkVFnEylAOBgM4EbUHwyyBwezewaoRWYo8DhosNdH0f7+7BrhCURaNpoVnuWBgiTb6b17cC9P3kNuTXJBcZ7Te3pQHpZKn1APhvPe1x/Np9uuhLRSEYribCaVO5oH4YF8PKRZJDlMrtP3A8CGyYr60/cnbdaoWbQa4bT004xuarMG5X6TCgxvarMeyecM8g/2+gfD4Q3pCEco2BtBHae079MwroDTtr2YlfO9WIBEVgmSoBOWhEJt36OAu0kQ9e9hFokqm0qrvl4IZN8vFng+W1jffMtl11akU43mDm4sSorI1xcUBf1ECnNKWjYV0ZSCjKDywtnOyehksZRqbyxF6/c73idMFKQ9RxcKlj2hR59Evw6UKAPlC2kJfbIA+6SJ12FMYJ+MfsLUhZMItJ/fjRp+F4e1b9D1Vmlrq9TS9ai8tVV+dOnUqQdObS3HEqRzlfbZ+s74z8qdnfoO+mfxfeT+cgT3/+KpB7fg5mwsRMqfUL/3xHee0D54ImmzX4dylZglIg9gdZagO8p9bLNrrE4Hmb/N4ma7u0EkFd0memzzJI4uv3mjvqktSQvFxgMXQn717gcu2Mdekteyl9+8LaJstvcC4tBPwtkbTuIgfbKeK22aNr0Nbm5m7v1gZvOk8EdY4V988WIHsTOaPQLqKQIuNQFHQf/CZOVxFEbJl5AKBOtYfzzid8SI38HwFccjSrtHe9ksjCHyd53IF2MsgT6PPg84YoFpM+cASbyRoKIEruKQoB0ikY3FskB6IblBZbFwreUTmEi6gkoHZidCtZtgSALunG6z1gFcAo8ChiQUXgBSHTkEVaInK2mP01Sd812loe1oWtrQ9ee0hvIRT+fG/zMSTE67y+QcQXiO1yX+OUFbmkQ5/RMQkYXnBD3FvVkWRbG44KQkvZ7VBEtkFcWtB/UsSnNekE2pluundX0HOADHAG7gLZr2MU7XT7R4XrvPFPQXBI17q6Bq3HMCWhLIgcYvvJVX9NRbgHgbb5btpbyIFUkLmpqAjaLipoNcY4Yr/jX0jUAkJg1YjmqwBLVblC1YQ1XBdQBmFaCVSIetIcS4xX7xxaUqAt4x7Zt8dZnNuyjyC0Cb3eJvbNW6MiuximXBlBK7jeN+KO/siM052jAkXB8iazX5EqFeBfKroUGvD6uOjvq6gvot+NOV0UjRp/Laa/Ac4Pxuxa3A6mi1OhHQeiLR6loE4xNJy2aHiqBg6pTJUTGMbWA94NOLVkuoVVodDwHVP4ICgqvHhzwVnKPp+2FCo8hK3r6FrBp5e1RBwyh+5+EhkbCgAGDX3tz7pu1I3nECxiJjAxyB8rnwOSr3EWoTAVByrIaThDYVAfkTMd0oWi/6+cAtFt0A8tA0CKJJJFgtR0PZIBwKOjyIiuue1ysuFUmSfJyjwp9WHHLHyWEvW149OKAMjZHMHbJmS4zP1OnseRuUmXR1t9PuNP1OE2oOk8GLNrudIxxkqhpLdoC9idUL3dm923AVGKFOd9PBG0QgC8QYLpK51N10McFDRC5C2CcBw6vpC18omTkO4ccE3TVyHBYs3TO01e7j3e7jz5Ggu3B7lrO4Uuvhpx9utR5eFXTHDDiZswyn+GjzfMbyMR8UzaKt8Szp6nwG81kvqBRE4XgtYxpcfmV1c/2e9fV70JNL3Ubt7Z4gCx/JlV1rJe2kTbSc5APB+IVCjnf5Ns0IgrfTu2yPrSOpnGM5JH9T2t/2bKyzqRTiX0wvV8sriqyXuML6Pa+7Z500a6KIgeGgAhJqAq06xewyj9+gjfHnmxQfvYKLMFbwNnCQTUzGARkPRP9A5RxRi1A3gw3pCghgdcLOI+bC286ff9t3k+DCuefPnn3+3SQ4t/XU1tZT30SCZ1y7FOpBZeVyaWVle2XlHs0xVMyzbNk1sqrU6XQaviXyLMpxItZVU9FYJnkhBFryQgiyyQshWFHxRjnwhIVcaSUgL91eGRiCqaU1Q+3kHXiZ224j18w5vl0PfJrfhHZfgbki0hm9GNNuuxVCq0B9u5MIbpOpUIgT5+I+UKcbphE8MFHFbVJYsA3tOtE2uXHznkZTdd1hVjZNx9gL6BzaiydGcuhvLPhlL/DK/sKG7S6JtqfaVaJFEpcWDkxHXZIqtmYcu/j6i8d0wy5Ljqc66CCTkwuuacjJ8b2PKIYpHw3M/Lp+xvR9c3eXhGf09eOer6WwxAkCJ+GUtvoWIWWxAD78Xn49l1vP93zFklhRSgkz3oOsoz5TY9aJlHkiR25S4gHw2sGU3vAVEtYqFHbPxxNqBDdCSHiMLn0DunTF9DxzkfXMwPTYRTgZ/+85IXKdKFAM5ToJtymVySe35uEE9aCxME8qxWPSdnFD9uLDruEZk4sQnfAMA6iHDr2/ypxmzjLnmTuZHh0DzXUK59xkJMyfpqgmKB4FUFs6JubPw66LzyDXQPER/6Eqaqqii6q/6g1VUVdUTVS9Vf8VQ45IdSLZGNKQnh9GwBomH/QmM5t2LctNZ82sbWePnI3/dkQeGZFXTGMfCSL6DzglaMF3uq78FNRznWpkiEIG10IhFov7BE/4AvbbaywlpmSF7dJlF2gw+u6qFBiR95rcbV7HCKSaZbP8Yg4bUbCqOCvbq7a8FrRNKb/IszZ6In1XzQvYwSCV82p3WxIyjcoZ05OffJ+49ZqtWg0C8QOvF7PmTsUwETO3Xo0YjeqLAOz4wK/FiNoOuyGGDyBXDGwPYo7dv1Qe991cUC81R48/rpwU/lCNxMcfln/gY2i0Uy6PD1HgZJy86Yy/4+7b5cpz2jdmxNvvVJ5+dkoT0RfRLzH3MA8xTzDPMS8y38F8ANAGUeKtI4d0sJEIvdsT+NUlgxNaCNqDDtFooh1JjvFAjm8g497zw8nS2Z3QTaLFJAMDhhGMEz8eLXESzJPO5Nyfi6Nf8FbP+KIqpSVbIpyApIr+mVXPdNI1lq8EelPiyJoMa00LviTKSaEWVDm2mguuSSYZ9A/FS/N5HtYm+Ka4gHuNxO3CJBd2BfzILtG5kKBEcQgJ/sbfWfW1Zt41RYUXVNF0cw3NX93xZU1eP6nq1ZMuLDuwxGvkWS0O4ZQ1BPdkVVdPrpvWU/F8i+LDBzgVgA+f2hGwCAhzCyuiqOAohkMJLTlEf0TXKTIHATtTxEygMqxDs5NOi5g1kI6aImPPwfz81IQGRYpSVt5PFHLvV9BptaS+T/VJ3HwjSXvjGlHlvZ8E4y8roqpIiiA5hlhFv6Mo71dLPrl2WonvgOD736iUfRWeou/wS+p70jnbteyMHeh+fiq/eRl9gXHpCsKQqUREr2GXcDmeTway3zQQgTCwWgKxCCn2wB7KfmN6uflAczn9gn6ieSbKamo6WN/4pgyAtoWglmnuOIG90/R8M0QXf6Pu2bZX/0Imh+6ub7iKId6lvmOFy6653x14q17AF1zgZyhdZpk5mZTP5IDzqgE/uAyzP2K6zBZzhmEIYvVr7Wjyxf+AOJGYUElWP4r2WsB8R6NXj/SJwAr+WKZHDtGA4OnWII7T8HCfxOZli7/KNJg1qm+Pp2IN+y4O292wGuumCBtAFk8CCrsA9SiAaaIDzcooQdpeNIMgveza2YyMJZF385X1zQvbJfOgHqqNVkMN790pe0Vd5FIrlV4+36uspDhDlUwtY+1g4BV0jNGLJ+85duy+4zP53K8yAZUUE9kKnqAeKMMWonpcWlLCS4fT4lw8HgTH12F9S/mF4nJYDJeLBT8lOO47F+FvUhbE9Or1nuo7DX+bZI7gK2z7DccX0ouL/+ekGNNyjKActzN3Q+uQpqkRAUsVC3F7dD1SlHYLmKcuEUEkIIOQNShTZ9KcIVGdxv8wZXwoNBqaWb2EspcvZ08WskG5ura4uFYtB+O/MhqczYsqLyqGnQHWTeMaJUfLcBxiBfNZU2ARx2U0Z29ra+tQF1KpzusuHw+8E3eIooAR9JUo3tE5rwoZK6jwgoB5nLJM1RRULKT0QFP8ghmGZsFXtEBPCXgleOWV6Ti4hgYwgksQq8zsLU4jAKExiCCWQJDkuUT2TMgf6kPI6+p4qOq6ivqqjgZFl16C4IAkDhRdVxiqtKH2A7GsZImi4/PMa5lLzOvi/CbacuC/mqmbpCYz8cnXuBTjQapXnyZ2iWxhcJ2hBSThoWbZvp3Wjhx6WhoIDJxNDukgnX7O9h04rUCib1vZ67Cqo9F8ZcffBhfgcxluBJj7UHw4uCExk7Gz/vdoaUe5RILjSfpDpEm0ZC3+EtCN0hF6cRsdc/cy98d8qXV0DXRrFBWRvqkK/lzcJis5kIstRMThkYtviE8oC3Dc437PL/l9+B7GK8NBfKBkBpjwPSApyWFICQsajgdokCVwLkvDHbKE7ZD1aBobfwuRm1+jJCdLiU1Aw2iCBW6u6z+sfu2K241VCvQb1wMwaB/A5y3qMWwNSbn30d7fUe5XDg+zV+gfMzcfRolNDWBnGJ90EsTygW6UmhrVDO5WDVMZP6uYhnp3rx9RId4pmOHq+DeUdFpBa6oZjQ9OPXgKPvP2IsSWhtjbkXpYNVxzuxPbpmEPDa5Fg2ul1dUzq6sIyDaMvqB1OEpMxhKbDfRtgKhX6FxiGk6i8OzW1lhCtWsTdEwbNIrDuB0rVMHmT5lMtAMtCA14eRGv7VTD4zhtFx1NbGzWL9Y3G6LmFMb/QzpXcyv4E9B+Jd//KHAJ8MRT1cgTcadZtCu6k200suTr6EW3VKvLQtknAww+Ezz8x+h/EK1fN5HeAl1M7EO2UaxXpclNCgmbVIabcHaYGlRgYi9IFYRHokKUvufC3T1b05S8bsmOKWmeKuCMVlJ9N49QvaaJMse5Ws4GUq+noctLxYqb9pfrHOIlrr6SNhdKHMvLXDFsWOkFs1qK2mWvUijIImfpHAZ4Y2IuhQQ97aTLnKcVlBNphfV0gDKqKRlmRpJUtbyaSUkim8qs5ooLHitjlnXDO7bOMsxMXzECxFWFsc90owln1rYSRo6M/gqu4ckYiKaD4XDCgFF+pacYaLd/qMVd8Fcm6TiPCngUxNBDdLDnQdrkMyfnGhLrLbtC5psPE4hIzPoHrSsB6sH46rUOZ7wmKWuBacIsPU70OVQoUaWrF4YjDjuzczQpKD81zZtE0EglUNXUntXKgdBJERSr7qJ9hYLk8X9SiA7e+P4YM0doS8joZPEwssIPy2k9lCRidqr5+DvRIIa2B0f4y+lcGs3rEOk/mVOjvagf7cWKpGB8OBrN8T5lZgNijoCtCmE3OpSB9qnoipySo1tEKQt7iZghJLo+jEaaMn7Hm3hoVtSAZRVfNjwT0IuibTwoQEcsKjD0LqKPKg43/sSPSjIhNxxvquxH1LTpp1Ip3h7/S1T4PrgCTDebxuy75nEY0c9QCSkwhW7oRlPhEGI2Lh4bXdm4+OT9x47dj5iDYxc3hleOkZMnL27EfDXLoDFgz1Wmw5xktplzzAXmLoKOPaoogVkkEDRPBN3rKBFzA49HzeLaa6gGM6wm+EnHbRoIkBU++kUbNaOUV50sQimOrWP8VdEVfxnjP8Oup7/DAGjCskjVJE9Vc/eLtIt+KP2D6V+efn/A/lz6B230V3WWwJmMq+bKel104QX4l+FVXxXP6S8Zdk5VPUnTUIpNWSLtZwueege84aW571zfEz6mfoOczY4lbLG0DZgC7APLsoEdxBx/Xbf7uudJcHzpwtLShQdIkEml0Au9LNRslFyEYLyfXIXgO1MIdS6++CKvzPPQQ8CGZYbYPLeILBSTgErN3RjMAB8adgkf/SJ/aqmwoRpK0EzVVtp1BFh7/Zcu1teerKPAkJdOl7N8Iyezwma13ulcaH3gtfW119fn5m3lVXLZQu1al8xlSsdvzOZS74UXdh+BrG7OBK70IKN52pCDY+vVq4Lenjq1VNzQZW2uEqsoSFn80mngZ2flvz2a0pFfR78FfXMnc5H5ZrLSUeUCwWik3JR+ABV0CblI6lJt8gQwd6iomTAePiH1XWroFQe+12k3G1N8Rwu8jNzYaN2jGgtPoAnkCpEeVJv/SpRVCTCwkTZYRVUV1kjDoiAi2VnLK36KXauH95cKWSwWyk+t5DVdFRSFNWXTcPzU+K+XycJ9SknBQ1gWJUmRiLxZSxsp8i6k5SWJZWWlgHlN0bEti4Yo29iQDf4Zt1jAjeWF16TTWi57d2OhWDf8vJk2RU1CuiCzrO8ET8bI4EXexrqi8bgAr+NkKS/y8Ir4dbM1hPQTBh4TRl03AcyNmA2HlZ2qRKKQtK4LLdkvekRnMx4V3QM4/H7YbofLGVtR7MyAkNknHRKOogc2Lzu5x4LpuP499HuA0pcSucBUnRZLBKhdEZ/YLPqxgeMZFKLPOW17HeYrdjEeiI6YFkVjzR5/ryMJMi9aaddVV1Tbeddl9DnbXktjnIZ7B6KYxq5ordvta44NN7hu2hJ5WZDgxjm6OIhtX7qRVbPh29sn5iSxrQbDHFnfBBhlDbdrAfFEzHAI38ceG1997LEb7kF8G1t+G42uT25CLbiJTeSTwyQ/K7JIfkQ91aOmKOQ7zY/cR/TlGoqLMiSq7CltuEJl3Izt4nal7eO23+66FTfsuoMIZff2gmh8bW8P9XrNj0a93WiYHGfl3Kd2DaQmoVuzIrdLjAuAyx+h05fHo8uXX3wRRS++OF8vYnNDauW3ocxtPBoOye2foVV78cXxVXL35P4gtgWwI8igFu0NBlAUgpjn8SkP6//5yT0NOvWcmIslmpxONyIrB2FxiRiTMr01eiWWvU8vRERwQHM4L+sZ03XNjC6zKSnFcjyyrbKlOarKcXII8A1WEJIuiaqoKBBIHCfxyNLzcel+l5PTQe11tSAtcwDmZFZK1zohAAaJk2XuPQs5XUQSL6UEUbWWLFUUUpLMs6KeY+b3FxApzXGCme3KBNcLFNcjAEaNVoxOyXaCmOndjBUwcTI98XHFrRxHL2tOWh0/r9g2+nZiEQUcuqSnc7pK2M20qSmiwPNQFNWsmyoU5o/pCDq0lfHvahabVtGiYo9HZOjsyTKVoV4h3PKeqXmmY8LH00wRK6L024SeitN+0RgPOChih0w0jncTvSjBZ3S1A1pgT9DXzVASd+NNEtNNFJXplZiZ2ew8gXbcDF3+Mp+K4dmjMTz7TzFoe+nrAMTtxXG0HV96m0GNKfu5czW6uh6vnUPZOK0VI7X48563EdnAcnc+rRe/ipnTTYqMA/U7BjzwvWRVn4h2gYUltmEA7dq41enW4tr6sN633VildpqqJWEMzieRIRmtEXNBmob6MTm3KFvaymcCQFYPXYaA6nWOXfTXgslJZUW+HDhZ7uyjxy4iJibTsQgtCoptR89oduFPdV/vaRkdTnoQfZOgZ/QenEBSFATaos8WbXJhrn4yrLRrgNFuI/jM/sdXJZo2jU+b5fDvXZnvi9tgiUgIUf8fWpW4IQ56u7ukSvP1Kty6XjdXA99Y1VvXi3Q5Dif1+sjRysxquXFDvaBve7uzer3jSEX6R2s5uLFeQOppxebHoworLtmRdPv8eHSPjsOv3Vc39e1kHP6T/datqzep08asnnNjMLh15eZ6aXC0nrfspzv//+mnkFrI/YO7yVy+K3359D+2n966Ak9vz+tGVVqvM6SP5sD/TS0f/p0JlNuaFPrviqK+nsmRYkJweLTM/Vl94KDvkavwTQ5zmG5ELSfrsxVpAmgr7QQq0/WJJ9KvCPdQn0gEBhHZFQTs/gDO0MPjq8HhIdkzdJ2RgezKQUAPRH177cqVYX+ebyFtlbmRYwrn9X4zLumne71o8jnCHR3OXWDm94hhRidWjxE1zfXJDI7aaC8aX23t9waDHuCk0WjY2h8O52wlfx19nuzIRMTGhAzGyVZaujuhGAvbO/EOrm0YeGRnG6zFnSb6abVQvuvsome7fNrAAPEVwRZ5XledQOSB3xZct1sweMPJp5csQUYve7aTquzUC13XJdt9eDlnqzrPi46gmIIi6K7g2h5b2jElKTOzF/499AcUE9qw2vrddRb7tu8JBkv3sX6k8smqUflk/csPKEj+fz9Z/3NTrXxf5ROQ9ok6Wn5AKcrj+if/pyKlZjj+t9FvA75KA11h7JpVadfIrDIQAL12t9M00Bnk9wHBjtBTFTEjQc/uYXa44791EQ3GBxG6rSKyOBiPhn0p8z3+zlsXJ+/9CXQA8zvZQ0oKCJjdI8w80eqip85LCI/eWxzh3On35t+z9978e9EPn5ey4ucL7/m8iO57X/59PwVp0zk1s7WmVltk/PHJEfWvoiygnmx8AJJElFM0ZL7W8/7k+egwsUPv3/T4qz3vJ/mTIzo4PCRm+TS84fGkLd4JmNiAFi5BG1sxO0j2FhAGF7djARyONqk9xPAb26eDohds3Vaq5YNMEC4eD/KQDG29WmlilgsLK4vvvssK08eXfG8OcxP73ijG9RExFjscDK6h4bXeXr/HzMsJeGppTq17bbJBAx/2+9nhsEdD1O+TXb3XGXqY42euUJ4c4He35nb9ShcazweEj6M2DiuY8DgfOHmy3C8/Me4/AYc4joYQR/c/MYbjXvnECQieQP1JfGqL99FYZkLkXgImwnSK5qlQD2YbEa/HWnmAxcxGlNaX9l/XsOwHP/CAbTYe23dVU7Qi9E3d9kYtl4P1qBquv+be+25bDytwpiuGWdlod0lW/LQuRN4d750FnsKtQaZhF/OkLn7Kx1C5CqlleDAcDvZKx59Ezl7pyeOl6taTpfEIolvE2rhfevLE7f3SiSfR7ZXHT5T6EH183qZfjTWZM/IPND0kBnbAqBLBBg4JGoY+BwbWxYkQoYoOEmIOwfcvqJahGJpXMCuNUsNwdbGJ9ayuZ+eXBUXRXeD2bdmo2MWs5RuKIt0rBCqQ+ilWv5aMXzIbParNrBIZCLByRBsTEaaw1iDR5Bslx95h0O9H8LnOHB7AMA/6ox4Z4kE224suPULgZ6/V2o0ich7N2viGvREomW0TXUk8a8jWiMM+0G6YNjD69qiqprXfn7Ph/hcxL4lgduBaN+rCF31L546O8aMmDWHSRdFhazpPR/Pz1AbWaP4/Fr/Ofw8I7qYqoUR/fm0qv/0a+nNi4U/XP3d+G0H89V/lGtF4VZI42RUAte/3okE0aME36s8njAbZEcpCFAHbPOj3e63p3+DatdHBwX6U/O3GqXM6Irpyo1o83rYQVVeR5Zou5TROkZIPLHzv58vtYrFd1kzbjD+BZJrmAI1K7TPt0r5smjKKSDge0XgPbtm72mdmtnNXoG3uZy4zTzBPMU8TqSCwpDCHHYOsuLVuwpOvI+KBoSoQDwcdv0kn9wakwwwgUu4OoXs4hhk+NTskeLUauqS4rdRml7wL+3w0Gz9okDJYIcUv3rFSYgWWZ/mUgkUeiYhs+dwQZRXWUlW3dZno1JEp8KoIHDyHeJlXeMzLoRdxnJOuyOO/uEb/UImFl/Apll9Mp4speI6XOY4kpFhR5j8mcgKv6ByWDZ7VeJ5Np1iOg7U9xad53VRQTby3n9XCYAj/8+0j0l26K8xF5uuodg37Z4iBFSE5wDtSC8GYPGB/mxJAWCbjy5RC+ARguBMMBotEtQntMls/yObSIVRDFdGdh4flFc1ICRw2LFnFqqCoQiplZGFZqtimo8tY5g1Fw1hXFQXrWEs7nqbJWgXWvV4/0CQsn4+CD6WRCvVUDRWzgqDzgiBAPY3A2AzuVjXF4FOqKFiCiVOcLViGrCHE6lYwoTNXbk1nanStxDAN/HbUoAQg/taS40EfZnJACA2aIzTDbJbqbG9FaGZ+Qip/nxGPBv+h3C6V2mUFWHzTIQZSAYxqMth32qUPUYvqiNhIjqlFHSJqnSlNGQFV02FmrRAkAxO8O7WP7t6kjiUG6sTBAqGh6PRt15nXnIplF98XkhePhyQMddRqXd1toVEvCHqJCimAq6NJQaxTp34Q5vvgpjJs3FQG2yJSZ5pWmxkvECM/+ER+Fz5HCvJFkv/4qk7LQ/A7NGgQtDeAqLeywZEijUdxWU6bSdm+eGUwgA+UK6Y5vwj02SaWMd3YCAawMNGDJtvQbpH2F6bipA1htVbbqi2K/Gajsvz5I0nCRrO8/GN5R4fpV7qQ3sy3tm5b74aVm1LmcP5PMQ6lez6RuydapdMo1isR/yLraCY4Rs/lTfPfGavGCcMgh3d9RBS72MM/hHFXdNF35Q0fUOq/M83jptfx4RZj/NUfwi7cgz8ieriLGeYfTm9LqP2Po7ejPpHxTuwVfo0iyHVYh04z54m0jQoEu82YZwZWpK3Htrg4CmHFhPXSfRWsSYhzaeLjgerUQvS9kiTIkrNateoVPy06kp/Jfil3Incyp291ukHBsDSjUHY8y9DN51Z0PiU+lbUsy8gBzgxGffTv2RTnynY901zEXorLHy9++3C4/Jah75oWh9i05tg7y7KnBAuWEtTVjPbBwSgY9qaY4RfQPcxZ5nbmXqCWl+gukK5LhbhhLbYUBsRZIx5YyO49GNWAUagI1IUujwgl3fTxGtQfMCSQRbjQwNE6EqANKN7CG7Uo1sW00AdlS0n7lbSRyvCFbLeeyRknjVwmU83k/LXVtCJhA7MVVpDKa46EbcnVJPbuu1lJHf8FnxMF7vmirJvWG1euoI3AND/LpVzsWAVRdTI7O8vLO8HOzk4KnnbgMVNN27KbEgzFChzZeFB3PNNcQqIvv2ZZzc5kO1eO4I7ZvsUb7O9mOxXjmRh/kn2wxDqmNYzxTDxG3011NDK8L0rVUtBqYa2L7j/2TKt/LP9G5WJzQLTRvfDtszVrSNcsl1oHNMnO/Yl2iyxKr3rycqz7P3Z4uHOLGDXNhngU7N8UmckC9tCArhpMbE8fxob11JS+7RIlej+qd9JOlCn+01LmEA2+pxHabu0D37taDsPS6k9CreM16Kvoq0wGkFsRZmebOQ6YbZtJvA8JOCSKI6AGbBi7H+J9IJEh9qncKPE85MdGp10+hPEGc8NPXBApVmc5JD6InNOWqBInRON3jYatfjQcjT5t2rXEBVH9lBValVUT8ZOL8DzxMKSK1lJIvBHZZ7qmQtwRnYWLo71+9H7rVB1Ol08c92q2uWCuViw3uUSqZE3Xuq+FS2M7LdJ6sKpaBMFHKEGdeA6B3ur4atfQsAcYfdi7zgSICbLDLDlcnQY3JaBREIwH2SzqZ8nfYBCQv2gaBJBCLkQ0IAlTe5QW1VHBcLATtb/XmNgE1SaRQXGpCB9EfH9B7HPxgSgWybEYX40/UxpN+O7V2H9Tbc6WMCSepoghQpVujiTD7QyRe3Q7RL2CDj1zvE/sItCe6VWEFPf0U5hPSannO93nUxLLC089zbGACP/Nv9FfPiSWFST4G0HhnngaCyn28Y2Nx9mUgJ9+glMEWX3nO9Up//1nUJ4i0foR7TAAiAZVQhPvCWTbaIklXpIcYE6uUqvGFoTC8ONEc8Rx3/+ulKygL78orvn/xXPFbyFH3737z19QMM8idPLjHIul2Xy6RnmnLJXkQVZQe8iIbIci0h1i0+T5bwBacGz8o8e+9CM8p1ji+78Hp+UUj4ZrX1yDzx+8hzMNln/DG3jWMDlmprcibUp8pBCL5xvsM3HNnbnCinzsu8R1WDds+0csNT9HNooVXV3t95vN3d2g2QS0V/SuEiMbCHp7RDlTFJ97GQAEDEDC/vfm91onvPuNuUOX3jq/198ql4/Nv1yYe7cNrVaClX31VvU7WquwDaOnOzXAO1LHg4Np5a6tFVumQsSt+nwJRvsvzJUhu9N01rZjqeyRtl6lnmhuUdupT6nmvD+pkHqcetW2/zNZTAluvoJNB+sKruRd2RexxApuz1X8b71VSw1EMSO5haqgati2hGreEVhJlDKKc5fLp47Nt+N8uX06Sm5uw5Aywt1XHx3RAHjiW3ZZfWOwVt07Miom+CHWp2aYPPWGdpPvq6ltWIUg9PkTdGjI4z71bjWUjfEg0Sg+NL7WmkUjRHcc0fvQd8XweH9/NInM2U0RDwRE5mwBE2ABKxAbLSFA2f3+Z56rf/zj9efQQexfY9R6rv4jP1J/jpm3uxJjz4cuGVrdmk109Ras/+7hKHpv/V8+HUXja6NWHx2MgnvfW/9X15ledICy0Wxv/ltgnXCJhQKgpBpxbbaF2k1qggkF+t27t+U7BMltZspL0Zkz0c/euZYW5bOpaLVz51TWNzoq/4/fc+Q1bqIGuAu9SQYm8um2eFpLl61iY7nd/iUJBvlIk8evyNqHt0PDOM4uh6vbH9ZkcjMzlR9cozbYs9VsTgcevxxROQpdyNp8cjzaDeNhtheMxlchoC7KhhOWZrx/7doIWEVgbAOqEpjKGr9EfXW0EwV6CbnYBbK/jtq9bKWy9sBapZId2F7FVNHLEcY8/URXDlK8qesvMUd9oLiJZ5H2xLmYK8Q29oOol615axvBci1YzrY3/GaEBuPBcCQiRGzjpZHKIowRO6Fpv0/bnOiZAXGRJk42GtamGw4npsfxcuFDF8T8RVXwYYwLc9fDVvOAF7NYga+KfUPP6IaPVwOgKuXVK7kG6zgQdRzURC9L3M6OgCfhA1aWpabyB2zWeoCTtOE+NTAfrODNmr+gf5ycfVxf8Gubc3Nusp+e+kCxcMUmIrCEC/a7tQBd3R+PdmOTleFwNBigw/FoHwE22AOIEAT9wax/rqFDsjrajQ4dCZOFBLsJY0NOWp0DRBRKd7XbDds+5KNqo9Vq2I6OPhmxpjL+xUa7fVdL+v7oT8orcJP0W3TQsdPy2gTXIjqSp15FY5vXqbdRN0zSUeC6tR7BG+6+V9wnR+haIEaoX7fXe72iS82X+nD0iru7RW9A/JDO2iZLLVepZcS85TZ1vRdvHid7GMh+nInRg9+ZGH3U2nPmHhEdrFYtFgah4SYVJnxKMWkE3a2YY6AC42sDArnLfgToQ1Q0M30trco8x6KUIGt2ThfZg6yp/AkamuRheHLTJA+Td30eZRPE/obEBGQ0VGVL1VXNkLWspsH7/0Qxs8yN9it5gq9vmrvAv9jTOk0MWax5Q5aNJJHET6Lv1tNpffyNEKLvGA8PYhTXS+xYYpvjcqAJsRFLuhyoGB0mD+jk4fEe5YFI3ywXi29U1UKmamfoXlHlIAqyUA9LVgNtNhYIP019aR2VU2DhFsKLJPH3bC3j2EJ7cWm51ky72tZyuPl/pbWMm8btxcWVatN2tJOQ9jOVjMnzfOOie9KpNlc333R2Nbw5aUoHr1GOq0g9wZ6IuXqHQlLil3KCLaKbIvgm6xrEvP3EsWMn/pYEcmyV/a0mtb3+1rhrfyVOPD3ZtX9scbh4jAZX5+2048/LyViKzWemcghSXonRAK3HfnbKk96HFbfjE7EDkT0kX7oLBBLpytoy3toKoh7wAoP4m+2Nh4P9/XgBRmhfNqgnKOIM6pDu3tijugB9ui6lKDerQ97OdN1oQh+ukN2tRJND1gu+WwPs6TZCtwuMHZSBOGMCxMHDlIJruBuWUNtAUXRwcO1g/PPN3mgA4SAMd0Kylg6Je48BAmwRhOGl5g4gkBHx+bHTHAwGcEsvbGrhdQZSgMEJw72wCbfuNBlmTlYnQPs4VLtE9EhUywYMZjuFY4UZ0ZeF3YPB2vnwjs+t3RGeX3shPL88WPub82uDtTvQaEDT4CokXmdCmkqun791HvFbqRTHjXiaU60SZ/xQ/Q54+PAOchh/jh5QH95Wh1zopTpNe4WGNH1ajy8AhiO7Y1p0X+YaIltTqf/kif57M1n1yJ4JHFtD0UXan3Bw3UkEfZ+y4A/9BSVv6IJjFKywqGfyvl5sWkXTEXTjMMgG8PkuzdHgs6Hbmmbr6AXbcezl4+2HdMWUSxnJMKRMSbIU/aH28TVyf9CUyY36kkwe02bryK9Su3rCC0fUPRu1BNz0u2sTWR1x/NAOm+gzP/88PruweZ5FpRPVldpWcEez+7rjx1/XPXlpg2VRc3dhg0XnN6tbdVQ8HuSpi4bo0ZO6fSPunOCYmyihn3jbnXjdnUcwPzdE/f2IBEcx6FXicIy6KUtoxK+gnwZezqO+h7aoTRPphk3Cy1UpcUqi/iya6naASpQQ2f0XwhG6Yh016XaCTY+wDtUw3vjyeU5R9WqgiIVq4bmU5BU8GWcL2T/kZIhKOFPIpsv6xrObRpkvheUP5ay8Vs1xOXVpVZY/v7qkQryqF6x8ipPRe6wl3Swu1TKZRb2ezdYLjmNMIuOrz60fP77+nJZOf6HZeVLU1ccW1hFaX3hM1cUnuk2OQ9P++1P0acK5Evam2wwnGwW6jWSfTgmh/1h/pO7p2W/6DuyKJYBS2a2ve+ZMLjACAb2u/lDdrQQ//M0Yl7CHxw1UzihZo4pn42OQ6BVnohIL7Qx24IOG3/7t44Nv+zbUm9z7m+iniFSqETt0IO7EBRxvUiDGIIg5vbESZHmvcTK7Ydsb2ZMNj49WNu4Klhc31h/Mr7GuabrsWv7rHl9cno6ZrwB+JLLcJnOK2WFi6+ZmTUcYcJxHBFFF1EWdFo+hwl0dxTYmJaBJmJiVLyPcKRHXA9Q7jgEx9LOiL28vLd35YpU3iivLIrIyEjovjr9S3Siu35nl3iyzsKrLP+hlsmWv8swpJ1A948xb65zGcdo39JdOoR/BeNtAd52RHbRQWBYzFpLQHVLmv1Tya+cyubuPSzkZ462ymc2UoxMBi9BWJDg8l5b6p2bt+jGYd4T3qlHLeWgwuljVKvGGd0IuCAlJPNpQvczLGmvYx9Yck9WIxen4kIRH01AAYb9TDguFsNKO+eOjZ3M8xRXoV5vKJtaZNvFEVqPMZsw9UP0rifsRkVq2a7hG3PzRG1LUIiKm1f2IiKei+uOVKKilmkHA5s08e3U3G/2vrS3zkUfWaNine5kHgGL3Bg89NLhvZ+e+QR85J7dKlx55Zetk6ZFLTOKvO1m74vWK9PhrmDuYXWgnQH54G51JdShhYl0yX1Ob3UQrhsNqst2ZjLRN4PFZYltb86catEpswEKEwsPrPE5xKUBMlibqIo8QD7yGrH4BVq2HambOEARRti090DXNteH8Cl1nqR050KT3pDAvi5LiG4KsYl6y4Iy7LYA1OrvumTm9TFwtAZCEA8eX9ZyVy2ZbQbBLQ2amoxgm9Tye1JPWkZ+rI3ZcH+rI/z3rF9dtfI0XWS7FskJaEzWoHM8Cw6IibvBdNSOvAypU0lA1Q42rdo2oqMbDPmp9IytysiTCYCfV4mSoFlSu3/d8K9DLQOFT8FIWsTypk9mmcsoomPn1A6iYBpyTgXokBr/JIgejBLgE14/a6LDfG/X7vYNe0OvvEcVln353s70DGBxTO/b/hr4wkXGiCTLmyUwn9NqfuBhFfbJl84FT4//e8JZfe5e3dPHXGq9d9u66uOShZ5eoseJ97sW73KWLd3qfdV2SfufFGSaH8hIZMSkzQ9iFCX1LAZ8KIxwwETq82rp6taUFO/0+YvqxGQbqUysMgqC1S/B3JX4fC2+E9+nJ+1y6grWJNV0jCv2KW8E1n2V68RvGf3Hl0gF5ySNXLqGA5HH1atT/KOTDTMpHfRIpVL5WINgI8G3UBva15jegrGTrrU81pyG8+mAzbYenzq/dhj4MXXk4gjwGdOPzoGY7ndtPPPRpwI6IOYyg3Ye3fD8MpG4NqI8LQKVRARIPhbdJa7SJkhZ9aPPibasXtkLbGr8L3gNvi3q7WZLBQw+duL3j2LcdEhwYXWd6B4dztlCERy1TlF4ku/aoUr4bIwoyeKvE+W3b3wZOf6e9eeLEZnvn1NPlc97ZxuLtS0u3LzbOumv7xypvQIfl4jMvPVMsd9fDQm3p9tfevlQtNltXFpeJK/fpfCIyf6IVyUOei8TrHBAHq0IaCapjQ9tFrSaBFt2IjCkSa0z4A79dpdCn5hL3iK1oPAImda/4K9lRH3irQTARnN+xVHV2nMryoIeYXg+qi6gXNeDUe3DDjw0GWcJSLRf7kQrQVR0cobVE4lakPgcJ919z426MqA3MdDt8mwCfLl+JI4BAI+LXNEK98egwLgM/Pgx61Ifs+BrxbHatFaEgGl27thdzgsPg6uHh/iA7OpzDXfP6EIZwGpXEFw/5lQMojEX3mcM3QFfHwAn/E806JH4ziRM/9OPjd6M9V01bX0e3NDPEX0WrNcfbphLvWUSSVpt6cwmPOiKj9qqx7ephq0VMChzTlM88e/r0s+8gwZmZndZg2I/1vv3kGgTjvZm117wNbqyBu8Ff14RoUGXYnFnsxWR/w7xJbLIt4vfpuJ3ZJSvQW1Q6SqSDber6DvD6vI2yPZ9lqtKuHLaojVQwZ3Fc26pWty6Q4H2EZIyoMdLw2MU3kKsQoFZ16/aT1erJ27eq40E0zf/aLH9Ec3ZpKV69SVNkngZfqwC/g/ooujH/8dVZ/sRajWSfmvYr6dUGxF8917myIeaWfem3dnfhgw5v3ZUoS662ZjxCbLtvUf8dj8/R/+5NrFJYrVVrsEoKxLGHAyslcTOyOfmdmtOIuO2lflH82GqKTHEiqSJiXmo/hc4vnFyAT/30w6fhk48R0rfxSsOu5l2OaIpYyc3X7EaxYdf0nJqk6HrNafyHSrXzb6OGkU4bS2s0gpgCedtCYYW87fQ5GFe+bm6wqqfpVbtRpm+VyCt4NWfU7Dp5K+SDWfTDD0SNSiW9mv232dU0jczJjq7QmevNpAczjokH6h/GprkxTOwRFxeJuwv0CIEsPeKRs2Wq6BXVRAe6MvGqoejR6KB/kCW/SzHf9vN+munOPbdGdvCliB6bWAYOBsPBYH9vbx8iRCUOqOMQBYAhYIkcZPeYmdyX+KWlnmuJ/qJHXENf37t6de/rmek974cxVmY249nr0p9ioro+6uuMCG/XETVmhelFfylmOblEZJGICc+FmgxcsmQofcWQgDeW9PBccygqWFcjVcOKiA6b50K35GUcMafEv8Ch5EQn45VcuHP8rOdppqppqjkb95+lbaASayxS7yk18yk8aAEj4cceL+gPPuz0ek07lwuD4IO7u5axZJg9362UTkUo/45cMwefH14ef/l7CmkTmVbpe35soxAIQmaCdY/qYTaZDtVNM93Eo8pEJ2O/qj7m1U/meefTt1TT3DoaxGx1/CTaT1xURf1JZO+mlCkt/gVKi4Gvb3TnPA9M3WP4XUCxuN0FjrRXNOxmu5E2i7GQ7dQDb//Xg8FzK5/4kFhMB81mkC6Kr4sla99SvdZqRYetxs/M7VUgFhdMvHFusr948ttdbeqhcSrkW7qw5JgFPg8sLa4aeb5gOpBUb7XuaMEiQKLVYpbznZVsdsXxuWyxWofEc9Gdrdads30EQ+rDr0G1nFN9w43aTuAvE5cEAqZaICKvHgQAUANqpMRA+HxLkTW/6CtqnQALFOwunzq1vGvKB+QWCK6c4GzZ8H1DTade3CWqvKP7P25c6Y7smD+yTX5G+I/s/zhIEiEgr535+OGovFCj2gmP0n1ikU2czPlRiKkKMpwL8WZn4lDMm3YxivbGV0e9Xn+ttLbWmwahlWFZJRIExGZMIpRWFDTaGwMHtNfTokALslor0LKBFmUh7GctqZzPFVUjd1qxFPgc6QdSznBWMpsaa0FXJP7gNgnl77rEHwmV/06KFAjcmyVeTOmOUxLNnmoLsmsZzrQc4799Nyc4rPIQ6xQcrOsPmlspXpALjnskb5lqLEnedOcNMMdk8w3NBFZPokXr9bIA1+LXjg+jVra3u9vLEl/47JE6TGswKeG0KDf2i3iTLUvyLNmoQ/oGDu1KgY3oL46F8SnlCumrgyEU62DYv870gXL3h0Qem+RFbNN7wMP1qIQQeNxsNjtlUxPsOilveqJ7nLU8LP0YuLtoHU0NnBIUOalTdBVeF5BsYgrzTb3ecNbk1/b3iVH2bgLKWq0ezdg8UvfY/3SGovo6tRA+xrQSnjkpS8IDT8ye8T8gTgt6hVjutIbQd7cKp+XtxYY5weRADXeyyaFFTXQSu6pb9dut+izZm3PLzor3ydOd7jd1VkRzh0+CESZ9RNH9pH9u9L5JdIOTfsmaco+6pZHN3WiuQ3bJEkkCYxDbm8Vj/0voT6Hl6a9/IM8lkAuo3zLy49W4G1InmWvUp8A2S382rDbdZY4SQXgsjqT7VgSq+YVFAn1BRGbJ4QSW437sBBZ6AkZBCUmu5Boidr6S4kTRWWmWTiJD9bBWMSpGSVMLpXIFi5Ysp0RdMLHBC5hV0dPFUn6zIrDoZXiIexkhUbJP5DPSd7MpjhX0WvRTnB60/FxUNlROWlp4rlD8NJvCtptRZAfuwHrG9SWNme1Lmf0mBvm9CvhaEMT2g/R72LrSQkyrNWunQeLzIHmmTdS709+nSL4D4vRv2Jo8wzIzPzhobkSwzJiZfNGAWJb19nu9adlumc9c2QiLPslnQncIT0E8m8576XXILqLYtjX5TbPpKkY3FRCNRBTzlXt3diMiY6ToIOrcBVMW1jbyczzBfqL1LbknHpTbMTBoyw+eIHeSBU425n1uD+O9hnZEERWgS7qnpj/dX4j6rcmuw6ntOrV+I7tUYocOwbT96Lp4grlAfa6R4daKf2SAuAQC6A/zihhUT2BCvGOCyoY9wrbEG4zCr8GqIsNSeJ7jMId5T/dFQ7WKjmmnTCWPNVUUZcOVVTFQjGw671mSIknp5pw37GOvPXbstU+QAAWcwkqSxPIoxaZLoizW65zlO4Gh6CleFDOqLEtq3lCMapiy5HyQwemfnXN2/a7kPRBMeCUYO4Q3aMLMJL5aGJj3tZkfGFzp6ogKSbdTAI1ifY5PpYaJNDHWeJxh6fJNnUOF2wgnu6uaLGNvVLMLiizbBWH8v38HGBcO8RiqiPkUYWJMDav4eSOjlyt6RlczYtEtitbXFxYXTzgStE3tm4NGAB90MB5VN3Ie51pfxqpgpiSR5wVJ4kSZ/MzY9xe0rEH8S2iFlIBSKcSxiycXbcPSA2z7j6RzuUa8Hk1kSteI1S+iFJxsUq3RbXyJQx0iYuzv0k9yRMzcCTlO5UUx9o5R9x3MffHMOOKfeIJr7NhbzYQvmf9hS/ITJlMWdRLBAEMAoTVRZMixW3fZiJItBUW3l02/Jp3tTawWg/FwP3F6Hx8+1HxHkzt5z0mY9onrMOPhZJPBwQiaOJ3NpqGtIVr88eEwwe5yfHAdxyatha5fT2jLg8SieWKtMTHhIG3390qbbGSeWX5Mtti4aEQZKrqrORjM4tlBMIsX3SNX3OJBvL6QIIpeJe4V58+KM19oL6GXKJ3E8Q+tEh0EeunRR+uPXmo8+mjj0qPoUXICMXKePPN+9H76zOwRH3Ue7V56tPMo/SDmUvfR5KQ7R6M4uks0rMH9qYqNtOhj6dCJUC8C8vSXP59NnNjE938efYZ6xmTs2Mx+YqvRrBIv+kVWmFjbC24tNvAgW5boXeQH3cjJnNDq91XRV2Tdz3sFP68s7VUMO7+ZZg0j1a6kzSXPGZTy6yvrGf/ia/RaaSGzoivloFbIWLvvi80Q0Gc4uRDU7bSbzmxkPC5dWm7Ki2fl7IWdS7ed7iw2TG6znc+kjdA2pEztKzETlrTXf0Z/NLMC1xFg/DUU/8YsoZ9Ev0jdkNFfJ9OpR0JiSknEfcLcD0iiK+RHS69kzuxkORJ7h3XM00TPe4cIK/s7sO7hd5DfRLI075h1xV8pplKSIAJUkDhhA/1s9ty5zKcyluFxmXPnsi9ZoiKI/hn/JWy4+CX6hvQxT00Lsmh9yttZQYjYinnEGT7LTuTB8Z52smO+CphxkzkJa2XicYvs3bYwHcg1ss3D9WPbPfpzR4m7kgiWVeLHInnkFQdWSjwYod4fO6YTrJnOM3mnXrcLj0fArvbGh1f671UURTeGARBFFBHndZ8x3GzfMdN2oZ93fEDB/eCwf9DSfWNeB6TQX8Ob+FaF9bwzdQrTnZDiKU2mJk8b9Ffrmq1pavemyBNoZ5Xyewcxth7Eh2/U72k2GqFurpbfnphjxheGiVuX43fEKv07/igmJ4uEaOn6rrbgWLv3aGZ5NRunKEcOE/nRj9P1qAR88gnqxW4zBoFk6BNOvTZ/LhRRl6ZT/8Tk1xNasfcywrV1af0hsglnpD3Qhm/qkpL2TaB096UV2TD9tCKxWvbXMpaZNn0I/rzqmemaZ1oXsyeaTbMVbBrLzRNoMZ8NPNMuZHKuadummw/yacu1wiDIZ/J2LpfN2fn7cu28HbRzmdWz+YrjVPJnV2e6qK8CN7ZKf5c5bMZChhLC5PfBsDBxtEx6hPiy9r1EDNHthHzYjB0flBBqCxKSexoPy9/eWz3V1mEJ9PDJJ+RA1OzierH0fEkgysazpiYI4vjTvMKyWk9RZR71BVmT79EQq/IvvbVYXCs5mhjI5x4RfQANSlp137oIC7LmnU1rqiF8mVdEXu3JrMTP6ZmJVQpxCk3kMV7shjkhUXQPqQDknSxe1NOxD3BJ2IjlKVNVDeI7C82wkBFSKS7lS8VK1C1kvUzN8K1UpqyoYglLiCtqLMZSOR1uV5fvRCPPOb9QaJssp6T5VP6+fLFSXFkuVVnHlI9V7TTWraxjvhhusmilLgYZzVi6cP9tzdk+n2sJxiW/17wxQ8eEV2pQ59aT7Q7dNjD8SZzKYhKGEIDHgBiTjkbou4e8IJpuobCQZweKnCkUlgrSXw/39sjG5thBd1RAgvC2VGGxkEm/lH+Eh0jB/QQW9ycOCvAN5crRPZvNoyXr3rCGElOjG4qztxc7ByXBww8+COdzpWjNfqPgSivqTX0rXP9bsqij65AzkX516CrY7ayxbeJklRrgEacblPoSQweINRtUMo5jt/BklhGXb5fvXbtX4GxX+aenT2Zydo4XO7nC+XvWz36b7Av02vhXVQmXFL+olp7M5opa8b+it5MLvs29DT9xbFM3RJUXtkvwVHThqzIn3Lt+kfNrWjmfeT0846slLGrOl5O18XfR7yZ+S4pIZ9fYbdZLzRQqLnplMZ9/7Zve9FoaXtjb24XWeGVhkgDh+CdJ2u7MB8KVxB5lakYV/+5gC7iCfRKZYcVYj3PDvQPqzqRHQvrz60k5D9BvQo9ukV9Bi61nyc+UEY0zZZfohshOy16DOnhxnCyMUJnkPuIDF118RobZyeoax4qOya2dW/OfwWmzVn3k4ddkMlUSF5/JWNaxc2czJZwVBMMRKsqHn5EDJ5XK6LLJif9fZVce3MZ13vft9fbGsVgssABxElyKBEGRi0MSKZKSTOowoYOU4viWFQW04qN2bcty3ThIrXQSJemRNrXJmcTNjNI2mTRNQ9e5HWfGaTIxWTfH1E3SNskfISepp+00bqedNlDf9xYAQcpuEhDcA8Du2337ju/4fb8vFMyMlg6Rw/QI4rK2feiWm7MXpGCIHHfwwO5QKJa5rYAjmiCV3w6X7ev/LVInJrn6GkVF5wHLRBE4E4gmUhCxnfedHpyYJ0IrGaHIx76wCzZ3PyFQgYahT1DAaWNBUtFg3BFZQ74cEQKnJZV9uIElXMPKU1oE/YFisMNIwQsKvoto22z4QVFhizza/wBPtHG8T8M8i5qacu38haQiTYZknNd1vfVtU1X+XlYKvIJ5vh+LX7R/KEoC0JxvPYcl8sx8zz/opmAuGOvopLjDlowaw1lH17PDRAFtm6hRI1+TPhw0ZfxNqZYnSmfIl7d79M5NonWCN8sPD3cxEOpOoTZqlA58oCn6/SSKfiM3NpaT5URr4zWulItls7uz4oIcMAVWilt4UUMbu2fH2ETrZ6hZcN+XG83liA60KNsJHoUMaVHs9Uv740UnCo0pgCeR/AOgpkbDxzo6Bxju/TGMy9NO4kcyes2ms7JSr9dpMAT4bzxE1zevkVfZcTbidaceX1taMtSmZjSblMK9tbnaqC/He3yaOvUiwUzWZgH2XMgf5ULxHqllF1t+go4K3qYFQMC97Qv9jGYoopTFAVaXjegsGw6usudOnDjH1g11BcwDEjtYHWQl1UAK2VFZ0HJV4/6Q7rp66Ey9fvpKOn3ldH2dkuaphgvmftdQmS285ia1NfYD43KHZRyC+4EBIUVqCFJ11cZyogCW3zEy2Lr06sto1Wk1nNxEPhGLJfITuda652RGEDOScepOmYhkmyjukc8VhfzG84byI4teZiQ/5N1r5zwv18uhCFbeuK9jYhpBWxE8oj/kBfIBmeSJlrm+1GjWyWNprdf7kgkPrSw1+/qcBmrMe+tgeNlT8p6dh6W3dV/PUZbfObCiFWiyKKKm1+xu4B45f87COUxT10W9LrXVFBK64p/o5lw/jzHwcUd9wnwiqaP1hCmFxMnJyCEzEY4YcoA/LLLOwao+4OiSQD2tmtFaD8fDZjy0OlgYyvM8i1E6m0sJAU0PR2Jh1vx5xGGJHHNXUA+RsyhSWLjfNRIFQ9Jy4CLOaWI0Arz6kfDhBG/zEstaPG8JUtGMmWY83KujQ+5lsPCAZcdHtFl536yy3lxebg7t3z/UbFImX6LlLjXqk2cmvV2HFw/vYnb6n/v+P/8zGLvfwO/81NobuZzXy+UeW0KFPA1S+fmyWxvvAMZhMBjIV3q8WFY7brxa8yi8nfQatBJ3pXu1v+KDXKJQqAyIz1p5O1k8UEzadnJyqK+kXZIGY+kSO7KatOPWF7iBSqGQUAKfC98rufFMsZghx18yRp3hyaRtpUYyqeJWG/wa6asxmuHPTyFGkTlE4vTAfGMRlRJ3A+meOLGndtvZX7ulfmNx5L0njr79qDtb63tPNJMZyWS8++64rVKrF4tH528+8vjherI6W0gXM5liuvusPoEe83OYUrLod3/ySP+930KXyOqebzLXj2FbGBLgiWmz4gCEXKDpYdvoQWCMoTTe15jGNWZpjYzpS8sNSHBCptzmChG7INLodfiizB0I4I1l1CBTOqB+nS2gb3dM/wJ6kWJ9aLYm38QHiTMByQOeY2qUJlM0blfVOKrllYQsa6GgpIdVFIo7CU1WHVEcvDWbMM3qkaOyUzlWLh9DH+x/yy4JS5om6URNCLKqqcmBgiRYejZx9EjVNJ93biyXb+yx/W6ir9I4yAWwkUNu0xJHZDKDx5ZIx5ApDhi9uS5lJx6APMIAWqhN8bVKlQaKGxzpfyUOPSOLTloWiZ6i2rZqhUMa6a4Xb+AUJ5MLu244l3HODJQHyPsHnV+aejSmm+Gg3v1l1nRdM5tx0L1GOiwaOKzJrCCw5PbDCpKUeTHgWAFOkriA5TzuwMkGFjq/lDhB4CQtGJE7vzTArG5YTi9XrkKxbrgCSFWYNbisH4JH7pj08339uwvCrYubyPFazX+fGz6OvMY80sPF2ePC8damt+v3kKO5nXb4FdLGcsBlQEc6MsS7PszDbjO9g4kSR4HuHT1EU61yD9gHR0YOxB7gIL/CAftBjnswSnMtZGR5wiEbzoQs05+SjTD5aJtcCFwo7exynk+Q20n70k5sBUgSxGAciiT7+vOlbNWJSIoSMIimaYQ0Q5RmZjImWud5BcwTT9x2aDgq84KkaEEzGk9lC7tKXrwnhsYvc88vUyqRCqgKWaGfUYIGCuT+RRfT5AXyx+fdvkG1KUdDTjgS/IUXuC6Sx2wn85Ks6Opqvr8vGQnrPXMhpihBpkblkZBne2be9tN9h1bK5aWlZPWO6gLZWFkrt9YgnL28Vka0X3T0uKXtfA01wETCyEHGCpgW3LZ61ERMa9UjR5NRYoW81tbiK/S11Cay6fhY1tt4GDK/dOIufTSMSXOX45U10K5g8fyK02jsCHek1L0bzW6//TZ6nNosimC9A32Y2ifG/HwC2/c5PytVbsDFKbRqpbAWDMZNnPoLsqkHgk4Y99UOP2LnzHOXzpk5+xH0OMRtc6yg0QQJ3c3WRxZvUPfMze1Rb1hktuLt6j5eBmVtL+si5xrTnEdME9UhC/MWD6hG7t0hsuQQ1Yl7GdMKNmlNRFrAFGTZJZ0AUwUuIdut1mxjO1X+qwNx9awxhtSzanwgPfaUDzD8vL/3T+0ve0AF/+h/c9L/Ztn3C0X8vWn/O6Y37kZjksxuyK+6bQY3aZwJzrngqoGomFzeDz2hjkH4KIV8hbaEqDGRqliI2XKrDLIav+uOosYLwvjSqBhFiOV1sfS2iqCznL7vsbLAs7uPHPIkncfSxNHFKlE3VHLnW96U73I8a6u6IsgooDnqqMjxCS3IYsGQw4E0r1eSokB2gwYXEsUsFxSDvXGRMmVqI0o2rtmQMzqNIHqq5pLxor58oW9lpe/Ccn3y0VPRS5eipx5FG8vmox+bn//Yo+bZS4FbL09OXr41sM2fIZP1652j50hme/mB68u/ruzryu2WuYQ2YPyDgGmfW8Emcw8djsA5RpPb+sGzzY1YOh27CZHZABuYTAlvJvvo6gF0UHDjenxAOHhQTqSseNxKJeSDB4UB8qHbnZ8pxjgDyHaTUpO0GUq2rfYjN0vUPNuPOvDHwAimnWzHBnYCpYCzY1FvER2n2WjqWoDHmO8bTfWsEjpiVNXMZMydS8h/nvnvZnOVlRVRDhCVxrK6a8Uga5PtznPALAXcqFkM+b/JI5qGCof8VPX19Y8Ui1L/mG2P9RNBdn39PGxJwyUp2+ufBD4q0GhrgocLOD8NilbErnkBMhdMsW7FRcm/bG14q8h55tjMC+dXB35wZOq5wfHKYhEJiFknL6f0/mK9fvzAxdJv9wfM+tLeOuePCazexrF3cQaFHuuKANw4vkmb/kP8LLr7jjuKd97ZepHVWk8/SV/oSOu7yP3M7aXbyfu30EutCvr4uSz5Q3e3nn6jcswt6GeFI+Vw5NxmT1lXaTF/y2ovwsmvXqYv9IxfSOuP/FJaT6O7aUlMx6epd/Py5WmkYq3i2jXLBVBDIV+hhAi4za1vV/wF1/XsYPtqNns1k3nx56+hVy+LzpMJ8cknw4EnY9LlPzx52l08OXhywV04iVAGZ7OZuey/wFUcdHCiVEpgB909GQ5MTMSk4dbayUV38ZR7cmFw4WR3Lnuduu5UNOC423Vda/8DjyI6d6z/GHm3PuxX9lXyvnyZ3PhL/3PsWO7YsavtuoZXevONyzE7FU1Kg7ouANEfYG5BCidlfdwv5uOklM/RUuh5XyL1fSstp/VZeqOkFCRups91sAedcvJg9doiEoY7cfOu75vP+rYKTARy9NcnT5HacxdOu6dPts6yWkbLjpQyRqvyTObLz2c/hF76PlTvqQH4waknoMir8GzbD3grN19n/n69SGgPN3oS2aL+awyR/HdSFvgggGYvNo6HvGzIs5DbRfUjZ/Uas4rm/UBntA57DR+gD4cp7fH0Web1eCwpd+UWw0+W4pp6GX86fJUwU6O11eYyIOfja2hto0FEmaVVb7WBVsHj3IToIZrdse60Xz0cnB32P1obvuW4G2sP8F4/dsTyGpThxnKaQP6BRgF061B87+YmWqW5QppNuvIcL16OM1v8optML6YXemqe8lRQ+1LFz1JJlHJvjb4o5eZa69m4nx+XeUPeLdQmL+itE6DWo2FINLPG0vIKWllvEJHLN29Tsl/for2lQ1Dew1rOHSsh6kZspzkeo7ZICwL9DES6mfd5Dqsyx9m2VlcNjxcl/NOqdFzkDaRC3kw+oipzVtBQg1dlLG9ID6uSsrzRLueb6G8oVzdEooylECWtAm92hPJVg+uPaC9EciKPE831lhN3egpq/QcA+7olWW863VvSFiZjkwmSeyozpyh+HVcofxAu1KJTRCusQQZ2opzSFOxpSHdadW24JAOBQdknyjajnp2tULtQxcO2P0f72WLsqECd8nYbjcAyTmQgELac1hOO6RrhiIO4vKBpX9FiQp5Xta+IghL69AsS5vJcAL8giWyeVURuVQ+hFhDIWAl8VNFNfV03LaG1oeHoN1RpHWvo9qMIEwUSH3nPESk86OKjrR+fJeecI+c+q8f4OVZdn+MMfBfGHFlLZwXc+rpSnycC4fFIgguqDd009REpFGlI6pExSVUZzccksAy1rk0SufAYqaMLzGPMO5h3Me+HDMOICNrbasuuQqhXClXdqJ0nX9ljUbBY1+xodZQdENMsBnbHUVJrmIi3JXB7TIP67Vo2iDKAcNlWlX5iajKliBGPTOJubXwggPJVXIaDa9TBDZioaSC8qgG1/vX1+5+Bwol6H/n3ckEkqkTU5Fk9wiocy8WiPMdLyKU7feHSWayjsPZgVRM4PlQYQsGArpypCImtur8vMXlm8k8LLKcYkZzKIz4mChGpGEveU+REpRS3kryOLib6AgENXTyCw4MD+OiVw7CWjv5wsJ7sP0n+P6KlWVEPBlUcSl7gkISwjESWHxq/wGEkG3g6bDRN7+whIyDbpczxBVbkpZvNkDV/IxkJj1tunwsgrRkdiWhw8jw5Hkn7zPAldWQ6KAUi2T3OkHZKE/jbT53osdP7/D1EDiUaf0XEFbGQtYjqWq2R0eSOM7ehQGsF8u989p7n7Oqx6k+ei9fqnsUI0AbomGuTUW+IuZHaS3zrJ6aRpltYEwvna/ZOd1pHtEkh0i3y5CkRnYw844FpEBRJLybKj0caCHJcLYrto/uHzSOUd2Q1mnqo7Dy0SrfJ4uWFvlMZLqQH8xKRsYKjlrU7RDbkfEgPsdMRsYpNhOqKNLvqNfwjrMaN4+0tGGyTtVoylA9gmY/JIU0LKXHSrwL9wbFwOh1GW3YhP38qxcWjnuwAYFLHHo1Jz3L+/bnIq2tGazWg1PlCqXCuztux6D3IsYPKZ+UAi1YMzXHUAFyAahhvbv1cNnSlq289T8qR20wTjIlDEHjp1SqkdQN/Lp1CwN8wG14olW78/fzM0p4TqDTT37/U34/WD7W+tWvXu1793oTnvXbo/PnzbT3hQ+ScSZBycvtRO+d2Bzxo0yzclRJC569IH7CyWesD2ZFUKrXvSjTDZp9R6umRdNVOp+1/rmaybNay0+1z/hh9nuYMaDt3wBMDCIASaq/2k+5fQjSVeFsHt6s1EVfRj81kOrNvZuH4QV054KV2y7Kk6dmhSNS09fxb93E1N9KvZxJqKoF+py+izUzOFIaG0CDqTyJOLOeQivRd49FimVUVtxY0cDAX5np4nCLQDinrrg+HtDqub+8XGax77dUWZCjazmO+lawHxqZ2PqYA3aCggTEfPADADtB+0MbUhScuTNHFhs9IslxMjxeL4+liysr1KZqAsVIwg+FIwMJKSFZTOSuFmOn2MVMX/tcnjHwMCzQImRcCMsZCbcrdw/E35PL9g/E8x7+tUibn6eHA+xh6npEoPvRXvWDml7/KL/0ql7aFl++jviDfGJ9vp5z1x4VuhmPb7c12STGrHoRedLJwBtQVRdHIdWqKghwaWUFDLwLqKuW9UQPP1gRTBSJD1RRqW/UCY1WIcm7BzBztEGPgPPBTe5RsCcxB0Fpq3gekqcFkKThszw0W58dx5eZbXrhlQpnc9hlyBrxY1EumB+eGl5a8JXc8Fh3ry5C9bpmvoj/3ywQ3hw0oRz9altyjmSM9BbCOPvUOWHSEkflxsXrLLZPy1GBid3A4PtdXrO/4BH1i8PBwo+GOx63xvkzrz3r3tu51hXKlGDRyFuCUHTP8OjjLl8uoXF4BgG4ZoLq9MWMgEQL7yYHrueRciGmnkm1HNezh++jYwl3KZk7NvtXadlnfoWjmryFN0kBw1qTWa5Kmfd/PJrMUMcJkCgsb7eQqncPimpSZL89nwH4PR6742X0fTYnxIAyfwbjIbOnnKzTGIANZddpBJBQuXwu5eAcglFxZE1STphpYXlqKb0E1UNP3Nj8C7g4PMqWqyzSurjdHt+lza/aesGaHoK12ZxWi6qx2MnGnzjyEmIe2tUOIVr+uhgsVG22krBY9B6pbqdYmZNmDvWuwHF3rxtX/hFwHsCdVGGCpoeZnPzcjRQvUgIii3fntHJBSiF0nZHnABToN9J1d75w9vG84JwR3zUxd2bcrwuu8JP2dnDDNhIknLmRHj8ad0b27+wL60dHsBaTv24vxULaqRvb1JbTBTEqwBFWbkU044At7xw/GUm5yLOmM9nFmvxE7OL53e2xv8PrY3lo+jboOnR7j5Bl5Xt4jh/tNM99r5Py3j370TXI6HE6He2UXwIWADuOLE6EsUYRq21AiXn0DxR0H8mHHEcRdtJqbNC+208MZDOcJv4HuZvco1O3H4dEo8X+dAdZj/43WKY4XNDey+l7n4/jMDNMbH4D99olcM2+6BaFL9wqmXeo6pvBScFd8WfM0MiKD/uW3SPV3k6KujJ2KxU6NKbqYRMx8axP1B5aWHKxKkopX9g6U2N2uu5stDfTmhghQK/Pw6/TocWgJVNraomKjzj/gXO7tu+vDJzKZE2+CxR2+rdgDAoS1FcRAv6GX+Mpgf2FwsNA/OE95TFOfcRzQXfV2m+/lPfRjf/Yy+8k4c4w5/jq8lURV7rAgUibEzkwGiiTIlu62D3b+ghILNenFN4HcEtVbq04dkBWt74oYaqvYaCw3my90d1Z7v2mgOh2DVsFsMbVU92Otm34tO06zLikSeTvA0y8B0Fvq+tL+Af2EtHXIIUw1EIuMmbXqOK65RJD9VL8k3U8eWagkWVeu9F8Jox/1Y0u6/79QsyT96D2FK9Wtdv0yepm0xxnauylOiegwIFURVYrmeWx7mSjR5XgUlKMIpgRHbXoqGAVonAT6ZOqu++4c51JCZF4qVybHR8e4xWCc19Rw3/SQxUckrAtExTBY4O7lOTYQicdkng3zAr8LeHHvJwfsu+u+UVyPCMk0OdkH4xxiOTU1FXfTFiY6dpYXWSwqLOaJKqsIWAjziLUENgA6wrVrRE9EpE4OMHVmkbl5h0wluHBLeSI8uv6kPOADTMm1+4ghdxwUaaLagXg5NiBGvTS7uwKoTJo4AgGgqJam37LM7MUrF2dnH3nvxdnW125KibwoWnEjkH7rRPFkOqAbAi8LRliWj8tYEHlBjMYC0QFR4EU7+3Vwkyb2l1/ZN2d+52Aunybda5ac6+J7HyGLG37KIkNHLBrdk0myimapmhTEMdeuJexXWJZog0QE4lAwyN6kISuUdscnpt+WkpIPHBofeueqJm/ZHeHxAhaiztzE3M68ZUdt7EwINl6FqhlGb1w1/i9yo2QmgpqhiFWX9ISCCRXTrZdH3kduAxbXeqRL7XhCILVgRnWj75aKeyShq7rIyZwWlKRZDD4CnnzpRE2R54Ro3wOHeIE0klit9am7vOmXJ1IZJ4GYufaJZx9BxS1xt/XMt1hdQ2hoPBlHsmIqmhTgonlrLBZ5gWUNA0RGsjz+pU/roXA8Xrz/zp+2fuacnyyd+GNV6vSBT1P8WIGMyRTeFvEA0AqT7TRbpWg4sPnYkIIA7AZf4owJ0n53zXCcwO1ThZlvcBwrwsYBdJqV+QkB8wvoQUUSZu/nRUF5YIXDnPLrD/ErAmkMT22LzTV3IlXyfrRBzxx1JLeYO3g5t80J98WHM1NPx5iOb+bD6Ema69bGcDj6zdwH4Rj0ZOyVhzP7u+X9CUWfQsQTOMpyFIIcafficT+djEDkgq9KyUpipP/USS1CpunOTlKSrjHvQpeSkgBJW/iItv/i/vaOlNw7PfFuyDXwfwVB8YUAAHicY2BkYGAA4lWM4ubx/DZfGbiZGEDgtpnQKRj9/9f//0y8TCCVHAxgaQAQawqVAHicY2BkYGBiAAI9Job/v/5/ZuJlYGRAAYwhAF9SBIQAeJxjYGBgYBrFo3gUD0H8/z8Zen4NvLtpHR7khAt1wh4A/0IMmAAAAAAAAAAAUABwAI4A5AEwAVQBsgIAAk4CgAKWAtIDDgNuBAAEqgVSBcgF/AZABqAHIgc+B1IHeAeSB6oHwgfmCAIIigjICOII+AkKCRgJLglACUwJYAlwCXwJkgmkCbAJvAoKClYKnArGC2oLoAu8C+wMDgxkDRINpA5ADqQPGA9mD5wQZhDGEQwRbBG2EfoScBKgEywTohP4FCYUSBSgFSAVYBV2FcwV5BYwFlAWyhcIFzwXbheaGEIYdBi8GNAY4hj0GQgZFhk2GU4ZZhl2GeIaQhqyGyIbjhv6HGIczh0sHWQdkh2uHf4eJh5SHngemB64HtgfCB8cHzgfZh+eH9AgGCBQIHQgjCCsIQohQiHSIkwihCK2IvgjRCOGI8Ij+iRqJOglFCUsJWoljiX6JmgmlCbcJxInPid+J6wn9ChQKIoozCjsKQ4pLiliKZwpwCnoKkQqbCqcKtIrQiuiK+YsPix6LM4tAC0yLZAtxi34LnAuoC62LuAvTC+ML9gwTDC0MNoxDDE0MVwxjDG+MfQyQjKCMrAy7jMaM1oznDPYNGA0ljS8NM41GDVONbQ16DYiNmQ2kjbmNyQ3SDdeN6A33Dg6OHI4ojkcOTY5UDlqOYQ5yDniOfA6bjroOww7fjvmPAA8GjwyPJg8/D1OPbY+ID6APtw/KD9mP8A/6D/+QBRAckDYQQRBQEGEQdhCGEJEQrpC3EMOQ1pDkEOiQ9BD7kQ0RKxE1EUKRURFnkXARehGEEZURmZGvEcoR1BHaEeKR75IIEhASHBIpEjYSSZJWkmOSchJ8koQSk5KgEqkSs5LAks4S8hMrEzKTUBNdE2eTchOEk40TpRO4E8gT1pPlk+wUBBQQlBkUIZQ3FEKUS5RYFGaUd5SUlJ2UtxTYlP4VDJUWFRqVKAAAHicY2BkYGAMYZjCIMgAAkxAzAWEDAz/wXwGACE9AhEAeJxtkE1OwzAQhV/6h2glVIGExM5iwQaR/iy66AHafRfZp6nTpEriyHEr9QKcgDNwBk7AkjNwFF7CKAuoR7K/efPGIxvAGJ/wUC8P181erw6umP1ylzQW7pEfhPsY4VF4QP1FeIhnLIRHuEPIG7xefdstnHAHN3gV7lJ/E+6R34X7uMeH8ID6l/AQAb6FR3jyFruwStLIFNVG749ZaNu8hUDbKjWFmvnTVlvrQtvQ6Z3anlV12s+di1VsTa5WpnA6y4wqrTnoyPmJc+VyMolF9yOTY8d3VUiQIoJBQd5AY48jMlbshfp/JWCH5Zk2ucIMPqYXfGv6isYb8gc1HQpbnLlXOHHmnKpDzDymxyAnrZre2p0xDJWyqR2oRNR9Tqi7SiwxYcR//H4zPf8B3ldh6nicbVcFdOO4Fu1Vw1Camd2dZeYsdJaZmeEzKbaSaCtbXktum/3MzMzMzMzMzMzMzP9JtpN0zu85je99kp+fpEeaY3P5X3Xu//7hJjDMo4IqaqijgSZaaKODLhawiCUsYwXbsB07sAf2xF7Yib2xD/bFftgfB+BAHISDcQgOxWE4HEfgSByFo3EMjkUPx+F4nIATsYpdOAkn4xScitNwOs7AmTgLZ+McnIvzcD4uwIW4CBfjElyKy3A5rsCVuApX4xpci+twPW7AjWTlzbgdbo874I64E+6Mu+CuuBvujnuAo48AIQQGGGIEiVuwBoUIMTQS3IoUBhYZ1rGBTYxxG+6Je+HeuA/ui/vh/ngAHogH4cF4CB6Kh+HheAQeiUfh0XgMHovH4fF4Ap6IJ+HJeAqeiqfh6XgGnoln4dl4Dp6L5+H5eAFeiBfhxXgJXoqX4eV4BV6JV+HVeA1ei9fh9XgD3og34c14C96Kt+HteAfeiXfh3XgP3ov34f34AD6ID+HD+Ag+io/h4/gEPolP4dP4DD6Lz+Hz+AK+iC/hy/gKvoqv4ev4Br6Jb+Hb+A6+i+/h+/gBfogf4cf4CX6Kn+Hn+AV+iV/h1/gNfovf4ff4A/6IP+HP+Av+ir/h7/gH/ol/4d/4D/7L5hgYY/OswqqsxuqswZqsxdqsw7psgS2yJbbMVtg2tp3tYHuwPdlebCfbm+3D9mX7sf3ZAexAdhA7mB3CDmWHscPZEexIdhQ7mh3DjmU9dhw7np3ATmSrbBc7iZ3MTmGnstPY6ewMdiY7i53NzmHnsvPY+ewCdiG7iF3MLmGXssvY5ewKdiW7il3NrmHXsuvY9ewGdiO7id08t8TDSMY9niSCpzwOxEIuCLRSPDFTGkUitqaYHmTG6kjeJtJuLhiKWKQyaOVspCPRzqGS8ZopcCRCyRcLnCkrjbSiUBALu6HTtUJBwoflQKKyoYxNOaCNLUwywloZD01JSVePK7u4la7uxne1prwwy2qtShMzI1LT4DJNFI9Flat+FnW4kkNaM61fpEs5GWRK9TZkaEetXKDEwBYw1rFYzGHiprmhpRmeyuHItnOBx8V7pE7UeMRv03GTx1yNrQxMnafBSK7TOaSp3uiFeiPOV7mFrramvJjpvjozs6TlTMeLIW+DG1vaja+2ZwSdHGeJG+nOktWVCQuzRMmAW9EoRfM8tTW+wdPQ1Po8WMuSSp/Ha5W+ECn9KNXtKx2s9UIx4OQSjb7Wa05pxYGVfhaGMtCx6fHAynVpx3tMRf1+kgpjekoP9c4ZMaHxdGTbdMQ5cRaTkqWpbKDTLDLLM4JUijg0M1OGqc4S05kKkmhmfipoyWJ2vtUJHdyM7TalhZOrNvqZVCGBdj8zMiYLIx4vlDghz9Nxt6QbmgZr/cxaHbcCroJMcavTDkGyj6dukxoloQmRSLmT1XI4H/CUIJ2CrdDDTbViqNNxKxgR7fFU8GYO++59jyhYRSFMJCElk76mo6sG7oza9JuFPcPXRdjJMR235n44CxcCHYqesdwZRKcd6MFAiA4lEp2SumBNpHUiWRSbLm2LTSnqes4lliaMDsN5ysJEkHAKyOlsCsrx4oTRzgtulyfcrJG5pG/7Fkmhc2UiXHc2CDJueXdR3A70ukh7MqL00wy5GfnVd0JueZ8byh9huDghYjPRqZ1yGW3lqYhIW3fC16XYaJSsHgqzRo5SD6WJpDENF7luL5uh80eK/LUWZUs6Ep6SLR66pFhxaMX9aOcBlDaKtDQrcrG9PCvIM04h6WsVdkpMXrC2oyD+/CYRvDiRxs5/Jwrz1O+cpFtIaCPozEv1I6GSckTGIVm3PGGUXG2kUzEZt2ResFCwW0izHIzL1a1JG4xETNGQbwWJlJ18VFMetao5YaUSnVn3zXI/Eipqw5Qno+WJwFAhsGLTbpVQ8Znsyq2ZtmLPguTHSF4UcV9vSlvo66UGCl2lyFZyvVJiU7km7Igyx3BUqqWTV6I0zFngQ6NcQqbKoYx2LXWh2J0IXBUt1axTmdAN+qJMjDRNEXGpXOC3Jmi16mFbRH0R9ngWSt3NcVGmi5FkpK1uFZgKayH2H+iIzUCkifVuWxGb0jbIYpFSXeoMeCDKPN0oSYOCPXThVxtIRRMrA8WHlYHWYSffvB43pHhCnFXtgpA32YUCD7lSIh2X83wslsQfTLcglGlsZsohb3TVEbPgirMJUiF8bdw2Q906nKw6pCRpakOth0o0h6kM/TpreaqvjTh1O2l9JLjL1lV6UhEbyZA8qznSWTpU3JjKyEaqRm+SPibDlre0F6Q66eQw34cdBaHjor4olVTdyeu3zUgp5VC8c7WcyyhjU/j5Ar2yRZKX4VlR/k3jLGhP4WrLxd1mL3C5S8YD7YLC+VPFkU4ehj0+IOO6Bek7Bxe1nDXpYV3URDVqASlJ0WNMKprOJG9EU7nffqb6DeeZ5JgxiUzuLB2qFdxK7Te/UZKFvMqX2aUW8ZQKQte3hL2ix2kXzLlGK8cuJxWTig5hoWA6yFxHupxT6ZKg7xFEITHUAvDQjISwhS4XcsUnvLc0IzGkzEDdWoM0Zc7cZglWJ2hXxaFWJN3Jusn1SNLeWFGlfjEzzYhEY+9THlVctqjH5F60ha2iqyUnqsXaO0qs2zohTxxQFhZpI+EqsuSazYRT/XcFdz4JB23C3q8pu1cSYU3Vf7mZ+GUKaoFdJfQ77jdrSv3CFoueuedzkggbxL1nNEuwWnGommh6uenKFplD4eiSQBFXTd9B2ZE09ST1n3XPdR6MG0mqwyywpkn3hdDfAmqpoF7HVuiha3nCbDgz6Voh51Njqr5naBiyJ8yU6ObRqBPnGKZmhDv/pqGS4lv01gStVj0kgRTKB1othzSZjHbOUTOKlmxa1Eql1u9SjQqqooMwNGPeaFM3iXZ1pUULo2IVJXbc9pDiUwlS5fCIq0HNl91xleoblSiT0SGMROqPrTlhiz6Lu+tRHkFLU54H0YwgFEpQIc0Frh2efcPxLW/4/t2/UfMCO08e1KB/3121Le2nJBeTXDWdJ+ftgPdpO8qivvHNf7PAWdJ2iyHXcebXC1yxtFdtKuexUT4qq4TNqGY3XK1tuwcZmL+R4woVI72dmmZKUobTmoPANdbusrC7sEZlimK8lSUhz+9atRzWii5x3YVv03uoP+YJWp3CXQSN7EtFXXqd+raYQmdpQyhq3X375Vc9EZS30pVSoMiV6G5Jm7pcilxK8re9HaWE7llDtzEurqevbqTuhkiXkWFjg8qRoRtx1zUF+U3C+cCEVTbJqvo4z7bz9Ky79Jj1xdzc/wARDj0u") format("woff"),url(//fpfpuertorico.com/wp-includes/fonts/dashicons.ttf?99ac726223c749443b642ce33df8b800) format("truetype");font-weight:400;font-style:normal}.dashicons,.dashicons-before:before{font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;speak:never;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;font-size:20px;vertical-align:top;text-align:center;transition:color .1s ease-in}.dashicons-admin-appearance:before{content:"\f100"}.dashicons-admin-collapse:before{content:"\f148"}.dashicons-admin-comments:before{content:"\f101"}.dashicons-admin-customizer:before{content:"\f540"}.dashicons-admin-generic:before{content:"\f111"}.dashicons-admin-home:before{content:"\f102"}.dashicons-admin-links:before{content:"\f103"}.dashicons-admin-media:before{content:"\f104"}.dashicons-admin-multisite:before{content:"\f541"}.dashicons-admin-network:before{content:"\f112"}.dashicons-admin-page:before{content:"\f105"}.dashicons-admin-plugins:before{content:"\f106"}.dashicons-admin-post:before{content:"\f109"}.dashicons-admin-settings:before{content:"\f108"}.dashicons-admin-site-alt:before{content:"\f11d"}.dashicons-admin-site-alt2:before{content:"\f11e"}.dashicons-admin-site-alt3:before{content:"\f11f"}.dashicons-admin-site:before{content:"\f319"}.dashicons-admin-tools:before{content:"\f107"}.dashicons-admin-users:before{content:"\f110"}.dashicons-airplane:before{content:"\f15f"}.dashicons-album:before{content:"\f514"}.dashicons-align-center:before{content:"\f134"}.dashicons-align-full-width:before{content:"\f114"}.dashicons-align-left:before{content:"\f135"}.dashicons-align-none:before{content:"\f138"}.dashicons-align-pull-left:before{content:"\f10a"}.dashicons-align-pull-right:before{content:"\f10b"}.dashicons-align-right:before{content:"\f136"}.dashicons-align-wide:before{content:"\f11b"}.dashicons-amazon:before{content:"\f162"}.dashicons-analytics:before{content:"\f183"}.dashicons-archive:before{content:"\f480"}.dashicons-arrow-down-alt:before{content:"\f346"}.dashicons-arrow-down-alt2:before{content:"\f347"}.dashicons-arrow-down:before{content:"\f140"}.dashicons-arrow-left-alt:before{content:"\f340"}.dashicons-arrow-left-alt2:before{content:"\f341"}.dashicons-arrow-left:before{content:"\f141"}.dashicons-arrow-right-alt:before{content:"\f344"}.dashicons-arrow-right-alt2:before{content:"\f345"}.dashicons-arrow-right:before{content:"\f139"}.dashicons-arrow-up-alt:before{content:"\f342"}.dashicons-arrow-up-alt2:before{content:"\f343"}.dashicons-arrow-up-duplicate:before{content:"\f143"}.dashicons-arrow-up:before{content:"\f142"}.dashicons-art:before{content:"\f309"}.dashicons-awards:before{content:"\f313"}.dashicons-backup:before{content:"\f321"}.dashicons-bank:before{content:"\f16a"}.dashicons-beer:before{content:"\f16c"}.dashicons-bell:before{content:"\f16d"}.dashicons-block-default:before{content:"\f12b"}.dashicons-book-alt:before{content:"\f331"}.dashicons-book:before{content:"\f330"}.dashicons-buddicons-activity:before{content:"\f452"}.dashicons-buddicons-bbpress-logo:before{content:"\f477"}.dashicons-buddicons-buddypress-logo:before{content:"\f448"}.dashicons-buddicons-community:before{content:"\f453"}.dashicons-buddicons-forums:before{content:"\f449"}.dashicons-buddicons-friends:before{content:"\f454"}.dashicons-buddicons-groups:before{content:"\f456"}.dashicons-buddicons-pm:before{content:"\f457"}.dashicons-buddicons-replies:before{content:"\f451"}.dashicons-buddicons-topics:before{content:"\f450"}.dashicons-buddicons-tracking:before{content:"\f455"}.dashicons-building:before{content:"\f512"}.dashicons-businessman:before{content:"\f338"}.dashicons-businessperson:before{content:"\f12e"}.dashicons-businesswoman:before{content:"\f12f"}.dashicons-button:before{content:"\f11a"}.dashicons-calculator:before{content:"\f16e"}.dashicons-calendar-alt:before{content:"\f508"}.dashicons-calendar:before{content:"\f145"}.dashicons-camera-alt:before{content:"\f129"}.dashicons-camera:before{content:"\f306"}.dashicons-car:before{content:"\f16b"}.dashicons-carrot:before{content:"\f511"}.dashicons-cart:before{content:"\f174"}.dashicons-category:before{content:"\f318"}.dashicons-chart-area:before{content:"\f239"}.dashicons-chart-bar:before{content:"\f185"}.dashicons-chart-line:before{content:"\f238"}.dashicons-chart-pie:before{content:"\f184"}.dashicons-clipboard:before{content:"\f481"}.dashicons-clock:before{content:"\f469"}.dashicons-cloud-saved:before{content:"\f137"}.dashicons-cloud-upload:before{content:"\f13b"}.dashicons-cloud:before{content:"\f176"}.dashicons-code-standards:before{content:"\f13a"}.dashicons-coffee:before{content:"\f16f"}.dashicons-color-picker:before{content:"\f131"}.dashicons-columns:before{content:"\f13c"}.dashicons-controls-back:before{content:"\f518"}.dashicons-controls-forward:before{content:"\f519"}.dashicons-controls-pause:before{content:"\f523"}.dashicons-controls-play:before{content:"\f522"}.dashicons-controls-repeat:before{content:"\f515"}.dashicons-controls-skipback:before{content:"\f516"}.dashicons-controls-skipforward:before{content:"\f517"}.dashicons-controls-volumeoff:before{content:"\f520"}.dashicons-controls-volumeon:before{content:"\f521"}.dashicons-cover-image:before{content:"\f13d"}.dashicons-dashboard:before{content:"\f226"}.dashicons-database-add:before{content:"\f170"}.dashicons-database-export:before{content:"\f17a"}.dashicons-database-import:before{content:"\f17b"}.dashicons-database-remove:before{content:"\f17c"}.dashicons-database-view:before{content:"\f17d"}.dashicons-database:before{content:"\f17e"}.dashicons-desktop:before{content:"\f472"}.dashicons-dismiss:before{content:"\f153"}.dashicons-download:before{content:"\f316"}.dashicons-drumstick:before{content:"\f17f"}.dashicons-edit-large:before{content:"\f327"}.dashicons-edit-page:before{content:"\f186"}.dashicons-edit:before{content:"\f464"}.dashicons-editor-aligncenter:before{content:"\f207"}.dashicons-editor-alignleft:before{content:"\f206"}.dashicons-editor-alignright:before{content:"\f208"}.dashicons-editor-bold:before{content:"\f200"}.dashicons-editor-break:before{content:"\f474"}.dashicons-editor-code-duplicate:before{content:"\f494"}.dashicons-editor-code:before{content:"\f475"}.dashicons-editor-contract:before{content:"\f506"}.dashicons-editor-customchar:before{content:"\f220"}.dashicons-editor-expand:before{content:"\f211"}.dashicons-editor-help:before{content:"\f223"}.dashicons-editor-indent:before{content:"\f222"}.dashicons-editor-insertmore:before{content:"\f209"}.dashicons-editor-italic:before{content:"\f201"}.dashicons-editor-justify:before{content:"\f214"}.dashicons-editor-kitchensink:before{content:"\f212"}.dashicons-editor-ltr:before{content:"\f10c"}.dashicons-editor-ol-rtl:before{content:"\f12c"}.dashicons-editor-ol:before{content:"\f204"}.dashicons-editor-outdent:before{content:"\f221"}.dashicons-editor-paragraph:before{content:"\f476"}.dashicons-editor-paste-text:before{content:"\f217"}.dashicons-editor-paste-word:before{content:"\f216"}.dashicons-editor-quote:before{content:"\f205"}.dashicons-editor-removeformatting:before{content:"\f218"}.dashicons-editor-rtl:before{content:"\f320"}.dashicons-editor-spellcheck:before{content:"\f210"}.dashicons-editor-strikethrough:before{content:"\f224"}.dashicons-editor-table:before{content:"\f535"}.dashicons-editor-textcolor:before{content:"\f215"}.dashicons-editor-ul:before{content:"\f203"}.dashicons-editor-underline:before{content:"\f213"}.dashicons-editor-unlink:before{content:"\f225"}.dashicons-editor-video:before{content:"\f219"}.dashicons-ellipsis:before{content:"\f11c"}.dashicons-email-alt:before{content:"\f466"}.dashicons-email-alt2:before{content:"\f467"}.dashicons-email:before{content:"\f465"}.dashicons-embed-audio:before{content:"\f13e"}.dashicons-embed-generic:before{content:"\f13f"}.dashicons-embed-photo:before{content:"\f144"}.dashicons-embed-post:before{content:"\f146"}.dashicons-embed-video:before{content:"\f149"}.dashicons-excerpt-view:before{content:"\f164"}.dashicons-exit:before{content:"\f14a"}.dashicons-external:before{content:"\f504"}.dashicons-facebook-alt:before{content:"\f305"}.dashicons-facebook:before{content:"\f304"}.dashicons-feedback:before{content:"\f175"}.dashicons-filter:before{content:"\f536"}.dashicons-flag:before{content:"\f227"}.dashicons-food:before{content:"\f187"}.dashicons-format-aside:before{content:"\f123"}.dashicons-format-audio:before{content:"\f127"}.dashicons-format-chat:before{content:"\f125"}.dashicons-format-gallery:before{content:"\f161"}.dashicons-format-image:before{content:"\f128"}.dashicons-format-quote:before{content:"\f122"}.dashicons-format-status:before{content:"\f130"}.dashicons-format-video:before{content:"\f126"}.dashicons-forms:before{content:"\f314"}.dashicons-fullscreen-alt:before{content:"\f188"}.dashicons-fullscreen-exit-alt:before{content:"\f189"}.dashicons-games:before{content:"\f18a"}.dashicons-google:before{content:"\f18b"}.dashicons-googleplus:before{content:"\f462"}.dashicons-grid-view:before{content:"\f509"}.dashicons-groups:before{content:"\f307"}.dashicons-hammer:before{content:"\f308"}.dashicons-heading:before{content:"\f10e"}.dashicons-heart:before{content:"\f487"}.dashicons-hidden:before{content:"\f530"}.dashicons-hourglass:before{content:"\f18c"}.dashicons-html:before{content:"\f14b"}.dashicons-id-alt:before{content:"\f337"}.dashicons-id:before{content:"\f336"}.dashicons-image-crop:before{content:"\f165"}.dashicons-image-filter:before{content:"\f533"}.dashicons-image-flip-horizontal:before{content:"\f169"}.dashicons-image-flip-vertical:before{content:"\f168"}.dashicons-image-rotate-left:before{content:"\f166"}.dashicons-image-rotate-right:before{content:"\f167"}.dashicons-image-rotate:before{content:"\f531"}.dashicons-images-alt:before{content:"\f232"}.dashicons-images-alt2:before{content:"\f233"}.dashicons-index-card:before{content:"\f510"}.dashicons-info-outline:before{content:"\f14c"}.dashicons-info:before{content:"\f348"}.dashicons-insert-after:before{content:"\f14d"}.dashicons-insert-before:before{content:"\f14e"}.dashicons-insert:before{content:"\f10f"}.dashicons-instagram:before{content:"\f12d"}.dashicons-laptop:before{content:"\f547"}.dashicons-layout:before{content:"\f538"}.dashicons-leftright:before{content:"\f229"}.dashicons-lightbulb:before{content:"\f339"}.dashicons-linkedin:before{content:"\f18d"}.dashicons-list-view:before{content:"\f163"}.dashicons-location-alt:before{content:"\f231"}.dashicons-location:before{content:"\f230"}.dashicons-lock-duplicate:before{content:"\f315"}.dashicons-lock:before{content:"\f160"}.dashicons-marker:before{content:"\f159"}.dashicons-media-archive:before{content:"\f501"}.dashicons-media-audio:before{content:"\f500"}.dashicons-media-code:before{content:"\f499"}.dashicons-media-default:before{content:"\f498"}.dashicons-media-document:before{content:"\f497"}.dashicons-media-interactive:before{content:"\f496"}.dashicons-media-spreadsheet:before{content:"\f495"}.dashicons-media-text:before{content:"\f491"}.dashicons-media-video:before{content:"\f490"}.dashicons-megaphone:before{content:"\f488"}.dashicons-menu-alt:before{content:"\f228"}.dashicons-menu-alt2:before{content:"\f329"}.dashicons-menu-alt3:before{content:"\f349"}.dashicons-menu:before{content:"\f333"}.dashicons-microphone:before{content:"\f482"}.dashicons-migrate:before{content:"\f310"}.dashicons-minus:before{content:"\f460"}.dashicons-money-alt:before{content:"\f18e"}.dashicons-money:before{content:"\f526"}.dashicons-move:before{content:"\f545"}.dashicons-nametag:before{content:"\f484"}.dashicons-networking:before{content:"\f325"}.dashicons-no-alt:before{content:"\f335"}.dashicons-no:before{content:"\f158"}.dashicons-open-folder:before{content:"\f18f"}.dashicons-palmtree:before{content:"\f527"}.dashicons-paperclip:before{content:"\f546"}.dashicons-pdf:before{content:"\f190"}.dashicons-performance:before{content:"\f311"}.dashicons-pets:before{content:"\f191"}.dashicons-phone:before{content:"\f525"}.dashicons-pinterest:before{content:"\f192"}.dashicons-playlist-audio:before{content:"\f492"}.dashicons-playlist-video:before{content:"\f493"}.dashicons-plugins-checked:before{content:"\f485"}.dashicons-plus-alt:before{content:"\f502"}.dashicons-plus-alt2:before{content:"\f543"}.dashicons-plus:before{content:"\f132"}.dashicons-podio:before{content:"\f19c"}.dashicons-portfolio:before{content:"\f322"}.dashicons-post-status:before{content:"\f173"}.dashicons-pressthis:before{content:"\f157"}.dashicons-printer:before{content:"\f193"}.dashicons-privacy:before{content:"\f194"}.dashicons-products:before{content:"\f312"}.dashicons-randomize:before{content:"\f503"}.dashicons-reddit:before{content:"\f195"}.dashicons-redo:before{content:"\f172"}.dashicons-remove:before{content:"\f14f"}.dashicons-rest-api:before{content:"\f124"}.dashicons-rss:before{content:"\f303"}.dashicons-saved:before{content:"\f15e"}.dashicons-schedule:before{content:"\f489"}.dashicons-screenoptions:before{content:"\f180"}.dashicons-search:before{content:"\f179"}.dashicons-share-alt:before{content:"\f240"}.dashicons-share-alt2:before{content:"\f242"}.dashicons-share:before{content:"\f237"}.dashicons-shield-alt:before{content:"\f334"}.dashicons-shield:before{content:"\f332"}.dashicons-shortcode:before{content:"\f150"}.dashicons-slides:before{content:"\f181"}.dashicons-smartphone:before{content:"\f470"}.dashicons-smiley:before{content:"\f328"}.dashicons-sort:before{content:"\f156"}.dashicons-sos:before{content:"\f468"}.dashicons-spotify:before{content:"\f196"}.dashicons-star-empty:before{content:"\f154"}.dashicons-star-filled:before{content:"\f155"}.dashicons-star-half:before{content:"\f459"}.dashicons-sticky:before{content:"\f537"}.dashicons-store:before{content:"\f513"}.dashicons-superhero-alt:before{content:"\f197"}.dashicons-superhero:before{content:"\f198"}.dashicons-table-col-after:before{content:"\f151"}.dashicons-table-col-before:before{content:"\f152"}.dashicons-table-col-delete:before{content:"\f15a"}.dashicons-table-row-after:before{content:"\f15b"}.dashicons-table-row-before:before{content:"\f15c"}.dashicons-table-row-delete:before{content:"\f15d"}.dashicons-tablet:before{content:"\f471"}.dashicons-tag:before{content:"\f323"}.dashicons-tagcloud:before{content:"\f479"}.dashicons-testimonial:before{content:"\f473"}.dashicons-text-page:before{content:"\f121"}.dashicons-text:before{content:"\f478"}.dashicons-thumbs-down:before{content:"\f542"}.dashicons-thumbs-up:before{content:"\f529"}.dashicons-tickets-alt:before{content:"\f524"}.dashicons-tickets:before{content:"\f486"}.dashicons-tide:before{content:"\f10d"}.dashicons-translation:before{content:"\f326"}.dashicons-trash:before{content:"\f182"}.dashicons-twitch:before{content:"\f199"}.dashicons-twitter-alt:before{content:"\f302"}.dashicons-twitter:before{content:"\f301"}.dashicons-undo:before{content:"\f171"}.dashicons-universal-access-alt:before{content:"\f507"}.dashicons-universal-access:before{content:"\f483"}.dashicons-unlock:before{content:"\f528"}.dashicons-update-alt:before{content:"\f113"}.dashicons-update:before{content:"\f463"}.dashicons-upload:before{content:"\f317"}.dashicons-vault:before{content:"\f178"}.dashicons-video-alt:before{content:"\f234"}.dashicons-video-alt2:before{content:"\f235"}.dashicons-video-alt3:before{content:"\f236"}.dashicons-visibility:before{content:"\f177"}.dashicons-warning:before{content:"\f534"}.dashicons-welcome-add-page:before{content:"\f133"}.dashicons-welcome-comments:before{content:"\f117"}.dashicons-welcome-learn-more:before{content:"\f118"}.dashicons-welcome-view-site:before{content:"\f115"}.dashicons-welcome-widgets-menus:before{content:"\f116"}.dashicons-welcome-write-blog:before{content:"\f119"}.dashicons-whatsapp:before{content:"\f19a"}.dashicons-wordpress-alt:before{content:"\f324"}.dashicons-wordpress:before{content:"\f120"}.dashicons-xing:before{content:"\f19d"}.dashicons-yes-alt:before{content:"\f12a"}.dashicons-yes:before{content:"\f147"}.dashicons-youtube:before{content:"\f19b"}.dashicons-editor-distractionfree:before{content:"\f211"}.dashicons-exerpt-view:before{content:"\f164"}.dashicons-format-links:before{content:"\f103"}.dashicons-format-standard:before{content:"\f109"}.dashicons-post-trash:before{content:"\f182"}.dashicons-share1:before{content:"\f237"}.dashicons-welcome-edit-page:before{content:"\f119"}.sp-align-left {
text-align: left;
}
.sp-align-right {
text-align: right;
}
.sp-align-center {
text-align: center;
} .sp-header {
position: relative;
overflow: visible;
z-index: 10000;
} .sp-template {
margin-bottom: 1.5em;
}
.sp-template-profile-selector {
clear: both;
overflow: hidden;
}
.sp-template-logo,
.sp-template-photo {
float: left;
margin-bottom: 2em;
margin-right: 2em;
max-width: 50%;
}
.sp-template-event-logos {
text-align: center;
}
.sp-template-details {
display: inline;
}
.sp-template-details dl {
overflow: hidden;
} .sp-tab-menu {
display: block;
clear: both;
padding: 0 5px;
margin: 0 0 1.5em;
list-style: none;
}
.sp-tab-menu-item {
display: inline-block;
margin: 0;
}
.sp-tab-menu-item a {
display: block;
margin: 0 10px;
color: inherit;
opacity: 0.5;
transition: all .3s;
}
.sp-tab-menu-item a:focus {
outline: none;
}
.sp-tab-menu-item-active a,
.sp-tab-menu-item a:hover {
color: inherit;
opacity: 1;
}
.sp-tab-content {
display: none;
} .sp-template-profile-selector {
text-align: right;
margin-bottom: 0.5em;
} .sp-scrollable-table-wrapper {
width: 100%;
overflow: hidden;
overflow-x: auto;
}
.sp-data-table {
width: 100%;
table-layout: auto;
border-spacing: 0;
}
.sp-paginated-table {
margin-bottom: 0;
}
.sp-data-table thead th {
white-space: nowrap;
}
.sp-data-table thead .sorting,
.sp-data-table thead .sorting_asc,
.sp-data-table thead .sorting_desc,
.sp-data-table thead .sorting_asc_disabled,
.sp-data-table thead .sorting_desc_disabled {
cursor: pointer;
position: relative;
}
.sp-data-table tbody a {
text-decoration: none;
}
.sp-data-table .sorting:after,
.sp-data-table .sorting_asc:after,
.sp-data-table .sorting_desc:after {
font-family: dashicons;
margin: 0 -.2em;
}
.sp-data-table .sorting:after {
content: "\f156";
color: transparent;
position: absolute;
}
.sp-data-table .sorting_asc:after {
content: "\f142";
position: absolute;
}
.sp-data-table .sorting_desc:after {
content: "\f140";
position: absolute;
}
.sp-data-table .data-name {
text-align: left;
}
.sp-data-table .data-number,
.sp-data-table .data-rank {
width: 1px;
}
.sp-data-table .sp-checkbox {
font-family: sportspress;
vertical-align: bottom;
} .sp-post-content {
clear: both;
} .sp-table-wrapper .dataTables_paginate {
text-align: center;
}
.sp-table-wrapper .dataTables_paginate .paginate_button {
margin: 0.5em;
cursor: pointer;
display: inline-block;
}
.sp-table-wrapper .dataTables_paginate .previous {
float: left;
margin-left: 0;
}
.sp-table-wrapper .dataTables_paginate .next {
float: right;
margin-right: 0;
}
.sp-table-wrapper .dataTables_paginate .current {
opacity: 0.5;
color: inherit;
cursor: default;
}
.sp-table-wrapper .dataTables_paginate .disabled {
opacity: 0;
cursor: default;
} .sp-excerpt {
display: block;
margin-bottom: 1em;
} .sp-league-table td.has-logo {
line-height: 2em;
}
.sp-league-table .team-logo {
width: 2em;
height: 2em;
display: inline-block;
vertical-align: middle;
text-align: center;
}
.sp-league-table .data-name .team-logo {
margin-right: 0.5em;
}
.sp-league-table .team-logo img {
width: auto;
height: auto;
max-width: 2em;
max-height: 2em;
} .sp-template-team-gallery img {
padding: 1em;
} .sp-player-list td {
line-height: 2em;
}
.sp-player-list .data-name .player-photo,
.sp-player-list .data-name .player-flag,
.sp-player-list .data-team .team-logo {
width: 2em;
height: 2em;
display: inline-block;
vertical-align: middle;
text-align: center;
}
.sp-player-list .data-name .player-photo,
.sp-player-list .data-name .player-flag {
margin-right: 0.5em;
}
.sp-player-list .data-name .player-photo img,
.sp-player-list .data-name .player-flag img,
.sp-player-list .data-team .team-logo img {
width: auto;
height: auto;
max-width: 2em;
max-height: 2em;
} .sp-staff-role-delimiter {
margin: 0 0.125em;
} .sp-button {
border: none;
cursor: pointer;
} .sp-message {
padding: 1em;
border: 1px solid transparent;
text-align: center;
} .sp-event-logos a {
text-decoration: none;
color: inherit;
}
.sp-event-logos img {
display: inline !important;
vertical-align: middle;
} .sp-event-overview,
.sp-event-performance-tables {
overflow: hidden;
clear: both;
} .sp-event-logos .sp-team-logo {
white-space: nowrap;
display: block;
}
.sp-event-logos .sp-team-logo .sp-team-result {
display: block;
margin: 0.5em 0;
} .sp-event-venue thead th {
white-space: normal;
} .sp-template-event-performance-icons thead {
display: none;
}
.sp-event-performance .sub {
background: rgba(0,0,0,0.05);
}
.sp-event-performance .sub-in,
.sp-event-performance .sub-out {
cursor: default;
}
.sp-event-performance .sub-in:before,
.sp-event-performance .sub-out:before {
font-family: dashicons;
}
.sp-event-performance .sub-in:before {
content: "\f140";
}
.sp-event-performance .sub-out:before {
content: "\f142";
}
.sp-event-performance .sp-performance-icons {
width: 25%;
}
.sp-event-performance .sp-event-star {
color: #f4d014;
}
.sp-event-performance .sp-event-star-number {
margin-left: -20px;
width: 20px;
text-align: center;
display: inline-block;
font-size: smaller;
line-height: 20px;
} .sp-event-performance-teams .sp-template-event-performance-icons {
box-sizing: border-box;
width: 50%;
float: left;
clear: left;
padding-right: 10px;
}
.sp-event-performance-teams .sp-template-event-performance-icons:nth-child(2n) {
float: right;
clear: right;
padding-right: 0;
padding-left: 10px;
}
.sp-template-event-performance-icons .sp-player-position {
display: block;
} .sp-event-calendar {
border-spacing: 0;
}
.sp-event-calendar a {
text-decoration: none;
}
.sp-event-calendar tbody td,
.sp-event-calendar thead th {
text-align: center;
}
.sp-event-calendar #next {
text-align: right;
}
.sp-event-calendar #prev {
text-align: left;
} .sp-event-list .data-date date,
.sp-event-list .data-time date {
display: none !important;
}
.sp-event-list .data-article {
white-space: nowrap;
}
.sp-event-list .data-article a .dashicons {
padding-right: 3px;
}
.sp-event-list .data-time,
.sp-event-list .data-results {
white-space: nowrap;
}
.sp-event-list .data-home {
text-align: right;
}
.sp-event-list .data-away {
text-align: left;
}
.sp-event-list td.has-logo {
line-height: 2em;
}
.sp-event-list .team-logo {
width: 2em;
height: 2em;
margin-right: 0.5em;
display: inline-block;
vertical-align: middle;
text-align: center;
}
.sp-event-list .team-logo img {
width: auto;
height: auto;
max-width: 2em;
max-height: 2em;
}
.sp-event-list .data-home img,
.sp-event-list .data-away img {
display: inline-block;
vertical-align: middle;
}
.sp-event-list .data-home img {
margin-left: 8px;
}
.sp-event-list .data-away img {
margin-right: 8px;
}
.sp-event-list-format-homeaway .data-time {
text-align: center;
padding-left: 1em;
padding-right: 1em;
} .sp-event-blocks thead {
display: none;
}
.sp-event-blocks .sp-event-date,
.sp-event-blocks .sp-event-time,
.sp-event-blocks .sp-event-results,
.sp-event-blocks .sp-event-title {
text-align: center;
display: block;
margin: 10px 0;
clear: none;
}
.sp-event-blocks .sp-event-league,
.sp-event-blocks .sp-event-season,
.sp-event-blocks .sp-event-venue {
text-align: center;
margin: 0 20%;
padding: 0 20px;
}
.sp-event-blocks .team-logo {
margin: 10px;
width: 20%;
height: 4em;
max-width: 6em;
text-align: center;
}
.sp-event-blocks .logo-odd {
float: left;
}
.sp-event-blocks .logo-even {
float: right;
}
.sp-event-blocks .team-logo img {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
}
.sp-fixtures-results {
clear: both;
}
.widget .sp-event-blocks .sp-event-title {
margin: 10px;
padding: 0;
clear: both;
}
span.sp_event_spec_label {
font-weight: bold;
} .sp-template-event-logos-block .team-logo {
float: none;
max-width: none;
width: 100%;
height: auto;
color: inherit;
}
.sp-template-event-logos-block .team-logo img {
vertical-align: middle;
}
.sp-template-event-logos-block .sp-team-name {
display: block;
clear: both;
vertical-align: middle;
font-size: 28px;
}
.sp-template-event-logos-block .sp-event-results {
font-size: 36px;
} .sp-form-events {
text-align: center;
}
.sp-form-events .sp-form-event-link {
display: inline-block;
text-align: center;
vertical-align: text-top;
line-height: 1.5em;
width: 1.5em;
margin: 0 0 0.25em;
color: #fff !important;
font-weight: normal;
}
.sp-form-events .sp-form-event-link:hover {
color: #fff !important;
} .sp-template-countdown .event-image img {
display: block;
margin: 0 auto;
}
.sp-template-countdown .event-name {
clear: both;
overflow: hidden;
}
.sp-template-countdown .team-logo {
width: 20%;
height: auto;
max-width: 4em;
}
.sp-template-countdown .logo-odd {
float: left;
margin-right: 10px;
}
.sp-template-countdown .logo-even {
float: right;
margin-left: 10px;
}
.sp-template-countdown .team-logo img {
max-width: 100%;
max-height: 100%;
width: auto;
height: auto;
}
.sp-template-countdown .sp-countdown {
clear: both;
} .sp-google-map-container {
position: relative;
}
.sp-google-map {
width: 100%;
height: 320px;
}
.sp-google-map-link {
content: '';
display: block;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/images/maps/pin.png) no-repeat center center;
background-size: 26px 82px;
}
.sp-google-map img {
max-width: none !important;
}
.sp-venue-map {
margin-bottom: 4em;
} .sp-view-all-link {
display: block;
margin-top: 0.5em;
} .sp-highlight,
.sp-heading {
font-weight: bold;
} .sp-desktop {
display: none;
} #wpadminbar #wp-admin-bar-sportspress>.ab-item:before {
font-family: sportspress, dashicons;
}
#wpadminbar #wp-admin-bar-sportspress>.ab-item:before {
content: "\f111";
top: 2px;
} @media screen and (min-width: 801px) { .sp-widget-align-none {
clear: both;
}
.sp-widget-align-left {
width: 50%;
float: left;
clear: left;
padding-right: 10px;
box-sizing: border-box;
}
.sp-widget-align-right {
width: 50%;
float: right;
clear: right;
padding-left: 10px;
box-sizing: border-box;
} .sp-desktop {
display: block;
}
.sp-mobile {
display: none;
}
}
@media screen and (min-width: 601px) {
.sp-event-logos .sp-team-logo {
display: inline-block;
}
.sp-event-logos-2 .sp-team-logo {
display: inline;
}
.sp-event-logos-2 .sp-team-logo .sp-team-result {
display: inline-block;
margin: 0 0.25em;
}
.sp-template-logo + .sp-post-content {
clear: left;
}
.sp-template-photo + .sp-post-content {
clear: none;
}
.sp-template-event-logos-block .team-logo {
width: 33%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.sp-template-event-logos-block .team-logo img {
height: 100px;
}
.sp-template-event-logos-block .logo-odd {
text-align: left;
float: left;
}
.sp-template-event-logos-block .logo-even {
text-align: right;
float: right;
}
.sp-template-event-logos-block .logo-odd img {
margin-right: 10px;
}
.sp-template-event-logos-block .logo-even img {
margin-left: 10px;
}
.sp-template-event-logos-block .sp-team-name {
display: inline;
clear: none;
}
}@font-face {
font-family: 'sportspress';
src:url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/fonts/sportspress.eot?ddphik2);
src:url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/fonts/sportspress.eot?#iefixddphik2) format('embedded-opentype'),
url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/fonts/sportspress.woff2?ddphik2) format('woff2'),
url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/fonts/sportspress.ttf?ddphik2) format('truetype'),
url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/fonts/sportspress.woff?ddphik2) format('woff'),
url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/fonts/sportspress.svg?ddphik2#sportspress) format('svg');
font-weight: normal;
font-style: normal;
}
[class^="sp-icon-"], [class*=" sp-icon-"] {
font-family: sportspress, dashicons;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
display: inline-block;
width: 20px;
height: 20px;
font-size: 20px;
vertical-align: top; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
} .sp-icon-sub:before {
content: "\f503";
}
.sp-icon-star-filled:before {
content: "\f155";
}
.sp-icon-update:before {
content: "\f113";
}
.sp-icon-undo:before {
content: "\f171";
}
.sp-icon-redo:before {
content: "\f172";
}
.sp-icon-marker:before {
content: "\f159";
}
.sp-icon-no:before {
content: "\f158";
}
.sp-icon-heart:before {
content: "\f487";
} .sp-icon-soccerball:before {
content: "\e700";
}
.sp-icon-baseball:before {
content: "\e701";
}
.sp-icon-basketball:before {
content: "\e602";
}
.sp-icon-golfball:before {
content: "\e603";
}
.sp-icon-cricketball:before {
content: "\e604";
}
.sp-icon-bowling:before {
content: "\e605";
}
.sp-icon-ice-hockey:before {
content: "\e606";
}
.sp-icon-football:before {
content: "\e607";
}
.sp-icon-poolball:before {
content: "\e608";
}
.sp-icon-table-tennis:before {
content: "\e609";
}
.sp-icon-tennis:before {
content: "\e610";
}
.sp-icon-racing-flag:before {
content: "\e611";
}
.sp-icon-volleyball:before {
content: "\e612";
} .sp-icon-soccerball-alt:before {
content: "\e600";
}
.sp-icon-baseball-alt:before {
content: "\e601";
} .sp-icon-shoe:before {
content: "\e800";
}
.sp-icon-card:before {
content: "\e801";
}
.sp-icon-league:before {
content: "\f332";
}
.sp-icon-shield:before {
content: "\f334";
}
.sp-icon-tshirt:before,
.sp-icon-sp_player:before {
content: "\f307";
}
.sp-icon-whistle:before {
content: "\f227";
}
.sp-icon-time:before {
content: "\f469";
}
.sp-icon-friendly:before {
content: "\f328";
}.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
position: absolute;
left: 0;
top: 0;
}
.leaflet-container {
overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-user-drag: none;
} .leaflet-tile::selection {
background: transparent;
} .leaflet-safari .leaflet-tile {
image-rendering: -webkit-optimize-contrast;
} .leaflet-safari .leaflet-tile-container {
width: 1600px;
height: 1600px;
-webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
display: block;
}  .leaflet-container .leaflet-overlay-pane svg {
max-width: none !important;
max-height: none !important;
}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
max-width: none !important;
max-height: none !important;
width: auto;
padding: 0;
}
.leaflet-container img.leaflet-tile { mix-blend-mode: plus-lighter;
}
.leaflet-container.leaflet-touch-zoom {
-ms-touch-action: pan-x pan-y;
touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
-ms-touch-action: pinch-zoom; touch-action: none;
touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
-ms-touch-action: none;
touch-action: none;
}
.leaflet-container {
-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
filter: inherit;
visibility: hidden;
}
.leaflet-tile-loaded {
visibility: inherit;
}
.leaflet-zoom-box {
width: 0;
height: 0;
-moz-box-sizing: border-box;
box-sizing: border-box;
z-index: 800;
} .leaflet-overlay-pane svg {
-moz-user-select: none;
}
.leaflet-pane         { z-index: 400; }
.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }
.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }
.leaflet-vml-shape {
width: 1px;
height: 1px;
}
.lvml {
behavior: url(#default#VML);
display: inline-block;
position: absolute;
} .leaflet-control {
position: relative;
z-index: 800;
pointer-events: visiblePainted; pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
position: absolute;
z-index: 1000;
pointer-events: none;
}
.leaflet-top {
top: 0;
}
.leaflet-right {
right: 0;
}
.leaflet-bottom {
bottom: 0;
}
.leaflet-left {
left: 0;
}
.leaflet-control {
float: left;
clear: both;
}
.leaflet-right .leaflet-control {
float: right;
}
.leaflet-top .leaflet-control {
margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
margin-left: 10px;
}
.leaflet-right .leaflet-control {
margin-right: 10px;
} .leaflet-fade-anim .leaflet-popup {
opacity: 0;
-webkit-transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
opacity: 1;
}
.leaflet-zoom-animated {
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
}
svg.leaflet-zoom-animated {
will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
-moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
-webkit-transition: none;
-moz-transition: none;
transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
visibility: hidden;
} .leaflet-interactive {
cursor: pointer;
}
.leaflet-grab {
cursor: -webkit-grab;
cursor:    -moz-grab;
cursor:         grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
cursor: move;
cursor: -webkit-grabbing;
cursor:    -moz-grabbing;
cursor:         grabbing;
} .leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
pointer-events: none;
}
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
pointer-events: visiblePainted; pointer-events: auto;
} .leaflet-container {
background: #ddd;
outline-offset: 1px;
}
.leaflet-container a {
color: #0078A8;
}
.leaflet-zoom-box {
border: 2px dotted #38f;
background: rgba(255,255,255,0.5);
} .leaflet-container {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
font-size: 12px;
font-size: 0.75rem;
line-height: 1.5;
} .leaflet-bar {
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
border-radius: 4px;
}
.leaflet-bar a {
background-color: #fff;
border-bottom: 1px solid #ccc;
width: 26px;
height: 26px;
line-height: 26px;
display: block;
text-align: center;
text-decoration: none;
color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
background-position: 50% 50%;
background-repeat: no-repeat;
display: block;
}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
cursor: default;
background-color: #f4f4f4;
color: #bbb;
}
.leaflet-touch .leaflet-bar a {
width: 30px;
height: 30px;
line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
} .leaflet-control-zoom-in,
.leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px;
}
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
font-size: 22px;
} .leaflet-control-layers {
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
background: #fff;
border-radius: 5px;
}
.leaflet-control-layers-toggle {
background-image: url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/css/images/layers.png);
width: 36px;
height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
background-image: url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/css/images/layers-2x.png);
background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
width: 44px;
height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
display: block;
position: relative;
}
.leaflet-control-layers-expanded {
padding: 6px 10px 6px 6px;
color: #333;
background: #fff;
}
.leaflet-control-layers-scrollbar {
overflow-y: scroll;
overflow-x: hidden;
padding-right: 5px;
}
.leaflet-control-layers-selector {
margin-top: 2px;
position: relative;
top: 1px;
}
.leaflet-control-layers label {
display: block;
font-size: 13px;
font-size: 1.08333em;
}
.leaflet-control-layers-separator {
height: 0;
border-top: 1px solid #ddd;
margin: 5px -10px 5px -6px;
} .leaflet-default-icon-path { background-image: url(//fpfpuertorico.com/wp-content/plugins/sportspress/assets/css/images/marker-icon.png);
} .leaflet-container .leaflet-control-attribution {
background: #fff;
background: rgba(255, 255, 255, 0.8);
margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
padding: 0 5px;
color: #333;
line-height: 1.4;
}
.leaflet-control-attribution a {
text-decoration: none;
}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
text-decoration: underline;
}
.leaflet-attribution-flag {
display: inline !important;
vertical-align: baseline !important;
width: 1em;
height: 0.6669em;
}
.leaflet-left .leaflet-control-scale {
margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
margin-bottom: 5px;
}
.leaflet-control-scale-line {
border: 2px solid #777;
border-top: none;
line-height: 1.1;
padding: 2px 5px 1px;
white-space: nowrap;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: rgba(255, 255, 255, 0.8);
text-shadow: 1px 1px #fff;
}
.leaflet-control-scale-line:not(:first-child) {
border-top: 2px solid #777;
border-bottom: none;
margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
border: 2px solid rgba(0,0,0,0.2);
background-clip: padding-box;
} .leaflet-popup {
position: absolute;
text-align: center;
margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
padding: 1px;
text-align: left;
border-radius: 12px;
}
.leaflet-popup-content {
margin: 13px 24px 13px 20px;
line-height: 1.3;
font-size: 13px;
font-size: 1.08333em;
min-height: 1px;
}
.leaflet-popup-content p {
margin: 17px 0;
margin: 1.3em 0;
}
.leaflet-popup-tip-container {
width: 40px;
height: 20px;
position: absolute;
left: 50%;
margin-top: -1px;
margin-left: -20px;
overflow: hidden;
pointer-events: none;
}
.leaflet-popup-tip {
width: 17px;
height: 17px;
padding: 1px;
margin: -10px auto 0;
pointer-events: auto;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
background: white;
color: #333;
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.leaflet-container a.leaflet-popup-close-button {
position: absolute;
top: 0;
right: 0;
border: none;
text-align: center;
width: 24px;
height: 24px;
font: 16px/24px Tahoma, Verdana, sans-serif;
color: #757575;
text-decoration: none;
background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
color: #585858;
}
.leaflet-popup-scrolled {
overflow: auto;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
-ms-zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
width: 24px;
margin: 0 auto;
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
border: 1px solid #999;
} .leaflet-div-icon {
background: #fff;
border: 1px solid #666;
}  .leaflet-tooltip {
position: absolute;
padding: 6px;
background-color: #fff;
border: 1px solid #fff;
border-radius: 3px;
color: #222;
white-space: nowrap;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
box-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.leaflet-tooltip.leaflet-interactive {
cursor: pointer;
pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
position: absolute;
pointer-events: none;
border: 6px solid transparent;
background: transparent;
content: "";
} .leaflet-tooltip-bottom {
margin-top: 6px;
}
.leaflet-tooltip-top {
margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
left: 50%;
margin-left: -6px;
}
.leaflet-tooltip-top:before {
bottom: 0;
margin-bottom: -12px;
border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
top: 0;
margin-top: -12px;
margin-left: -6px;
border-bottom-color: #fff;
}
.leaflet-tooltip-left {
margin-left: -6px;
}
.leaflet-tooltip-right {
margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
top: 50%;
margin-top: -6px;
}
.leaflet-tooltip-left:before {
right: 0;
margin-right: -12px;
border-left-color: #fff;
}
.leaflet-tooltip-right:before {
left: 0;
margin-left: -12px;
border-right-color: #fff;
} @media print { .leaflet-control {
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
}.fa,
.fas,
.far,
.fal,
.fad,
.fab {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1; } .fa-500px:before {
content: "\f26e"; }
.fa-chevron-circle-down:before {
content: "\f13a"; }
.fa-chevron-circle-left:before {
content: "\f137"; }
.fa-chevron-circle-right:before {
content: "\f138"; }
.fa-chevron-circle-up:before {
content: "\f139"; }
.fa-chevron-down:before {
content: "\f078"; }
.fa-chevron-left:before {
content: "\f053"; }
.fa-chevron-right:before {
content: "\f054"; }
.fa-chevron-up:before {
content: "\f077"; }
.far {
font-family: 'Font Awesome 5 Free';
font-weight: 400; }
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 900;
font-display: auto;
src: url(//fpfpuertorico.com/wp-content/plugins/ultimate-carousel-for-visual-composer//css/font-awesome/webfonts/fa-solid-900.eot);
src: url(//fpfpuertorico.com/wp-content/plugins/ultimate-carousel-for-visual-composer//css/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(//fpfpuertorico.com/wp-content/plugins/ultimate-carousel-for-visual-composer//css/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"), url(//fpfpuertorico.com/wp-content/plugins/ultimate-carousel-for-visual-composer//css/font-awesome/webfonts/fa-solid-900.woff) format("woff"), url(//fpfpuertorico.com/wp-content/plugins/ultimate-carousel-for-visual-composer//css/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"), url(//fpfpuertorico.com/wp-content/plugins/ultimate-carousel-for-visual-composer//css/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg"); }
.fa,
.fas {
font-family: 'Font Awesome 5 Free';
font-weight: 900; }.lvca-accordion .lvca-panel-title {
display: block;
cursor: pointer; }
.lvca-accordion .lvca-panel-content {
display: none;
overflow: hidden; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-title, .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title {
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-title:after, .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title:after {
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: absolute;
content: "\e912";
right: 30px;
top: 26px;
font-size: 14px;
line-height: 1;
color: #666;
font-weight: 700;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-accordion.lvca-style1 .lvca-panel.lvca-active .lvca-panel-title:after, .lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg); }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title {
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title:after {
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: absolute;
right: 30px;
top: 25px;
content: "\e913";
color: #999;
font-size: 18px;
line-height: 1;
-webkit-transition: color .3s ease-in 0s, transform .3s ease-in-out 0s;
-webkit-transition: color .3s ease-in 0s, -webkit-transform .3s ease-in-out 0s;
transition: color .3s ease-in 0s, -webkit-transform .3s ease-in-out 0s;
transition: color .3s ease-in 0s, transform .3s ease-in-out 0s;
transition: color .3s ease-in 0s, transform .3s ease-in-out 0s, -webkit-transform .3s ease-in-out 0s;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title:after {
-webkit-transform: rotate(90deg);
transform: rotate(90deg); } .lvca-accordion.lvca-style1 .lvca-panel {
margin: 20px 0 0;
background: #eee;
border-radius: 5px;
overflow: hidden; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-title {
position: relative;
display: block;
padding: 20px 50px 20px 30px;
font-size: 18px;
line-height: 26px;
letter-spacing: 0;
font-weight: bold;
color: #666;
margin: 0; }
.lvca-accordion.lvca-style1 .lvca-panel .lvca-panel-content {
background: #f8f8f8;
padding: 30px 30px; }
.lvca-accordion.lvca-style1 .lvca-panel:hover .lvca-panel-title {
background: #e2e2e2; }
.lvca-accordion.lvca-style1 .lvca-panel.lvca-active .lvca-panel-title {
color: #333;
background: #e2e2e2; }
.lvca-accordion.lvca-style1 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #333; } .lvca-accordion.lvca-style2 .lvca-panel {
margin: 20px 0 0;
color: #333;
-webkit-transition: color .3s;
transition: color .3s;
position: relative; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title {
position: relative;
display: block;
border-radius: 5px;
border: 1px solid #dcdcdc;
overflow: hidden;
padding: 20px 50px 20px 30px;
font-size: 18px;
line-height: 26px;
letter-spacing: 0;
font-weight: bold;
color: #666;
margin: 0;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
z-index: 1; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title:before {
position: absolute;
content: "";
left: 0;
bottom: 0;
height: 0;
width: 100%;
background: #4c5053;
-webkit-transition: height 0.3s cubic-bezier(0.77, 0, 0.175, 1);
transition: height 0.3s cubic-bezier(0.77, 0, 0.175, 1);
z-index: -1; }
.lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content {
padding: 20px 30px;
border-color: #dcdcdc;
border-style: solid;
border-width: 0 1px 1px 1px;
border-radius: 0 0 5px 5px; }
.lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title, .lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title:after {
color: #fff;
border-color: #333; }
.lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title:before {
height: 100%; }
.lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title {
background: #4c5053;
color: #fff;
border-radius: 5px 5px 0 0;
border-color: #333; }
.lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #fff; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title {
color: #888;
border-color: #404040; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-title:before {
background: #e5e5e5; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title {
color: #333; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel:hover .lvca-panel-title:after {
color: #666; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title {
background: #e5e5e5;
color: #333;
border-color: #e5e5e5; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #666; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content {
border-color: #404040;
color: #909090; }
.lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h1, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h2, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h3, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h4, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h5, .lvca-dark-bg .lvca-accordion.lvca-style2 .lvca-panel .lvca-panel-content h6 {
color: #e5e5e5; } .lvca-accordion.lvca-style3 .lvca-panel {
margin: 0;
border-bottom: 1px solid #dcdcdc; }
.lvca-accordion.lvca-style3 .lvca-panel:first-child {
border-top: 1px solid #dcdcdc; }
.lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title {
position: relative;
display: block;
padding: 20px 50px 20px 5px;
font-size: 14px;
line-height: 22px;
letter-spacing: 1px;
font-weight: bold;
text-transform: uppercase;
color: #666;
margin: 0; }
.lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title:after {
top: 24px; }
.lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content {
padding: 10px 50px 30px 5px; }
.lvca-accordion.lvca-style3 .lvca-panel:hover .lvca-panel-title {
color: #333; }
.lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title {
color: #333; }
.lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #333; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel {
border-color: #404040; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title {
color: #b0b0b0; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-title:after {
color: #888; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel:hover .lvca-panel-title {
color: #eaeaea; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel:hover .lvca-panel-title:after {
color: #aaa; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title {
color: #eaeaea; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel.lvca-active .lvca-panel-title:after {
color: #aaa; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content {
color: #909090; }
.lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h1, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h2, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h3, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h4, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h5, .lvca-dark-bg .lvca-accordion.lvca-style3 .lvca-panel .lvca-panel-content h6 {
color: #e5e5e5; }.slick-slider
{
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list
{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus
{
outline: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track
{
position: relative;
top: 0;
left: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
display: table;
content: '';
}
.slick-track:after
{
clear: both;
}
.slick-loading .slick-track
{
visibility: hidden;
}
.slick-slide
{
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide
{
float: right;
}
.slick-slide img
{
display: block;
}
.slick-slide.slick-loading img
{
display: none;
}
.slick-slide.dragging img
{
pointer-events: none;
}
.slick-initialized .slick-slide
{
display: block;
}
.slick-loading .slick-slide
{
visibility: hidden;
}
.slick-vertical .slick-slide
{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}.lvca-carousel .lvca-carousel-item {
position: relative;
}
.lvca-carousel.lvca-container {
max-width: none;
}.lvca-clients {
clear: both;
overflow: hidden;
margin: 0 auto; }
@media (max-width: 479px) {
.lvca-clients .lvca-grid-mobile-1 .lvca-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-1 .lvca-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-2 .lvca-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-2 .lvca-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-3 .lvca-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-3 .lvca-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-4 .lvca-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-4 .lvca-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-5 .lvca-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-5 .lvca-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-6 .lvca-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-mobile-6 .lvca-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media (min-width: 480px) and (max-width: 800px) {
.lvca-clients .lvca-grid-tablet-1 .lvca-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-1 .lvca-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-2 .lvca-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-2 .lvca-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-3 .lvca-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-3 .lvca-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-4 .lvca-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-4 .lvca-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-5 .lvca-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-5 .lvca-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-6 .lvca-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-tablet-6 .lvca-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
@media only screen and (min-width: 801px) {
.lvca-clients .lvca-grid-desktop-1 .lvca-grid-item:nth-child(1n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-1 .lvca-grid-item:nth-child(-n + 1) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-2 .lvca-grid-item:nth-child(2n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-2 .lvca-grid-item:nth-child(-n + 2) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-3 .lvca-grid-item:nth-child(3n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-3 .lvca-grid-item:nth-child(-n + 3) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-4 .lvca-grid-item:nth-child(4n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-4 .lvca-grid-item:nth-child(-n + 4) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-5 .lvca-grid-item:nth-child(5n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-5 .lvca-grid-item:nth-child(-n + 5) {
border-top: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-6 .lvca-grid-item:nth-child(6n + 1) {
border-left: 1px solid #ddd; }
.lvca-clients .lvca-grid-desktop-6 .lvca-grid-item:nth-child(-n + 6) {
border-top: 1px solid #ddd; } }
.lvca-clients .lvca-client {
position: relative;
border-right: 1px solid #ddd;
border-bottom: 1px solid #ddd;
overflow: hidden; }
.lvca-dark-bg .lvca-clients .lvca-client {
border-color: #505050 !important; }
.lvca-clients .lvca-client img {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
width: 100%;
margin: 0;
display: block; }
.lvca-clients .lvca-client .lvca-client-name {
position: absolute;
z-index: 2;
top: 50%;
text-align: center;
width: 100%;
height: 100%;
margin-top: -12px;
color: #fff;
font-size: 18px;
line-height: 26px;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s;
opacity: 0; }
.lvca-clients .lvca-client .lvca-client-name a {
color: #fff;
text-decoration: none; }
.lvca-clients .lvca-client .lvca-image-overlay {
position: absolute;
left: 0;
top: 0;
overflow: hidden;
width: 100%;
height: 100%;
background: #000;
filter: alpha(opacity=0);
-moz-opacity: 0;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lvca-clients .lvca-client:hover .lvca-image-overlay {
opacity: 0.7; }
.lvca-dark-bg .lvca-clients .lvca-client:hover .lvca-image-overlay {
opacity: 0.8; }
.lvca-clients .lvca-client:hover .lvca-client-name {
opacity: 1; }.lvca-heading {
text-align: center;
margin: 0 auto 60px;
max-width: 640px; }
@media only screen and (max-width: 767px) {
.lvca-heading {
margin-bottom: 40px; } }
.lvca-heading .lvca-text {
font-size: 18px;
line-height: 28px;
margin: 0 auto; }
@media only screen and (max-width: 767px) {
.lvca-heading .lvca-text {
font-size: 15px;
line-height: 26px; } }
.lvca-heading.lvca-alignleft, .lvca-heading.lvca-alignright {
margin: 0; }
.lvca-heading.lvca-alignleft .lvca-text, .lvca-heading.lvca-alignright .lvca-text {
margin: 0; }
.lvca-heading.lvca-alignleft {
text-align: left; }
.lvca-heading.lvca-alignright {
text-align: right; }
.lvca-heading .lvca-title {
font-weight: 700;
font-size: 32px;
line-height: 42px;
margin: 0 auto 20px;
color: #333;
font-weight: bold; }
@media only screen and (max-width: 767px) {
.lvca-heading .lvca-title {
font-size: 24px;
line-height: 32px; } }
.lvca-dark-bg .lvca-heading .lvca-title {
color: #e5e5e5; }
.lvca-dark-bg .lvca-heading .lvca-subtitle {
color: #B0B0B0; }
.lvca-dark-bg .lvca-heading .lvca-text {
color: #909090; }
.lvca-heading.lvca-alignleft .lvca-title, .lvca-heading.lvca-alignright .lvca-title {
margin: 0 0 20px; }
.lvca-heading .lvca-subtitle {
margin: 0 auto 5px;
color: #888;
font-size: 12px;
line-height: 20px;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 2px;
position: relative;
display: inline-block;
padding: 0 10px; }
@media only screen and (max-width: 767px) {
.lvca-heading .lvca-subtitle {
font-size: 11px;
line-height: 18px; } }
.lvca-heading.lvca-alignleft .lvca-subtitle, .lvca-heading.lvca-alignright .lvca-subtitle {
margin: 0 0 5px;
padding: 0; }
.lvca-heading.lvca-alignleft .lvca-subtitle:before, .lvca-heading.lvca-alignleft .lvca-subtitle:after, .lvca-heading.lvca-alignright .lvca-subtitle:before, .lvca-heading.lvca-alignright .lvca-subtitle:after {
display: none; }
.lvca-heading.lvca-style3 {
margin: 0 auto 30px; }
.lvca-heading.lvca-style3 .lvca-title {
font-size: 22px;
line-height: 32px;
text-transform: uppercase;
letter-spacing: 1px; }
.lvca-heading.lvca-style3 .lvca-title:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lvca-heading.lvca-style3 .lvca-title:after {
margin: 10px auto 20px; }
.lvca-dark-bg .lvca-heading.lvca-style3 .lvca-title:after {
background: #909090; }
@media only screen and (max-width: 767px) {
.lvca-heading.lvca-style3 .lvca-title {
font-size: 16px;
line-height: 24px; } }
.lvca-heading.lvca-style3.lvca-alignleft, .lvca-heading.lvca-style3.lvca-alignright {
margin: 0 0 30px; }
.lvca-heading.lvca-style3.lvca-alignleft .lvca-title:after, .lvca-heading.lvca-style3.lvca-alignright .lvca-title:after {
margin: 10px 0 20px; }.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative; }
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
position: relative; }
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-default .odometer-digit .odometer-digit-spacer {
display: inline-block;
vertical-align: middle;
*vertical-align: auto;
*zoom: 1;
*display: inline;
visibility: hidden; }
.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-default .odometer-digit .odometer-digit-inner {
text-align: left;
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden; }
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon {
display: block; }
.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-default .odometer-digit .odometer-ribbon-inner {
display: block;
-webkit-backface-visibility: hidden; }
.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-default .odometer-digit .odometer-value {
display: block;
-webkit-transform: translateZ(0); }
.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-default .odometer-digit .odometer-value.odometer-last-value {
position: absolute; }
.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-transform 2s; }
.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
transform: translateY(-100%); }
.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down .odometer-ribbon-inner {
-webkit-transform: translateY(-100%);
transform: translateY(-100%); }
.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-default.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
-webkit-transition: -webkit-transform 2s;
transition: -webkit-transform 2s;
transition: transform 2s;
transition: transform 2s, -webkit-transform 2s;
-webkit-transform: translateY(0);
transform: translateY(0); }
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
font-family: "Helvetica Neue", sans-serif;
line-height: 1.1em; }
.odometer.odometer-auto-theme .odometer-value, .odometer.odometer-theme-default .odometer-value {
text-align: center; } .lvca-odometers {
font-size: 0; }
.lvca-odometers .lvca-odometer {
display: inline-block;
vertical-align: top;
text-align: left;
position: relative;
margin-bottom: 50px; }
.lvca-odometers .lvca-odometer:last-child:after {
border: none; }
.lvca-odometers .lvca-odometer .lvca-prefix, .lvca-odometers .lvca-odometer .lvca-suffix {
display: inline;
font-size: 36px;
line-height: 48px;
color: #333;
vertical-align: middle; }
.lvca-odometers .lvca-odometer .lvca-prefix {
margin-right: 5px;
margin-left: 5px; }
.lvca-odometers .lvca-odometer .lvca-suffix {
margin-left: 5px; }
.lvca-odometers .lvca-odometer .lvca-number {
font-size: 60px;
line-height: 72px;
font-style: normal;
text-transform: none;
letter-spacing: 2px;
font-weight: 900;
color: #333;
margin-bottom: 10px; }
.lvca-odometers .lvca-odometer .lvca-number span {
font-size: 60px; }
.lvca-dark-bg .lvca-odometers .lvca-odometer .lvca-number {
color: #e5e5e5; }
.lvca-odometers .lvca-odometer .lvca-stats-title {
font-size: 18px;
line-height: 28px;
display: inline-block;
color: #888; }
.lvca-dark-bg .lvca-odometers .lvca-odometer .lvca-stats-title {
color: #909090; }
.lvca-odometers .lvca-odometer .lvca-stats-title span {
float: left;
margin-right: 15px; }
.lvca-odometers .lvca-odometer .lvca-stats-title .lvca-icon-wrapper {
font-size: 32px;
margin-right: 10px;
vertical-align: middle;
color: #ccc; }
@media only screen and (max-width: 960px) {
.lvca-odometers .lvca-odometer .lvca-number {
font-size: 48px;
line-height: 56px;
margin-bottom: 0; }
.lvca-odometers .lvca-odometer .lvca-number span {
font-size: 48px; }
.lvca-odometers .lvca-odometer .lvca-stats-title {
font-size: 15px;
line-height: 26px; } }
@media only screen and (max-width: 479px) {
.lvca-odometers .lvca-odometer {
text-align: center; } }.lvca-piechart {
position: relative;
text-align: center;
float: left;
overflow: hidden;
float: left;
padding: 10px; }
.lvca-piechart canvas {
position: relative;
top: 0;
left: 0;
max-width: 100%;
margin: 0 auto; }
.lvca-piechart .lvca-label {
text-align: center;
position: absolute;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
top: 55%;
max-width: 65%;
color: #888; }
.lvca-dark-bg .lvca-piechart .lvca-label {
color: #909090; }
.lvca-piechart .lvca-percentage span {
position: absolute;
top: 25%;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
font-size: 60px;
line-height: 60px;
font-weight: 300;
text-align: center;
color: #333;
font-weight: bolder; }
.lvca-dark-bg .lvca-piechart .lvca-percentage span {
color: #e5e5e5; }
.lvca-piechart .lvca-percentage sup {
font-size: 18px;
vertical-align: super; }
.lvca-piechart.dark-bg .lvca-label {
color: #fff; }
.lvca-piechart.dark-bg .lvca-percentage span {
color: #eee; }
@media only screen and (max-width: 479px) {
.lvca-piechart canvas {
margin-bottom: 15px; } }

.lvca-posts-carousel {
clear: both;
max-width: none; }
@media only screen and (min-width: 1024px) {
.lvca-posts-carousel {
max-width: 96%; } }
.lvca-posts-carousel .lvca-posts-carousel-item .hentry {
background: #fff;
border-radius: 6px;
border: none;
padding: 0;
margin: 0;
-webkit-transition: -webkit-box-shadow .25s ease 0s;
transition: -webkit-box-shadow .25s ease 0s;
transition: box-shadow .25s ease 0s;
transition: box-shadow .25s ease 0s, -webkit-box-shadow .25s ease 0s;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
overflow: hidden; }
.lvca-posts-carousel .lvca-posts-carousel-item .hentry:hover {
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image {
position: relative;
overflow: hidden; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .fl-photo-content {
width: 100%; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image img {
width: 100%;
display: block;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
max-width: 100%; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info {
display: block;
text-align: center; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-entry-info {
text-align: center;
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: auto;
max-width: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%); }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title {
padding: 10px;
margin: 0;
font-size: 22px;
line-height: 34px;
font-weight: 400;
color: #fff;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title {
font-size: 18px;
line-height: 26px; } }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title a {
display: inline;
color: #fff;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-bottom: 1px solid transparent; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-post-title a:hover {
border-bottom: 2px solid #ccc; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-terms {
display: block;
color: #f9f9f9;
font-size: 14px;
line-height: 22px;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-terms a {
color: #ddd;
position: relative;
display: inline;
zoom: 1;
font-size: 14px;
line-height: 22px;
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image .lvca-image-info .lvca-terms a:hover {
color: #fff; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image:hover .lvca-image-info .lvca-post-title, .lvca-posts-carousel .lvca-posts-carousel-item .lvca-project-image:hover .lvca-image-info .lvca-terms {
opacity: 1; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 0 auto;
padding: 25px 15px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 16px;
line-height: 24px;
margin-bottom: 10px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title:after, .lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title:before {
display: none; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title a {
color: #333333;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-title a:hover {
color: #888; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-entry-meta span:last-child:after {
display: none; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-summary {
padding: 0;
margin: 10px auto 0; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list:after {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: ""; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list:after {
text-align: center;
margin: 10px auto 10px; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-entry-text-wrap .lvca-category-list a {
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .type-post .lvca-entry-text-wrap .entry-summary:before {
display: none; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more {
margin: 25px 0 0 0; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button) {
color: #333;
font-size: 12px;
line-height: 1;
font-weight: 600;
text-transform: uppercase;
display: block;
padding: 0;
-webkit-transition: color 0.3s ease-in-out 0s;
transition: color 0.3s ease-in-out 0s; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button):hover {
color: #666; }
.lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button):after {
content: '›';
display: inline-block;
margin-left: 7px; }
.rtl .lvca-posts-carousel .lvca-posts-carousel-item .lvca-read-more a:not(.lvca-button):after {
margin: 0 7px 0 0; }.lvca-pricing-table .lvca-pricing-plan {
float: left;
padding: 10px; }
.lvca-center {
text-align: center; }
.lvca-pricing-table {
padding: 0; }
.lvca-pricing-table .lvca-top-header {
padding: 15px 0;
background-color: #494949;
border-bottom: 1px solid #2c2b2b; }
.lvca-pricing-table .lvca-top-header h3 {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 20px;
line-height: 32px;
color: #fefefe;
margin: 0; }
.lvca-pricing-table .lvca-top-header img {
margin-top: 15px; }
.lvca-pricing-table .lvca-top-header .lvca-tagline {
display: block;
font-size: 15px;
line-height: 24px;
color: #EDEDED;
text-transform: none;
text-align: center;
margin-bottom: 5px; }
.lvca-pricing-table .lvca-pricing-plan {
background: #fff;
padding: 0;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
margin-bottom: 30px; }
.lvca-pricing-table .lvca-pricing-plan:hover .lvca-purchase {
background: #e5e5e5; }
.lvca-pricing-table .lvca-pricing-plan .lvca-plan-price {
color: #fff;
font-size: 22px;
line-height: 28px;
font-weight: 700;
margin: 0; }
.lvca-pricing-table .lvca-pricing-plan .lvca-plan-price span {
font-size: 22px;
line-height: 32px; }
.lvca-pricing-table .lvca-plan-header {
padding: 30px 0 30px;
background-color: #494949; }
.lvca-pricing-table .lvca-plan-price .lvca-text {
display: inline-block;
padding: 6px 25px;
border-radius: 25px;
background: #2C2B2B; }
.lvca-pricing-table .lvca-plan-price sup {
font-size: 18px;
line-height: 32px;
vertical-align: top;
margin-right: 2px;
position: static; }
.lvca-pricing-table .lvca-plan-details {
padding: 15px 0;
margin: 0;
border: 1px solid #eee; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item {
list-style: none;
display: block;
padding: 6px;
margin: 0;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
text-align: center; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item i {
color: #777;
font-size: 18px;
display: inline;
margin-right: 8px; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-title {
color: #838383;
margin-bottom: 10px; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-value-wrap {
display: block; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-value-wrap:after {
position: relative;
content: "";
background: #ddd;
width: 120px;
height: 1px;
display: block;
margin: 12px auto 0; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item .lvca-value {
color: #444;
font-size: 24px;
line-height: 32px;
display: inline; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item s {
color: #b4c9d3; }
.lvca-pricing-table .lvca-plan-details .lvca-pricing-item:last-child .lvca-value-wrap:after {
display: none; }
.lvca-pricing-table .lvca-purchase {
text-align: center;
text-transform: uppercase;
padding: 15px 0;
margin: 0 auto;
background: #f1f1f1;
-webkit-transition: all 0.1s ease-in-out 0s;
transition: all 0.1s ease-in-out 0s;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
border-bottom: 1px solid #eee; }
.lvca-pricing-table .lvca-purchase a {
padding: 12px 25px;
border-radius: 5px;
letter-spacing: 0;
font-size: 16px;
line-height: 24px;
letter-spacing: 6px;
font-weight: bold; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight {
background: #f5f5f5;
margin-top: -10px; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-plan-details {
border-color: #e5e5e5; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-top-header {
padding: 20px 0; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-pricing-table .lvca-top-header h3 {
color: #28c2ba !important; }
.lvca-pricing-table .lvca-pricing-plan.lvca-highlight .lvca-purchase {
padding: 20px 0;
background-color: #e5e5e5;
border-color: #ddd; }.lvca-services.lvca-style1 .lvca-service .lvca-icon-wrapper span {
display: block;
text-align: center;
font-size: 96px;
line-height: 1;
margin-bottom: 20px;
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lvca-services.lvca-style1 .lvca-service .lvca-image-wrapper img {
display: block;
max-width: 100%;
text-align: center;
margin: 0 auto 25px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-services.lvca-style1 .lvca-service .lvca-service-text {
text-align: center;
max-width: 300px;
margin: 0 auto; }
.lvca-services.lvca-style1 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
margin-bottom: 20px; }
.lvca-services.lvca-style1 .lvca-service:hover .lvca-image-wrapper img {
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9); } .lvca-services.lvca-style2 .lvca-service .lvca-image-wrapper img, .lvca-services.lvca-style2 .lvca-service .lvca-icon-wrapper span {
float: left;
margin-right: 18px; }
.lvca-services.lvca-style2 .lvca-service .lvca-icon-wrapper span {
font-size: 24px;
line-height: 32px; }
.lvca-services.lvca-style2 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
margin-bottom: 20px; } .lvca-services.lvca-style3 .lvca-service .lvca-icon-wrapper span {
display: block;
text-align: left;
font-size: 80px;
line-height: 1;
margin-bottom: 25px;
color: #555; }
.lvca-dark-bg .lvca-services.lvca-style3 .lvca-service .lvca-icon-wrapper span {
color: #c5c5c5; }
.lvca-services.lvca-style3 .lvca-service .lvca-image-wrapper img {
display: block;
max-width: 100%;
text-align: left;
margin-bottom: 25px; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text {
text-align: left;
max-width: 300px;
margin: 0;
font-size: 14px;
line-height: 32px;
color: #888; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list {
padding: 0;
margin: 0;
border: none; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li {
border-bottom: 1px solid #eee;
position: relative;
padding: 0;
margin: 0;
list-style: none;
line-height: 42px; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li:hover {
padding: 0; }
.lvca-dark-bg .lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li {
border-color: #333; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li:before {
font-family: 'lvca-icomoon' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
position: relative;
display: inline-block;
height: auto;
width: auto;
background: none;
float: none;
vertical-align: middle;
margin: 0 15px 0 0;
content: "\e913";
color: #BBBBBB;
font-size: 12px;
line-height: 1; }
.lvca-dark-bg .lvca-services.lvca-style3 .lvca-service .lvca-service-text ul.lvca-services-list li:before {
color: #606060; }
.lvca-services.lvca-style3 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
margin-bottom: 20px; } .lvca-services.lvca-style4 .lvca-service {
margin-bottom: 60px; }
.lvca-services.lvca-style4 .lvca-service .lvca-image-wrapper img, .lvca-services.lvca-style4 .lvca-service .lvca-icon-wrapper span {
display: block;
margin-bottom: 20px;
text-align: left; }
.lvca-services.lvca-style4 .lvca-service .lvca-icon-wrapper span {
font-size: 36px;
line-height: 1;
color: #888; }
.lvca-services.lvca-style4 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px; } .lvca-services.lvca-style5 .lvca-service {
margin-bottom: 80px; }
@media only screen and (max-width: 767px) {
.lvca-services.lvca-style5 .lvca-service {
margin-bottom: 50px; } }
.lvca-services.lvca-style5 .lvca-service .lvca-icon-wrapper span {
display: block;
text-align: center;
font-size: 48px;
line-height: 1;
margin-bottom: 15px;
color: #999;
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lvca-services.lvca-style5 .lvca-service .lvca-image-wrapper img {
display: block;
max-width: 100%;
text-align: center;
margin: 0 auto 25px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-services.lvca-style5 .lvca-service .lvca-service-text {
text-align: center;
max-width: 300px;
margin: 0 auto; }
.lvca-services.lvca-style5 .lvca-service .lvca-service-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 16px;
line-height: 26px;
margin-bottom: 10px; }
.lvca-services.lvca-style5 .lvca-service:hover .lvca-image-wrapper img {
-webkit-transform: scale(0.9, 0.9);
transform: scale(0.9, 0.9); } .lvca-services .lvca-service {
margin-bottom: 50px; }
.lvca-services .lvca-service .lvca-icon-wrapper span {
-webkit-transition: color .4s ease-in-out 0s;
transition: color .4s ease-in-out 0s; }
.lvca-services .lvca-service .lvca-service-text {
font-size: 15px;
line-height: 24px; }
.lvca-dark-bg .lvca-services .lvca-service .lvca-service-text {
color: #909090; }
.lvca-dark-bg .lvca-services .lvca-service .lvca-service-text .lvca-title {
color: #e5e5e5; }.lvca-stats-bars .lvca-stats-bar {
width: 100%;
display: block;
margin: 0 0 18px;
overflow: hidden; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-title {
margin: 0;
display: block;
color: #888;
font-style: normal;
font-size: 15px;
text-transform: none;
color: #333;
font-size: 16px;
line-height: 28px; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-title span {
margin-left: 5px; }
.lvca-dark-bg .lvca-stats-bars .lvca-stats-bar .lvca-stats-title {
color: #ddd; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-wrap {
position: relative; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-content {
background: #e55a54;
display: block;
height: 10px;
width: 0;
position: relative;
z-index: 1;
border-radius: 5px; }
.lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-bg {
width: 100%;
background: rgba(0, 0, 0, 0.1);
height: 10px;
display: block;
margin-top: -10px;
border-radius: 5px; }
.lvca-dark-bg .lvca-stats-bars .lvca-stats-bar .lvca-stats-bar-bg {
background: rgba(255, 255, 255, 0.1); }@-webkit-keyframes lvca-fade {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@keyframes lvca-fade {
0% {
opacity: 0; }
100% {
opacity: 1; } } .lvca-tabs {
position: relative;
overflow: hidden; }
.lvca-tabs .lvca-tab-nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; }
.lvca-tabs .lvca-tab-nav .lvca-tab {
text-align: center;
-webkit-box-flex: 0;
box-flex: 0;
-moz-flex: 0 1 auto;
-ms-flex: 0 1 auto;
flex: 0 1 auto; }
.lvca-tabs .lvca-tab-nav .lvca-tab a {
display: block;
text-overflow: ellipsis;
white-space: normal;
padding: 20px 40px;
text-decoration: none;
border: none;
margin: 0;
outline: none;
-webkit-transition: color .3s ease-in-out 0s;
transition: color .3s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lvca-tabs .lvca-tab-nav .lvca-tab a {
padding: 20px 25px; } }
.lvca-tabs .lvca-tab-nav .lvca-tab span.lvca-icon-wrapper span {
font-size: 32px;
font-weight: 400;
vertical-align: middle;
margin-right: 10px; }
.lvca-tabs .lvca-tab-nav .lvca-tab span.lvca-image-wrapper img {
max-width: 24px;
display: inline-block;
vertical-align: middle;
height: auto;
width: auto;
padding: 0;
margin: 0 10px 0 0;
border: none; }
.lvca-tabs .lvca-tab-nav .lvca-tab span.lvca-tab-title {
font-size: 14px;
line-height: 1;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px; }
.lvca-tabs .lvca-tab-panes {
position: relative; }
.lvca-tabs .lvca-tab-panes .lvca-tab-pane {
padding: 40px;
display: none;
overflow: hidden; }
.lvca-tabs .lvca-tab-panes .lvca-tab-pane.lvca-active {
display: block;
-webkit-animation: lvca-fade 0.3s ease-in-out;
animation: lvca-fade 0.3s ease-in-out; } .lvca-no-flexbox .lvca-tab-nav {
display: block; }
.lvca-no-flexbox .lvca-tab-nav .lvca-tab {
min-width: 15%;
display: inline-block; } .lvca-tabs.lvca-vertical {
display: -webkit-box;
display: -ms-flexbox;
display: flex; }
.lvca-tabs.lvca-vertical .lvca-tab-nav {
-webkit-box-flex: 1;
box-flex: 1;
-moz-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: column;
flex-direction: column;
-ms-flex-direction: column;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; }
.lvca-tabs.lvca-vertical .lvca-tab-panes {
-webkit-box-flex: 4;
box-flex: 4;
-moz-flex: 4 1 auto;
-ms-flex: 4 1 auto;
flex: 4 1 auto; }
.lvca-tabs.lvca-vertical.lvca-mobile-layout {
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: column;
flex-direction: column;
-ms-flex-direction: column; } .lvca-tab-mobile-menu {
display: none; position: absolute;
top: 23px;
right: 20px;
background: transparent;
border: none;
z-index: 10; }
.lvca-tab-mobile-menu i {
font-size: 18px;
color: #777;
font-weight: bold; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-mobile-menu {
display: block; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-nav {
-webkit-box-orient: vertical;
box-orient: vertical;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: column;
flex-direction: column;
-ms-flex-direction: column;
cursor: pointer; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
text-align: center;
display: none; }
.lvca-tabs.lvca-mobile-layout .lvca-tab-nav .lvca-tab.lvca-active {
display: block; }
.lvca-tabs.lvca-mobile-layout.lvca-mobile-open { }
.lvca-tabs.lvca-mobile-layout.lvca-mobile-open .lvca-tab-nav .lvca-tab {
display: block; }
.lvca-tabs.lvca-mobile-layout.lvca-mobile-open .lvca-tab-mobile-menu i:before {
content: '\e911'; } .lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab {
border-left: 1px solid #d9d9d9;
border-bottom: 1px solid #e2e2e2;
background: #e9e9e9; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab:first-child {
border-left-color: transparent;
border-radius: 5px 0 0 0; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab:last-child {
border-radius: 0 5px 0 0; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab.lvca-active {
border-bottom: none;
background: #f2f2f2; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab a {
color: #777; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab a:focus {
color: #333; }
.lvca-tabs.lvca-style1 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style1 .lvca-tab-panes {
background: #f2f2f2;
border-radius: 0 4px 4px 4px; }
.lvca-tabs.lvca-style1.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active {
background: #eeeeee; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab {
border-left: none;
border-bottom-color: #d9d9d9; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab:first-child {
border-radius: 5px 5px 0 0; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab:last-child {
border-radius: 0; }
.lvca-tabs.lvca-style1.lvca-mobile-layout .lvca-tab-panes {
border-radius: 0; } .lvca-tabs.lvca-style2 .lvca-tab-nav {
background: #f2f2f2;
border-radius: 5px 5px 0 0;
padding: 0 30px; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab {
padding: 20px 10px;
position: relative; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a {
display: inline-block;
padding: 5px 20px;
border-radius: 34px;
color: #666;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:focus {
color: #888; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 8px;
margin: 0 auto;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #3c3d41; }
.lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active a {
background: #838d8f;
color: #fff; }
.lvca-tabs.lvca-style2 .lvca-tab-panes {
background: #3c3d41;
border-radius: 0 0 5px 5px; }
.lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane {
color: #838d8f; }
.lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h1, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h2, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h3, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h4, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h5, .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h6 {
color: #fff; }
.lvca-tabs.lvca-style2.lvca-mobile-layout .lvca-tab-mobile-menu {
top: 27px; }
.lvca-tabs.lvca-style2.lvca-mobile-layout .lvca-tab-nav {
padding: 0; }
.lvca-tabs.lvca-style2.lvca-mobile-layout.lvca-mobile-open .lvca-tab {
border-bottom: 1px solid #e2e2e2; }
.lvca-tabs.lvca-style2.lvca-mobile-layout.lvca-mobile-open .lvca-tab:last-child {
border-bottom: none; }
.lvca-tabs.lvca-style2.lvca-mobile-layout.lvca-mobile-open .lvca-tab.lvca-active:after {
display: none; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a {
color: #333; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab a:focus {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active a {
background: #aaa;
color: #fff; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-nav .lvca-tab.lvca-active:after {
border-bottom: 8px solid #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes {
background: #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style2 .lvca-tab-panes .lvca-tab-pane h6 {
color: #333333; } .lvca-tabs.lvca-style3 .lvca-tab-nav {
background: #3c3d41;
border-radius: 5px 5px 0 0; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab {
position: relative;
border-right: 1px solid #4e4f53; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a {
padding: 20px 30px;
border-radius: 34px;
color: #8f8e93;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:focus {
color: #ccc; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active:after {
content: '';
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 8px;
margin: 0 auto;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #f2f2f2; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab span.lvca-icon-wrapper span, .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab span.lvca-image-wrapper img {
margin: 0 auto; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab span.lvca-tab-title {
display: none; }
.lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #eeeeee; }
.lvca-tabs.lvca-style3 .lvca-tab-panes {
background: #f2f2f2;
border-radius: 0 0 5px 5px; }
.lvca-tabs.lvca-style3.lvca-mobile-layout .lvca-tab-nav {
-webkit-box-orient: horizontal;
box-orient: horizontal;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: row;
flex-direction: row;
-ms-flex-direction: row;
padding-right: 60px; }
.lvca-tabs.lvca-style3.lvca-mobile-layout.lvca-mobile-open .lvca-tab {
border-bottom: 1px solid #4e4f53; }
.lvca-dark-bg .lvca-tabs.lvca-style3.lvca-mobile-layout.lvca-mobile-open .lvca-tab {
border-bottom-color: #e5e5e5; }
.lvca-tabs.lvca-style3.lvca-mobile-layout.lvca-mobile-open .lvca-tab.lvca-active:after {
display: none; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav {
background: #fff; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab {
border-right: 1px solid #ececec; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a {
color: #969696; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab a:focus {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-nav .lvca-tab.lvca-active:after {
border-bottom: 8px solid #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes {
background: #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style3 .lvca-tab-panes .lvca-tab-pane h6 {
color: #333; } .lvca-tabs.lvca-style4 {
background: #f2f2f2;
border-radius: 5px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav {
border-bottom: 1px solid #dddddd;
margin: 0 40px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab {
position: relative;
z-index: 1;
margin-right: 20px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:last-child {
margin-right: 0; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab a {
color: #888;
padding: 30px 20px; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: transparent;
-webkit-transition: background .3s ease-in-out 0s;
transition: background .3s ease-in-out 0s; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:hover a {
color: #565656; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab.lvca-active:before {
background: #f94213;
height: 2px; }
.lvca-tabs.lvca-style4 .lvca-tab-pane {
padding: 40px; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav {
cursor: pointer;
padding: 0;
margin: 0;
border: none; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
margin: 0;
border-bottom: 1px solid #e0e0e0; }
.lvca-dark-bg .lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
border-left: 1px solid #404040;
border-right: 1px solid #404040;
border-bottom-color: #404040; }
.lvca-dark-bg .lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab:first-child {
border-top: 1px solid #404040; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab a {
padding: 20px 25px; }
.lvca-tabs.lvca-style4.lvca-mobile-layout .lvca-tab-nav .lvca-tab:before {
display: none; }
.lvca-tabs.lvca-style4.lvca-mobile-layout.lvca-mobile-open .lvca-tab.lvca-active {
border-left: 2px solid #f94213;
border-right: 2px solid #f94213; }
.lvca-dark-bg .lvca-tabs.lvca-style4.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active {
border-top: 1px solid #404040; }
.lvca-dark-bg .lvca-tabs.lvca-style4 {
background: transparent; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav {
margin: 0;
border-bottom: 1px solid #2a2a2a; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab a {
color: #707070; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab:hover a {
color: #b0b0b0; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #e5e5e5; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane {
padding: 40px 0 0;
color: #909090; }
.lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style4 .lvca-tab-pane h6 {
color: #e5e5e5; } .lvca-tabs.lvca-style5 .lvca-tab-nav a {
padding: 20px 50px;
color: #777;
position: relative;
z-index: 1; }
.lvca-tabs.lvca-style5 .lvca-tab-nav a:after {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
background-color: #e9e9e9;
content: '';
-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
-webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
transition: background-color 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, background-color 0.3s;
transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
-webkit-transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
transform: perspective(900px) rotate3d(1, 0, 0, 90deg);
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-perspective-origin: 50% 100%;
perspective-origin: 50% 100%; }
.lvca-tabs.lvca-style5 .lvca-tab-nav a:hover, .lvca-tabs.lvca-style5 .lvca-tab-nav a:focus {
color: #333; }
.lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab.lvca-active a:after {
background-color: #f2f2f2;
-webkit-transform: perspective(900px) rotate3d(1, 0, 0, 0deg);
transform: perspective(900px) rotate3d(1, 0, 0, 0deg); }
.lvca-tabs.lvca-style5 .lvca-tab-panes {
background: #f2f2f2; }
.lvca-tabs.lvca-style5.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
background: #f2f2f2;
border-bottom: 1px solid #e5e5e5; }
.lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab a {
color: #b0b0b0; }
.lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab a:focus {
color: #dddddd; }
.lvca-dark-bg .lvca-tabs.lvca-style5 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; } .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab {
text-align: left; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
padding: 5px 2px;
color: #666;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-top: 2px solid transparent;
border-bottom: 2px solid transparent;
display: inline-block; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a:focus, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a:focus {
color: #333333; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab.lvca-active a, .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab.lvca-active a {
border-color: #f94213;
color: #333; }
.lvca-tabs.lvca-style6 .lvca-tab-pane, .lvca-tabs.lvca-style7 .lvca-tab-pane {
padding: 40px 0 0; }
.lvca-tabs.lvca-style6 .lvca-tab-nav {
margin: 0 auto;
text-align: left; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab {
margin-right: 50px; }
.lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab:last-child {
margin-right: 0; }
.lvca-tabs.lvca-style6 .lvca-tab-pane {
padding: 40px 0 0; }
.lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab {
padding: 0 25px 0 0; }
.lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
max-width: none;
margin: 6px 0; }
@media only screen and (max-width: 479px) {
.lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
text-align: center; } }
.lvca-tabs.lvca-style7 .lvca-tab-panes {
-webkit-box-flex: 6;
box-flex: 6;
-moz-flex: 6 1 auto;
-ms-flex: 6 1 auto;
flex: 6 1 auto; }
.lvca-tabs.lvca-style7 .lvca-tab-panes .lvca-tab-pane {
padding: 0 0 0 20px; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-mobile-menu, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-mobile-menu {
top: 22px; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-nav .lvca-tab, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
padding: 12px 0;
width: 100%;
text-align: center; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-nav .lvca-tab a, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-nav .lvca-tab a {
margin: 0; }
.lvca-tabs.lvca-style6.lvca-mobile-layout .lvca-tab-pane, .lvca-tabs.lvca-style7.lvca-mobile-layout .lvca-tab-pane {
padding: 30px 0 0; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab a, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab a {
color: #b0b0b0; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab:hover a, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab:hover a {
color: #dddddd; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-nav .lvca-tab.lvca-active a, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #eaeaea; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane {
color: #909090; }
.lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style6 .lvca-tab-pane h6, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style7 .lvca-tab-pane h6 {
color: #e5e5e5; } .lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab {
margin: 2px 0; }
.lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab a {
padding: 15px 30px;
border-radius: 4px;
background: #f2f2f2;
color: #777777;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-left: 3px solid transparent;
text-align: left; }
.lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab a:focus {
color: #333333; }
.lvca-tabs.lvca-style8 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333;
border-left-color: #f94213; }
.lvca-tabs.lvca-style8 .lvca-tab-pane {
padding: 0 0 0 40px; }
.lvca-tabs.lvca-style8.lvca-mobile-layout .lvca-tab-mobile-menu {
top: 18px; }
.lvca-tabs.lvca-style8.lvca-mobile-layout .lvca-tab-nav .lvca-tab a {
text-align: left; }
.lvca-tabs.lvca-style8.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active a {
border-color: transparent !important; }
.lvca-tabs.lvca-style8.lvca-mobile-layout .lvca-tab-pane {
padding: 30px 0 0; }
.lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane {
color: #909090; }
.lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style8 .lvca-tab-pane h6 {
color: #e5e5e5; } .lvca-tabs.lvca-style9 {
background: #f2f2f2;
border-radius: 5px; }
.lvca-tabs.lvca-style9 .lvca-tab-nav {
border-right: 1px solid #dddddd; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab {
border-bottom: 1px solid #d8d8d8;
background: #e9e9e9; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab.lvca-active {
margin-right: -1px;
background: #f2f2f2; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab a {
padding: 20px 30px;
color: #777; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab a:focus {
color: #333; }
.lvca-tabs.lvca-style9 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-tabs.lvca-style9 .lvca-tab-panes {
-webkit-box-flex: 5;
box-flex: 5;
-moz-flex: 5 1 auto;
-ms-flex: 5 1 auto;
flex: 5 1 auto; }
.lvca-tabs.lvca-style9.lvca-mobile-layout .lvca-tab-nav {
border-right: none; }
.lvca-tabs.lvca-style9.lvca-mobile-layout:not(.lvca-mobile-open) .lvca-tab.lvca-active {
background: #eeeeee;
border: none; } .lvca-tabs.lvca-style10 .lvca-tab-nav {
background: #3c3d41;
border-radius: 5px 0 0 5px; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab {
position: relative;
border-bottom: 1px solid #4e4f53;
padding: 0; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab:last-child {
border-bottom: none; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a {
padding: 20px;
color: #8f8e93;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:hover, .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:focus {
color: #ccc; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active:after {
content: '';
display: block;
position: absolute;
top: 32px;
right: 0;
height: 8px;
margin: 0 auto;
border-top: 8px solid transparent;
border-right: 8px solid #f2f2f2;
border-bottom: 8px solid transparent; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab span.lvca-icon-wrapper span, .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab span.lvca-image-wrapper {
margin: 0 auto; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab span.lvca-tab-title {
display: none; }
.lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #fff; }
.lvca-tabs.lvca-style10 .lvca-tab-panes {
background: #f2f2f2;
border-radius: 0 5px 5px 0; }
.lvca-tabs.lvca-style10.lvca-mobile-layout {
-webkit-box-orient: horizontal;
box-orient: horizontal;
-webkit-box-direction: normal;
box-direction: normal;
-moz-flex-direction: row;
flex-direction: row;
-ms-flex-direction: row; }
.lvca-tabs.lvca-style10.lvca-mobile-layout .lvca-tab-mobile-menu {
display: none; }
.lvca-tabs.lvca-style10.lvca-mobile-layout .lvca-tab-nav .lvca-tab {
display: block; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav {
background: #fff; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab {
border-bottom: 1px solid #ececec; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab:last-child {
border-bottom: none; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a {
color: #969696; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:hover, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab a:focus {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active a {
color: #333; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-nav .lvca-tab.lvca-active:after {
border-right: 8px solid #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes {
background: #e7e7e7; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane {
color: #666; }
.lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h1, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h2, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h3, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h4, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h5, .lvca-dark-bg .lvca-tabs.lvca-style10 .lvca-tab-panes .lvca-tab-pane h6 {
color: #333; }.lvca-team-members .lvca-team-member .lvca-social-list {
margin-top: 20px; }
.lvca-team-members .lvca-team-member .lvca-social-list .lvca-social-list-item {
display: inline;
margin: 0 15px 0 0; }
.lvca-team-members .lvca-team-member .lvca-team-member-details {
font-size: 15px;
line-height: 24px; }
.lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-title {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px; }
.lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-team-member-position {
font-size: 15px;
line-height: 24px;
font-style: italic;
color: #888;
margin-bottom: 10px; } .lvca-team-members.lvca-style1 .lvca-team-member-wrapper {
float: left;
padding: 10px; }
.lvca-team-members.lvca-style1 .lvca-team-member {
max-width: 320px;
margin: 0 auto 40px; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper {
text-align: center;
position: relative; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper img {
max-width: 100%;
margin: 0 auto 30px;
border-radius: 50%;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list {
position: absolute;
height: 100%;
width: 100%;
top: 40%;
z-index: 2; }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list {
position: relative;
top: 0; } }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i {
font-size: 26px;
color: #fff;
opacity: 0;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i:hover {
color: #ccc; }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i {
color: inherit;
opacity: 1; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-image-wrapper .lvca-social-list i:hover {
color: inherit; } }
.lvca-team-members.lvca-style1 .lvca-team-member:hover .lvca-image-wrapper img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style1 .lvca-team-member:hover .lvca-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); } }
.lvca-team-members.lvca-style1 .lvca-team-member:hover .lvca-image-wrapper .lvca-social-list i {
opacity: 1; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-team-member-text {
text-align: center;
max-width: 650px; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-team-member-text .lvca-title {
margin-bottom: 10px; }
.lvca-team-members.lvca-style1 .lvca-team-member .lvca-social-list {
margin: 10px auto; } .lvca-team-members.lvca-style2 {
position: relative;
max-width: 960px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper {
clear: both;
margin-top: 100px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:first-child {
margin-top: 0; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-image-wrapper {
float: left;
position: relative; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-image-wrapper img {
max-width: 320px;
border-radius: 50%;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text {
margin: 10px 0 0;
vertical-align: middle;
padding-top: 20px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text .lvca-title {
margin-bottom: 5px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text .lvca-team-member-details {
margin: 10px 0 10px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper .lvca-team-member-text .lvca-social-list i {
font-size: 24px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:hover .lvca-image-wrapper img {
-webkit-filter: brightness(80%);
filter: brightness(80%); }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(odd) .lvca-image-wrapper {
margin-right: 50px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-image-wrapper {
float: right;
margin-left: 50px; }
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-title, .lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-team-member-position, .lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-team-member-details, .lvca-team-members.lvca-style2 .lvca-team-member-wrapper:nth-child(even) .lvca-team-member-text .lvca-social-list {
text-align: right; }
@media only screen and (max-width: 767px) {
.lvca-team-members.lvca-style2 .lvca-team-member-wrapper {
margin-top: 75px; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-image-wrapper, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text {
width: 100%;
float: none; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-image-wrapper {
text-align: center; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-image-wrapper img {
margin: 0 auto 20px; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text {
max-width: 400px;
margin: 0 auto;
padding-top: 0; }
.lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-title, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-team-member-position, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-team-member-details, .lvca-team-members.lvca-style2 .lvca-team-member .lvca-team-member-text .lvca-social-list {
text-align: center !important; } }
.lvca-dark-bg .lvca-team-members .lvca-team-member .lvca-team-member-details {
color: #909090; }
.lvca-dark-bg .lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-title {
color: #e5e5e5; }
.lvca-dark-bg .lvca-team-members .lvca-team-member .lvca-team-member-text .lvca-team-member-position {
color: #505050; }.lvca-testimonials .lvca-testimonial {
margin-bottom: 50px; }
.lvca-testimonials .lvca-testimonial-text {
background: #ffffff;
border: 1px solid #dbdbdb;
border-radius: 30px;
text-align: center;
position: relative;
padding: 20px;
margin-bottom: 40px;
font-style: italic;
font-size: 15px;
line-height: 24px;
color: #888;
text-align: center;
max-width: 450px; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-text {
color: #666;
background: #eee; }
.lvca-testimonials .lvca-testimonial-text:after {
content: '';
display: block;
background: #fff;
border-left: 1px solid #dbdbdb;
border-bottom: 1px solid #dbdbdb;
background: #ffffff;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
transform: skew(0deg, -44deg);
width: 24px;
height: 24px;
position: absolute;
bottom: -12px;
left: 40px;
margin: auto; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-text:after {
background: #eee; }
.lvca-testimonials .lvca-testimonial-user {
display: table; }
.lvca-testimonials .lvca-testimonial-user .lvca-image-wrapper {
display: table-cell; }
.lvca-testimonials .lvca-testimonial-user .lvca-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 20px; }
.lvca-testimonials .lvca-testimonial-user .lvca-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-user .lvca-text {
color: #909090; }
.lvca-testimonials .lvca-testimonial-user .lvca-text .lvca-author-name {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 15px;
line-height: 24px;
margin-bottom: 5px;
color: #333; }
.lvca-dark-bg .lvca-testimonials .lvca-testimonial-user .lvca-text .lvca-author-name {
color: #e5e5e5; }.lvca-flex-container a:hover,
.lvca-flex-slider a:hover {
outline: none;
}
.lvca-slides,
.lvca-slides > li,
.lvca-flex-control-nav,
.lvca-flex-direction-nav {
margin: 0;
padding: 0;
list-style: none;
}
.lvca-flex-pauseplay span {
text-transform: capitalize;
} .lvca-flexslider {
margin: 0;
padding: 0;
}
.lvca-flexslider .lvca-slides > li {
display: none;
-webkit-backface-visibility: hidden;
}
.lvca-flexslider .lvca-slides img {
width: 100%;
display: block;
}
html[xmlns] .lvca-flexslider .lvca-slides {
display: block;
}
* html .lvca-flexslider .lvca-slides {
height: 1%;
}
.no-js .lvca-flexslider .lvca-slides > li:first-child {
display: block;
} .lvca-flexslider {
margin: 0;
position: relative;
zoom: 1;
}
.lvca-flexslider .lvca-slides {
zoom: 1;
overflow: hidden;
}
.lvca-flexslider .lvca-slides img {
height: auto;
-moz-user-select: none;
}
.lvca-flex-viewport {
max-height: 2000px;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.loading .lvca-flex-viewport {
max-height: 300px;
}
.carousel li {
margin-right: 5px;
}
.lvca-flex-direction-nav {
*height: 0;
}
.lvca-flex-direction-nav a {
text-decoration: none;
display: block;
width: 40px;
height: 40px;
margin: -20px 0 0;
position: absolute;
top: 50%;
z-index: 10;
overflow: hidden;
opacity: 0;
cursor: pointer;
color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
a.lvca-flex-prev { font-size: 40px;  color: rgba(0, 0, 0, 0.8);
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.lvca-flex-direction-nav a.lvca-flex-next:before {
content: '\f002';
}
.lvca-flex-direction-nav .lvca-flex-prev {
left: -50px;
}
.lvca-flex-direction-nav .lvca-flex-next {
right: -50px;
text-align: right;
}
.lvca-flex-direction-nav .lvca-flex-disabled {
opacity: 0!important;
filter: alpha(opacity=0);
cursor: default;
z-index: -1;
}
.lvca-flex-pauseplay a {
display: block;
width: 20px;
height: 20px;
position: absolute;
bottom: 5px;
left: 10px;
opacity: 0.8;
z-index: 10;
overflow: hidden;
cursor: pointer;
color: #000;
}
.lvca-flex-pauseplay a:before {
font-family: "flexslider-icon";
font-size: 20px;
display: inline-block;
content: '\f004';
}
.lvca-flex-pauseplay a:hover {
opacity: 1;
}
.lvca-flex-pauseplay a.lvca-flex-play:before {
content: '\f003';
}
.lvca-flex-control-nav {
width: 100%;
position: absolute;
bottom: -40px;
text-align: center;
}
.lvca-flex-control-nav li {
margin: 0 6px;
display: inline-block;
zoom: 1;
*display: inline;
}
.lvca-flex-control-paging li a {
width: 11px;
height: 11px;
display: block;
background: #666;
background: rgba(0, 0, 0, 0.5);
cursor: pointer;
text-indent: -9999px;
-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
-o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
border-radius: 20px;
}
.lvca-flex-control-paging li a:hover {
background: #333;
background: rgba(0, 0, 0, 0.7);
}
.lvca-flex-control-paging li a.lvca-flex-active {
background: #000;
background: rgba(0, 0, 0, 0.9);
cursor: default;
}
.lvca-flex-control-thumbs {
margin: 5px 0 0;
position: static;
overflow: hidden;
}
.lvca-flex-control-thumbs li {
width: 25%;
float: left;
margin: 0;
}
.lvca-flex-control-thumbs img {
width: 100%;
height: auto;
display: block;
opacity: .7;
cursor: pointer;
-moz-user-select: none;
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.lvca-flex-control-thumbs img:hover {
opacity: 1;
}
.lvca-flex-control-thumbs .lvca-flex-active {
opacity: 1;
cursor: default;
} @media screen and (max-width: 860px) {
.lvca-flex-direction-nav .lvca-flex-prev {
opacity: 1;
left: 10px;
}
.lvca-flex-direction-nav .lvca-flex-next {
opacity: 1;
right: 10px;
}
}.lvca-testimonials-slider {
position: relative; }
.lvca-testimonials-slider.lvca-container {
max-width: 900px;
margin: 0 auto; }
.lvca-testimonials-slider .lvca-testimonial-text {
text-align: center;
max-width: 750px;
margin: 0 auto 40px;
font-size: 18px;
line-height: 32px;
font-style: italic;
color: #666; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-text {
color: #ccc; }
.lvca-testimonials-slider .lvca-testimonial-text i {
color: #ccc;
font-size: 32px;
display: block;
margin-bottom: 35px;
background: none;
width: auto;
height: auto; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-text i {
color: #ddd; }
.lvca-testimonials-slider .lvca-testimonial-user {
display: table;
margin: 0 auto; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-image-wrapper {
display: table-cell; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-image-wrapper img {
max-width: 64px;
border-radius: 50%;
margin-right: 15px; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-text {
display: table-cell;
vertical-align: middle;
color: #888; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-user .lvca-text {
color: #909090; }
.lvca-testimonials-slider .lvca-testimonial-user .lvca-text .lvca-author-name {
font-size: 18px;
line-height: 26px;
letter-spacing: 1px;
font-weight: bold;
color: #333;
text-transform: uppercase;
clear: none;
margin-top: 0;
margin-bottom: 10px;
font-size: 15px;
line-height: 24px;
margin-bottom: 5px; }
.lvca-dark-bg .lvca-testimonials-slider .lvca-testimonial-user .lvca-text .lvca-author-name {
color: #e5e5e5; }

.lvca-portfolio-wrap {
clear: both;
overflow: hidden; }
.lvca-portfolio-wrap .lvca-portfolio-header {
position: relative;
max-width: 1140px;
margin: 0 auto 30px;
overflow: hidden;
clear: both;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between; }
.lvca-portfolio-wrap .lvca-portfolio-header.lvca-no-heading {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center; }
@media only screen and (max-width: 800px) {
.lvca-portfolio-wrap .lvca-portfolio-header {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-flow: column wrap;
flex-flow: column wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start; } }
.lvca-portfolio-wrap .lvca-heading {
display: inline-block;
text-align: left;
max-width: none;
font-size: 32px;
line-height: 44px;
text-transform: uppercase;
letter-spacing: 1px;
color: #333;
margin: 0 100px 0 0; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-heading {
color: #e5e5e5; }
@media only screen and (max-width: 800px) {
.lvca-portfolio-wrap .lvca-heading {
margin-bottom: 30px; } }
.lvca-portfolio-wrap .lvca-taxonomy-filter {
display: block;
margin: 0;
padding: 0;
-webkit-align-self: center;
align-self: center;
-ms-flex-item-align: center; }
@media only screen and (max-width: 800px) {
.lvca-portfolio-wrap .lvca-taxonomy-filter {
-webkit-align-self: flex-start;
align-self: flex-start;
-ms-flex-item-align: start; } }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item {
position: relative;
display: inline-block;
margin: 0 0 15px 0;
padding: 0;
font-style: normal;
border-bottom: 1px solid #ddd; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item {
border-color: #444; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a {
font-size: 15px;
line-height: 24px;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
display: block;
color: #777;
padding: 0 15px 15px; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a {
color: #999; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a:hover {
color: #222; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a:hover {
color: #fff; }
@media only screen and (max-width: 479px) {
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item a {
padding: 0 10px 8px; } }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item.lvca-active a {
color: #222; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item.lvca-active a {
color: #fff; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item.lvca-active:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
border-bottom: 3px solid #f94213;
width: 100%; }
.lvca-portfolio-wrap .lvca-taxonomy-filter .lvca-filter-item:last-child {
margin-right: 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .hentry {
margin: 0;
padding: 0;
border: none;
background: none;
-webkit-box-shadow: none;
box-shadow: none; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image {
position: relative;
overflow: hidden; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image img {
display: block;
width: 100%;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image:hover img {
-webkit-filter: brightness(50%);
filter: brightness(50%); }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info {
display: block;
text-align: center; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-entry-info {
text-align: center;
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
margin: auto;
max-width: 100%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%); }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title {
padding: 10px;
margin: 0;
font-size: 18px;
line-height: 28px;
font-weight: 400;
color: #fff;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
@media only screen and (max-width: 1024px) {
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title {
font-size: 18px;
line-height: 26px; } }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title a {
display: inline;
color: #fff;
-webkit-transition: all .3s ease-in-out 0s;
transition: all .3s ease-in-out 0s;
border-bottom: 1px solid transparent; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-post-title a:hover {
border-bottom: 1px solid #ccc; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-terms {
display: block;
color: #f9f9f9;
font-size: 14px;
line-height: 22px;
opacity: 0;
-webkit-transition: opacity .4s ease-in-out 0s;
transition: opacity .4s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-terms a {
color: #ddd;
position: relative;
display: inline;
zoom: 1;
font-size: 14px;
line-height: 22px;
font-style: italic;
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image .lvca-image-info .lvca-terms a:hover {
color: #fff; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image:hover .lvca-image-info .lvca-post-title, .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-project-image:hover .lvca-image-info .lvca-terms {
opacity: 1; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-text-wrap {
text-align: center;
max-width: 650px;
margin: 20px auto 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title {
font-size: 18px;
line-height: 26px;
font-weight: normal;
margin-bottom: 10px; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title:after, .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title:before {
display: none; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a {
-webkit-transition: all .4s ease-in-out 0s;
transition: all .4s ease-in-out 0s;
color: #333; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a:hover {
color: #888; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a {
color: #e0e0e0; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-title a:hover {
color: #fff; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span {
display: inline-block;
padding: 0;
margin: 0;
font-style: italic;
color: #999; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span:after {
content: '//';
padding-left: 6px;
padding-right: 6px; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span:first-child {
border: none;
padding-left: 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span:last-child:after {
display: none; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span a {
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
font-style: normal; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-entry-meta span {
color: #707070; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary {
margin: 15px auto 0;
padding: 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary:before {
width: 35px;
height: 1px;
background: #aaa;
display: block;
content: "";
text-align: center;
margin: 0 auto 15px; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary {
color: #999; }
.lvca-dark-bg .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .entry-summary:before {
background: #505050; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more {
margin: 25px 0 0 0; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button) {
color: #333;
font-size: 12px;
line-height: 1;
font-weight: 600;
text-transform: uppercase;
display: block;
padding: 0;
-webkit-transition: color 0.3s ease-in-out 0s;
transition: color 0.3s ease-in-out 0s; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button):hover {
color: #666; }
.lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button):after {
content: '›';
display: inline-block;
margin-left: 7px; }
.rtl .lvca-portfolio-wrap .lvca-portfolio .lvca-portfolio-item .lvca-read-more a:not(.lvca-button):after {
margin: 0 7px 0 0; }:root{--blue: #007bff;--indigo: #6610f2;--purple: #6f42c1;--pink: #e83e8c;--red: #dc3545;--orange: #fd7e14;--yellow: #ffc107;--green: #28a745;--teal: #20c997;--cyan: #17a2b8;--white: #fff;--gray: #6c757d;--gray-dark: #343a40;--primary: #007bff;--secondary: #6c757d;--success: #28a745;--info: #17a2b8;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #343a40;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{-webkit-box-sizing:border-box;box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role="button"]{cursor:pointer}select{word-wrap:normal}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button:not(:disabled),[type="button"]:not(:disabled),[type="reset"]:not(:disabled),[type="submit"]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{padding:0;border-style:none}input[type="radio"],input[type="checkbox"]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px;-webkit-appearance:none}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:.5rem;font-weight:500;line-height:1.2}h1,.h1{font-size:2.5rem}h2,.h2{font-size:2rem}h3,.h3{font-size:1.75rem}h4,.h4{font-size:1.5rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,0.1)}small,.small{font-size:80%;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014\00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-sm,.container-md,.container-lg,.container-xl{width:100%;padding-right:8px;padding-left:8px;margin-right:auto;margin-left:auto}@media (min-width: 576px){.container,.container-sm{max-width:540px}}@media (min-width: 768px){.container,.container-sm,.container-md{max-width:720px}}@media (min-width: 992px){.container,.container-sm,.container-md,.container-lg{max-width:960px}}@media (min-width: 1200px){.container,.container-sm,.container-md,.container-lg,.container-xl{max-width:1186px}}.row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-8px;margin-left:-8px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*="col-"]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;padding-right:8px;padding-left:8px}.col{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-1{margin-left:8.33333%}.offset-2{margin-left:16.66667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333%}.offset-5{margin-left:41.66667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333%}.offset-8{margin-left:66.66667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333%}.offset-11{margin-left:91.66667%}@media (min-width: 576px){.col-sm{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-sm-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-sm-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-sm-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-sm-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-sm-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-sm-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-sm-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-sm-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-sm-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-sm-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-sm-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-sm-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-sm-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-sm-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-sm-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-sm-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-sm-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-sm-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-sm-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-sm-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-sm-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-sm-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-sm-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-sm-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-sm-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-sm-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-sm-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-sm-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333%}.offset-sm-2{margin-left:16.66667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333%}.offset-sm-5{margin-left:41.66667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333%}.offset-sm-8{margin-left:66.66667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333%}.offset-sm-11{margin-left:91.66667%}}@media (min-width: 768px){.col-md{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-md-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-md-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-md-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-md-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-md-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-md-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-md-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-md-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-md-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-md-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-md-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-md-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-md-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-md-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-md-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-md-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-md-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-md-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-md-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-md-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-md-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-md-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-md-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-md-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-md-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-md-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-md-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-md-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-md-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-md-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-md-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-md-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-md-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333%}.offset-md-2{margin-left:16.66667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333%}.offset-md-5{margin-left:41.66667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333%}.offset-md-8{margin-left:66.66667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333%}.offset-md-11{margin-left:91.66667%}}@media (min-width: 992px){.col-lg{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-lg-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-lg-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-lg-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-lg-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-lg-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-lg-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-lg-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-lg-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-lg-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-lg-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-lg-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-lg-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-lg-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-lg-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-lg-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-lg-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-lg-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-lg-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-lg-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-lg-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-lg-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-lg-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-lg-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-lg-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-lg-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-lg-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-lg-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-lg-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333%}.offset-lg-2{margin-left:16.66667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333%}.offset-lg-5{margin-left:41.66667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333%}.offset-lg-8{margin-left:66.66667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333%}.offset-lg-11{margin-left:91.66667%}}@media (min-width: 1200px){.col-xl{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;max-width:100%}.row-cols-xl-1>*{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.row-cols-xl-4>*{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-auto{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{-webkit-box-flex:0;-ms-flex:0 0 8.33333%;flex:0 0 8.33333%;max-width:8.33333%}.col-xl-2{-webkit-box-flex:0;-ms-flex:0 0 16.66667%;flex:0 0 16.66667%;max-width:16.66667%}.col-xl-3{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.col-xl-4{-webkit-box-flex:0;-ms-flex:0 0 33.33333%;flex:0 0 33.33333%;max-width:33.33333%}.col-xl-5{-webkit-box-flex:0;-ms-flex:0 0 41.66667%;flex:0 0 41.66667%;max-width:41.66667%}.col-xl-6{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.col-xl-7{-webkit-box-flex:0;-ms-flex:0 0 58.33333%;flex:0 0 58.33333%;max-width:58.33333%}.col-xl-8{-webkit-box-flex:0;-ms-flex:0 0 66.66667%;flex:0 0 66.66667%;max-width:66.66667%}.col-xl-9{-webkit-box-flex:0;-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.col-xl-10{-webkit-box-flex:0;-ms-flex:0 0 83.33333%;flex:0 0 83.33333%;max-width:83.33333%}.col-xl-11{-webkit-box-flex:0;-ms-flex:0 0 91.66667%;flex:0 0 91.66667%;max-width:91.66667%}.col-xl-12{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.order-xl-first{-webkit-box-ordinal-group:0;-ms-flex-order:-1;order:-1}.order-xl-last{-webkit-box-ordinal-group:14;-ms-flex-order:13;order:13}.order-xl-0{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.order-xl-1{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.order-xl-2{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.order-xl-3{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.order-xl-4{-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}.order-xl-5{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}.order-xl-6{-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}.order-xl-7{-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}.order-xl-8{-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}.order-xl-9{-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}.order-xl-10{-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}.order-xl-11{-webkit-box-ordinal-group:12;-ms-flex-order:11;order:11}.order-xl-12{-webkit-box-ordinal-group:13;-ms-flex-order:12;order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333%}.offset-xl-2{margin-left:16.66667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333%}.offset-xl-5{margin-left:41.66667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333%}.offset-xl-8{margin-left:66.66667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333%}.offset-xl-11{margin-left:91.66667%}}.table{width:100%;margin-bottom:1rem;color:#212529}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,0.05)}.table-hover tbody tr:hover{color:#212529;background-color:rgba(0,0,0,0.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#b8daff}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#7abaff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d6d8db}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#b3b7bb}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#bee5eb}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#86cfda}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#c6c8ca}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#95999c}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,0.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,0.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,0.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,0.075)}@media (max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media (max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media (max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media (max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;-webkit-transition:border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.form-control{-webkit-transition:none;transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,0.25);box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::-ms-input-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{-webkit-appearance:none;-moz-appearance:none;appearance:none}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;font-size:1rem;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*="col-"]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input[disabled] ~ .form-check-label,.form-check-input:disabled ~ .form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(40,167,69,0.9);border-radius:.25rem}.was-validated :valid ~ .valid-feedback,.was-validated :valid ~ .valid-tooltip,.is-valid ~ .valid-feedback,.is-valid ~ .valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,0.25);box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,0.25);box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.was-validated .form-check-input:valid ~ .form-check-label,.form-check-input.is-valid ~ .form-check-label{color:#28a745}.was-validated .form-check-input:valid ~ .valid-feedback,.was-validated .form-check-input:valid ~ .valid-tooltip,.form-check-input.is-valid ~ .valid-feedback,.form-check-input.is-valid ~ .valid-tooltip{display:block}.was-validated .custom-control-input:valid ~ .custom-control-label,.custom-control-input.is-valid ~ .custom-control-label{color:#28a745}.was-validated .custom-control-input:valid ~ .custom-control-label::before,.custom-control-input.is-valid ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,.custom-control-input.is-valid:checked ~ .custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,.custom-control-input.is-valid:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,0.25);box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid ~ .custom-file-label,.custom-file-input.is-valid ~ .custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid:focus ~ .custom-file-label,.custom-file-input.is-valid:focus ~ .custom-file-label{border-color:#28a745;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,0.25);box-shadow:0 0 0 .2rem rgba(40,167,69,0.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;line-height:1.5;color:#fff;background-color:rgba(220,53,69,0.9);border-radius:.25rem}.was-validated :invalid ~ .invalid-feedback,.was-validated :invalid ~ .invalid-tooltip,.is-invalid ~ .invalid-feedback,.is-invalid ~ .invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,0.25);box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc(.75em + 2.3125rem);background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px,url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem)}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,0.25);box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .form-check-input:invalid ~ .form-check-label,.form-check-input.is-invalid ~ .form-check-label{color:#dc3545}.was-validated .form-check-input:invalid ~ .invalid-feedback,.was-validated .form-check-input:invalid ~ .invalid-tooltip,.form-check-input.is-invalid ~ .invalid-feedback,.form-check-input.is-invalid ~ .invalid-tooltip{display:block}.was-validated .custom-control-input:invalid ~ .custom-control-label,.custom-control-input.is-invalid ~ .custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid ~ .custom-control-label::before,.custom-control-input.is-invalid ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,.custom-control-input.is-invalid:checked ~ .custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,.custom-control-input.is-invalid:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,0.25);box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid ~ .custom-file-label,.custom-file-input.is-invalid ~ .custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,.custom-file-input.is-invalid:focus ~ .custom-file-label{border-color:#dc3545;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,0.25);box-shadow:0 0 0 .2rem rgba(220,53,69,0.25)}.form-inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.form-inline .form-check{width:100%}@media (min-width: 576px){.form-inline label{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;-ms-flex-negative:0;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;-webkit-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.btn{-webkit-transition:none;transition:none}}.btn:hover{color:#212529;text-decoration:none}.btn:focus,.btn.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,0.25);box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#0069d9;border-color:#0062cc;-webkit-box-shadow:0 0 0 .2rem rgba(38,143,255,0.5);box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(38,143,255,0.5);box-shadow:0 0 0 .2rem rgba(38,143,255,0.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary:focus,.btn-secondary.focus{color:#fff;background-color:#5a6268;border-color:#545b62;-webkit-box-shadow:0 0 0 .2rem rgba(130,138,145,0.5);box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(130,138,145,0.5);box-shadow:0 0 0 .2rem rgba(130,138,145,0.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#218838;border-color:#1e7e34;-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,0.5);box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,.show>.btn-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(72,180,97,0.5);box-shadow:0 0 0 .2rem rgba(72,180,97,0.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#138496;border-color:#117a8b;-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,0.5);box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,.show>.btn-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(58,176,195,0.5);box-shadow:0 0 0 .2rem rgba(58,176,195,0.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;-webkit-box-shadow:0 0 0 .2rem rgba(222,170,12,0.5);box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(222,170,12,0.5);box-shadow:0 0 0 .2rem rgba(222,170,12,0.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;-webkit-box-shadow:0 0 0 .2rem rgba(225,83,97,0.5);box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(225,83,97,0.5);box-shadow:0 0 0 .2rem rgba(225,83,97,0.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;-webkit-box-shadow:0 0 0 .2rem rgba(216,217,219,0.5);box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,.show>.btn-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(216,217,219,0.5);box-shadow:0 0 0 .2rem rgba(216,217,219,0.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#23272b;border-color:#1d2124;-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,0.5);box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(82,88,93,0.5);box-shadow:0 0 0 .2rem rgba(82,88,93,0.5)}.btn-outline-primary{color:#007bff;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:focus,.btn-outline-primary.focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,0.5);box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,0.5);box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:focus,.btn-outline-secondary.focus{-webkit-box-shadow:0 0 0 .2rem rgba(108,117,125,0.5);box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(108,117,125,0.5);box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,0.5);box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-success.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,0.5);box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.btn-outline-info{color:#17a2b8;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:focus,.btn-outline-info.focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,0.5);box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-info.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,0.5);box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,0.5);box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,0.5);box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,0.5);box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,0.5);box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,0.5);box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-light.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,0.5);box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.btn-outline-dark{color:#343a40;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:focus,.btn-outline-dark.focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,0.5);box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,0.5);box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.btn-link{font-weight:400;color:#007bff;text-decoration:none}.btn-link:hover{color:#0056b3;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-sm,.btn-group-sm>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{-webkit-transition:opacity 0.15s linear;transition:opacity 0.15s linear}@media (prefers-reduced-motion: reduce){.fade{-webkit-transition:none;transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;transition:height 0.35s ease}@media (prefers-reduced-motion: reduce){.collapsing{-webkit-transition:none;transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media (min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media (min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media (min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media (min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}.dropup .dropdown-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^="top"],.dropdown-menu[x-placement^="right"],.dropdown-menu[x-placement^="bottom"],.dropdown-menu[x-placement^="left"]{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,.dropdown-item:focus{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active{z-index:1}.btn-toolbar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type="radio"],.btn-group-toggle>.btn input[type="checkbox"],.btn-group-toggle>.btn-group>.btn input[type="radio"],.btn-group-toggle>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus ~ .custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:last-child),.input-group>.custom-select:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-prepend,.input-group-append{display:-webkit-box;display:-ms-flexbox;display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type="radio"],.input-group-text input[type="checkbox"]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.5em + 1rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.5em + .5rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.75rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.5rem;padding-left:1.5rem;-webkit-print-color-adjust:exact;color-adjust:exact}.custom-control-inline{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.25rem;opacity:0}.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff}.custom-control-input:focus ~ .custom-control-label::before{-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,0.25);box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#80bdff}.custom-control-input:not(:disabled):active ~ .custom-control-label::before{color:#fff;background-color:#b3d7ff;border-color:#b3d7ff}.custom-control-input[disabled] ~ .custom-control-label,.custom-control-input:disabled ~ .custom-control-label{color:#6c757d}.custom-control-input[disabled] ~ .custom-control-label::before,.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px}.custom-control-label::after{position:absolute;top:.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50% / 50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#007bff;background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(.25rem + 2px);left:calc(-2.25rem + 2px);width:calc(1rem - 4px);height:calc(1rem - 4px);background-color:#adb5bd;border-radius:.5rem;-webkit-transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-transform 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-transform 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;transition:transform 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-transform 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-switch .custom-control-label::after{-webkit-transition:none;transition:none}}.custom-switch .custom-control-input:checked ~ .custom-control-label::after{background-color:#fff;-webkit-transform:translateX(.75rem);transform:translateX(.75rem)}.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0,123,255,0.5)}.custom-select{display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem 1.75rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,0.25);box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #495057}.custom-select-sm{height:calc(1.5em + .5rem + 2px);padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.custom-select-lg{height:calc(1.5em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.5em + .75rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.5em + .75rem + 2px);margin:0;opacity:0}.custom-file-input:focus ~ .custom-file-label{border-color:#80bdff;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,0.25);box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.custom-file-input[disabled] ~ .custom-file-label,.custom-file-input:disabled ~ .custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en) ~ .custom-file-label::after{content:"Browse"}.custom-file-input ~ .custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.5em + .75rem);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 .25rem .25rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.custom-range:focus{outline:none}.custom-range:focus::-webkit-slider-thumb{-webkit-box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25);box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,0.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#b3d7ff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-moz-range-thumb{-webkit-transition:none;transition:none}}.custom-range::-moz-range-thumb:active{background-color:#b3d7ff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#007bff;border:0;border-radius:1rem;-webkit-transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;appearance:none}@media (prefers-reduced-motion: reduce){.custom-range::-ms-thumb{-webkit-transition:none;transition:none}}.custom-range::-ms-thumb:active{background-color:#b3d7ff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;transition:background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.custom-control-label::before,.custom-file-label,.custom-select{-webkit-transition:none;transition:none}}.nav{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill>.nav-link,.nav-fill .nav-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{-ms-flex-preferred-size:100%;flex-basis:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 576px){.navbar-expand-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-sm .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media (max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 768px){.navbar-expand-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-md .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media (max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 992px){.navbar-expand-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media (max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{padding-right:0;padding-left:0}}@media (min-width: 1200px){.navbar-expand-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand-xl .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}.navbar-expand{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-ms-flex-preferred-size:auto;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,0.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,0.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,0.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,0.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,0.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active{color:rgba(0,0,0,0.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,0.5);border-color:rgba(0,0,0,0.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,0.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,0.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,0.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,0.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,0.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,0.5);border-color:rgba(255,255,255,0.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,0.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.card{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,0.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,0.03);border-bottom:1px solid rgba(0,0,0,0.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,0.03);border-top:1px solid rgba(0,0,0,0.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{-ms-flex-negative:0;flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck .card{margin-bottom:8px}@media (min-width: 576px){.card-deck{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-right:-8px;margin-left:-8px}.card-deck .card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-right:8px;margin-bottom:0;margin-left:8px}}.card-group>.card{margin-bottom:8px}@media (min-width: 576px){.card-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.card-group>.card{-webkit-box-flex:1;-ms-flex:1 0 0%;flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width: 576px){.card-columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;-webkit-column-gap:1.25rem;-moz-column-gap:1.25rem;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item{display:-webkit-box;display:-ms-flexbox;display:flex}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,0.25);box-shadow:0 0 0 .2rem rgba(0,123,255,0.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:3;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem;-webkit-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out}@media (prefers-reduced-motion: reduce){.badge{-webkit-transition:none;transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#0062cc}a.badge-primary:focus,a.badge-primary.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(0,123,255,0.5);box-shadow:0 0 0 .2rem rgba(0,123,255,0.5)}.badge-secondary{color:#fff;background-color:#6c757d}a.badge-secondary:hover,a.badge-secondary:focus{color:#fff;background-color:#545b62}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(108,117,125,0.5);box-shadow:0 0 0 .2rem rgba(108,117,125,0.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(40,167,69,0.5);box-shadow:0 0 0 .2rem rgba(40,167,69,0.5)}.badge-info{color:#fff;background-color:#17a2b8}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#117a8b}a.badge-info:focus,a.badge-info.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(23,162,184,0.5);box-shadow:0 0 0 .2rem rgba(23,162,184,0.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#212529;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(255,193,7,0.5);box-shadow:0 0 0 .2rem rgba(255,193,7,0.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(220,53,69,0.5);box-shadow:0 0 0 .2rem rgba(220,53,69,0.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#dae0e5}a.badge-light:focus,a.badge-light.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(248,249,250,0.5);box-shadow:0 0 0 .2rem rgba(248,249,250,0.5)}.badge-dark{color:#fff;background-color:#343a40}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#1d2124}a.badge-dark:focus,a.badge-dark.focus{outline:0;-webkit-box-shadow:0 0 0 .2rem rgba(52,58,64,0.5);box-shadow:0 0 0 .2rem rgba(52,58,64,0.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@-webkit-keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:-webkit-box;display:-ms-flexbox;display:flex;height:1rem;overflow:hidden;line-height:0;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#007bff;-webkit-transition:width 0.6s ease;transition:width 0.6s ease}@media (prefers-reduced-motion: reduce){.progress-bar{-webkit-transition:none;transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:progress-bar-stripes 1s linear infinite;animation:progress-bar-stripes 1s linear infinite}@media (prefers-reduced-motion: reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.media{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.media-body{-webkit-box-flex:1;-ms-flex:1;flex:1}.list-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;background-color:#fff;border:1px solid rgba(0,0,0,0.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width: 576px){.list-group-horizontal-sm{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 768px){.list-group-horizontal-md{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 992px){.list-group-horizontal-lg{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width: 1200px){.list-group-horizontal-xl{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{-ms-flex-preferred-size:350px;flex-basis:350px;max-width:350px;font-size:.875rem;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border:1px solid rgba(0,0,0,0.1);-webkit-box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);box-shadow:0 0.25rem 0.75rem rgba(0,0,0,0.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,0.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,0.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform 0.3s ease-out;transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px)}@media (prefers-reduced-motion: reduce){.modal.fade .modal-dialog{-webkit-transition:none;transition:none}}.modal.show .modal-dialog{-webkit-transform:none;transform:none}.modal.modal-static .modal-dialog{-webkit-transform:scale(1.02);transform:scale(1.02)}.modal-dialog-scrollable{display:-webkit-box;display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:-webkit-min-content;height:-moz-min-content;height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.modal-content{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem}.modal-footer{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:-webkit-min-content;height:-moz-min-content;height:min-content}.modal-sm{max-width:300px}}@media (min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.bs-tooltip-auto[x-placement^="top"]{padding:.4rem 0}.bs-tooltip-top .arrow,.bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.bs-tooltip-auto[x-placement^="right"]{padding:0 .4rem}.bs-tooltip-right .arrow,.bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.bs-tooltip-auto[x-placement^="bottom"]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.bs-tooltip-auto[x-placement^="left"]{padding:0 .4rem}.bs-tooltip-left .arrow,.bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,0.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.bs-popover-auto[x-placement^="top"]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^="top"]>.arrow{bottom:calc(-.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^="top"]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,0.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^="top"]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.bs-popover-auto[x-placement^="right"]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^="right"]>.arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^="right"]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,0.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^="right"]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.bs-popover-auto[x-placement^="bottom"]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^="bottom"]>.arrow{top:calc(-.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^="bottom"]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,0.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^="bottom"]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.bs-popover-auto[x-placement^="left"]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^="left"]>.arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^="left"]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,0.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^="left"]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:-webkit-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out, -webkit-transform .6s ease-in-out}@media (prefers-reduced-motion: reduce){.carousel-item{-webkit-transition:none;transition:none}}.carousel-item.active,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transform:none;transform:none}.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;-webkit-transition:opacity 0s .6s;transition:opacity 0s .6s}@media (prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right{-webkit-transition:none;transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5;-webkit-transition:opacity 0.15s ease;transition:opacity 0.15s ease}@media (prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{-webkit-transition:none;transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50% / 100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;-webkit-transition:opacity 0.6s ease;transition:opacity 0.6s ease}@media (prefers-reduced-motion: reduce){.carousel-indicators li{-webkit-transition:none;transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1;-webkit-transform:none;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite}.spinner-grow-sm{width:1rem;height:1rem}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#007bff !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#0062cc !important}.bg-secondary{background-color:#6c757d !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#545b62 !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#17a2b8 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#117a8b !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#f8f9fa !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5 !important}.bg-dark{background-color:#343a40 !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#1d2124 !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#007bff !important}.border-secondary{border-color:#6c757d !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#17a2b8 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#343a40 !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:.2rem !important}.rounded{border-radius:.25rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-lg{border-radius:.3rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}@media (min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-sm-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-md-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-lg-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media (min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-xl-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important}.d-print-inline-flex{display:-webkit-inline-box !important;display:-ms-inline-flexbox !important;display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.85714%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}@media (min-width: 576px){.flex-sm-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-sm-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-sm-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-sm-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-sm-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-sm-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-sm-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-sm-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-sm-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-sm-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-sm-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-sm-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-sm-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-sm-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-sm-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-sm-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-sm-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-sm-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-sm-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-sm-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-sm-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-sm-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-sm-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-sm-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-sm-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-sm-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-sm-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-sm-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-sm-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-sm-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-sm-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-sm-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-sm-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-sm-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 768px){.flex-md-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-md-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-md-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-md-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-md-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-md-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-md-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-md-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-md-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-md-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-md-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-md-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-md-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-md-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-md-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-md-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-md-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-md-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-md-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-md-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-md-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-md-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-md-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-md-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-md-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-md-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-md-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-md-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-md-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-md-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-md-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-md-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-md-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-md-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 992px){.flex-lg-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-lg-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-lg-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-lg-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-lg-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-lg-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-lg-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-lg-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-lg-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-lg-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-lg-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-lg-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-lg-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-lg-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-lg-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-lg-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-lg-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-lg-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-lg-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-lg-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-lg-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-lg-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-lg-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-lg-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-lg-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-lg-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-lg-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-lg-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-lg-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-lg-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-lg-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-lg-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-lg-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-lg-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}@media (min-width: 1200px){.flex-xl-row{-webkit-box-orient:horizontal !important;-webkit-box-direction:normal !important;-ms-flex-direction:row !important;flex-direction:row !important}.flex-xl-column{-webkit-box-orient:vertical !important;-webkit-box-direction:normal !important;-ms-flex-direction:column !important;flex-direction:column !important}.flex-xl-row-reverse{-webkit-box-orient:horizontal !important;-webkit-box-direction:reverse !important;-ms-flex-direction:row-reverse !important;flex-direction:row-reverse !important}.flex-xl-column-reverse{-webkit-box-orient:vertical !important;-webkit-box-direction:reverse !important;-ms-flex-direction:column-reverse !important;flex-direction:column-reverse !important}.flex-xl-wrap{-ms-flex-wrap:wrap !important;flex-wrap:wrap !important}.flex-xl-nowrap{-ms-flex-wrap:nowrap !important;flex-wrap:nowrap !important}.flex-xl-wrap-reverse{-ms-flex-wrap:wrap-reverse !important;flex-wrap:wrap-reverse !important}.flex-xl-fill{-webkit-box-flex:1 !important;-ms-flex:1 1 auto !important;flex:1 1 auto !important}.flex-xl-grow-0{-webkit-box-flex:0 !important;-ms-flex-positive:0 !important;flex-grow:0 !important}.flex-xl-grow-1{-webkit-box-flex:1 !important;-ms-flex-positive:1 !important;flex-grow:1 !important}.flex-xl-shrink-0{-ms-flex-negative:0 !important;flex-shrink:0 !important}.flex-xl-shrink-1{-ms-flex-negative:1 !important;flex-shrink:1 !important}.justify-content-xl-start{-webkit-box-pack:start !important;-ms-flex-pack:start !important;justify-content:flex-start !important}.justify-content-xl-end{-webkit-box-pack:end !important;-ms-flex-pack:end !important;justify-content:flex-end !important}.justify-content-xl-center{-webkit-box-pack:center !important;-ms-flex-pack:center !important;justify-content:center !important}.justify-content-xl-between{-webkit-box-pack:justify !important;-ms-flex-pack:justify !important;justify-content:space-between !important}.justify-content-xl-around{-ms-flex-pack:distribute !important;justify-content:space-around !important}.align-items-xl-start{-webkit-box-align:start !important;-ms-flex-align:start !important;align-items:flex-start !important}.align-items-xl-end{-webkit-box-align:end !important;-ms-flex-align:end !important;align-items:flex-end !important}.align-items-xl-center{-webkit-box-align:center !important;-ms-flex-align:center !important;align-items:center !important}.align-items-xl-baseline{-webkit-box-align:baseline !important;-ms-flex-align:baseline !important;align-items:baseline !important}.align-items-xl-stretch{-webkit-box-align:stretch !important;-ms-flex-align:stretch !important;align-items:stretch !important}.align-content-xl-start{-ms-flex-line-pack:start !important;align-content:flex-start !important}.align-content-xl-end{-ms-flex-line-pack:end !important;align-content:flex-end !important}.align-content-xl-center{-ms-flex-line-pack:center !important;align-content:center !important}.align-content-xl-between{-ms-flex-line-pack:justify !important;align-content:space-between !important}.align-content-xl-around{-ms-flex-line-pack:distribute !important;align-content:space-around !important}.align-content-xl-stretch{-ms-flex-line-pack:stretch !important;align-content:stretch !important}.align-self-xl-auto{-ms-flex-item-align:auto !important;align-self:auto !important}.align-self-xl-start{-ms-flex-item-align:start !important;align-self:flex-start !important}.align-self-xl-end{-ms-flex-item-align:end !important;align-self:flex-end !important}.align-self-xl-center{-ms-flex-item-align:center !important;align-self:center !important}.align-self-xl-baseline{-ms-flex-item-align:baseline !important;align-self:baseline !important}.align-self-xl-stretch{-ms-flex-item-align:stretch !important;align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media (min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media (min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media (min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media (min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}.user-select-all{-webkit-user-select:all !important;-moz-user-select:all !important;-ms-user-select:all !important;user-select:all !important}.user-select-auto{-webkit-user-select:auto !important;-moz-user-select:auto !important;-ms-user-select:auto !important;user-select:auto !important}.user-select-none{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:-webkit-sticky !important;position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports ((position: -webkit-sticky) or (position: sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{-webkit-box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;box-shadow:0 0.125rem 0.25rem rgba(0,0,0,0.075) !important}.shadow{-webkit-box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important;box-shadow:0 0.5rem 1rem rgba(0,0,0,0.15) !important}.shadow-lg{-webkit-box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important;box-shadow:0 1rem 3rem rgba(0,0,0,0.175) !important}.shadow-none{-webkit-box-shadow:none !important;box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:.25rem !important}.mt-1,.my-1{margin-top:.25rem !important}.mr-1,.mx-1{margin-right:.25rem !important}.mb-1,.my-1{margin-bottom:.25rem !important}.ml-1,.mx-1{margin-left:.25rem !important}.m-2{margin:.5rem !important}.mt-2,.my-2{margin-top:.5rem !important}.mr-2,.mx-2{margin-right:.5rem !important}.mb-2,.my-2{margin-bottom:.5rem !important}.ml-2,.mx-2{margin-left:.5rem !important}.m-3{margin:1rem !important}.mt-3,.my-3{margin-top:1rem !important}.mr-3,.mx-3{margin-right:1rem !important}.mb-3,.my-3{margin-bottom:1rem !important}.ml-3,.mx-3{margin-left:1rem !important}.m-4{margin:1.5rem !important}.mt-4,.my-4{margin-top:1.5rem !important}.mr-4,.mx-4{margin-right:1.5rem !important}.mb-4,.my-4{margin-bottom:1.5rem !important}.ml-4,.mx-4{margin-left:1.5rem !important}.m-5{margin:3rem !important}.mt-5,.my-5{margin-top:3rem !important}.mr-5,.mx-5{margin-right:3rem !important}.mb-5,.my-5{margin-bottom:3rem !important}.ml-5,.mx-5{margin-left:3rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:.25rem !important}.pt-1,.py-1{padding-top:.25rem !important}.pr-1,.px-1{padding-right:.25rem !important}.pb-1,.py-1{padding-bottom:.25rem !important}.pl-1,.px-1{padding-left:.25rem !important}.p-2{padding:.5rem !important}.pt-2,.py-2{padding-top:.5rem !important}.pr-2,.px-2{padding-right:.5rem !important}.pb-2,.py-2{padding-bottom:.5rem !important}.pl-2,.px-2{padding-left:.5rem !important}.p-3{padding:1rem !important}.pt-3,.py-3{padding-top:1rem !important}.pr-3,.px-3{padding-right:1rem !important}.pb-3,.py-3{padding-bottom:1rem !important}.pl-3,.px-3{padding-left:1rem !important}.p-4{padding:1.5rem !important}.pt-4,.py-4{padding-top:1.5rem !important}.pr-4,.px-4{padding-right:1.5rem !important}.pb-4,.py-4{padding-bottom:1.5rem !important}.pl-4,.px-4{padding-left:1.5rem !important}.p-5{padding:3rem !important}.pt-5,.py-5{padding-top:3rem !important}.pr-5,.px-5{padding-right:3rem !important}.pb-5,.py-5{padding-bottom:3rem !important}.pl-5,.px-5{padding-left:3rem !important}.m-n1{margin:-.25rem !important}.mt-n1,.my-n1{margin-top:-.25rem !important}.mr-n1,.mx-n1{margin-right:-.25rem !important}.mb-n1,.my-n1{margin-bottom:-.25rem !important}.ml-n1,.mx-n1{margin-left:-.25rem !important}.m-n2{margin:-.5rem !important}.mt-n2,.my-n2{margin-top:-.5rem !important}.mr-n2,.mx-n2{margin-right:-.5rem !important}.mb-n2,.my-n2{margin-bottom:-.5rem !important}.ml-n2,.mx-n2{margin-left:-.5rem !important}.m-n3{margin:-1rem !important}.mt-n3,.my-n3{margin-top:-1rem !important}.mr-n3,.mx-n3{margin-right:-1rem !important}.mb-n3,.my-n3{margin-bottom:-1rem !important}.ml-n3,.mx-n3{margin-left:-1rem !important}.m-n4{margin:-1.5rem !important}.mt-n4,.my-n4{margin-top:-1.5rem !important}.mr-n4,.mx-n4{margin-right:-1.5rem !important}.mb-n4,.my-n4{margin-bottom:-1.5rem !important}.ml-n4,.mx-n4{margin-left:-1.5rem !important}.m-n5{margin:-3rem !important}.mt-n5,.my-n5{margin-top:-3rem !important}.mr-n5,.mx-n5{margin-right:-3rem !important}.mb-n5,.my-n5{margin-bottom:-3rem !important}.ml-n5,.mx-n5{margin-left:-3rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media (min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:.25rem !important}.mt-sm-1,.my-sm-1{margin-top:.25rem !important}.mr-sm-1,.mx-sm-1{margin-right:.25rem !important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem !important}.ml-sm-1,.mx-sm-1{margin-left:.25rem !important}.m-sm-2{margin:.5rem !important}.mt-sm-2,.my-sm-2{margin-top:.5rem !important}.mr-sm-2,.mx-sm-2{margin-right:.5rem !important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem !important}.ml-sm-2,.mx-sm-2{margin-left:.5rem !important}.m-sm-3{margin:1rem !important}.mt-sm-3,.my-sm-3{margin-top:1rem !important}.mr-sm-3,.mx-sm-3{margin-right:1rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1rem !important}.ml-sm-3,.mx-sm-3{margin-left:1rem !important}.m-sm-4{margin:1.5rem !important}.mt-sm-4,.my-sm-4{margin-top:1.5rem !important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem !important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem !important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem !important}.m-sm-5{margin:3rem !important}.mt-sm-5,.my-sm-5{margin-top:3rem !important}.mr-sm-5,.mx-sm-5{margin-right:3rem !important}.mb-sm-5,.my-sm-5{margin-bottom:3rem !important}.ml-sm-5,.mx-sm-5{margin-left:3rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:.25rem !important}.pt-sm-1,.py-sm-1{padding-top:.25rem !important}.pr-sm-1,.px-sm-1{padding-right:.25rem !important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem !important}.pl-sm-1,.px-sm-1{padding-left:.25rem !important}.p-sm-2{padding:.5rem !important}.pt-sm-2,.py-sm-2{padding-top:.5rem !important}.pr-sm-2,.px-sm-2{padding-right:.5rem !important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem !important}.pl-sm-2,.px-sm-2{padding-left:.5rem !important}.p-sm-3{padding:1rem !important}.pt-sm-3,.py-sm-3{padding-top:1rem !important}.pr-sm-3,.px-sm-3{padding-right:1rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1rem !important}.pl-sm-3,.px-sm-3{padding-left:1rem !important}.p-sm-4{padding:1.5rem !important}.pt-sm-4,.py-sm-4{padding-top:1.5rem !important}.pr-sm-4,.px-sm-4{padding-right:1.5rem !important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem !important}.pl-sm-4,.px-sm-4{padding-left:1.5rem !important}.p-sm-5{padding:3rem !important}.pt-sm-5,.py-sm-5{padding-top:3rem !important}.pr-sm-5,.px-sm-5{padding-right:3rem !important}.pb-sm-5,.py-sm-5{padding-bottom:3rem !important}.pl-sm-5,.px-sm-5{padding-left:3rem !important}.m-sm-n1{margin:-.25rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-.25rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-.25rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-.25rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-.25rem !important}.m-sm-n2{margin:-.5rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-.5rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-.5rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-.5rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-.5rem !important}.m-sm-n3{margin:-1rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1rem !important}.m-sm-n4{margin:-1.5rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-1.5rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-1.5rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-1.5rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-1.5rem !important}.m-sm-n5{margin:-3rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-3rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-3rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-3rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-3rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media (min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:.25rem !important}.mt-md-1,.my-md-1{margin-top:.25rem !important}.mr-md-1,.mx-md-1{margin-right:.25rem !important}.mb-md-1,.my-md-1{margin-bottom:.25rem !important}.ml-md-1,.mx-md-1{margin-left:.25rem !important}.m-md-2{margin:.5rem !important}.mt-md-2,.my-md-2{margin-top:.5rem !important}.mr-md-2,.mx-md-2{margin-right:.5rem !important}.mb-md-2,.my-md-2{margin-bottom:.5rem !important}.ml-md-2,.mx-md-2{margin-left:.5rem !important}.m-md-3{margin:1rem !important}.mt-md-3,.my-md-3{margin-top:1rem !important}.mr-md-3,.mx-md-3{margin-right:1rem !important}.mb-md-3,.my-md-3{margin-bottom:1rem !important}.ml-md-3,.mx-md-3{margin-left:1rem !important}.m-md-4{margin:1.5rem !important}.mt-md-4,.my-md-4{margin-top:1.5rem !important}.mr-md-4,.mx-md-4{margin-right:1.5rem !important}.mb-md-4,.my-md-4{margin-bottom:1.5rem !important}.ml-md-4,.mx-md-4{margin-left:1.5rem !important}.m-md-5{margin:3rem !important}.mt-md-5,.my-md-5{margin-top:3rem !important}.mr-md-5,.mx-md-5{margin-right:3rem !important}.mb-md-5,.my-md-5{margin-bottom:3rem !important}.ml-md-5,.mx-md-5{margin-left:3rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:.25rem !important}.pt-md-1,.py-md-1{padding-top:.25rem !important}.pr-md-1,.px-md-1{padding-right:.25rem !important}.pb-md-1,.py-md-1{padding-bottom:.25rem !important}.pl-md-1,.px-md-1{padding-left:.25rem !important}.p-md-2{padding:.5rem !important}.pt-md-2,.py-md-2{padding-top:.5rem !important}.pr-md-2,.px-md-2{padding-right:.5rem !important}.pb-md-2,.py-md-2{padding-bottom:.5rem !important}.pl-md-2,.px-md-2{padding-left:.5rem !important}.p-md-3{padding:1rem !important}.pt-md-3,.py-md-3{padding-top:1rem !important}.pr-md-3,.px-md-3{padding-right:1rem !important}.pb-md-3,.py-md-3{padding-bottom:1rem !important}.pl-md-3,.px-md-3{padding-left:1rem !important}.p-md-4{padding:1.5rem !important}.pt-md-4,.py-md-4{padding-top:1.5rem !important}.pr-md-4,.px-md-4{padding-right:1.5rem !important}.pb-md-4,.py-md-4{padding-bottom:1.5rem !important}.pl-md-4,.px-md-4{padding-left:1.5rem !important}.p-md-5{padding:3rem !important}.pt-md-5,.py-md-5{padding-top:3rem !important}.pr-md-5,.px-md-5{padding-right:3rem !important}.pb-md-5,.py-md-5{padding-bottom:3rem !important}.pl-md-5,.px-md-5{padding-left:3rem !important}.m-md-n1{margin:-.25rem !important}.mt-md-n1,.my-md-n1{margin-top:-.25rem !important}.mr-md-n1,.mx-md-n1{margin-right:-.25rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-.25rem !important}.ml-md-n1,.mx-md-n1{margin-left:-.25rem !important}.m-md-n2{margin:-.5rem !important}.mt-md-n2,.my-md-n2{margin-top:-.5rem !important}.mr-md-n2,.mx-md-n2{margin-right:-.5rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-.5rem !important}.ml-md-n2,.mx-md-n2{margin-left:-.5rem !important}.m-md-n3{margin:-1rem !important}.mt-md-n3,.my-md-n3{margin-top:-1rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1rem !important}.m-md-n4{margin:-1.5rem !important}.mt-md-n4,.my-md-n4{margin-top:-1.5rem !important}.mr-md-n4,.mx-md-n4{margin-right:-1.5rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-1.5rem !important}.ml-md-n4,.mx-md-n4{margin-left:-1.5rem !important}.m-md-n5{margin:-3rem !important}.mt-md-n5,.my-md-n5{margin-top:-3rem !important}.mr-md-n5,.mx-md-n5{margin-right:-3rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-3rem !important}.ml-md-n5,.mx-md-n5{margin-left:-3rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media (min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:.25rem !important}.mt-lg-1,.my-lg-1{margin-top:.25rem !important}.mr-lg-1,.mx-lg-1{margin-right:.25rem !important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem !important}.ml-lg-1,.mx-lg-1{margin-left:.25rem !important}.m-lg-2{margin:.5rem !important}.mt-lg-2,.my-lg-2{margin-top:.5rem !important}.mr-lg-2,.mx-lg-2{margin-right:.5rem !important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem !important}.ml-lg-2,.mx-lg-2{margin-left:.5rem !important}.m-lg-3{margin:1rem !important}.mt-lg-3,.my-lg-3{margin-top:1rem !important}.mr-lg-3,.mx-lg-3{margin-right:1rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1rem !important}.ml-lg-3,.mx-lg-3{margin-left:1rem !important}.m-lg-4{margin:1.5rem !important}.mt-lg-4,.my-lg-4{margin-top:1.5rem !important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem !important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem !important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem !important}.m-lg-5{margin:3rem !important}.mt-lg-5,.my-lg-5{margin-top:3rem !important}.mr-lg-5,.mx-lg-5{margin-right:3rem !important}.mb-lg-5,.my-lg-5{margin-bottom:3rem !important}.ml-lg-5,.mx-lg-5{margin-left:3rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:.25rem !important}.pt-lg-1,.py-lg-1{padding-top:.25rem !important}.pr-lg-1,.px-lg-1{padding-right:.25rem !important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem !important}.pl-lg-1,.px-lg-1{padding-left:.25rem !important}.p-lg-2{padding:.5rem !important}.pt-lg-2,.py-lg-2{padding-top:.5rem !important}.pr-lg-2,.px-lg-2{padding-right:.5rem !important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem !important}.pl-lg-2,.px-lg-2{padding-left:.5rem !important}.p-lg-3{padding:1rem !important}.pt-lg-3,.py-lg-3{padding-top:1rem !important}.pr-lg-3,.px-lg-3{padding-right:1rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1rem !important}.pl-lg-3,.px-lg-3{padding-left:1rem !important}.p-lg-4{padding:1.5rem !important}.pt-lg-4,.py-lg-4{padding-top:1.5rem !important}.pr-lg-4,.px-lg-4{padding-right:1.5rem !important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem !important}.pl-lg-4,.px-lg-4{padding-left:1.5rem !important}.p-lg-5{padding:3rem !important}.pt-lg-5,.py-lg-5{padding-top:3rem !important}.pr-lg-5,.px-lg-5{padding-right:3rem !important}.pb-lg-5,.py-lg-5{padding-bottom:3rem !important}.pl-lg-5,.px-lg-5{padding-left:3rem !important}.m-lg-n1{margin:-.25rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-.25rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-.25rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-.25rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-.25rem !important}.m-lg-n2{margin:-.5rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-.5rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-.5rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-.5rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-.5rem !important}.m-lg-n3{margin:-1rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1rem !important}.m-lg-n4{margin:-1.5rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-1.5rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-1.5rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-1.5rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-1.5rem !important}.m-lg-n5{margin:-3rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-3rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-3rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-3rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-3rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media (min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:.25rem !important}.mt-xl-1,.my-xl-1{margin-top:.25rem !important}.mr-xl-1,.mx-xl-1{margin-right:.25rem !important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem !important}.ml-xl-1,.mx-xl-1{margin-left:.25rem !important}.m-xl-2{margin:.5rem !important}.mt-xl-2,.my-xl-2{margin-top:.5rem !important}.mr-xl-2,.mx-xl-2{margin-right:.5rem !important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem !important}.ml-xl-2,.mx-xl-2{margin-left:.5rem !important}.m-xl-3{margin:1rem !important}.mt-xl-3,.my-xl-3{margin-top:1rem !important}.mr-xl-3,.mx-xl-3{margin-right:1rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1rem !important}.ml-xl-3,.mx-xl-3{margin-left:1rem !important}.m-xl-4{margin:1.5rem !important}.mt-xl-4,.my-xl-4{margin-top:1.5rem !important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem !important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem !important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem !important}.m-xl-5{margin:3rem !important}.mt-xl-5,.my-xl-5{margin-top:3rem !important}.mr-xl-5,.mx-xl-5{margin-right:3rem !important}.mb-xl-5,.my-xl-5{margin-bottom:3rem !important}.ml-xl-5,.mx-xl-5{margin-left:3rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:.25rem !important}.pt-xl-1,.py-xl-1{padding-top:.25rem !important}.pr-xl-1,.px-xl-1{padding-right:.25rem !important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem !important}.pl-xl-1,.px-xl-1{padding-left:.25rem !important}.p-xl-2{padding:.5rem !important}.pt-xl-2,.py-xl-2{padding-top:.5rem !important}.pr-xl-2,.px-xl-2{padding-right:.5rem !important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem !important}.pl-xl-2,.px-xl-2{padding-left:.5rem !important}.p-xl-3{padding:1rem !important}.pt-xl-3,.py-xl-3{padding-top:1rem !important}.pr-xl-3,.px-xl-3{padding-right:1rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1rem !important}.pl-xl-3,.px-xl-3{padding-left:1rem !important}.p-xl-4{padding:1.5rem !important}.pt-xl-4,.py-xl-4{padding-top:1.5rem !important}.pr-xl-4,.px-xl-4{padding-right:1.5rem !important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem !important}.pl-xl-4,.px-xl-4{padding-left:1.5rem !important}.p-xl-5{padding:3rem !important}.pt-xl-5,.py-xl-5{padding-top:3rem !important}.pr-xl-5,.px-xl-5{padding-right:3rem !important}.pb-xl-5,.py-xl-5{padding-bottom:3rem !important}.pl-xl-5,.px-xl-5{padding-left:3rem !important}.m-xl-n1{margin:-.25rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-.25rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-.25rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-.25rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-.25rem !important}.m-xl-n2{margin:-.5rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-.5rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-.5rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-.5rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-.5rem !important}.m-xl-n3{margin:-1rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1rem !important}.m-xl-n4{margin:-1.5rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-1.5rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-1.5rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-1.5rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-1.5rem !important}.m-xl-n5{margin:-3rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-3rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-3rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-3rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-3rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0,0,0,0)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media (min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media (min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media (min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media (min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#007bff !important}a.text-primary:hover,a.text-primary:focus{color:#0056b3 !important}.text-secondary{color:#6c757d !important}a.text-secondary:hover,a.text-secondary:focus{color:#494f54 !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#17a2b8 !important}a.text-info:hover,a.text-info:focus{color:#0f6674 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#f8f9fa !important}a.text-light:hover,a.text-light:focus{color:#cbd3da !important}.text-dark{color:#343a40 !important}a.text-dark:hover,a.text-dark:focus{color:#121416 !important}.text-body{color:#212529 !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,0.5) !important}.text-white-50{color:rgba(255,255,255,0.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;word-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;-webkit-box-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}.fa{font-family:var(--fa-style-family,"Font Awesome 6 Free");font-weight:var(--fa-style,900)}.fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp-solid,.fa-solid,.fab,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:var(--fa-display,inline-block);font-style:normal;font-variant:normal;line-height:1;text-rendering:auto}.fa-classic,.fa-regular,.fa-solid,.far,.fas{font-family:"Font Awesome 6 Free"}.fa-brands,.fab{font-family:"Font Awesome 6 Brands"}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-2xs{font-size:.625em;line-height:.1em;vertical-align:.225em}.fa-xs{font-size:.75em;line-height:.08333em;vertical-align:.125em}.fa-sm{font-size:.875em;line-height:.07143em;vertical-align:.05357em}.fa-lg{font-size:1.25em;line-height:.05em;vertical-align:-.075em}.fa-xl{font-size:1.5em;line-height:.04167em;vertical-align:-.125em}.fa-2xl{font-size:2em;line-height:.03125em;vertical-align:-.1875em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:var(--fa-li-margin,2.5em);padding-left:0}.fa-ul>li{position:relative}.fa-li{left:calc(var(--fa-li-width, 2em)*-1);position:absolute;text-align:center;width:var(--fa-li-width,2em);line-height:inherit}.fa-border{border-radius:var(--fa-border-radius,.1em);border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee);padding:var(--fa-border-padding,.2em .25em .15em)}.fa-pull-left{float:left;margin-right:var(--fa-pull-margin,.3em)}.fa-pull-right{float:right;margin-left:var(--fa-pull-margin,.3em)}.fa-beat{animation-name:fa-beat;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-bounce{animation-name:fa-bounce;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))}.fa-fade{animation-name:fa-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-beat-fade,.fa-fade{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s)}.fa-beat-fade{animation-name:fa-beat-fade;animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))}.fa-flip{animation-name:fa-flip;animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,ease-in-out)}.fa-shake{animation-name:fa-shake;animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-shake,.fa-spin{animation-delay:var(--fa-animation-delay,0s);animation-direction:var(--fa-animation-direction,normal)}.fa-spin{animation-name:fa-spin;animation-duration:var(--fa-animation-duration,2s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,linear)}.fa-spin-reverse{--fa-animation-direction:reverse}.fa-pulse,.fa-spin-pulse{animation-name:fa-spin;animation-direction:var(--fa-animation-direction,normal);animation-duration:var(--fa-animation-duration,1s);animation-iteration-count:var(--fa-animation-iteration-count,infinite);animation-timing-function:var(--fa-animation-timing,steps(8))}@media (prefers-reduced-motion:reduce){.fa-beat,.fa-beat-fade,.fa-bounce,.fa-fade,.fa-flip,.fa-pulse,.fa-shake,.fa-spin,.fa-spin-pulse{animation-delay:-1ms;animation-duration:1ms;animation-iteration-count:1;transition-delay:0s;transition-duration:0s}}@keyframes fa-beat{0%,90%{transform:scale(1)}45%{transform:scale(var(--fa-beat-scale,1.25))}}@keyframes fa-bounce{0%{transform:scale(1) translateY(0)}10%{transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}30%{transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}50%{transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}57%{transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}64%{transform:scale(1) translateY(0)}to{transform:scale(1) translateY(0)}}@keyframes fa-fade{50%{opacity:var(--fa-fade-opacity,.4)}}@keyframes fa-beat-fade{0%,to{opacity:var(--fa-beat-fade-opacity,.4);transform:scale(1)}50%{opacity:1;transform:scale(var(--fa-beat-fade-scale,1.125))}}@keyframes fa-flip{50%{transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}}@keyframes fa-shake{0%{transform:rotate(-15deg)}4%{transform:rotate(15deg)}8%,24%{transform:rotate(-18deg)}12%,28%{transform:rotate(18deg)}16%{transform:rotate(-22deg)}20%{transform:rotate(22deg)}32%{transform:rotate(-12deg)}36%{transform:rotate(12deg)}40%,to{transform:rotate(0deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{transform:rotate(90deg)}.fa-rotate-180{transform:rotate(180deg)}.fa-rotate-270{transform:rotate(270deg)}.fa-flip-horizontal{transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}.fa-rotate-by{transform:rotate(var(--fa-rotate-angle,0))}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%;z-index:var(--fa-stack-z-index,auto)}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:var(--fa-inverse,#fff)}
.fa-0:before{content:"\30"}.fa-1:before{content:"\31"}.fa-2:before{content:"\32"}.fa-3:before{content:"\33"}.fa-4:before{content:"\34"}.fa-5:before{content:"\35"}.fa-6:before{content:"\36"}.fa-7:before{content:"\37"}.fa-8:before{content:"\38"}.fa-9:before{content:"\39"}.fa-fill-drip:before{content:"\f576"}.fa-arrows-to-circle:before{content:"\e4bd"}.fa-chevron-circle-right:before,.fa-circle-chevron-right:before{content:"\f138"}.fa-at:before{content:"\40"}.fa-trash-alt:before,.fa-trash-can:before{content:"\f2ed"}.fa-text-height:before{content:"\f034"}.fa-user-times:before,.fa-user-xmark:before{content:"\f235"}.fa-stethoscope:before{content:"\f0f1"}.fa-comment-alt:before,.fa-message:before{content:"\f27a"}.fa-info:before{content:"\f129"}.fa-compress-alt:before,.fa-down-left-and-up-right-to-center:before{content:"\f422"}.fa-explosion:before{content:"\e4e9"}.fa-file-alt:before,.fa-file-lines:before,.fa-file-text:before{content:"\f15c"}.fa-wave-square:before{content:"\f83e"}.fa-ring:before{content:"\f70b"}.fa-building-un:before{content:"\e4d9"}.fa-dice-three:before{content:"\f527"}.fa-calendar-alt:before,.fa-calendar-days:before{content:"\f073"}.fa-anchor-circle-check:before{content:"\e4aa"}.fa-building-circle-arrow-right:before{content:"\e4d1"}.fa-volleyball-ball:before,.fa-volleyball:before{content:"\f45f"}.fa-arrows-up-to-line:before{content:"\e4c2"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-circle-minus:before,.fa-minus-circle:before{content:"\f056"}.fa-door-open:before{content:"\f52b"}.fa-right-from-bracket:before,.fa-sign-out-alt:before{content:"\f2f5"}.fa-atom:before{content:"\f5d2"}.fa-soap:before{content:"\e06e"}.fa-heart-music-camera-bolt:before,.fa-icons:before{content:"\f86d"}.fa-microphone-alt-slash:before,.fa-microphone-lines-slash:before{content:"\f539"}.fa-bridge-circle-check:before{content:"\e4c9"}.fa-pump-medical:before{content:"\e06a"}.fa-fingerprint:before{content:"\f577"}.fa-hand-point-right:before{content:"\f0a4"}.fa-magnifying-glass-location:before,.fa-search-location:before{content:"\f689"}.fa-forward-step:before,.fa-step-forward:before{content:"\f051"}.fa-face-smile-beam:before,.fa-smile-beam:before{content:"\f5b8"}.fa-flag-checkered:before{content:"\f11e"}.fa-football-ball:before,.fa-football:before{content:"\f44e"}.fa-school-circle-exclamation:before{content:"\e56c"}.fa-crop:before{content:"\f125"}.fa-angle-double-down:before,.fa-angles-down:before{content:"\f103"}.fa-users-rectangle:before{content:"\e594"}.fa-people-roof:before{content:"\e537"}.fa-people-line:before{content:"\e534"}.fa-beer-mug-empty:before,.fa-beer:before{content:"\f0fc"}.fa-diagram-predecessor:before{content:"\e477"}.fa-arrow-up-long:before,.fa-long-arrow-up:before{content:"\f176"}.fa-burn:before,.fa-fire-flame-simple:before{content:"\f46a"}.fa-male:before,.fa-person:before{content:"\f183"}.fa-laptop:before{content:"\f109"}.fa-file-csv:before{content:"\f6dd"}.fa-menorah:before{content:"\f676"}.fa-truck-plane:before{content:"\e58f"}.fa-record-vinyl:before{content:"\f8d9"}.fa-face-grin-stars:before,.fa-grin-stars:before{content:"\f587"}.fa-bong:before{content:"\f55c"}.fa-pastafarianism:before,.fa-spaghetti-monster-flying:before{content:"\f67b"}.fa-arrow-down-up-across-line:before{content:"\e4af"}.fa-spoon:before,.fa-utensil-spoon:before{content:"\f2e5"}.fa-jar-wheat:before{content:"\e517"}.fa-envelopes-bulk:before,.fa-mail-bulk:before{content:"\f674"}.fa-file-circle-exclamation:before{content:"\e4eb"}.fa-circle-h:before,.fa-hospital-symbol:before{content:"\f47e"}.fa-pager:before{content:"\f815"}.fa-address-book:before,.fa-contact-book:before{content:"\f2b9"}.fa-strikethrough:before{content:"\f0cc"}.fa-k:before{content:"\4b"}.fa-landmark-flag:before{content:"\e51c"}.fa-pencil-alt:before,.fa-pencil:before{content:"\f303"}.fa-backward:before{content:"\f04a"}.fa-caret-right:before{content:"\f0da"}.fa-comments:before{content:"\f086"}.fa-file-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-code-pull-request:before{content:"\e13c"}.fa-clipboard-list:before{content:"\f46d"}.fa-truck-loading:before,.fa-truck-ramp-box:before{content:"\f4de"}.fa-user-check:before{content:"\f4fc"}.fa-vial-virus:before{content:"\e597"}.fa-sheet-plastic:before{content:"\e571"}.fa-blog:before{content:"\f781"}.fa-user-ninja:before{content:"\f504"}.fa-person-arrow-up-from-line:before{content:"\e539"}.fa-scroll-torah:before,.fa-torah:before{content:"\f6a0"}.fa-broom-ball:before,.fa-quidditch-broom-ball:before,.fa-quidditch:before{content:"\f458"}.fa-toggle-off:before{content:"\f204"}.fa-archive:before,.fa-box-archive:before{content:"\f187"}.fa-person-drowning:before{content:"\e545"}.fa-arrow-down-9-1:before,.fa-sort-numeric-desc:before,.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-face-grin-tongue-squint:before,.fa-grin-tongue-squint:before{content:"\f58a"}.fa-spray-can:before{content:"\f5bd"}.fa-truck-monster:before{content:"\f63b"}.fa-w:before{content:"\57"}.fa-earth-africa:before,.fa-globe-africa:before{content:"\f57c"}.fa-rainbow:before{content:"\f75b"}.fa-circle-notch:before{content:"\f1ce"}.fa-tablet-alt:before,.fa-tablet-screen-button:before{content:"\f3fa"}.fa-paw:before{content:"\f1b0"}.fa-cloud:before{content:"\f0c2"}.fa-trowel-bricks:before{content:"\e58a"}.fa-face-flushed:before,.fa-flushed:before{content:"\f579"}.fa-hospital-user:before{content:"\f80d"}.fa-tent-arrow-left-right:before{content:"\e57f"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-binoculars:before{content:"\f1e5"}.fa-microphone-slash:before{content:"\f131"}.fa-box-tissue:before{content:"\e05b"}.fa-motorcycle:before{content:"\f21c"}.fa-bell-concierge:before,.fa-concierge-bell:before{content:"\f562"}.fa-pen-ruler:before,.fa-pencil-ruler:before{content:"\f5ae"}.fa-people-arrows-left-right:before,.fa-people-arrows:before{content:"\e068"}.fa-mars-and-venus-burst:before{content:"\e523"}.fa-caret-square-right:before,.fa-square-caret-right:before{content:"\f152"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-sun-plant-wilt:before{content:"\e57a"}.fa-toilets-portable:before{content:"\e584"}.fa-hockey-puck:before{content:"\f453"}.fa-table:before{content:"\f0ce"}.fa-magnifying-glass-arrow-right:before{content:"\e521"}.fa-digital-tachograph:before,.fa-tachograph-digital:before{content:"\f566"}.fa-users-slash:before{content:"\e073"}.fa-clover:before{content:"\e139"}.fa-mail-reply:before,.fa-reply:before{content:"\f3e5"}.fa-star-and-crescent:before{content:"\f699"}.fa-house-fire:before{content:"\e50c"}.fa-minus-square:before,.fa-square-minus:before{content:"\f146"}.fa-helicopter:before{content:"\f533"}.fa-compass:before{content:"\f14e"}.fa-caret-square-down:before,.fa-square-caret-down:before{content:"\f150"}.fa-file-circle-question:before{content:"\e4ef"}.fa-laptop-code:before{content:"\f5fc"}.fa-swatchbook:before{content:"\f5c3"}.fa-prescription-bottle:before{content:"\f485"}.fa-bars:before,.fa-navicon:before{content:"\f0c9"}.fa-people-group:before{content:"\e533"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-heart-broken:before,.fa-heart-crack:before{content:"\f7a9"}.fa-external-link-square-alt:before,.fa-square-up-right:before{content:"\f360"}.fa-face-kiss-beam:before,.fa-kiss-beam:before{content:"\f597"}.fa-film:before{content:"\f008"}.fa-ruler-horizontal:before{content:"\f547"}.fa-people-robbery:before{content:"\e536"}.fa-lightbulb:before{content:"\f0eb"}.fa-caret-left:before{content:"\f0d9"}.fa-circle-exclamation:before,.fa-exclamation-circle:before{content:"\f06a"}.fa-school-circle-xmark:before{content:"\e56d"}.fa-arrow-right-from-bracket:before,.fa-sign-out:before{content:"\f08b"}.fa-chevron-circle-down:before,.fa-circle-chevron-down:before{content:"\f13a"}.fa-unlock-alt:before,.fa-unlock-keyhole:before{content:"\f13e"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-headphones-alt:before,.fa-headphones-simple:before{content:"\f58f"}.fa-sitemap:before{content:"\f0e8"}.fa-circle-dollar-to-slot:before,.fa-donate:before{content:"\f4b9"}.fa-memory:before{content:"\f538"}.fa-road-spikes:before{content:"\e568"}.fa-fire-burner:before{content:"\e4f1"}.fa-flag:before{content:"\f024"}.fa-hanukiah:before{content:"\f6e6"}.fa-feather:before{content:"\f52d"}.fa-volume-down:before,.fa-volume-low:before{content:"\f027"}.fa-comment-slash:before{content:"\f4b3"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-compress:before{content:"\f066"}.fa-wheat-alt:before,.fa-wheat-awn:before{content:"\e2cd"}.fa-ankh:before{content:"\f644"}.fa-hands-holding-child:before{content:"\e4fa"}.fa-asterisk:before{content:"\2a"}.fa-check-square:before,.fa-square-check:before{content:"\f14a"}.fa-peseta-sign:before{content:"\e221"}.fa-header:before,.fa-heading:before{content:"\f1dc"}.fa-ghost:before{content:"\f6e2"}.fa-list-squares:before,.fa-list:before{content:"\f03a"}.fa-phone-square-alt:before,.fa-square-phone-flip:before{content:"\f87b"}.fa-cart-plus:before{content:"\f217"}.fa-gamepad:before{content:"\f11b"}.fa-circle-dot:before,.fa-dot-circle:before{content:"\f192"}.fa-dizzy:before,.fa-face-dizzy:before{content:"\f567"}.fa-egg:before{content:"\f7fb"}.fa-house-medical-circle-xmark:before{content:"\e513"}.fa-campground:before{content:"\f6bb"}.fa-folder-plus:before{content:"\f65e"}.fa-futbol-ball:before,.fa-futbol:before,.fa-soccer-ball:before{content:"\f1e3"}.fa-paint-brush:before,.fa-paintbrush:before{content:"\f1fc"}.fa-lock:before{content:"\f023"}.fa-gas-pump:before{content:"\f52f"}.fa-hot-tub-person:before,.fa-hot-tub:before{content:"\f593"}.fa-map-location:before,.fa-map-marked:before{content:"\f59f"}.fa-house-flood-water:before{content:"\e50e"}.fa-tree:before{content:"\f1bb"}.fa-bridge-lock:before{content:"\e4cc"}.fa-sack-dollar:before{content:"\f81d"}.fa-edit:before,.fa-pen-to-square:before{content:"\f044"}.fa-car-side:before{content:"\f5e4"}.fa-share-alt:before,.fa-share-nodes:before{content:"\f1e0"}.fa-heart-circle-minus:before{content:"\e4ff"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-microscope:before{content:"\f610"}.fa-sink:before{content:"\e06d"}.fa-bag-shopping:before,.fa-shopping-bag:before{content:"\f290"}.fa-arrow-down-z-a:before,.fa-sort-alpha-desc:before,.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-mitten:before{content:"\f7b5"}.fa-person-rays:before{content:"\e54d"}.fa-users:before{content:"\f0c0"}.fa-eye-slash:before{content:"\f070"}.fa-flask-vial:before{content:"\e4f3"}.fa-hand-paper:before,.fa-hand:before{content:"\f256"}.fa-om:before{content:"\f679"}.fa-worm:before{content:"\e599"}.fa-house-circle-xmark:before{content:"\e50b"}.fa-plug:before{content:"\f1e6"}.fa-chevron-up:before{content:"\f077"}.fa-hand-spock:before{content:"\f259"}.fa-stopwatch:before{content:"\f2f2"}.fa-face-kiss:before,.fa-kiss:before{content:"\f596"}.fa-bridge-circle-xmark:before{content:"\e4cb"}.fa-face-grin-tongue:before,.fa-grin-tongue:before{content:"\f589"}.fa-chess-bishop:before{content:"\f43a"}.fa-face-grin-wink:before,.fa-grin-wink:before{content:"\f58c"}.fa-deaf:before,.fa-deafness:before,.fa-ear-deaf:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-road-circle-check:before{content:"\e564"}.fa-dice-five:before{content:"\f523"}.fa-rss-square:before,.fa-square-rss:before{content:"\f143"}.fa-land-mine-on:before{content:"\e51b"}.fa-i-cursor:before{content:"\f246"}.fa-stamp:before{content:"\f5bf"}.fa-stairs:before{content:"\e289"}.fa-i:before{content:"\49"}.fa-hryvnia-sign:before,.fa-hryvnia:before{content:"\f6f2"}.fa-pills:before{content:"\f484"}.fa-face-grin-wide:before,.fa-grin-alt:before{content:"\f581"}.fa-tooth:before{content:"\f5c9"}.fa-v:before{content:"\56"}.fa-bangladeshi-taka-sign:before{content:"\e2e6"}.fa-bicycle:before{content:"\f206"}.fa-rod-asclepius:before,.fa-rod-snake:before,.fa-staff-aesculapius:before,.fa-staff-snake:before{content:"\e579"}.fa-head-side-cough-slash:before{content:"\e062"}.fa-ambulance:before,.fa-truck-medical:before{content:"\f0f9"}.fa-wheat-awn-circle-exclamation:before{content:"\e598"}.fa-snowman:before{content:"\f7d0"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-road-barrier:before{content:"\e562"}.fa-school:before{content:"\f549"}.fa-igloo:before{content:"\f7ae"}.fa-joint:before{content:"\f595"}.fa-angle-right:before{content:"\f105"}.fa-horse:before{content:"\f6f0"}.fa-q:before{content:"\51"}.fa-g:before{content:"\47"}.fa-notes-medical:before{content:"\f481"}.fa-temperature-2:before,.fa-temperature-half:before,.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-dong-sign:before{content:"\e169"}.fa-capsules:before{content:"\f46b"}.fa-poo-bolt:before,.fa-poo-storm:before{content:"\f75a"}.fa-face-frown-open:before,.fa-frown-open:before{content:"\f57a"}.fa-hand-point-up:before{content:"\f0a6"}.fa-money-bill:before{content:"\f0d6"}.fa-bookmark:before{content:"\f02e"}.fa-align-justify:before{content:"\f039"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-helmet-un:before{content:"\e503"}.fa-bullseye:before{content:"\f140"}.fa-bacon:before{content:"\f7e5"}.fa-hand-point-down:before{content:"\f0a7"}.fa-arrow-up-from-bracket:before{content:"\e09a"}.fa-folder-blank:before,.fa-folder:before{content:"\f07b"}.fa-file-medical-alt:before,.fa-file-waveform:before{content:"\f478"}.fa-radiation:before{content:"\f7b9"}.fa-chart-simple:before{content:"\e473"}.fa-mars-stroke:before{content:"\f229"}.fa-vial:before{content:"\f492"}.fa-dashboard:before,.fa-gauge-med:before,.fa-gauge:before,.fa-tachometer-alt-average:before{content:"\f624"}.fa-magic-wand-sparkles:before,.fa-wand-magic-sparkles:before{content:"\e2ca"}.fa-e:before{content:"\45"}.fa-pen-alt:before,.fa-pen-clip:before{content:"\f305"}.fa-bridge-circle-exclamation:before{content:"\e4ca"}.fa-user:before{content:"\f007"}.fa-school-circle-check:before{content:"\e56b"}.fa-dumpster:before{content:"\f793"}.fa-shuttle-van:before,.fa-van-shuttle:before{content:"\f5b6"}.fa-building-user:before{content:"\e4da"}.fa-caret-square-left:before,.fa-square-caret-left:before{content:"\f191"}.fa-highlighter:before{content:"\f591"}.fa-key:before{content:"\f084"}.fa-bullhorn:before{content:"\f0a1"}.fa-globe:before{content:"\f0ac"}.fa-synagogue:before{content:"\f69b"}.fa-person-half-dress:before{content:"\e548"}.fa-road-bridge:before{content:"\e563"}.fa-location-arrow:before{content:"\f124"}.fa-c:before{content:"\43"}.fa-tablet-button:before{content:"\f10a"}.fa-building-lock:before{content:"\e4d6"}.fa-pizza-slice:before{content:"\f818"}.fa-money-bill-wave:before{content:"\f53a"}.fa-area-chart:before,.fa-chart-area:before{content:"\f1fe"}.fa-house-flag:before{content:"\e50d"}.fa-person-circle-minus:before{content:"\e540"}.fa-ban:before,.fa-cancel:before{content:"\f05e"}.fa-camera-rotate:before{content:"\e0d8"}.fa-air-freshener:before,.fa-spray-can-sparkles:before{content:"\f5d0"}.fa-star:before{content:"\f005"}.fa-repeat:before{content:"\f363"}.fa-cross:before{content:"\f654"}.fa-box:before{content:"\f466"}.fa-venus-mars:before{content:"\f228"}.fa-arrow-pointer:before,.fa-mouse-pointer:before{content:"\f245"}.fa-expand-arrows-alt:before,.fa-maximize:before{content:"\f31e"}.fa-charging-station:before{content:"\f5e7"}.fa-shapes:before,.fa-triangle-circle-square:before{content:"\f61f"}.fa-random:before,.fa-shuffle:before{content:"\f074"}.fa-person-running:before,.fa-running:before{content:"\f70c"}.fa-mobile-retro:before{content:"\e527"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-spider:before{content:"\f717"}.fa-hands-bound:before{content:"\e4f9"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-plane-circle-exclamation:before{content:"\e556"}.fa-x-ray:before{content:"\f497"}.fa-spell-check:before{content:"\f891"}.fa-slash:before{content:"\f715"}.fa-computer-mouse:before,.fa-mouse:before{content:"\f8cc"}.fa-arrow-right-to-bracket:before,.fa-sign-in:before{content:"\f090"}.fa-shop-slash:before,.fa-store-alt-slash:before{content:"\e070"}.fa-server:before{content:"\f233"}.fa-virus-covid-slash:before{content:"\e4a9"}.fa-shop-lock:before{content:"\e4a5"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-blender-phone:before{content:"\f6b6"}.fa-building-wheat:before{content:"\e4db"}.fa-person-breastfeeding:before{content:"\e53a"}.fa-right-to-bracket:before,.fa-sign-in-alt:before{content:"\f2f6"}.fa-venus:before{content:"\f221"}.fa-passport:before{content:"\f5ab"}.fa-thumb-tack-slash:before,.fa-thumbtack-slash:before{content:"\e68f"}.fa-heart-pulse:before,.fa-heartbeat:before{content:"\f21e"}.fa-people-carry-box:before,.fa-people-carry:before{content:"\f4ce"}.fa-temperature-high:before{content:"\f769"}.fa-microchip:before{content:"\f2db"}.fa-crown:before{content:"\f521"}.fa-weight-hanging:before{content:"\f5cd"}.fa-xmarks-lines:before{content:"\e59a"}.fa-file-prescription:before{content:"\f572"}.fa-weight-scale:before,.fa-weight:before{content:"\f496"}.fa-user-friends:before,.fa-user-group:before{content:"\f500"}.fa-arrow-up-a-z:before,.fa-sort-alpha-up:before{content:"\f15e"}.fa-chess-knight:before{content:"\f441"}.fa-face-laugh-squint:before,.fa-laugh-squint:before{content:"\f59b"}.fa-wheelchair:before{content:"\f193"}.fa-arrow-circle-up:before,.fa-circle-arrow-up:before{content:"\f0aa"}.fa-toggle-on:before{content:"\f205"}.fa-person-walking:before,.fa-walking:before{content:"\f554"}.fa-l:before{content:"\4c"}.fa-fire:before{content:"\f06d"}.fa-bed-pulse:before,.fa-procedures:before{content:"\f487"}.fa-shuttle-space:before,.fa-space-shuttle:before{content:"\f197"}.fa-face-laugh:before,.fa-laugh:before{content:"\f599"}.fa-folder-open:before{content:"\f07c"}.fa-heart-circle-plus:before{content:"\e500"}.fa-code-fork:before{content:"\e13b"}.fa-city:before{content:"\f64f"}.fa-microphone-alt:before,.fa-microphone-lines:before{content:"\f3c9"}.fa-pepper-hot:before{content:"\f816"}.fa-unlock:before{content:"\f09c"}.fa-colon-sign:before{content:"\e140"}.fa-headset:before{content:"\f590"}.fa-store-slash:before{content:"\e071"}.fa-road-circle-xmark:before{content:"\e566"}.fa-user-minus:before{content:"\f503"}.fa-mars-stroke-up:before,.fa-mars-stroke-v:before{content:"\f22a"}.fa-champagne-glasses:before,.fa-glass-cheers:before{content:"\f79f"}.fa-clipboard:before{content:"\f328"}.fa-house-circle-exclamation:before{content:"\e50a"}.fa-file-arrow-up:before,.fa-file-upload:before{content:"\f574"}.fa-wifi-3:before,.fa-wifi-strong:before,.fa-wifi:before{content:"\f1eb"}.fa-bath:before,.fa-bathtub:before{content:"\f2cd"}.fa-underline:before{content:"\f0cd"}.fa-user-edit:before,.fa-user-pen:before{content:"\f4ff"}.fa-signature:before{content:"\f5b7"}.fa-stroopwafel:before{content:"\f551"}.fa-bold:before{content:"\f032"}.fa-anchor-lock:before{content:"\e4ad"}.fa-building-ngo:before{content:"\e4d7"}.fa-manat-sign:before{content:"\e1d5"}.fa-not-equal:before{content:"\f53e"}.fa-border-style:before,.fa-border-top-left:before{content:"\f853"}.fa-map-location-dot:before,.fa-map-marked-alt:before{content:"\f5a0"}.fa-jedi:before{content:"\f669"}.fa-poll:before,.fa-square-poll-vertical:before{content:"\f681"}.fa-mug-hot:before{content:"\f7b6"}.fa-battery-car:before,.fa-car-battery:before{content:"\f5df"}.fa-gift:before{content:"\f06b"}.fa-dice-two:before{content:"\f528"}.fa-chess-queen:before{content:"\f445"}.fa-glasses:before{content:"\f530"}.fa-chess-board:before{content:"\f43c"}.fa-building-circle-check:before{content:"\e4d2"}.fa-person-chalkboard:before{content:"\e53d"}.fa-mars-stroke-h:before,.fa-mars-stroke-right:before{content:"\f22b"}.fa-hand-back-fist:before,.fa-hand-rock:before{content:"\f255"}.fa-caret-square-up:before,.fa-square-caret-up:before{content:"\f151"}.fa-cloud-showers-water:before{content:"\e4e4"}.fa-bar-chart:before,.fa-chart-bar:before{content:"\f080"}.fa-hands-bubbles:before,.fa-hands-wash:before{content:"\e05e"}.fa-less-than-equal:before{content:"\f537"}.fa-train:before{content:"\f238"}.fa-eye-low-vision:before,.fa-low-vision:before{content:"\f2a8"}.fa-crow:before{content:"\f520"}.fa-sailboat:before{content:"\e445"}.fa-window-restore:before{content:"\f2d2"}.fa-plus-square:before,.fa-square-plus:before{content:"\f0fe"}.fa-torii-gate:before{content:"\f6a1"}.fa-frog:before{content:"\f52e"}.fa-bucket:before{content:"\e4cf"}.fa-image:before{content:"\f03e"}.fa-microphone:before{content:"\f130"}.fa-cow:before{content:"\f6c8"}.fa-caret-up:before{content:"\f0d8"}.fa-screwdriver:before{content:"\f54a"}.fa-folder-closed:before{content:"\e185"}.fa-house-tsunami:before{content:"\e515"}.fa-square-nfi:before{content:"\e576"}.fa-arrow-up-from-ground-water:before{content:"\e4b5"}.fa-glass-martini-alt:before,.fa-martini-glass:before{content:"\f57b"}.fa-rotate-back:before,.fa-rotate-backward:before,.fa-rotate-left:before,.fa-undo-alt:before{content:"\f2ea"}.fa-columns:before,.fa-table-columns:before{content:"\f0db"}.fa-lemon:before{content:"\f094"}.fa-head-side-mask:before{content:"\e063"}.fa-handshake:before{content:"\f2b5"}.fa-gem:before{content:"\f3a5"}.fa-dolly-box:before,.fa-dolly:before{content:"\f472"}.fa-smoking:before{content:"\f48d"}.fa-compress-arrows-alt:before,.fa-minimize:before{content:"\f78c"}.fa-monument:before{content:"\f5a6"}.fa-snowplow:before{content:"\f7d2"}.fa-angle-double-right:before,.fa-angles-right:before{content:"\f101"}.fa-cannabis:before{content:"\f55f"}.fa-circle-play:before,.fa-play-circle:before{content:"\f144"}.fa-tablets:before{content:"\f490"}.fa-ethernet:before{content:"\f796"}.fa-eur:before,.fa-euro-sign:before,.fa-euro:before{content:"\f153"}.fa-chair:before{content:"\f6c0"}.fa-check-circle:before,.fa-circle-check:before{content:"\f058"}.fa-circle-stop:before,.fa-stop-circle:before{content:"\f28d"}.fa-compass-drafting:before,.fa-drafting-compass:before{content:"\f568"}.fa-plate-wheat:before{content:"\e55a"}.fa-icicles:before{content:"\f7ad"}.fa-person-shelter:before{content:"\e54f"}.fa-neuter:before{content:"\f22c"}.fa-id-badge:before{content:"\f2c1"}.fa-marker:before{content:"\f5a1"}.fa-face-laugh-beam:before,.fa-laugh-beam:before{content:"\f59a"}.fa-helicopter-symbol:before{content:"\e502"}.fa-universal-access:before{content:"\f29a"}.fa-chevron-circle-up:before,.fa-circle-chevron-up:before{content:"\f139"}.fa-lari-sign:before{content:"\e1c8"}.fa-volcano:before{content:"\f770"}.fa-person-walking-dashed-line-arrow-right:before{content:"\e553"}.fa-gbp:before,.fa-pound-sign:before,.fa-sterling-sign:before{content:"\f154"}.fa-viruses:before{content:"\e076"}.fa-square-person-confined:before{content:"\e577"}.fa-user-tie:before{content:"\f508"}.fa-arrow-down-long:before,.fa-long-arrow-down:before{content:"\f175"}.fa-tent-arrow-down-to-line:before{content:"\e57e"}.fa-certificate:before{content:"\f0a3"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-suitcase:before{content:"\f0f2"}.fa-person-skating:before,.fa-skating:before{content:"\f7c5"}.fa-filter-circle-dollar:before,.fa-funnel-dollar:before{content:"\f662"}.fa-camera-retro:before{content:"\f083"}.fa-arrow-circle-down:before,.fa-circle-arrow-down:before{content:"\f0ab"}.fa-arrow-right-to-file:before,.fa-file-import:before{content:"\f56f"}.fa-external-link-square:before,.fa-square-arrow-up-right:before{content:"\f14c"}.fa-box-open:before{content:"\f49e"}.fa-scroll:before{content:"\f70e"}.fa-spa:before{content:"\f5bb"}.fa-location-pin-lock:before{content:"\e51f"}.fa-pause:before{content:"\f04c"}.fa-hill-avalanche:before{content:"\e507"}.fa-temperature-0:before,.fa-temperature-empty:before,.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-bomb:before{content:"\f1e2"}.fa-registered:before{content:"\f25d"}.fa-address-card:before,.fa-contact-card:before,.fa-vcard:before{content:"\f2bb"}.fa-balance-scale-right:before,.fa-scale-unbalanced-flip:before{content:"\f516"}.fa-subscript:before{content:"\f12c"}.fa-diamond-turn-right:before,.fa-directions:before{content:"\f5eb"}.fa-burst:before{content:"\e4dc"}.fa-house-laptop:before,.fa-laptop-house:before{content:"\e066"}.fa-face-tired:before,.fa-tired:before{content:"\f5c8"}.fa-money-bills:before{content:"\e1f3"}.fa-smog:before{content:"\f75f"}.fa-crutch:before{content:"\f7f7"}.fa-cloud-arrow-up:before,.fa-cloud-upload-alt:before,.fa-cloud-upload:before{content:"\f0ee"}.fa-palette:before{content:"\f53f"}.fa-arrows-turn-right:before{content:"\e4c0"}.fa-vest:before{content:"\e085"}.fa-ferry:before{content:"\e4ea"}.fa-arrows-down-to-people:before{content:"\e4b9"}.fa-seedling:before,.fa-sprout:before{content:"\f4d8"}.fa-arrows-alt-h:before,.fa-left-right:before{content:"\f337"}.fa-boxes-packing:before{content:"\e4c7"}.fa-arrow-circle-left:before,.fa-circle-arrow-left:before{content:"\f0a8"}.fa-group-arrows-rotate:before{content:"\e4f6"}.fa-bowl-food:before{content:"\e4c6"}.fa-candy-cane:before{content:"\f786"}.fa-arrow-down-wide-short:before,.fa-sort-amount-asc:before,.fa-sort-amount-down:before{content:"\f160"}.fa-cloud-bolt:before,.fa-thunderstorm:before{content:"\f76c"}.fa-remove-format:before,.fa-text-slash:before{content:"\f87d"}.fa-face-smile-wink:before,.fa-smile-wink:before{content:"\f4da"}.fa-file-word:before{content:"\f1c2"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-arrows-h:before,.fa-arrows-left-right:before{content:"\f07e"}.fa-house-lock:before{content:"\e510"}.fa-cloud-arrow-down:before,.fa-cloud-download-alt:before,.fa-cloud-download:before{content:"\f0ed"}.fa-children:before{content:"\e4e1"}.fa-blackboard:before,.fa-chalkboard:before{content:"\f51b"}.fa-user-alt-slash:before,.fa-user-large-slash:before{content:"\f4fa"}.fa-envelope-open:before{content:"\f2b6"}.fa-handshake-alt-slash:before,.fa-handshake-simple-slash:before{content:"\e05f"}.fa-mattress-pillow:before{content:"\e525"}.fa-guarani-sign:before{content:"\e19a"}.fa-arrows-rotate:before,.fa-refresh:before,.fa-sync:before{content:"\f021"}.fa-fire-extinguisher:before{content:"\f134"}.fa-cruzeiro-sign:before{content:"\e152"}.fa-greater-than-equal:before{content:"\f532"}.fa-shield-alt:before,.fa-shield-halved:before{content:"\f3ed"}.fa-atlas:before,.fa-book-atlas:before{content:"\f558"}.fa-virus:before{content:"\e074"}.fa-envelope-circle-check:before{content:"\e4e8"}.fa-layer-group:before{content:"\f5fd"}.fa-arrows-to-dot:before{content:"\e4be"}.fa-archway:before{content:"\f557"}.fa-heart-circle-check:before{content:"\e4fd"}.fa-house-chimney-crack:before,.fa-house-damage:before{content:"\f6f1"}.fa-file-archive:before,.fa-file-zipper:before{content:"\f1c6"}.fa-square:before{content:"\f0c8"}.fa-glass-martini:before,.fa-martini-glass-empty:before{content:"\f000"}.fa-couch:before{content:"\f4b8"}.fa-cedi-sign:before{content:"\e0df"}.fa-italic:before{content:"\f033"}.fa-table-cells-column-lock:before{content:"\e678"}.fa-church:before{content:"\f51d"}.fa-comments-dollar:before{content:"\f653"}.fa-democrat:before{content:"\f747"}.fa-z:before{content:"\5a"}.fa-person-skiing:before,.fa-skiing:before{content:"\f7c9"}.fa-road-lock:before{content:"\e567"}.fa-a:before{content:"\41"}.fa-temperature-arrow-down:before,.fa-temperature-down:before{content:"\e03f"}.fa-feather-alt:before,.fa-feather-pointed:before{content:"\f56b"}.fa-p:before{content:"\50"}.fa-snowflake:before{content:"\f2dc"}.fa-newspaper:before{content:"\f1ea"}.fa-ad:before,.fa-rectangle-ad:before{content:"\f641"}.fa-arrow-circle-right:before,.fa-circle-arrow-right:before{content:"\f0a9"}.fa-filter-circle-xmark:before{content:"\e17b"}.fa-locust:before{content:"\e520"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-list-1-2:before,.fa-list-numeric:before,.fa-list-ol:before{content:"\f0cb"}.fa-person-dress-burst:before{content:"\e544"}.fa-money-check-alt:before,.fa-money-check-dollar:before{content:"\f53d"}.fa-vector-square:before{content:"\f5cb"}.fa-bread-slice:before{content:"\f7ec"}.fa-language:before{content:"\f1ab"}.fa-face-kiss-wink-heart:before,.fa-kiss-wink-heart:before{content:"\f598"}.fa-filter:before{content:"\f0b0"}.fa-question:before{content:"\3f"}.fa-file-signature:before{content:"\f573"}.fa-arrows-alt:before,.fa-up-down-left-right:before{content:"\f0b2"}.fa-house-chimney-user:before{content:"\e065"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-puzzle-piece:before{content:"\f12e"}.fa-money-check:before{content:"\f53c"}.fa-star-half-alt:before,.fa-star-half-stroke:before{content:"\f5c0"}.fa-code:before{content:"\f121"}.fa-glass-whiskey:before,.fa-whiskey-glass:before{content:"\f7a0"}.fa-building-circle-exclamation:before{content:"\e4d3"}.fa-magnifying-glass-chart:before{content:"\e522"}.fa-arrow-up-right-from-square:before,.fa-external-link:before{content:"\f08e"}.fa-cubes-stacked:before{content:"\e4e6"}.fa-krw:before,.fa-won-sign:before,.fa-won:before{content:"\f159"}.fa-virus-covid:before{content:"\e4a8"}.fa-austral-sign:before{content:"\e0a9"}.fa-f:before{content:"\46"}.fa-leaf:before{content:"\f06c"}.fa-road:before{content:"\f018"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-person-circle-plus:before{content:"\e541"}.fa-chart-pie:before,.fa-pie-chart:before{content:"\f200"}.fa-bolt-lightning:before{content:"\e0b7"}.fa-sack-xmark:before{content:"\e56a"}.fa-file-excel:before{content:"\f1c3"}.fa-file-contract:before{content:"\f56c"}.fa-fish-fins:before{content:"\e4f2"}.fa-building-flag:before{content:"\e4d5"}.fa-face-grin-beam:before,.fa-grin-beam:before{content:"\f582"}.fa-object-ungroup:before{content:"\f248"}.fa-poop:before{content:"\f619"}.fa-location-pin:before,.fa-map-marker:before{content:"\f041"}.fa-kaaba:before{content:"\f66b"}.fa-toilet-paper:before{content:"\f71e"}.fa-hard-hat:before,.fa-hat-hard:before,.fa-helmet-safety:before{content:"\f807"}.fa-eject:before{content:"\f052"}.fa-arrow-alt-circle-right:before,.fa-circle-right:before{content:"\f35a"}.fa-plane-circle-check:before{content:"\e555"}.fa-face-rolling-eyes:before,.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-object-group:before{content:"\f247"}.fa-chart-line:before,.fa-line-chart:before{content:"\f201"}.fa-mask-ventilator:before{content:"\e524"}.fa-arrow-right:before{content:"\f061"}.fa-map-signs:before,.fa-signs-post:before{content:"\f277"}.fa-cash-register:before{content:"\f788"}.fa-person-circle-question:before{content:"\e542"}.fa-h:before{content:"\48"}.fa-tarp:before{content:"\e57b"}.fa-screwdriver-wrench:before,.fa-tools:before{content:"\f7d9"}.fa-arrows-to-eye:before{content:"\e4bf"}.fa-plug-circle-bolt:before{content:"\e55b"}.fa-heart:before{content:"\f004"}.fa-mars-and-venus:before{content:"\f224"}.fa-home-user:before,.fa-house-user:before{content:"\e1b0"}.fa-dumpster-fire:before{content:"\f794"}.fa-house-crack:before{content:"\e3b1"}.fa-cocktail:before,.fa-martini-glass-citrus:before{content:"\f561"}.fa-face-surprise:before,.fa-surprise:before{content:"\f5c2"}.fa-bottle-water:before{content:"\e4c5"}.fa-circle-pause:before,.fa-pause-circle:before{content:"\f28b"}.fa-toilet-paper-slash:before{content:"\e072"}.fa-apple-alt:before,.fa-apple-whole:before{content:"\f5d1"}.fa-kitchen-set:before{content:"\e51a"}.fa-r:before{content:"\52"}.fa-temperature-1:before,.fa-temperature-quarter:before,.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-cube:before{content:"\f1b2"}.fa-bitcoin-sign:before{content:"\e0b4"}.fa-shield-dog:before{content:"\e573"}.fa-solar-panel:before{content:"\f5ba"}.fa-lock-open:before{content:"\f3c1"}.fa-elevator:before{content:"\e16d"}.fa-money-bill-transfer:before{content:"\e528"}.fa-money-bill-trend-up:before{content:"\e529"}.fa-house-flood-water-circle-arrow-right:before{content:"\e50f"}.fa-poll-h:before,.fa-square-poll-horizontal:before{content:"\f682"}.fa-circle:before{content:"\f111"}.fa-backward-fast:before,.fa-fast-backward:before{content:"\f049"}.fa-recycle:before{content:"\f1b8"}.fa-user-astronaut:before{content:"\f4fb"}.fa-plane-slash:before{content:"\e069"}.fa-trademark:before{content:"\f25c"}.fa-basketball-ball:before,.fa-basketball:before{content:"\f434"}.fa-satellite-dish:before{content:"\f7c0"}.fa-arrow-alt-circle-up:before,.fa-circle-up:before{content:"\f35b"}.fa-mobile-alt:before,.fa-mobile-screen-button:before{content:"\f3cd"}.fa-volume-high:before,.fa-volume-up:before{content:"\f028"}.fa-users-rays:before{content:"\e593"}.fa-wallet:before{content:"\f555"}.fa-clipboard-check:before{content:"\f46c"}.fa-file-audio:before{content:"\f1c7"}.fa-burger:before,.fa-hamburger:before{content:"\f805"}.fa-wrench:before{content:"\f0ad"}.fa-bugs:before{content:"\e4d0"}.fa-rupee-sign:before,.fa-rupee:before{content:"\f156"}.fa-file-image:before{content:"\f1c5"}.fa-circle-question:before,.fa-question-circle:before{content:"\f059"}.fa-plane-departure:before{content:"\f5b0"}.fa-handshake-slash:before{content:"\e060"}.fa-book-bookmark:before{content:"\e0bb"}.fa-code-branch:before{content:"\f126"}.fa-hat-cowboy:before{content:"\f8c0"}.fa-bridge:before{content:"\e4c8"}.fa-phone-alt:before,.fa-phone-flip:before{content:"\f879"}.fa-truck-front:before{content:"\e2b7"}.fa-cat:before{content:"\f6be"}.fa-anchor-circle-exclamation:before{content:"\e4ab"}.fa-truck-field:before{content:"\e58d"}.fa-route:before{content:"\f4d7"}.fa-clipboard-question:before{content:"\e4e3"}.fa-panorama:before{content:"\e209"}.fa-comment-medical:before{content:"\f7f5"}.fa-teeth-open:before{content:"\f62f"}.fa-file-circle-minus:before{content:"\e4ed"}.fa-tags:before{content:"\f02c"}.fa-wine-glass:before{content:"\f4e3"}.fa-fast-forward:before,.fa-forward-fast:before{content:"\f050"}.fa-face-meh-blank:before,.fa-meh-blank:before{content:"\f5a4"}.fa-parking:before,.fa-square-parking:before{content:"\f540"}.fa-house-signal:before{content:"\e012"}.fa-bars-progress:before,.fa-tasks-alt:before{content:"\f828"}.fa-faucet-drip:before{content:"\e006"}.fa-cart-flatbed:before,.fa-dolly-flatbed:before{content:"\f474"}.fa-ban-smoking:before,.fa-smoking-ban:before{content:"\f54d"}.fa-terminal:before{content:"\f120"}.fa-mobile-button:before{content:"\f10b"}.fa-house-medical-flag:before{content:"\e514"}.fa-basket-shopping:before,.fa-shopping-basket:before{content:"\f291"}.fa-tape:before{content:"\f4db"}.fa-bus-alt:before,.fa-bus-simple:before{content:"\f55e"}.fa-eye:before{content:"\f06e"}.fa-face-sad-cry:before,.fa-sad-cry:before{content:"\f5b3"}.fa-audio-description:before{content:"\f29e"}.fa-person-military-to-person:before{content:"\e54c"}.fa-file-shield:before{content:"\e4f0"}.fa-user-slash:before{content:"\f506"}.fa-pen:before{content:"\f304"}.fa-tower-observation:before{content:"\e586"}.fa-file-code:before{content:"\f1c9"}.fa-signal-5:before,.fa-signal-perfect:before,.fa-signal:before{content:"\f012"}.fa-bus:before{content:"\f207"}.fa-heart-circle-xmark:before{content:"\e501"}.fa-home-lg:before,.fa-house-chimney:before{content:"\e3af"}.fa-window-maximize:before{content:"\f2d0"}.fa-face-frown:before,.fa-frown:before{content:"\f119"}.fa-prescription:before{content:"\f5b1"}.fa-shop:before,.fa-store-alt:before{content:"\f54f"}.fa-floppy-disk:before,.fa-save:before{content:"\f0c7"}.fa-vihara:before{content:"\f6a7"}.fa-balance-scale-left:before,.fa-scale-unbalanced:before{content:"\f515"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-comment-dots:before,.fa-commenting:before{content:"\f4ad"}.fa-plant-wilt:before{content:"\e5aa"}.fa-diamond:before{content:"\f219"}.fa-face-grin-squint:before,.fa-grin-squint:before{content:"\f585"}.fa-hand-holding-dollar:before,.fa-hand-holding-usd:before{content:"\f4c0"}.fa-bacterium:before{content:"\e05a"}.fa-hand-pointer:before{content:"\f25a"}.fa-drum-steelpan:before{content:"\f56a"}.fa-hand-scissors:before{content:"\f257"}.fa-hands-praying:before,.fa-praying-hands:before{content:"\f684"}.fa-arrow-right-rotate:before,.fa-arrow-rotate-forward:before,.fa-arrow-rotate-right:before,.fa-redo:before{content:"\f01e"}.fa-biohazard:before{content:"\f780"}.fa-location-crosshairs:before,.fa-location:before{content:"\f601"}.fa-mars-double:before{content:"\f227"}.fa-child-dress:before{content:"\e59c"}.fa-users-between-lines:before{content:"\e591"}.fa-lungs-virus:before{content:"\e067"}.fa-face-grin-tears:before,.fa-grin-tears:before{content:"\f588"}.fa-phone:before{content:"\f095"}.fa-calendar-times:before,.fa-calendar-xmark:before{content:"\f273"}.fa-child-reaching:before{content:"\e59d"}.fa-head-side-virus:before{content:"\e064"}.fa-user-cog:before,.fa-user-gear:before{content:"\f4fe"}.fa-arrow-up-1-9:before,.fa-sort-numeric-up:before{content:"\f163"}.fa-door-closed:before{content:"\f52a"}.fa-shield-virus:before{content:"\e06c"}.fa-dice-six:before{content:"\f526"}.fa-mosquito-net:before{content:"\e52c"}.fa-bridge-water:before{content:"\e4ce"}.fa-person-booth:before{content:"\f756"}.fa-text-width:before{content:"\f035"}.fa-hat-wizard:before{content:"\f6e8"}.fa-pen-fancy:before{content:"\f5ac"}.fa-digging:before,.fa-person-digging:before{content:"\f85e"}.fa-trash:before{content:"\f1f8"}.fa-gauge-simple-med:before,.fa-gauge-simple:before,.fa-tachometer-average:before{content:"\f629"}.fa-book-medical:before{content:"\f7e6"}.fa-poo:before{content:"\f2fe"}.fa-quote-right-alt:before,.fa-quote-right:before{content:"\f10e"}.fa-shirt:before,.fa-t-shirt:before,.fa-tshirt:before{content:"\f553"}.fa-cubes:before{content:"\f1b3"}.fa-divide:before{content:"\f529"}.fa-tenge-sign:before,.fa-tenge:before{content:"\f7d7"}.fa-headphones:before{content:"\f025"}.fa-hands-holding:before{content:"\f4c2"}.fa-hands-clapping:before{content:"\e1a8"}.fa-republican:before{content:"\f75e"}.fa-arrow-left:before{content:"\f060"}.fa-person-circle-xmark:before{content:"\e543"}.fa-ruler:before{content:"\f545"}.fa-align-left:before{content:"\f036"}.fa-dice-d6:before{content:"\f6d1"}.fa-restroom:before{content:"\f7bd"}.fa-j:before{content:"\4a"}.fa-users-viewfinder:before{content:"\e595"}.fa-file-video:before{content:"\f1c8"}.fa-external-link-alt:before,.fa-up-right-from-square:before{content:"\f35d"}.fa-table-cells:before,.fa-th:before{content:"\f00a"}.fa-file-pdf:before{content:"\f1c1"}.fa-bible:before,.fa-book-bible:before{content:"\f647"}.fa-o:before{content:"\4f"}.fa-medkit:before,.fa-suitcase-medical:before{content:"\f0fa"}.fa-user-secret:before{content:"\f21b"}.fa-otter:before{content:"\f700"}.fa-female:before,.fa-person-dress:before{content:"\f182"}.fa-comment-dollar:before{content:"\f651"}.fa-briefcase-clock:before,.fa-business-time:before{content:"\f64a"}.fa-table-cells-large:before,.fa-th-large:before{content:"\f009"}.fa-book-tanakh:before,.fa-tanakh:before{content:"\f827"}.fa-phone-volume:before,.fa-volume-control-phone:before{content:"\f2a0"}.fa-hat-cowboy-side:before{content:"\f8c1"}.fa-clipboard-user:before{content:"\f7f3"}.fa-child:before{content:"\f1ae"}.fa-lira-sign:before{content:"\f195"}.fa-satellite:before{content:"\f7bf"}.fa-plane-lock:before{content:"\e558"}.fa-tag:before{content:"\f02b"}.fa-comment:before{content:"\f075"}.fa-birthday-cake:before,.fa-cake-candles:before,.fa-cake:before{content:"\f1fd"}.fa-envelope:before{content:"\f0e0"}.fa-angle-double-up:before,.fa-angles-up:before{content:"\f102"}.fa-paperclip:before{content:"\f0c6"}.fa-arrow-right-to-city:before{content:"\e4b3"}.fa-ribbon:before{content:"\f4d6"}.fa-lungs:before{content:"\f604"}.fa-arrow-up-9-1:before,.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-litecoin-sign:before{content:"\e1d3"}.fa-border-none:before{content:"\f850"}.fa-circle-nodes:before{content:"\e4e2"}.fa-parachute-box:before{content:"\f4cd"}.fa-indent:before{content:"\f03c"}.fa-truck-field-un:before{content:"\e58e"}.fa-hourglass-empty:before,.fa-hourglass:before{content:"\f254"}.fa-mountain:before{content:"\f6fc"}.fa-user-doctor:before,.fa-user-md:before{content:"\f0f0"}.fa-circle-info:before,.fa-info-circle:before{content:"\f05a"}.fa-cloud-meatball:before{content:"\f73b"}.fa-camera-alt:before,.fa-camera:before{content:"\f030"}.fa-square-virus:before{content:"\e578"}.fa-meteor:before{content:"\f753"}.fa-car-on:before{content:"\e4dd"}.fa-sleigh:before{content:"\f7cc"}.fa-arrow-down-1-9:before,.fa-sort-numeric-asc:before,.fa-sort-numeric-down:before{content:"\f162"}.fa-hand-holding-droplet:before,.fa-hand-holding-water:before{content:"\f4c1"}.fa-water:before{content:"\f773"}.fa-calendar-check:before{content:"\f274"}.fa-braille:before{content:"\f2a1"}.fa-prescription-bottle-alt:before,.fa-prescription-bottle-medical:before{content:"\f486"}.fa-landmark:before{content:"\f66f"}.fa-truck:before{content:"\f0d1"}.fa-crosshairs:before{content:"\f05b"}.fa-person-cane:before{content:"\e53c"}.fa-tent:before{content:"\e57d"}.fa-vest-patches:before{content:"\e086"}.fa-check-double:before{content:"\f560"}.fa-arrow-down-a-z:before,.fa-sort-alpha-asc:before,.fa-sort-alpha-down:before{content:"\f15d"}.fa-money-bill-wheat:before{content:"\e52a"}.fa-cookie:before{content:"\f563"}.fa-arrow-left-rotate:before,.fa-arrow-rotate-back:before,.fa-arrow-rotate-backward:before,.fa-arrow-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-hard-drive:before,.fa-hdd:before{content:"\f0a0"}.fa-face-grin-squint-tears:before,.fa-grin-squint-tears:before{content:"\f586"}.fa-dumbbell:before{content:"\f44b"}.fa-list-alt:before,.fa-rectangle-list:before{content:"\f022"}.fa-tarp-droplet:before{content:"\e57c"}.fa-house-medical-circle-check:before{content:"\e511"}.fa-person-skiing-nordic:before,.fa-skiing-nordic:before{content:"\f7ca"}.fa-calendar-plus:before{content:"\f271"}.fa-plane-arrival:before{content:"\f5af"}.fa-arrow-alt-circle-left:before,.fa-circle-left:before{content:"\f359"}.fa-subway:before,.fa-train-subway:before{content:"\f239"}.fa-chart-gantt:before{content:"\e0e4"}.fa-indian-rupee-sign:before,.fa-indian-rupee:before,.fa-inr:before{content:"\e1bc"}.fa-crop-alt:before,.fa-crop-simple:before{content:"\f565"}.fa-money-bill-1:before,.fa-money-bill-alt:before{content:"\f3d1"}.fa-left-long:before,.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-dna:before{content:"\f471"}.fa-virus-slash:before{content:"\e075"}.fa-minus:before,.fa-subtract:before{content:"\f068"}.fa-chess:before{content:"\f439"}.fa-arrow-left-long:before,.fa-long-arrow-left:before{content:"\f177"}.fa-plug-circle-check:before{content:"\e55c"}.fa-street-view:before{content:"\f21d"}.fa-franc-sign:before{content:"\e18f"}.fa-volume-off:before{content:"\f026"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before,.fa-hands-american-sign-language-interpreting:before,.fa-hands-asl-interpreting:before{content:"\f2a3"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-droplet-slash:before,.fa-tint-slash:before{content:"\f5c7"}.fa-mosque:before{content:"\f678"}.fa-mosquito:before{content:"\e52b"}.fa-star-of-david:before{content:"\f69a"}.fa-person-military-rifle:before{content:"\e54b"}.fa-cart-shopping:before,.fa-shopping-cart:before{content:"\f07a"}.fa-vials:before{content:"\f493"}.fa-plug-circle-plus:before{content:"\e55f"}.fa-place-of-worship:before{content:"\f67f"}.fa-grip-vertical:before{content:"\f58e"}.fa-arrow-turn-up:before,.fa-level-up:before{content:"\f148"}.fa-u:before{content:"\55"}.fa-square-root-alt:before,.fa-square-root-variable:before{content:"\f698"}.fa-clock-four:before,.fa-clock:before{content:"\f017"}.fa-backward-step:before,.fa-step-backward:before{content:"\f048"}.fa-pallet:before{content:"\f482"}.fa-faucet:before{content:"\e005"}.fa-baseball-bat-ball:before{content:"\f432"}.fa-s:before{content:"\53"}.fa-timeline:before{content:"\e29c"}.fa-keyboard:before{content:"\f11c"}.fa-caret-down:before{content:"\f0d7"}.fa-clinic-medical:before,.fa-house-chimney-medical:before{content:"\f7f2"}.fa-temperature-3:before,.fa-temperature-three-quarters:before,.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-mobile-android-alt:before,.fa-mobile-screen:before{content:"\f3cf"}.fa-plane-up:before{content:"\e22d"}.fa-piggy-bank:before{content:"\f4d3"}.fa-battery-3:before,.fa-battery-half:before{content:"\f242"}.fa-mountain-city:before{content:"\e52e"}.fa-coins:before{content:"\f51e"}.fa-khanda:before{content:"\f66d"}.fa-sliders-h:before,.fa-sliders:before{content:"\f1de"}.fa-folder-tree:before{content:"\f802"}.fa-network-wired:before{content:"\f6ff"}.fa-map-pin:before{content:"\f276"}.fa-hamsa:before{content:"\f665"}.fa-cent-sign:before{content:"\e3f5"}.fa-flask:before{content:"\f0c3"}.fa-person-pregnant:before{content:"\e31e"}.fa-wand-sparkles:before{content:"\f72b"}.fa-ellipsis-v:before,.fa-ellipsis-vertical:before{content:"\f142"}.fa-ticket:before{content:"\f145"}.fa-power-off:before{content:"\f011"}.fa-long-arrow-alt-right:before,.fa-right-long:before{content:"\f30b"}.fa-flag-usa:before{content:"\f74d"}.fa-laptop-file:before{content:"\e51d"}.fa-teletype:before,.fa-tty:before{content:"\f1e4"}.fa-diagram-next:before{content:"\e476"}.fa-person-rifle:before{content:"\e54e"}.fa-house-medical-circle-exclamation:before{content:"\e512"}.fa-closed-captioning:before{content:"\f20a"}.fa-hiking:before,.fa-person-hiking:before{content:"\f6ec"}.fa-venus-double:before{content:"\f226"}.fa-images:before{content:"\f302"}.fa-calculator:before{content:"\f1ec"}.fa-people-pulling:before{content:"\e535"}.fa-n:before{content:"\4e"}.fa-cable-car:before,.fa-tram:before{content:"\f7da"}.fa-cloud-rain:before{content:"\f73d"}.fa-building-circle-xmark:before{content:"\e4d4"}.fa-ship:before{content:"\f21a"}.fa-arrows-down-to-line:before{content:"\e4b8"}.fa-download:before{content:"\f019"}.fa-face-grin:before,.fa-grin:before{content:"\f580"}.fa-backspace:before,.fa-delete-left:before{content:"\f55a"}.fa-eye-dropper-empty:before,.fa-eye-dropper:before,.fa-eyedropper:before{content:"\f1fb"}.fa-file-circle-check:before{content:"\e5a0"}.fa-forward:before{content:"\f04e"}.fa-mobile-android:before,.fa-mobile-phone:before,.fa-mobile:before{content:"\f3ce"}.fa-face-meh:before,.fa-meh:before{content:"\f11a"}.fa-align-center:before{content:"\f037"}.fa-book-dead:before,.fa-book-skull:before{content:"\f6b7"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-heart-circle-exclamation:before{content:"\e4fe"}.fa-home-alt:before,.fa-home-lg-alt:before,.fa-home:before,.fa-house:before{content:"\f015"}.fa-calendar-week:before{content:"\f784"}.fa-laptop-medical:before{content:"\f812"}.fa-b:before{content:"\42"}.fa-file-medical:before{content:"\f477"}.fa-dice-one:before{content:"\f525"}.fa-kiwi-bird:before{content:"\f535"}.fa-arrow-right-arrow-left:before,.fa-exchange:before{content:"\f0ec"}.fa-redo-alt:before,.fa-rotate-forward:before,.fa-rotate-right:before{content:"\f2f9"}.fa-cutlery:before,.fa-utensils:before{content:"\f2e7"}.fa-arrow-up-wide-short:before,.fa-sort-amount-up:before{content:"\f161"}.fa-mill-sign:before{content:"\e1ed"}.fa-bowl-rice:before{content:"\e2eb"}.fa-skull:before{content:"\f54c"}.fa-broadcast-tower:before,.fa-tower-broadcast:before{content:"\f519"}.fa-truck-pickup:before{content:"\f63c"}.fa-long-arrow-alt-up:before,.fa-up-long:before{content:"\f30c"}.fa-stop:before{content:"\f04d"}.fa-code-merge:before{content:"\f387"}.fa-upload:before{content:"\f093"}.fa-hurricane:before{content:"\f751"}.fa-mound:before{content:"\e52d"}.fa-toilet-portable:before{content:"\e583"}.fa-compact-disc:before{content:"\f51f"}.fa-file-arrow-down:before,.fa-file-download:before{content:"\f56d"}.fa-caravan:before{content:"\f8ff"}.fa-shield-cat:before{content:"\e572"}.fa-bolt:before,.fa-zap:before{content:"\f0e7"}.fa-glass-water:before{content:"\e4f4"}.fa-oil-well:before{content:"\e532"}.fa-vault:before{content:"\e2c5"}.fa-mars:before{content:"\f222"}.fa-toilet:before{content:"\f7d8"}.fa-plane-circle-xmark:before{content:"\e557"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen-sign:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble-sign:before,.fa-ruble:before{content:"\f158"}.fa-sun:before{content:"\f185"}.fa-guitar:before{content:"\f7a6"}.fa-face-laugh-wink:before,.fa-laugh-wink:before{content:"\f59c"}.fa-horse-head:before{content:"\f7ab"}.fa-bore-hole:before{content:"\e4c3"}.fa-industry:before{content:"\f275"}.fa-arrow-alt-circle-down:before,.fa-circle-down:before{content:"\f358"}.fa-arrows-turn-to-dots:before{content:"\e4c1"}.fa-florin-sign:before{content:"\e184"}.fa-arrow-down-short-wide:before,.fa-sort-amount-desc:before,.fa-sort-amount-down-alt:before{content:"\f884"}.fa-less-than:before{content:"\3c"}.fa-angle-down:before{content:"\f107"}.fa-car-tunnel:before{content:"\e4de"}.fa-head-side-cough:before{content:"\e061"}.fa-grip-lines:before{content:"\f7a4"}.fa-thumbs-down:before{content:"\f165"}.fa-user-lock:before{content:"\f502"}.fa-arrow-right-long:before,.fa-long-arrow-right:before{content:"\f178"}.fa-anchor-circle-xmark:before{content:"\e4ac"}.fa-ellipsis-h:before,.fa-ellipsis:before{content:"\f141"}.fa-chess-pawn:before{content:"\f443"}.fa-first-aid:before,.fa-kit-medical:before{content:"\f479"}.fa-person-through-window:before{content:"\e5a9"}.fa-toolbox:before{content:"\f552"}.fa-hands-holding-circle:before{content:"\e4fb"}.fa-bug:before{content:"\f188"}.fa-credit-card-alt:before,.fa-credit-card:before{content:"\f09d"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-hand-holding-hand:before{content:"\e4f7"}.fa-book-open-reader:before,.fa-book-reader:before{content:"\f5da"}.fa-mountain-sun:before{content:"\e52f"}.fa-arrows-left-right-to-line:before{content:"\e4ba"}.fa-dice-d20:before{content:"\f6cf"}.fa-truck-droplet:before{content:"\e58c"}.fa-file-circle-xmark:before{content:"\e5a1"}.fa-temperature-arrow-up:before,.fa-temperature-up:before{content:"\e040"}.fa-medal:before{content:"\f5a2"}.fa-bed:before{content:"\f236"}.fa-h-square:before,.fa-square-h:before{content:"\f0fd"}.fa-podcast:before{content:"\f2ce"}.fa-temperature-4:before,.fa-temperature-full:before,.fa-thermometer-4:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-bell:before{content:"\f0f3"}.fa-superscript:before{content:"\f12b"}.fa-plug-circle-xmark:before{content:"\e560"}.fa-star-of-life:before{content:"\f621"}.fa-phone-slash:before{content:"\f3dd"}.fa-paint-roller:before{content:"\f5aa"}.fa-hands-helping:before,.fa-handshake-angle:before{content:"\f4c4"}.fa-location-dot:before,.fa-map-marker-alt:before{content:"\f3c5"}.fa-file:before{content:"\f15b"}.fa-greater-than:before{content:"\3e"}.fa-person-swimming:before,.fa-swimmer:before{content:"\f5c4"}.fa-arrow-down:before{content:"\f063"}.fa-droplet:before,.fa-tint:before{content:"\f043"}.fa-eraser:before{content:"\f12d"}.fa-earth-america:before,.fa-earth-americas:before,.fa-earth:before,.fa-globe-americas:before{content:"\f57d"}.fa-person-burst:before{content:"\e53b"}.fa-dove:before{content:"\f4ba"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-socks:before{content:"\f696"}.fa-inbox:before{content:"\f01c"}.fa-section:before{content:"\e447"}.fa-gauge-high:before,.fa-tachometer-alt-fast:before,.fa-tachometer-alt:before{content:"\f625"}.fa-envelope-open-text:before{content:"\f658"}.fa-hospital-alt:before,.fa-hospital-wide:before,.fa-hospital:before{content:"\f0f8"}.fa-wine-bottle:before{content:"\f72f"}.fa-chess-rook:before{content:"\f447"}.fa-bars-staggered:before,.fa-reorder:before,.fa-stream:before{content:"\f550"}.fa-dharmachakra:before{content:"\f655"}.fa-hotdog:before{content:"\f80f"}.fa-blind:before,.fa-person-walking-with-cane:before{content:"\f29d"}.fa-drum:before{content:"\f569"}.fa-ice-cream:before{content:"\f810"}.fa-heart-circle-bolt:before{content:"\e4fc"}.fa-fax:before{content:"\f1ac"}.fa-paragraph:before{content:"\f1dd"}.fa-check-to-slot:before,.fa-vote-yea:before{content:"\f772"}.fa-star-half:before{content:"\f089"}.fa-boxes-alt:before,.fa-boxes-stacked:before,.fa-boxes:before{content:"\f468"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-assistive-listening-systems:before,.fa-ear-listen:before{content:"\f2a2"}.fa-tree-city:before{content:"\e587"}.fa-play:before{content:"\f04b"}.fa-font:before{content:"\f031"}.fa-table-cells-row-lock:before{content:"\e67a"}.fa-rupiah-sign:before{content:"\e23d"}.fa-magnifying-glass:before,.fa-search:before{content:"\f002"}.fa-ping-pong-paddle-ball:before,.fa-table-tennis-paddle-ball:before,.fa-table-tennis:before{content:"\f45d"}.fa-diagnoses:before,.fa-person-dots-from-line:before{content:"\f470"}.fa-trash-can-arrow-up:before,.fa-trash-restore-alt:before{content:"\f82a"}.fa-naira-sign:before{content:"\e1f6"}.fa-cart-arrow-down:before{content:"\f218"}.fa-walkie-talkie:before{content:"\f8ef"}.fa-file-edit:before,.fa-file-pen:before{content:"\f31c"}.fa-receipt:before{content:"\f543"}.fa-pen-square:before,.fa-pencil-square:before,.fa-square-pen:before{content:"\f14b"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-person-circle-exclamation:before{content:"\e53f"}.fa-chevron-down:before{content:"\f078"}.fa-battery-5:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-skull-crossbones:before{content:"\f714"}.fa-code-compare:before{content:"\e13a"}.fa-list-dots:before,.fa-list-ul:before{content:"\f0ca"}.fa-school-lock:before{content:"\e56f"}.fa-tower-cell:before{content:"\e585"}.fa-down-long:before,.fa-long-arrow-alt-down:before{content:"\f309"}.fa-ranking-star:before{content:"\e561"}.fa-chess-king:before{content:"\f43f"}.fa-person-harassing:before{content:"\e549"}.fa-brazilian-real-sign:before{content:"\e46c"}.fa-landmark-alt:before,.fa-landmark-dome:before{content:"\f752"}.fa-arrow-up:before{content:"\f062"}.fa-television:before,.fa-tv-alt:before,.fa-tv:before{content:"\f26c"}.fa-shrimp:before{content:"\e448"}.fa-list-check:before,.fa-tasks:before{content:"\f0ae"}.fa-jug-detergent:before{content:"\e519"}.fa-circle-user:before,.fa-user-circle:before{content:"\f2bd"}.fa-user-shield:before{content:"\f505"}.fa-wind:before{content:"\f72e"}.fa-car-burst:before,.fa-car-crash:before{content:"\f5e1"}.fa-y:before{content:"\59"}.fa-person-snowboarding:before,.fa-snowboarding:before{content:"\f7ce"}.fa-shipping-fast:before,.fa-truck-fast:before{content:"\f48b"}.fa-fish:before{content:"\f578"}.fa-user-graduate:before{content:"\f501"}.fa-adjust:before,.fa-circle-half-stroke:before{content:"\f042"}.fa-clapperboard:before{content:"\e131"}.fa-circle-radiation:before,.fa-radiation-alt:before{content:"\f7ba"}.fa-baseball-ball:before,.fa-baseball:before{content:"\f433"}.fa-jet-fighter-up:before{content:"\e518"}.fa-diagram-project:before,.fa-project-diagram:before{content:"\f542"}.fa-copy:before{content:"\f0c5"}.fa-volume-mute:before,.fa-volume-times:before,.fa-volume-xmark:before{content:"\f6a9"}.fa-hand-sparkles:before{content:"\e05d"}.fa-grip-horizontal:before,.fa-grip:before{content:"\f58d"}.fa-share-from-square:before,.fa-share-square:before{content:"\f14d"}.fa-child-combatant:before,.fa-child-rifle:before{content:"\e4e0"}.fa-gun:before{content:"\e19b"}.fa-phone-square:before,.fa-square-phone:before{content:"\f098"}.fa-add:before,.fa-plus:before{content:"\2b"}.fa-expand:before{content:"\f065"}.fa-computer:before{content:"\e4e5"}.fa-close:before,.fa-multiply:before,.fa-remove:before,.fa-times:before,.fa-xmark:before{content:"\f00d"}.fa-arrows-up-down-left-right:before,.fa-arrows:before{content:"\f047"}.fa-chalkboard-teacher:before,.fa-chalkboard-user:before{content:"\f51c"}.fa-peso-sign:before{content:"\e222"}.fa-building-shield:before{content:"\e4d8"}.fa-baby:before{content:"\f77c"}.fa-users-line:before{content:"\e592"}.fa-quote-left-alt:before,.fa-quote-left:before{content:"\f10d"}.fa-tractor:before{content:"\f722"}.fa-trash-arrow-up:before,.fa-trash-restore:before{content:"\f829"}.fa-arrow-down-up-lock:before{content:"\e4b0"}.fa-lines-leaning:before{content:"\e51e"}.fa-ruler-combined:before{content:"\f546"}.fa-copyright:before{content:"\f1f9"}.fa-equals:before{content:"\3d"}.fa-blender:before{content:"\f517"}.fa-teeth:before{content:"\f62e"}.fa-ils:before,.fa-shekel-sign:before,.fa-shekel:before,.fa-sheqel-sign:before,.fa-sheqel:before{content:"\f20b"}.fa-map:before{content:"\f279"}.fa-rocket:before{content:"\f135"}.fa-photo-film:before,.fa-photo-video:before{content:"\f87c"}.fa-folder-minus:before{content:"\f65d"}.fa-store:before{content:"\f54e"}.fa-arrow-trend-up:before{content:"\e098"}.fa-plug-circle-minus:before{content:"\e55e"}.fa-sign-hanging:before,.fa-sign:before{content:"\f4d9"}.fa-bezier-curve:before{content:"\f55b"}.fa-bell-slash:before{content:"\f1f6"}.fa-tablet-android:before,.fa-tablet:before{content:"\f3fb"}.fa-school-flag:before{content:"\e56e"}.fa-fill:before{content:"\f575"}.fa-angle-up:before{content:"\f106"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-holly-berry:before{content:"\f7aa"}.fa-chevron-left:before{content:"\f053"}.fa-bacteria:before{content:"\e059"}.fa-hand-lizard:before{content:"\f258"}.fa-notdef:before{content:"\e1fe"}.fa-disease:before{content:"\f7fa"}.fa-briefcase-medical:before{content:"\f469"}.fa-genderless:before{content:"\f22d"}.fa-chevron-right:before{content:"\f054"}.fa-retweet:before{content:"\f079"}.fa-car-alt:before,.fa-car-rear:before{content:"\f5de"}.fa-pump-soap:before{content:"\e06b"}.fa-video-slash:before{content:"\f4e2"}.fa-battery-2:before,.fa-battery-quarter:before{content:"\f243"}.fa-radio:before{content:"\f8d7"}.fa-baby-carriage:before,.fa-carriage-baby:before{content:"\f77d"}.fa-traffic-light:before{content:"\f637"}.fa-thermometer:before{content:"\f491"}.fa-vr-cardboard:before{content:"\f729"}.fa-hand-middle-finger:before{content:"\f806"}.fa-percent:before,.fa-percentage:before{content:"\25"}.fa-truck-moving:before{content:"\f4df"}.fa-glass-water-droplet:before{content:"\e4f5"}.fa-display:before{content:"\e163"}.fa-face-smile:before,.fa-smile:before{content:"\f118"}.fa-thumb-tack:before,.fa-thumbtack:before{content:"\f08d"}.fa-trophy:before{content:"\f091"}.fa-person-praying:before,.fa-pray:before{content:"\f683"}.fa-hammer:before{content:"\f6e3"}.fa-hand-peace:before{content:"\f25b"}.fa-rotate:before,.fa-sync-alt:before{content:"\f2f1"}.fa-spinner:before{content:"\f110"}.fa-robot:before{content:"\f544"}.fa-peace:before{content:"\f67c"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-warehouse:before{content:"\f494"}.fa-arrow-up-right-dots:before{content:"\e4b7"}.fa-splotch:before{content:"\f5bc"}.fa-face-grin-hearts:before,.fa-grin-hearts:before{content:"\f584"}.fa-dice-four:before{content:"\f524"}.fa-sim-card:before{content:"\f7c4"}.fa-transgender-alt:before,.fa-transgender:before{content:"\f225"}.fa-mercury:before{content:"\f223"}.fa-arrow-turn-down:before,.fa-level-down:before{content:"\f149"}.fa-person-falling-burst:before{content:"\e547"}.fa-award:before{content:"\f559"}.fa-ticket-alt:before,.fa-ticket-simple:before{content:"\f3ff"}.fa-building:before{content:"\f1ad"}.fa-angle-double-left:before,.fa-angles-left:before{content:"\f100"}.fa-qrcode:before{content:"\f029"}.fa-clock-rotate-left:before,.fa-history:before{content:"\f1da"}.fa-face-grin-beam-sweat:before,.fa-grin-beam-sweat:before{content:"\f583"}.fa-arrow-right-from-file:before,.fa-file-export:before{content:"\f56e"}.fa-shield-blank:before,.fa-shield:before{content:"\f132"}.fa-arrow-up-short-wide:before,.fa-sort-amount-up-alt:before{content:"\f885"}.fa-house-medical:before{content:"\e3b2"}.fa-golf-ball-tee:before,.fa-golf-ball:before{content:"\f450"}.fa-chevron-circle-left:before,.fa-circle-chevron-left:before{content:"\f137"}.fa-house-chimney-window:before{content:"\e00d"}.fa-pen-nib:before{content:"\f5ad"}.fa-tent-arrow-turn-left:before{content:"\e580"}.fa-tents:before{content:"\e582"}.fa-magic:before,.fa-wand-magic:before{content:"\f0d0"}.fa-dog:before{content:"\f6d3"}.fa-carrot:before{content:"\f787"}.fa-moon:before{content:"\f186"}.fa-wine-glass-alt:before,.fa-wine-glass-empty:before{content:"\f5ce"}.fa-cheese:before{content:"\f7ef"}.fa-yin-yang:before{content:"\f6ad"}.fa-music:before{content:"\f001"}.fa-code-commit:before{content:"\f386"}.fa-temperature-low:before{content:"\f76b"}.fa-biking:before,.fa-person-biking:before{content:"\f84a"}.fa-broom:before{content:"\f51a"}.fa-shield-heart:before{content:"\e574"}.fa-gopuram:before{content:"\f664"}.fa-earth-oceania:before,.fa-globe-oceania:before{content:"\e47b"}.fa-square-xmark:before,.fa-times-square:before,.fa-xmark-square:before{content:"\f2d3"}.fa-hashtag:before{content:"\23"}.fa-expand-alt:before,.fa-up-right-and-down-left-from-center:before{content:"\f424"}.fa-oil-can:before{content:"\f613"}.fa-t:before{content:"\54"}.fa-hippo:before{content:"\f6ed"}.fa-chart-column:before{content:"\e0e3"}.fa-infinity:before{content:"\f534"}.fa-vial-circle-check:before{content:"\e596"}.fa-person-arrow-down-to-line:before{content:"\e538"}.fa-voicemail:before{content:"\f897"}.fa-fan:before{content:"\f863"}.fa-person-walking-luggage:before{content:"\e554"}.fa-arrows-alt-v:before,.fa-up-down:before{content:"\f338"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-calendar:before{content:"\f133"}.fa-trailer:before{content:"\e041"}.fa-bahai:before,.fa-haykal:before{content:"\f666"}.fa-sd-card:before{content:"\f7c2"}.fa-dragon:before{content:"\f6d5"}.fa-shoe-prints:before{content:"\f54b"}.fa-circle-plus:before,.fa-plus-circle:before{content:"\f055"}.fa-face-grin-tongue-wink:before,.fa-grin-tongue-wink:before{content:"\f58b"}.fa-hand-holding:before{content:"\f4bd"}.fa-plug-circle-exclamation:before{content:"\e55d"}.fa-chain-broken:before,.fa-chain-slash:before,.fa-link-slash:before,.fa-unlink:before{content:"\f127"}.fa-clone:before{content:"\f24d"}.fa-person-walking-arrow-loop-left:before{content:"\e551"}.fa-arrow-up-z-a:before,.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-fire-alt:before,.fa-fire-flame-curved:before{content:"\f7e4"}.fa-tornado:before{content:"\f76f"}.fa-file-circle-plus:before{content:"\e494"}.fa-book-quran:before,.fa-quran:before{content:"\f687"}.fa-anchor:before{content:"\f13d"}.fa-border-all:before{content:"\f84c"}.fa-angry:before,.fa-face-angry:before{content:"\f556"}.fa-cookie-bite:before{content:"\f564"}.fa-arrow-trend-down:before{content:"\e097"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-draw-polygon:before{content:"\f5ee"}.fa-balance-scale:before,.fa-scale-balanced:before{content:"\f24e"}.fa-gauge-simple-high:before,.fa-tachometer-fast:before,.fa-tachometer:before{content:"\f62a"}.fa-shower:before{content:"\f2cc"}.fa-desktop-alt:before,.fa-desktop:before{content:"\f390"}.fa-m:before{content:"\4d"}.fa-table-list:before,.fa-th-list:before{content:"\f00b"}.fa-comment-sms:before,.fa-sms:before{content:"\f7cd"}.fa-book:before{content:"\f02d"}.fa-user-plus:before{content:"\f234"}.fa-check:before{content:"\f00c"}.fa-battery-4:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-house-circle-check:before{content:"\e509"}.fa-angle-left:before{content:"\f104"}.fa-diagram-successor:before{content:"\e47a"}.fa-truck-arrow-right:before{content:"\e58b"}.fa-arrows-split-up-and-left:before{content:"\e4bc"}.fa-fist-raised:before,.fa-hand-fist:before{content:"\f6de"}.fa-cloud-moon:before{content:"\f6c3"}.fa-briefcase:before{content:"\f0b1"}.fa-person-falling:before{content:"\e546"}.fa-image-portrait:before,.fa-portrait:before{content:"\f3e0"}.fa-user-tag:before{content:"\f507"}.fa-rug:before{content:"\e569"}.fa-earth-europe:before,.fa-globe-europe:before{content:"\f7a2"}.fa-cart-flatbed-suitcase:before,.fa-luggage-cart:before{content:"\f59d"}.fa-rectangle-times:before,.fa-rectangle-xmark:before,.fa-times-rectangle:before,.fa-window-close:before{content:"\f410"}.fa-baht-sign:before{content:"\e0ac"}.fa-book-open:before{content:"\f518"}.fa-book-journal-whills:before,.fa-journal-whills:before{content:"\f66a"}.fa-handcuffs:before{content:"\e4f8"}.fa-exclamation-triangle:before,.fa-triangle-exclamation:before,.fa-warning:before{content:"\f071"}.fa-database:before{content:"\f1c0"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-bottle-droplet:before{content:"\e4c4"}.fa-mask-face:before{content:"\e1d7"}.fa-hill-rockslide:before{content:"\e508"}.fa-exchange-alt:before,.fa-right-left:before{content:"\f362"}.fa-paper-plane:before{content:"\f1d8"}.fa-road-circle-exclamation:before{content:"\e565"}.fa-dungeon:before{content:"\f6d9"}.fa-align-right:before{content:"\f038"}.fa-money-bill-1-wave:before,.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-life-ring:before{content:"\f1cd"}.fa-hands:before,.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-calendar-day:before{content:"\f783"}.fa-ladder-water:before,.fa-swimming-pool:before,.fa-water-ladder:before{content:"\f5c5"}.fa-arrows-up-down:before,.fa-arrows-v:before{content:"\f07d"}.fa-face-grimace:before,.fa-grimace:before{content:"\f57f"}.fa-wheelchair-alt:before,.fa-wheelchair-move:before{content:"\e2ce"}.fa-level-down-alt:before,.fa-turn-down:before{content:"\f3be"}.fa-person-walking-arrow-right:before{content:"\e552"}.fa-envelope-square:before,.fa-square-envelope:before{content:"\f199"}.fa-dice:before{content:"\f522"}.fa-bowling-ball:before{content:"\f436"}.fa-brain:before{content:"\f5dc"}.fa-band-aid:before,.fa-bandage:before{content:"\f462"}.fa-calendar-minus:before{content:"\f272"}.fa-circle-xmark:before,.fa-times-circle:before,.fa-xmark-circle:before{content:"\f057"}.fa-gifts:before{content:"\f79c"}.fa-hotel:before{content:"\f594"}.fa-earth-asia:before,.fa-globe-asia:before{content:"\f57e"}.fa-id-card-alt:before,.fa-id-card-clip:before{content:"\f47f"}.fa-magnifying-glass-plus:before,.fa-search-plus:before{content:"\f00e"}.fa-thumbs-up:before{content:"\f164"}.fa-user-clock:before{content:"\f4fd"}.fa-allergies:before,.fa-hand-dots:before{content:"\f461"}.fa-file-invoice:before{content:"\f570"}.fa-window-minimize:before{content:"\f2d1"}.fa-coffee:before,.fa-mug-saucer:before{content:"\f0f4"}.fa-brush:before{content:"\f55d"}.fa-mask:before{content:"\f6fa"}.fa-magnifying-glass-minus:before,.fa-search-minus:before{content:"\f010"}.fa-ruler-vertical:before{content:"\f548"}.fa-user-alt:before,.fa-user-large:before{content:"\f406"}.fa-train-tram:before{content:"\e5b4"}.fa-user-nurse:before{content:"\f82f"}.fa-syringe:before{content:"\f48e"}.fa-cloud-sun:before{content:"\f6c4"}.fa-stopwatch-20:before{content:"\e06f"}.fa-square-full:before{content:"\f45c"}.fa-magnet:before{content:"\f076"}.fa-jar:before{content:"\e516"}.fa-note-sticky:before,.fa-sticky-note:before{content:"\f249"}.fa-bug-slash:before{content:"\e490"}.fa-arrow-up-from-water-pump:before{content:"\e4b6"}.fa-bone:before{content:"\f5d7"}.fa-table-cells-row-unlock:before{content:"\e691"}.fa-user-injured:before{content:"\f728"}.fa-face-sad-tear:before,.fa-sad-tear:before{content:"\f5b4"}.fa-plane:before{content:"\f072"}.fa-tent-arrows-down:before{content:"\e581"}.fa-exclamation:before{content:"\21"}.fa-arrows-spin:before{content:"\e4bb"}.fa-print:before{content:"\f02f"}.fa-try:before,.fa-turkish-lira-sign:before,.fa-turkish-lira:before{content:"\e2bb"}.fa-dollar-sign:before,.fa-dollar:before,.fa-usd:before{content:"\24"}.fa-x:before{content:"\58"}.fa-magnifying-glass-dollar:before,.fa-search-dollar:before{content:"\f688"}.fa-users-cog:before,.fa-users-gear:before{content:"\f509"}.fa-person-military-pointing:before{content:"\e54a"}.fa-bank:before,.fa-building-columns:before,.fa-institution:before,.fa-museum:before,.fa-university:before{content:"\f19c"}.fa-umbrella:before{content:"\f0e9"}.fa-trowel:before{content:"\e589"}.fa-d:before{content:"\44"}.fa-stapler:before{content:"\e5af"}.fa-masks-theater:before,.fa-theater-masks:before{content:"\f630"}.fa-kip-sign:before{content:"\e1c4"}.fa-hand-point-left:before{content:"\f0a5"}.fa-handshake-alt:before,.fa-handshake-simple:before{content:"\f4c6"}.fa-fighter-jet:before,.fa-jet-fighter:before{content:"\f0fb"}.fa-share-alt-square:before,.fa-square-share-nodes:before{content:"\f1e1"}.fa-barcode:before{content:"\f02a"}.fa-plus-minus:before{content:"\e43c"}.fa-video-camera:before,.fa-video:before{content:"\f03d"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-hand-holding-medical:before{content:"\e05c"}.fa-person-circle-check:before{content:"\e53e"}.fa-level-up-alt:before,.fa-turn-up:before{content:"\f3bf"}
.fa-sr-only,.fa-sr-only-focusable:not(:focus),.sr-only,.sr-only-focusable:not(:focus){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}:host,:root{--fa-style-family-brands:"Font Awesome 6 Brands";--fa-font-brands:normal 400 1em/1 "Font Awesome 6 Brands"}@font-face{font-family:"Font Awesome 6 Brands";font-style:normal;font-weight:400;font-display:block;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-brands-400.ttf) format("truetype")}.fa-brands,.fab{font-weight:400}.fa-monero:before{content:"\f3d0"}.fa-hooli:before{content:"\f427"}.fa-yelp:before{content:"\f1e9"}.fa-cc-visa:before{content:"\f1f0"}.fa-lastfm:before{content:"\f202"}.fa-shopware:before{content:"\f5b5"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-aws:before{content:"\f375"}.fa-redhat:before{content:"\f7bc"}.fa-yoast:before{content:"\f2b1"}.fa-cloudflare:before{content:"\e07d"}.fa-ups:before{content:"\f7e0"}.fa-pixiv:before{content:"\e640"}.fa-wpexplorer:before{content:"\f2de"}.fa-dyalog:before{content:"\f399"}.fa-bity:before{content:"\f37a"}.fa-stackpath:before{content:"\f842"}.fa-buysellads:before{content:"\f20d"}.fa-first-order:before{content:"\f2b0"}.fa-modx:before{content:"\f285"}.fa-guilded:before{content:"\e07e"}.fa-vnv:before{content:"\f40b"}.fa-js-square:before,.fa-square-js:before{content:"\f3b9"}.fa-microsoft:before{content:"\f3ca"}.fa-qq:before{content:"\f1d6"}.fa-orcid:before{content:"\f8d2"}.fa-java:before{content:"\f4e4"}.fa-invision:before{content:"\f7b0"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-centercode:before{content:"\f380"}.fa-glide-g:before{content:"\f2a6"}.fa-drupal:before{content:"\f1a9"}.fa-jxl:before{content:"\e67b"}.fa-dart-lang:before{content:"\e693"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-unity:before{content:"\e049"}.fa-whmcs:before{content:"\f40d"}.fa-rocketchat:before{content:"\f3e8"}.fa-vk:before{content:"\f189"}.fa-untappd:before{content:"\f405"}.fa-mailchimp:before{content:"\f59e"}.fa-css3-alt:before{content:"\f38b"}.fa-reddit-square:before,.fa-square-reddit:before{content:"\f1a2"}.fa-vimeo-v:before{content:"\f27d"}.fa-contao:before{content:"\f26d"}.fa-square-font-awesome:before{content:"\e5ad"}.fa-deskpro:before{content:"\f38f"}.fa-brave:before{content:"\e63c"}.fa-sistrix:before{content:"\f3ee"}.fa-instagram-square:before,.fa-square-instagram:before{content:"\e055"}.fa-battle-net:before{content:"\f835"}.fa-the-red-yeti:before{content:"\f69d"}.fa-hacker-news-square:before,.fa-square-hacker-news:before{content:"\f3af"}.fa-edge:before{content:"\f282"}.fa-threads:before{content:"\e618"}.fa-napster:before{content:"\f3d2"}.fa-snapchat-square:before,.fa-square-snapchat:before{content:"\f2ad"}.fa-google-plus-g:before{content:"\f0d5"}.fa-artstation:before{content:"\f77a"}.fa-markdown:before{content:"\f60f"}.fa-sourcetree:before{content:"\f7d3"}.fa-google-plus:before{content:"\f2b3"}.fa-diaspora:before{content:"\f791"}.fa-foursquare:before{content:"\f180"}.fa-stack-overflow:before{content:"\f16c"}.fa-github-alt:before{content:"\f113"}.fa-phoenix-squadron:before{content:"\f511"}.fa-pagelines:before{content:"\f18c"}.fa-algolia:before{content:"\f36c"}.fa-red-river:before{content:"\f3e3"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-safari:before{content:"\f267"}.fa-google:before{content:"\f1a0"}.fa-font-awesome-alt:before,.fa-square-font-awesome-stroke:before{content:"\f35c"}.fa-atlassian:before{content:"\f77b"}.fa-linkedin-in:before{content:"\f0e1"}.fa-digital-ocean:before{content:"\f391"}.fa-nimblr:before{content:"\f5a8"}.fa-chromecast:before{content:"\f838"}.fa-evernote:before{content:"\f839"}.fa-hacker-news:before{content:"\f1d4"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-adversal:before{content:"\f36a"}.fa-creative-commons:before{content:"\f25e"}.fa-watchman-monitoring:before{content:"\e087"}.fa-fonticons:before{content:"\f280"}.fa-weixin:before{content:"\f1d7"}.fa-shirtsinbulk:before{content:"\f214"}.fa-codepen:before{content:"\f1cb"}.fa-git-alt:before{content:"\f841"}.fa-lyft:before{content:"\f3c3"}.fa-rev:before{content:"\f5b2"}.fa-windows:before{content:"\f17a"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-square-viadeo:before,.fa-viadeo-square:before{content:"\f2aa"}.fa-meetup:before{content:"\f2e0"}.fa-centos:before{content:"\f789"}.fa-adn:before{content:"\f170"}.fa-cloudsmith:before{content:"\f384"}.fa-opensuse:before{content:"\e62b"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-dribbble-square:before,.fa-square-dribbble:before{content:"\f397"}.fa-codiepie:before{content:"\f284"}.fa-node:before{content:"\f419"}.fa-mix:before{content:"\f3cb"}.fa-steam:before{content:"\f1b6"}.fa-cc-apple-pay:before{content:"\f416"}.fa-scribd:before{content:"\f28a"}.fa-debian:before{content:"\e60b"}.fa-openid:before{content:"\f19b"}.fa-instalod:before{content:"\e081"}.fa-expeditedssl:before{content:"\f23e"}.fa-sellcast:before{content:"\f2da"}.fa-square-twitter:before,.fa-twitter-square:before{content:"\f081"}.fa-r-project:before{content:"\f4f7"}.fa-delicious:before{content:"\f1a5"}.fa-freebsd:before{content:"\f3a4"}.fa-vuejs:before{content:"\f41f"}.fa-accusoft:before{content:"\f369"}.fa-ioxhost:before{content:"\f208"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-app-store:before{content:"\f36f"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-itunes-note:before{content:"\f3b5"}.fa-golang:before{content:"\e40f"}.fa-kickstarter:before,.fa-square-kickstarter:before{content:"\f3bb"}.fa-grav:before{content:"\f2d6"}.fa-weibo:before{content:"\f18a"}.fa-uncharted:before{content:"\e084"}.fa-firstdraft:before{content:"\f3a1"}.fa-square-youtube:before,.fa-youtube-square:before{content:"\f431"}.fa-wikipedia-w:before{content:"\f266"}.fa-rendact:before,.fa-wpressr:before{content:"\f3e4"}.fa-angellist:before{content:"\f209"}.fa-galactic-republic:before{content:"\f50c"}.fa-nfc-directional:before{content:"\e530"}.fa-skype:before{content:"\f17e"}.fa-joget:before{content:"\f3b7"}.fa-fedora:before{content:"\f798"}.fa-stripe-s:before{content:"\f42a"}.fa-meta:before{content:"\e49b"}.fa-laravel:before{content:"\f3bd"}.fa-hotjar:before{content:"\f3b1"}.fa-bluetooth-b:before{content:"\f294"}.fa-square-letterboxd:before{content:"\e62e"}.fa-sticker-mule:before{content:"\f3f7"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-hips:before{content:"\f452"}.fa-behance:before{content:"\f1b4"}.fa-reddit:before{content:"\f1a1"}.fa-discord:before{content:"\f392"}.fa-chrome:before{content:"\f268"}.fa-app-store-ios:before{content:"\f370"}.fa-cc-discover:before{content:"\f1f2"}.fa-wpbeginner:before{content:"\f297"}.fa-confluence:before{content:"\f78d"}.fa-shoelace:before{content:"\e60c"}.fa-mdb:before{content:"\f8ca"}.fa-dochub:before{content:"\f394"}.fa-accessible-icon:before{content:"\f368"}.fa-ebay:before{content:"\f4f4"}.fa-amazon:before{content:"\f270"}.fa-unsplash:before{content:"\e07c"}.fa-yarn:before{content:"\f7e3"}.fa-square-steam:before,.fa-steam-square:before{content:"\f1b7"}.fa-500px:before{content:"\f26e"}.fa-square-vimeo:before,.fa-vimeo-square:before{content:"\f194"}.fa-asymmetrik:before{content:"\f372"}.fa-font-awesome-flag:before,.fa-font-awesome-logo-full:before,.fa-font-awesome:before{content:"\f2b4"}.fa-gratipay:before{content:"\f184"}.fa-apple:before{content:"\f179"}.fa-hive:before{content:"\e07f"}.fa-gitkraken:before{content:"\f3a6"}.fa-keybase:before{content:"\f4f5"}.fa-apple-pay:before{content:"\f415"}.fa-padlet:before{content:"\e4a0"}.fa-amazon-pay:before{content:"\f42c"}.fa-github-square:before,.fa-square-github:before{content:"\f092"}.fa-stumbleupon:before{content:"\f1a4"}.fa-fedex:before{content:"\f797"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-shopify:before{content:"\e057"}.fa-neos:before{content:"\f612"}.fa-square-threads:before{content:"\e619"}.fa-hackerrank:before{content:"\f5f7"}.fa-researchgate:before{content:"\f4f8"}.fa-swift:before{content:"\f8e1"}.fa-angular:before{content:"\f420"}.fa-speakap:before{content:"\f3f3"}.fa-angrycreative:before{content:"\f36e"}.fa-y-combinator:before{content:"\f23b"}.fa-empire:before{content:"\f1d1"}.fa-envira:before{content:"\f299"}.fa-google-scholar:before{content:"\e63b"}.fa-gitlab-square:before,.fa-square-gitlab:before{content:"\e5ae"}.fa-studiovinari:before{content:"\f3f8"}.fa-pied-piper:before{content:"\f2ae"}.fa-wordpress:before{content:"\f19a"}.fa-product-hunt:before{content:"\f288"}.fa-firefox:before{content:"\f269"}.fa-linode:before{content:"\f2b8"}.fa-goodreads:before{content:"\f3a8"}.fa-odnoklassniki-square:before,.fa-square-odnoklassniki:before{content:"\f264"}.fa-jsfiddle:before{content:"\f1cc"}.fa-sith:before{content:"\f512"}.fa-themeisle:before{content:"\f2b2"}.fa-page4:before{content:"\f3d7"}.fa-hashnode:before{content:"\e499"}.fa-react:before{content:"\f41b"}.fa-cc-paypal:before{content:"\f1f4"}.fa-squarespace:before{content:"\f5be"}.fa-cc-stripe:before{content:"\f1f5"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-bitcoin:before{content:"\f379"}.fa-keycdn:before{content:"\f3ba"}.fa-opera:before{content:"\f26a"}.fa-itch-io:before{content:"\f83a"}.fa-umbraco:before{content:"\f8e8"}.fa-galactic-senate:before{content:"\f50d"}.fa-ubuntu:before{content:"\f7df"}.fa-draft2digital:before{content:"\f396"}.fa-stripe:before{content:"\f429"}.fa-houzz:before{content:"\f27c"}.fa-gg:before{content:"\f260"}.fa-dhl:before{content:"\f790"}.fa-pinterest-square:before,.fa-square-pinterest:before{content:"\f0d3"}.fa-xing:before{content:"\f168"}.fa-blackberry:before{content:"\f37b"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-playstation:before{content:"\f3df"}.fa-quinscape:before{content:"\f459"}.fa-less:before{content:"\f41d"}.fa-blogger-b:before{content:"\f37d"}.fa-opencart:before{content:"\f23d"}.fa-vine:before{content:"\f1ca"}.fa-signal-messenger:before{content:"\e663"}.fa-paypal:before{content:"\f1ed"}.fa-gitlab:before{content:"\f296"}.fa-typo3:before{content:"\f42b"}.fa-reddit-alien:before{content:"\f281"}.fa-yahoo:before{content:"\f19e"}.fa-dailymotion:before{content:"\e052"}.fa-affiliatetheme:before{content:"\f36b"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-bootstrap:before{content:"\f836"}.fa-odnoklassniki:before{content:"\f263"}.fa-nfc-symbol:before{content:"\e531"}.fa-mintbit:before{content:"\e62f"}.fa-ethereum:before{content:"\f42e"}.fa-speaker-deck:before{content:"\f83c"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-patreon:before{content:"\f3d9"}.fa-avianex:before{content:"\f374"}.fa-ello:before{content:"\f5f1"}.fa-gofore:before{content:"\f3a7"}.fa-bimobject:before{content:"\f378"}.fa-brave-reverse:before{content:"\e63d"}.fa-facebook-f:before{content:"\f39e"}.fa-google-plus-square:before,.fa-square-google-plus:before{content:"\f0d4"}.fa-web-awesome:before{content:"\e682"}.fa-mandalorian:before{content:"\f50f"}.fa-first-order-alt:before{content:"\f50a"}.fa-osi:before{content:"\f41a"}.fa-google-wallet:before{content:"\f1ee"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-periscope:before{content:"\f3da"}.fa-fulcrum:before{content:"\f50b"}.fa-cloudscale:before{content:"\f383"}.fa-forumbee:before{content:"\f211"}.fa-mizuni:before{content:"\f3cc"}.fa-schlix:before{content:"\f3ea"}.fa-square-xing:before,.fa-xing-square:before{content:"\f169"}.fa-bandcamp:before{content:"\f2d5"}.fa-wpforms:before{content:"\f298"}.fa-cloudversify:before{content:"\f385"}.fa-usps:before{content:"\f7e1"}.fa-megaport:before{content:"\f5a3"}.fa-magento:before{content:"\f3c4"}.fa-spotify:before{content:"\f1bc"}.fa-optin-monster:before{content:"\f23c"}.fa-fly:before{content:"\f417"}.fa-aviato:before{content:"\f421"}.fa-itunes:before{content:"\f3b4"}.fa-cuttlefish:before{content:"\f38c"}.fa-blogger:before{content:"\f37c"}.fa-flickr:before{content:"\f16e"}.fa-viber:before{content:"\f409"}.fa-soundcloud:before{content:"\f1be"}.fa-digg:before{content:"\f1a6"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-letterboxd:before{content:"\e62d"}.fa-symfony:before{content:"\f83d"}.fa-maxcdn:before{content:"\f136"}.fa-etsy:before{content:"\f2d7"}.fa-facebook-messenger:before{content:"\f39f"}.fa-audible:before{content:"\f373"}.fa-think-peaks:before{content:"\f731"}.fa-bilibili:before{content:"\e3d9"}.fa-erlang:before{content:"\f39d"}.fa-x-twitter:before{content:"\e61b"}.fa-cotton-bureau:before{content:"\f89e"}.fa-dashcube:before{content:"\f210"}.fa-42-group:before,.fa-innosoft:before{content:"\e080"}.fa-stack-exchange:before{content:"\f18d"}.fa-elementor:before{content:"\f430"}.fa-pied-piper-square:before,.fa-square-pied-piper:before{content:"\e01e"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-palfed:before{content:"\f3d8"}.fa-superpowers:before{content:"\f2dd"}.fa-resolving:before{content:"\f3e7"}.fa-xbox:before{content:"\f412"}.fa-square-web-awesome-stroke:before{content:"\e684"}.fa-searchengin:before{content:"\f3eb"}.fa-tiktok:before{content:"\e07b"}.fa-facebook-square:before,.fa-square-facebook:before{content:"\f082"}.fa-renren:before{content:"\f18b"}.fa-linux:before{content:"\f17c"}.fa-glide:before{content:"\f2a5"}.fa-linkedin:before{content:"\f08c"}.fa-hubspot:before{content:"\f3b2"}.fa-deploydog:before{content:"\f38e"}.fa-twitch:before{content:"\f1e8"}.fa-flutter:before{content:"\e694"}.fa-ravelry:before{content:"\f2d9"}.fa-mixer:before{content:"\e056"}.fa-lastfm-square:before,.fa-square-lastfm:before{content:"\f203"}.fa-vimeo:before{content:"\f40a"}.fa-mendeley:before{content:"\f7b3"}.fa-uniregistry:before{content:"\f404"}.fa-figma:before{content:"\f799"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-dropbox:before{content:"\f16b"}.fa-instagram:before{content:"\f16d"}.fa-cmplid:before{content:"\e360"}.fa-upwork:before{content:"\e641"}.fa-facebook:before{content:"\f09a"}.fa-gripfire:before{content:"\f3ac"}.fa-jedi-order:before{content:"\f50e"}.fa-uikit:before{content:"\f403"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-phabricator:before{content:"\f3db"}.fa-ussunnah:before{content:"\f407"}.fa-earlybirds:before{content:"\f39a"}.fa-trade-federation:before{content:"\f513"}.fa-autoprefixer:before{content:"\f41c"}.fa-whatsapp:before{content:"\f232"}.fa-square-upwork:before{content:"\e67c"}.fa-slideshare:before{content:"\f1e7"}.fa-google-play:before{content:"\f3ab"}.fa-viadeo:before{content:"\f2a9"}.fa-line:before{content:"\f3c0"}.fa-google-drive:before{content:"\f3aa"}.fa-servicestack:before{content:"\f3ec"}.fa-simplybuilt:before{content:"\f215"}.fa-bitbucket:before{content:"\f171"}.fa-imdb:before{content:"\f2d8"}.fa-deezer:before{content:"\e077"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-jira:before{content:"\f7b1"}.fa-docker:before{content:"\f395"}.fa-screenpal:before{content:"\e570"}.fa-bluetooth:before{content:"\f293"}.fa-gitter:before{content:"\f426"}.fa-d-and-d:before{content:"\f38d"}.fa-microblog:before{content:"\e01a"}.fa-cc-diners-club:before{content:"\f24c"}.fa-gg-circle:before{content:"\f261"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-yandex:before{content:"\f413"}.fa-readme:before{content:"\f4d5"}.fa-html5:before{content:"\f13b"}.fa-sellsy:before{content:"\f213"}.fa-square-web-awesome:before{content:"\e683"}.fa-sass:before{content:"\f41e"}.fa-wirsindhandwerk:before,.fa-wsh:before{content:"\e2d0"}.fa-buromobelexperte:before{content:"\f37f"}.fa-salesforce:before{content:"\f83b"}.fa-octopus-deploy:before{content:"\e082"}.fa-medapps:before{content:"\f3c6"}.fa-ns8:before{content:"\f3d5"}.fa-pinterest-p:before{content:"\f231"}.fa-apper:before{content:"\f371"}.fa-fort-awesome:before{content:"\f286"}.fa-waze:before{content:"\f83f"}.fa-bluesky:before{content:"\e671"}.fa-cc-jcb:before{content:"\f24b"}.fa-snapchat-ghost:before,.fa-snapchat:before{content:"\f2ab"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-rust:before{content:"\e07a"}.fa-wix:before{content:"\f5cf"}.fa-behance-square:before,.fa-square-behance:before{content:"\f1b5"}.fa-supple:before{content:"\f3f9"}.fa-webflow:before{content:"\e65c"}.fa-rebel:before{content:"\f1d0"}.fa-css3:before{content:"\f13c"}.fa-staylinked:before{content:"\f3f5"}.fa-kaggle:before{content:"\f5fa"}.fa-space-awesome:before{content:"\e5ac"}.fa-deviantart:before{content:"\f1bd"}.fa-cpanel:before{content:"\f388"}.fa-goodreads-g:before{content:"\f3a9"}.fa-git-square:before,.fa-square-git:before{content:"\f1d2"}.fa-square-tumblr:before,.fa-tumblr-square:before{content:"\f174"}.fa-trello:before{content:"\f181"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-get-pocket:before{content:"\f265"}.fa-perbyte:before{content:"\e083"}.fa-grunt:before{content:"\f3ad"}.fa-weebly:before{content:"\f5cc"}.fa-connectdevelop:before{content:"\f20e"}.fa-leanpub:before{content:"\f212"}.fa-black-tie:before{content:"\f27e"}.fa-themeco:before{content:"\f5c6"}.fa-python:before{content:"\f3e2"}.fa-android:before{content:"\f17b"}.fa-bots:before{content:"\e340"}.fa-free-code-camp:before{content:"\f2c5"}.fa-hornbill:before{content:"\f592"}.fa-js:before{content:"\f3b8"}.fa-ideal:before{content:"\e013"}.fa-git:before{content:"\f1d3"}.fa-dev:before{content:"\f6cc"}.fa-sketch:before{content:"\f7c6"}.fa-yandex-international:before{content:"\f414"}.fa-cc-amex:before{content:"\f1f3"}.fa-uber:before{content:"\f402"}.fa-github:before{content:"\f09b"}.fa-php:before{content:"\f457"}.fa-alipay:before{content:"\f642"}.fa-youtube:before{content:"\f167"}.fa-skyatlas:before{content:"\f216"}.fa-firefox-browser:before{content:"\e007"}.fa-replyd:before{content:"\f3e6"}.fa-suse:before{content:"\f7d6"}.fa-jenkins:before{content:"\f3b6"}.fa-twitter:before{content:"\f099"}.fa-rockrms:before{content:"\f3e9"}.fa-pinterest:before{content:"\f0d2"}.fa-buffer:before{content:"\f837"}.fa-npm:before{content:"\f3d4"}.fa-yammer:before{content:"\f840"}.fa-btc:before{content:"\f15a"}.fa-dribbble:before{content:"\f17d"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-internet-explorer:before{content:"\f26b"}.fa-stubber:before{content:"\e5c7"}.fa-telegram-plane:before,.fa-telegram:before{content:"\f2c6"}.fa-old-republic:before{content:"\f510"}.fa-odysee:before{content:"\e5c6"}.fa-square-whatsapp:before,.fa-whatsapp-square:before{content:"\f40c"}.fa-node-js:before{content:"\f3d3"}.fa-edge-legacy:before{content:"\e078"}.fa-slack-hash:before,.fa-slack:before{content:"\f198"}.fa-medrt:before{content:"\f3c8"}.fa-usb:before{content:"\f287"}.fa-tumblr:before{content:"\f173"}.fa-vaadin:before{content:"\f408"}.fa-quora:before{content:"\f2c4"}.fa-square-x-twitter:before{content:"\e61a"}.fa-reacteurope:before{content:"\f75d"}.fa-medium-m:before,.fa-medium:before{content:"\f23a"}.fa-amilia:before{content:"\f36d"}.fa-mixcloud:before{content:"\f289"}.fa-flipboard:before{content:"\f44d"}.fa-viacoin:before{content:"\f237"}.fa-critical-role:before{content:"\f6c9"}.fa-sitrox:before{content:"\e44a"}.fa-discourse:before{content:"\f393"}.fa-joomla:before{content:"\f1aa"}.fa-mastodon:before{content:"\f4f6"}.fa-airbnb:before{content:"\f834"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-buy-n-large:before{content:"\f8a6"}.fa-gulp:before{content:"\f3ae"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-strava:before{content:"\f428"}.fa-ember:before{content:"\f423"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-teamspeak:before{content:"\f4f9"}.fa-pushed:before{content:"\f3e1"}.fa-wordpress-simple:before{content:"\f411"}.fa-nutritionix:before{content:"\f3d6"}.fa-wodu:before{content:"\e088"}.fa-google-pay:before{content:"\e079"}.fa-intercom:before{content:"\f7af"}.fa-zhihu:before{content:"\f63f"}.fa-korvue:before{content:"\f42f"}.fa-pix:before{content:"\e43a"}.fa-steam-symbol:before{content:"\f3f6"}:host,:root{--fa-font-regular:normal 400 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-regular-400.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-weight:400}:host,:root{--fa-style-family-classic:"Font Awesome 6 Free";--fa-font-solid:normal 900 1em/1 "Font Awesome 6 Free"}@font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-weight:900}@font-face{font-family:"Font Awesome 5 Brands";font-display:block;font-weight:400;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:900;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"Font Awesome 5 Free";font-display:block;font-weight:400;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-regular-400.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-regular-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-solid-900.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-brands-400.ttf) format("truetype")}@font-face{font-family:"FontAwesome";font-display:block;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-regular-400.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-regular-400.ttf) format("truetype");unicode-range:u+f003,u+f006,u+f014,u+f016-f017,u+f01a-f01b,u+f01d,u+f022,u+f03e,u+f044,u+f046,u+f05c-f05d,u+f06e,u+f070,u+f087-f088,u+f08a,u+f094,u+f096-f097,u+f09d,u+f0a0,u+f0a2,u+f0a4-f0a7,u+f0c5,u+f0c7,u+f0e5-f0e6,u+f0eb,u+f0f6-f0f8,u+f10c,u+f114-f115,u+f118-f11a,u+f11c-f11d,u+f133,u+f147,u+f14e,u+f150-f152,u+f185-f186,u+f18e,u+f190-f192,u+f196,u+f1c1-f1c9,u+f1d9,u+f1db,u+f1e3,u+f1ea,u+f1f7,u+f1f9,u+f20a,u+f247-f248,u+f24a,u+f24d,u+f255-f25b,u+f25d,u+f271-f274,u+f278,u+f27b,u+f28c,u+f28e,u+f29c,u+f2b5,u+f2b7,u+f2ba,u+f2bc,u+f2be,u+f2c0-f2c1,u+f2c3,u+f2d0,u+f2d2,u+f2d4,u+f2dc}@font-face{font-family:"FontAwesome";font-display:block;src:url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-v4compatibility.woff2) format("woff2"),url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/font-awesome/webfonts/fa-v4compatibility.ttf) format("truetype");unicode-range:u+f041,u+f047,u+f065-f066,u+f07d-f07e,u+f080,u+f08b,u+f08e,u+f090,u+f09a,u+f0ac,u+f0ae,u+f0b2,u+f0d0,u+f0d6,u+f0e4,u+f0ec,u+f10a-f10b,u+f123,u+f13e,u+f148-f149,u+f14c,u+f156,u+f15e,u+f160-f161,u+f163,u+f175-f178,u+f195,u+f1f8,u+f219,u+f27a}@font-face {
font-family: 'simple-line-icons';
src: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/simple-line-icons/fonts/Simple-Line-Icons.eot?v=2.4.0);
src: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/simple-line-icons/fonts/Simple-Line-Icons.eot?v=2.4.0#iefix) format('embedded-opentype'), url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/simple-line-icons/fonts/Simple-Line-Icons.woff2?v=2.4.0) format('woff2'), url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/simple-line-icons/fonts/Simple-Line-Icons.ttf?v=2.4.0) format('truetype'), url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/simple-line-icons/fonts/Simple-Line-Icons.woff?v=2.4.0) format('woff'), url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/fonts/simple-line-icons/fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons) format('svg');
font-weight: normal;
font-style: normal;
} .icon-user,
.icon-people,
.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-login,
.icon-logout,
.icon-emotsmile,
.icon-phone,
.icon-call-end,
.icon-call-in,
.icon-call-out,
.icon-map,
.icon-location-pin,
.icon-direction,
.icon-directions,
.icon-compass,
.icon-layers,
.icon-menu,
.icon-list,
.icon-options-vertical,
.icon-options,
.icon-arrow-down,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-arrow-up-circle,
.icon-arrow-left-circle,
.icon-arrow-right-circle,
.icon-arrow-down-circle,
.icon-check,
.icon-clock,
.icon-plus,
.icon-minus,
.icon-close,
.icon-event,
.icon-exclamation,
.icon-organization,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-mustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-disc,
.icon-cursor,
.icon-cursor-move,
.icon-crop,
.icon-chemistry,
.icon-speedometer,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglass,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-folder-alt,
.icon-folder,
.icon-film,
.icon-feed,
.icon-drop,
.icon-drawer,
.icon-docs,
.icon-doc,
.icon-diamond,
.icon-cup,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-frame,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-loop,
.icon-home,
.icon-grid,
.icon-graph,
.icon-microphone,
.icon-music-tone-alt,
.icon-music-tone,
.icon-earphones-alt,
.icon-earphones,
.icon-equalizer,
.icon-like,
.icon-dislike,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-calendar,
.icon-bulb,
.icon-chart,
.icon-ban,
.icon-bubble,
.icon-camrecorder,
.icon-camera,
.icon-cloud-download,
.icon-cloud-upload,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symbol-female,
.icon-symbol-male,
.icon-target,
.icon-credit-card,
.icon-paypal,
.icon-social-tumblr,
.icon-social-twitter,
.icon-social-facebook,
.icon-social-instagram,
.icon-social-linkedin,
.icon-social-pinterest,
.icon-social-github,
.icon-social-google,
.icon-social-reddit,
.icon-social-skype,
.icon-social-dribbble,
.icon-social-behance,
.icon-social-foursqare,
.icon-social-soundcloud,
.icon-social-spotify,
.icon-social-stumbleupon,
.icon-social-youtube,
.icon-social-dropbox,
.icon-social-vkontakte,
.icon-social-steam {
font-family: 'simple-line-icons';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-user:before {
content: "\e005";
}
.icon-people:before {
content: "\e001";
}
.icon-user-female:before {
content: "\e000";
}
.icon-user-follow:before {
content: "\e002";
}
.icon-user-following:before {
content: "\e003";
}
.icon-user-unfollow:before {
content: "\e004";
}
.icon-login:before {
content: "\e066";
}
.icon-logout:before {
content: "\e065";
}
.icon-emotsmile:before {
content: "\e021";
}
.icon-phone:before {
content: "\e600";
}
.icon-call-end:before {
content: "\e048";
}
.icon-call-in:before {
content: "\e047";
}
.icon-call-out:before {
content: "\e046";
}
.icon-map:before {
content: "\e033";
}
.icon-location-pin:before {
content: "\e096";
}
.icon-direction:before {
content: "\e042";
}
.icon-directions:before {
content: "\e041";
}
.icon-compass:before {
content: "\e045";
}
.icon-layers:before {
content: "\e034";
}
.icon-menu:before {
content: "\e601";
}
.icon-list:before {
content: "\e067";
}
.icon-options-vertical:before {
content: "\e602";
}
.icon-options:before {
content: "\e603";
}
.icon-arrow-down:before {
content: "\e604";
}
.icon-arrow-left:before {
content: "\e605";
}
.icon-arrow-right:before {
content: "\e606";
}
.icon-arrow-up:before {
content: "\e607";
}
.icon-arrow-up-circle:before {
content: "\e078";
}
.icon-arrow-left-circle:before {
content: "\e07a";
}
.icon-arrow-right-circle:before {
content: "\e079";
}
.icon-arrow-down-circle:before {
content: "\e07b";
}
.icon-check:before {
content: "\e080";
}
.icon-clock:before {
content: "\e081";
}
.icon-plus:before {
content: "\e095";
}
.icon-minus:before {
content: "\e615";
}
.icon-close:before {
content: "\e082";
}
.icon-event:before {
content: "\e619";
}
.icon-exclamation:before {
content: "\e617";
}
.icon-organization:before {
content: "\e616";
}
.icon-trophy:before {
content: "\e006";
}
.icon-screen-smartphone:before {
content: "\e010";
}
.icon-screen-desktop:before {
content: "\e011";
}
.icon-plane:before {
content: "\e012";
}
.icon-notebook:before {
content: "\e013";
}
.icon-mustache:before {
content: "\e014";
}
.icon-mouse:before {
content: "\e015";
}
.icon-magnet:before {
content: "\e016";
}
.icon-energy:before {
content: "\e020";
}
.icon-disc:before {
content: "\e022";
}
.icon-cursor:before {
content: "\e06e";
}
.icon-cursor-move:before {
content: "\e023";
}
.icon-crop:before {
content: "\e024";
}
.icon-chemistry:before {
content: "\e026";
}
.icon-speedometer:before {
content: "\e007";
}
.icon-shield:before {
content: "\e00e";
}
.icon-screen-tablet:before {
content: "\e00f";
}
.icon-magic-wand:before {
content: "\e017";
}
.icon-hourglass:before {
content: "\e018";
}
.icon-graduation:before {
content: "\e019";
}
.icon-ghost:before {
content: "\e01a";
}
.icon-game-controller:before {
content: "\e01b";
}
.icon-fire:before {
content: "\e01c";
}
.icon-eyeglass:before {
content: "\e01d";
}
.icon-envelope-open:before {
content: "\e01e";
}
.icon-envelope-letter:before {
content: "\e01f";
}
.icon-bell:before {
content: "\e027";
}
.icon-badge:before {
content: "\e028";
}
.icon-anchor:before {
content: "\e029";
}
.icon-wallet:before {
content: "\e02a";
}
.icon-vector:before {
content: "\e02b";
}
.icon-speech:before {
content: "\e02c";
}
.icon-puzzle:before {
content: "\e02d";
}
.icon-printer:before {
content: "\e02e";
}
.icon-present:before {
content: "\e02f";
}
.icon-playlist:before {
content: "\e030";
}
.icon-pin:before {
content: "\e031";
}
.icon-picture:before {
content: "\e032";
}
.icon-handbag:before {
content: "\e035";
}
.icon-globe-alt:before {
content: "\e036";
}
.icon-globe:before {
content: "\e037";
}
.icon-folder-alt:before {
content: "\e039";
}
.icon-folder:before {
content: "\e089";
}
.icon-film:before {
content: "\e03a";
}
.icon-feed:before {
content: "\e03b";
}
.icon-drop:before {
content: "\e03e";
}
.icon-drawer:before {
content: "\e03f";
}
.icon-docs:before {
content: "\e040";
}
.icon-doc:before {
content: "\e085";
}
.icon-diamond:before {
content: "\e043";
}
.icon-cup:before {
content: "\e044";
}
.icon-calculator:before {
content: "\e049";
}
.icon-bubbles:before {
content: "\e04a";
}
.icon-briefcase:before {
content: "\e04b";
}
.icon-book-open:before {
content: "\e04c";
}
.icon-basket-loaded:before {
content: "\e04d";
}
.icon-basket:before {
content: "\e04e";
}
.icon-bag:before {
content: "\e04f";
}
.icon-action-undo:before {
content: "\e050";
}
.icon-action-redo:before {
content: "\e051";
}
.icon-wrench:before {
content: "\e052";
}
.icon-umbrella:before {
content: "\e053";
}
.icon-trash:before {
content: "\e054";
}
.icon-tag:before {
content: "\e055";
}
.icon-support:before {
content: "\e056";
}
.icon-frame:before {
content: "\e038";
}
.icon-size-fullscreen:before {
content: "\e057";
}
.icon-size-actual:before {
content: "\e058";
}
.icon-shuffle:before {
content: "\e059";
}
.icon-share-alt:before {
content: "\e05a";
}
.icon-share:before {
content: "\e05b";
}
.icon-rocket:before {
content: "\e05c";
}
.icon-question:before {
content: "\e05d";
}
.icon-pie-chart:before {
content: "\e05e";
}
.icon-pencil:before {
content: "\e05f";
}
.icon-note:before {
content: "\e060";
}
.icon-loop:before {
content: "\e064";
}
.icon-home:before {
content: "\e069";
}
.icon-grid:before {
content: "\e06a";
}
.icon-graph:before {
content: "\e06b";
}
.icon-microphone:before {
content: "\e063";
}
.icon-music-tone-alt:before {
content: "\e061";
}
.icon-music-tone:before {
content: "\e062";
}
.icon-earphones-alt:before {
content: "\e03c";
}
.icon-earphones:before {
content: "\e03d";
}
.icon-equalizer:before {
content: "\e06c";
}
.icon-like:before {
content: "\e068";
}
.icon-dislike:before {
content: "\e06d";
}
.icon-control-start:before {
content: "\e06f";
}
.icon-control-rewind:before {
content: "\e070";
}
.icon-control-play:before {
content: "\e071";
}
.icon-control-pause:before {
content: "\e072";
}
.icon-control-forward:before {
content: "\e073";
}
.icon-control-end:before {
content: "\e074";
}
.icon-volume-1:before {
content: "\e09f";
}
.icon-volume-2:before {
content: "\e0a0";
}
.icon-volume-off:before {
content: "\e0a1";
}
.icon-calendar:before {
content: "\e075";
}
.icon-bulb:before {
content: "\e076";
}
.icon-chart:before {
content: "\e077";
}
.icon-ban:before {
content: "\e07c";
}
.icon-bubble:before {
content: "\e07d";
}
.icon-camrecorder:before {
content: "\e07e";
}
.icon-camera:before {
content: "\e07f";
}
.icon-cloud-download:before {
content: "\e083";
}
.icon-cloud-upload:before {
content: "\e084";
}
.icon-envelope:before {
content: "\e086";
}
.icon-eye:before {
content: "\e087";
}
.icon-flag:before {
content: "\e088";
}
.icon-heart:before {
content: "\e08a";
}
.icon-info:before {
content: "\e08b";
}
.icon-key:before {
content: "\e08c";
}
.icon-link:before {
content: "\e08d";
}
.icon-lock:before {
content: "\e08e";
}
.icon-lock-open:before {
content: "\e08f";
}
.icon-magnifier:before {
content: "\e090";
}
.icon-magnifier-add:before {
content: "\e091";
}
.icon-magnifier-remove:before {
content: "\e092";
}
.icon-paper-clip:before {
content: "\e093";
}
.icon-paper-plane:before {
content: "\e094";
}
.icon-power:before {
content: "\e097";
}
.icon-refresh:before {
content: "\e098";
}
.icon-reload:before {
content: "\e099";
}
.icon-settings:before {
content: "\e09a";
}
.icon-star:before {
content: "\e09b";
}
.icon-symbol-female:before {
content: "\e09c";
}
.icon-symbol-male:before {
content: "\e09d";
}
.icon-target:before {
content: "\e09e";
}
.icon-credit-card:before {
content: "\e025";
}
.icon-paypal:before {
content: "\e608";
}
.icon-social-tumblr:before {
content: "\e00a";
}
.icon-social-twitter:before {
content: "\e009";
}
.icon-social-facebook:before {
content: "\e00b";
}
.icon-social-instagram:before {
content: "\e609";
}
.icon-social-linkedin:before {
content: "\e60a";
}
.icon-social-pinterest:before {
content: "\e60b";
}
.icon-social-github:before {
content: "\e60c";
}
.icon-social-google:before {
content: "\e60d";
}
.icon-social-reddit:before {
content: "\e60e";
}
.icon-social-skype:before {
content: "\e60f";
}
.icon-social-dribbble:before {
content: "\e00d";
}
.icon-social-behance:before {
content: "\e610";
}
.icon-social-foursqare:before {
content: "\e611";
}
.icon-social-soundcloud:before {
content: "\e612";
}
.icon-social-spotify:before {
content: "\e613";
}
.icon-social-stumbleupon:before {
content: "\e614";
}
.icon-social-youtube:before {
content: "\e008";
}
.icon-social-dropbox:before {
content: "\e00c";
}
.icon-social-vkontakte:before {
content: "\e618";
}
.icon-social-steam:before {
content: "\e620";
}.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #0b0b0b;
opacity: 0.8; }
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1043;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden; }
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 8px;
box-sizing: border-box; }
.mfp-container:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle; }
.mfp-align-top .mfp-container:before {
display: none; }
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045; }
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto; }
.mfp-ajax-cur {
cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out; }
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in; }
.mfp-auto-cursor .mfp-content {
cursor: auto; }
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.mfp-loading.mfp-figure {
display: none; }
.mfp-hide {
display: none !important; }
.mfp-preloader {
color: #CCC;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044; }
.mfp-preloader a {
color: #CCC; }
.mfp-preloader a:hover {
color: #FFF; }
.mfp-s-ready .mfp-preloader {
display: none; }
.mfp-s-error .mfp-content {
display: none; }
button.mfp-close,
button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
box-shadow: none;
touch-action: manipulation; }
button::-moz-focus-inner {
padding: 0;
border: 0; }
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-decoration: none;
text-align: center;
opacity: 0.65;
padding: 0 0 18px 10px;
color: #FFF;
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace; }
.mfp-close:hover,
.mfp-close:focus {
opacity: 1; }
.mfp-close:active {
top: 1px; }
.mfp-close-btn-in .mfp-close {
color: #333; }
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
color: #FFF;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%; }
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #CCC;
font-size: 12px;
line-height: 18px;
white-space: nowrap; }
.mfp-arrow {
position: absolute;
opacity: 0.65;
margin: 0;
top: 50%;
margin-top: -55px;
padding: 0;
width: 90px;
height: 110px;
-webkit-tap-highlight-color: transparent; }
.mfp-arrow:active {
margin-top: -54px; }
.mfp-arrow:hover,
.mfp-arrow:focus {
opacity: 1; }
.mfp-arrow:before,
.mfp-arrow:after {
content: '';
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: medium inset transparent; }
.mfp-arrow:after {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px; }
.mfp-arrow:before {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7; }
.mfp-arrow-left {
left: 0; }
.mfp-arrow-left:after {
border-right: 17px solid #FFF;
margin-left: 31px; }
.mfp-arrow-left:before {
margin-left: 25px;
border-right: 27px solid #3F3F3F; }
.mfp-arrow-right {
right: 0; }
.mfp-arrow-right:after {
border-left: 17px solid #FFF;
margin-left: 39px; }
.mfp-arrow-right:before {
border-left: 27px solid #3F3F3F; }
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px; }
.mfp-iframe-holder .mfp-close {
top: -40px; }
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #000; } img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
box-sizing: border-box;
padding: 40px 0 40px;
margin: 0 auto; } .mfp-figure {
line-height: 0; }
.mfp-figure:after {
content: '';
position: absolute;
left: 0;
top: 40px;
bottom: 40px;
display: block;
right: 0;
width: auto;
height: auto;
z-index: -1;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #444; }
.mfp-figure small {
color: #BDBDBD;
display: block;
font-size: 12px;
line-height: 14px; }
.mfp-figure figure {
margin: 0; }
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto; }
.mfp-title {
text-align: left;
line-height: 18px;
color: #F3F3F3;
word-wrap: break-word;
padding-right: 36px; }
.mfp-image-holder .mfp-content {
max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer; }
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { .mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0; }
.mfp-img-mobile img.mfp-img {
padding: 0; }
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0; }
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px; }
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
box-sizing: border-box; }
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0; }
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px; }
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0; } }
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75); }
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0; }
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%; }
.mfp-container {
padding-left: 6px;
padding-right: 6px; } }.slick-slider
{
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list
{
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus
{
outline: none;
}
.slick-list.dragging
{
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list
{
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track
{
position: relative;
top: 0;
left: 0;
display: block;
}
.slick-track:before,
.slick-track:after
{
display: table;
content: '';
}
.slick-track:after
{
clear: both;
}
.slick-loading .slick-track
{
visibility: hidden;
}
.slick-slide
{
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide
{
float: right;
}
.slick-slide img
{
display: block;
}
.slick-slide.slick-loading img
{
display: none;
}
.slick-slide.dragging img
{
pointer-events: none;
}
.slick-initialized .slick-slide
{
display: block;
}
.slick-loading .slick-slide
{
visibility: hidden;
}
.slick-vertical .slick-slide
{
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}
   .preloader-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #1e2024;
z-index: 999999;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.preloader {
position: fixed;
left: 50%;
top: 50%;
margin-left: -16px;
margin-top: -16px;
-webkit-backface-visibility: hidden;
border-radius: 50%;
width: 32px;
height: 32px;
border: 4px solid rgba(255, 255, 255, 0.15);
border-top-color: #38a9ff;
-webkit-animation: spin 1s infinite linear;
animation: spin 1s infinite linear;
}
.preloader--img {
border: none !important;
-webkit-animation: none !important;
animation: none !important;
background-position: 50% 50%;
background-size: cover;
border-radius: 0;
}  h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
color: #31404b;
margin: 0 0 0.75em 0;
font-weight: 700;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
letter-spacing: -0.02em;
}
h1, .h1 {
font-size: 48px;
font-style: normal;
text-transform: uppercase;
font-weight: 700;
}
h2, .h2 {
font-size: 32px;
font-style: normal;
text-transform: uppercase;
font-weight: 700;
}
h3, .h3 {
font-size: 24px;
font-style: normal;
text-transform: uppercase;
font-weight: 700;
}
h4, .h4 {
font-size: 22px;
text-transform: none;
font-style: normal;
font-weight: 700;
}
h5, .h5 {
font-size: 16px;
font-style: normal;
text-transform: uppercase;
font-weight: 700;
}
h6, .h6 {
font-size: 14px;
font-style: normal;
text-transform: uppercase;
margin-bottom: 2em;
line-height: 26px;
font-weight: 700;
} p {
margin-bottom: 1.5em;
}
.lead {
font-size: 16px;
line-height: 2em;
} a {
color: #1892ed;
text-decoration: none;
}
a:hover, a:focus {
color: #38a9ff;
text-decoration: none;
outline: none;
} .widget_text ol:not([class]),
div.wpb_text_column ol:not([class]),
.list ol:not([class]),
.hentry ol:not([class]) {
list-style-type: none;
padding: 0;
margin: 0;
margin-bottom: 1.5em;
counter-reset: counter;
}
.widget_text ol:not([class]) li,
div.wpb_text_column ol:not([class]) li,
.list ol:not([class]) li,
.hentry ol:not([class]) li {
position: relative;
padding: 0 0 0.5em 30px;
}
.widget_text ol:not([class]) > li::before,
div.wpb_text_column ol:not([class]) > li::before,
.list ol:not([class]) > li::before,
.hentry ol:not([class]) > li::before {
display: inline-block; position: absolute; left: 0; content: counter(counter) ". ";
counter-increment: counter;
font-weight: bold;
width: 20px;
color: #31404b;
font-family: "Montserrat", sans-serif;
font-size: 13px;
}
.widget_text ol:not([class]) ol,
.widget_text ol:not([class]) ul,
div.wpb_text_column ol:not([class]) ol,
div.wpb_text_column ol:not([class]) ul,
.list ol:not([class]) ol,
.list ol:not([class]) ul,
.hentry ol:not([class]) ol,
.hentry ol:not([class]) ul {
margin-bottom: 0;
margin-top: 1em;
}
.widget_text ul:not([class]),
div.wpb_text_column ul:not([class]),
.list ul:not([class]),
.hentry ul:not([class]) {
list-style-type: none;
padding: 0;
margin: 0;
margin-bottom: 1.5em;
}
.widget_text ul:not([class]) li,
div.wpb_text_column ul:not([class]) li,
.list ul:not([class]) li,
.hentry ul:not([class]) li {
position: relative;
padding: 0 0 0.5em 30px;
}
.widget_text ul:not([class]) > li::before,
div.wpb_text_column ul:not([class]) > li::before,
.list ul:not([class]) > li::before,
.hentry ul:not([class]) > li::before {
display: inline-block; position: absolute; left: 0; width: 20px;
color: #38a9ff;
font-size: 14px;
content: "\f00c";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
}
.widget_text ul:not([class]) ul,
.widget_text ul:not([class]) ol,
div.wpb_text_column ul:not([class]) ul,
div.wpb_text_column ul:not([class]) ol,
.list ul:not([class]) ul,
.list ul:not([class]) ol,
.hentry ul:not([class]) ul,
.hentry ul:not([class]) ol {
margin-bottom: 0;
margin-top: 1em;
}
.wpb_widgetised_column .widget_recent_entries ul:not([class]) > li {
padding: 0;
}
.wpb_widgetised_column .widget_recent_entries ul:not([class]) > li::before {
display: none;
}
.wpb_widgetised_column .widget_recent_entries ul:not([class]) > li {
padding: 0;
}
.wpb_widgetised_column .widget_recent_entries ul:not([class]) > li::before {
display: none;
} .content-title {
text-align: center;
padding: 10px 0;
margin-bottom: 20px;
}
@media (min-width: 992px) {
.content-title {
padding: 25px 0;
margin-bottom: 35px;
}
}
.content-title__h {
line-height: 1.2em;
margin-bottom: 0.75em;
font-size: 18px;
}
@media (min-width: 768px) {
.content-title__h {
font-size: 24px;
}
}
@media (min-width: 992px) {
.content-title__h {
font-size: 32px;
}
}
.content-title__subtitle {
font-style: normal;
font-size: 11px;
line-height: 1.2em;
color: #9a9da2;
}
.content-title__h + .content-title__subtitle {
margin-top: -1.75em;
margin-bottom: 3em;
} .blockquote--default,
blockquote {
text-align: center;
border: none;
padding: 20px;
position: relative;
margin-bottom: 2em;
}
@media (min-width: 992px) {
.blockquote--default,
blockquote {
padding: 50px 20px 20px 20px;
}
}
.blockquote--default::before,
blockquote::before {
content: "“";
display: block;
position: absolute;
left: 50%;
top: -0.17em;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
font-family: "Montserrat", sans-serif;
color: #31404b;
opacity: 0.05;
font-size: 300px;
line-height: 1em;
pointer-events: none;
}
@media (min-width: 992px) {
.blockquote--default::before,
blockquote::before {
font-size: 600px;
}
}
@media (min-width: 1199px) {
.blockquote--default::before,
blockquote::before {
font-size: 700px;
}
}
.blockquote--default .blockquote__content,
.blockquote--default > p,
blockquote .blockquote__content,
blockquote > p {
font-size: 16px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #3b4d5a;
margin-bottom: 0.75em;
}
@media (min-width: 992px) {
.blockquote--default .blockquote__content,
.blockquote--default > p,
blockquote .blockquote__content,
blockquote > p {
font-size: 24px;
}
}
.blockquote--default .blockquote__footer::before,
blockquote .blockquote__footer::before {
display: none !important;
}
.blockquote--default .blockquote__cite,
blockquote .blockquote__cite {
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #9a9da2;
font-style: normal !important;
}
@media (min-width: 992px) {
.blockquote--default .blockquote__cite,
blockquote .blockquote__cite {
font-size: 14px;
}
}
.blockquote--default .blockquote__author-name,
blockquote .blockquote__author-name {
display: block;
}
.blockquote--default .blockquote__author-info,
blockquote .blockquote__author-info {
font-size: 9px;
display: block;
}
@media (min-width: 992px) {
.blockquote--default .blockquote__author-info,
blockquote .blockquote__author-info {
font-size: 10px;
}
}
.text-success {
color: #24d9b0 !important;
}
.text-danger {
color: #f34141 !important;
}
.text-warning {
color: #ff7e1f !important;
}
.text-info {
color: #0cb2e2 !important;
}
address strong {
color: #31404b;
font-weight: 400;
}
dt {
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
margin-bottom: 0.2em;
}
dd {
margin-bottom: 1.5em;
} figure {
margin: 0;
}
img {
max-width: 100%;
height: auto;
}
.aligncenter {
text-align: center;
margin-bottom: 20px;
}
.wp-block-image figcaption,
.aligncenter figcaption {
padding: 14px;
font-size: 13px;
text-align: center;
}
:root {
--icon-svg-color: $svg-stroke;
}
.df-icon {
width: 28px;
height: 28px;
fill: none;
stroke: #c2ff1f;
}
.df-icon use {
display: block;
position: absolute;
width: 20px !important;
height: 20px !important;
}
.df-icon-stack {
position: relative;
width: 28px;
height: 28px;
}
.df-icon-stack .df-icon {
position: absolute;
}
.df-icon--basketball {
width: 28px;
height: 28px;
stroke-width: 1.6px;
}
.df-icon--jersey {
width: 22px;
height: 24px;
stroke-width: 1.8px;
fill-rule: evenodd;
}
.df-icon--points {
width: 37px;
height: 32px;
stroke-width: 1.6px;
}
.df-icon--bag {
width: 22px;
height: 24px;
stroke-width: 1.6px;
}
.df-icon--bag-handle {
width: 12px;
height: 11px;
stroke-width: 1.6px;
}
.df-icon-stack--bag .df-icon--bag {
left: 50% !important;
top: 5px;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.df-icon-stack--bag .df-icon--bag-handle {
left: 50% !important;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.df-icon--ppg {
width: 37px;
height: 32px;
stroke-width: 1.6px;
}
.df-icon--apg {
width: 50px;
height: 28px;
stroke-width: 1.6px;
}
.df-icon--rpg {
width: 41px;
height: 33px;
stroke-width: 1.6px;
}
.df-icon-stack--3pts {
margin: 0 auto;
width: 33px;
height: 32px;
text-align: center;
}
.df-icon-stack--3pts .df-icon--basketball {
left: 0;
top: 4px;
}
.df-icon-stack--3pts .df-icon--txt {
display: block;
position: absolute;
left: 100%;
top: 0;
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1em;
}
.df-icon--trophy {
width: 22px;
height: 18px;
stroke: none;
fill: #31404b;
width: 22px;
height: 18px;
} .df-icon--whistle {
width: 30px;
height: 32px;
stroke-width: 1.8px;
}
.df-icon--soccer-ball {
width: 28px;
height: 28px;
stroke-width: 1.8px;
}
.df-icon-plus {
position: relative;
display: inline-block;
width: 12px;
height: 12px;
overflow: hidden;
}
.df-icon-plus::before {
content: "";
display: block;
position: absolute;
left: 5px;
top: 0;
bottom: 0;
width: 2px;
background-color: #fff;
}
.df-icon-plus::after {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 5px;
height: 2px;
background-color: #fff;
} table {
background-color: transparent;
}
caption {
padding-top: 13px;
padding-bottom: 13px;
text-align: left;
}
th {
text-align: left;
}
table,
.table {
width: 100%;
max-width: 100%;
color: #9a9da2;
font-size: 10px;
}
@media (min-width: 992px) {
table,
.table {
font-size: 11px;
}
}
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td,
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
padding: 6.5px;
vertical-align: top;
border-top: 1px solid #e4e7ed;
font-family: "Montserrat", sans-serif;
font-size: 10px;
line-height: 1.42857143em;
}
@media (min-width: 992px) {
table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td,
table > tfoot > tr > th,
table > tfoot > tr > td,
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
padding: 13px 10px;
font-size: 11px;
}
}
table > thead > tr > th,
.table > thead > tr > th {
vertical-align: bottom;
border-bottom: 1px solid #e4e7ed;
font-weight: 700;
color: #31404b;
text-transform: uppercase;
}
table > tbody > tr > th,
.table > tbody > tr > th {
color: #31404b;
font-weight: normal;
}
table > caption + thead > tr:first-child > th,
table > caption + thead > tr:first-child > td,
table > colgroup + thead > tr:first-child > th,
table > colgroup + thead > tr:first-child > td,
table > thead:first-child > tr:first-child > th,
table > thead:first-child > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
border-top: 0;
}
table > tbody + tbody,
.table > tbody + tbody {
border-top: 2px solid #e4e7ed;
}
.table--lg > thead > tr > th,
.table--lg > thead > tr > td,
.table--lg > tbody > tr > th,
.table--lg > tbody > tr > td,
.table--lg > tfoot > tr > th,
.table--lg > tfoot > tr > td {
padding: 8.5px;
}
@media (min-width: 992px) {
.table--lg > thead > tr > th,
.table--lg > thead > tr > td,
.table--lg > tbody > tr > th,
.table--lg > tbody > tr > td,
.table--lg > tfoot > tr > th,
.table--lg > tfoot > tr > td {
padding: 17px 12px;
}
}
.table-thead-color > thead > tr > th {
background-color: #f5f7f9;
}
.table-hover > tbody > tr,
.table-hover > tbody > tr.highlighted {
transition: background-color 0.2s ease;
}
.table-hover > tbody > tr:hover,
.table-hover > tbody > tr.highlighted:hover {
color: #9a9da2;
background-color: #f5f7f9;
}
.table-hover > tbody > tr.highlighted {
transition: background-color 0.2s ease;
background-color: #f5f7f9;
}
.table-bordered {
border: 1px solid #e4e7ed;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
border: 1px solid #e4e7ed;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
border-bottom-width: 1px;
}
.table-wrap-bordered {
border: 1px solid #e4e7ed;
}
@media (max-width: 767px) {
.table-responsive {
border: none;
margin-bottom: 0;
}
}
.table--no-border > thead > tr > th,
.table--no-border > thead > tr > td,
.table--no-border > tbody > tr > th,
.table--no-border > tbody > tr > td,
.table--no-border > tfoot > tr > th,
.table--no-border > tfoot > tr > td {
border: none !important;
}
.table--no-paddings > thead > tr > th,
.table--no-paddings > thead > tr > td,
.table--no-paddings > tbody > tr > th,
.table--no-paddings > tbody > tr > td,
.table--no-paddings > tfoot > tr > th,
.table--no-paddings > tfoot > tr > td {
padding: 0 !important;
}
.table__cell-center {
text-align: center;
}
.table__cell-center > thead > tr > th {
text-align: center;
}
.table__cell-center > thead > tr > th:first-child {
text-align: left;
}
table + h2 {
margin-top: 30px;
} .error-404 {
text-align: center;
padding: 10px 15px 20px 15px;
overflow: hidden;
position: relative;
}
@media (min-width: 992px) {
.error-404 {
padding: 20px 0 40px 0;
}
}
.error-404__figure {
position: relative;
display: inline-block;
margin-bottom: 30px;
max-width: 75%;
}
@media (min-width: 480px) {
.error-404__figure {
max-width: 100%;
}
}
@media (min-width: 1200px) {
.error-404__figure {
margin-bottom: 55px;
}
}
.error-404__figure--cross::before, .error-404__figure--cross::after {
content: "";
display: block;
position: absolute;
right: 0;
bottom: 0;
width: 120px;
height: 25px;
background-color: #38a9ff;
border-radius: 3px;
}
.error-404__figure--cross::before {
-webkit-transform: translate(50px, -70px) rotate(45deg);
transform: translate(50px, -70px) rotate(45deg);
}
.error-404__figure--cross::after {
-webkit-transform: translate(50px, -70px) rotate(-45deg);
transform: translate(50px, -70px) rotate(-45deg);
}
.error__header {
margin-bottom: 20px;
}
@media (min-width: 1200px) {
.error__header {
margin-bottom: 40px;
}
}
.error__title {
margin-bottom: 0.33em;
font-size: 24px;
}
@media (min-width: 992px) {
.error__title {
font-size: 32px;
}
}
@media (min-width: 1200px) {
.error__title {
font-size: 38px;
}
}
.error__subtitle {
font-size: 18px;
}
@media (min-width: 1200px) {
.error__subtitle {
font-size: 22px;
}
}
.error__description {
margin-bottom: 30px;
}
@media (min-width: 1200px) {
.error__description {
margin-bottom: 60px;
}
}
@media (min-width: 992px) {
.error__cta .btn {
margin: 0 10px;
}
}
@media (max-width: 767px) {
.error__cta .btn {
width: 100%;
padding-left: 0;
padding-right: 0;
margin: 5px 0;
}
} .vc_row {
margin-left: -8px !important;
margin-right: -8px !important;
}
.vc_row.vc_row-no-padding .vc_column_container > .vc_column-inner {
padding-left: 0 !important;
padding-right: 0 !important;
}
.vc_column_container > .vc_column-inner {
padding-left: 8px !important;
padding-right: 8px !important;
}
.form-horizontal .has-feedback .form-control-feedback {
right: 8px !important;
}
.vc_non_responsive .vc_row .vc_col-sm-1,
.vc_non_responsive .vc_row .vc_col-sm-10,
.vc_non_responsive .vc_row .vc_col-sm-11,
.vc_non_responsive .vc_row .vc_col-sm-12,
.vc_non_responsive .vc_row .vc_col-sm-2,
.vc_non_responsive .vc_row .vc_col-sm-3,
.vc_non_responsive .vc_row .vc_col-sm-4,
.vc_non_responsive .vc_row .vc_col-sm-5,
.vc_non_responsive .vc_row .vc_col-sm-7,
.vc_non_responsive .vc_row .vc_col-sm-8,
.vc_non_responsive .vc_row .vc_col-sm-9 {
padding-left: 0 !important;
padding-right: 0 !important;
} .effect-duotone {
position: relative;
}
.effect-duotone__layer::before, .effect-duotone__layer::after {
content: "";
}
.effect-duotone__layer, .effect-duotone__layer::before, .effect-duotone__layer::after {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
}
.effect-duotone__layer::before {
background-color: #000;
mix-blend-mode: color;
z-index: 1;
}
.effect-duotone__layer::after {
mix-blend-mode: lighten;
z-index: 3;
background-color: #1e2024;
}
.effect-duotone__layer-inner {
display: block;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
z-index: 2;
mix-blend-mode: multiply;
}
@supports (position: -ms-page) {
.effect-duotone .effect-duotone__layer::before {
opacity: 0.3;
}
.effect-duotone .effect-duotone__layer::after {
opacity: 0.3;
}
.effect-duotone .effect-duotone__layer-inner {
opacity: 0.45;
}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.effect-duotone .effect-duotone__layer::before {
opacity: 0.3 !important;
}
.effect-duotone .effect-duotone__layer::after {
opacity: 0.3 !important;
}
.effect-duotone .effect-duotone__layer-inner {
opacity: 0.5 !important;
}
}
.effect-duotone--base .effect-duotone__layer::after {
background-color: #1e2024 !important;
mix-blend-mode: screen;
}
.effect-duotone--base .effect-duotone__layer-inner {
background-color: #292c31 !important;
} .effect-duotone--primary .effect-duotone__layer::after {
background-color: #1e2024;
}
.effect-duotone--primary .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.effect-duotone--secondary .effect-duotone__layer::after {
background-color: #1e2024;
}
.effect-duotone--secondary .effect-duotone__layer-inner {
background-color: #31404b;
}
.effect-duotone--tertiary .effect-duotone__layer::after {
background-color: #1e2024;
}
.effect-duotone--tertiary .effect-duotone__layer-inner {
background-color: #07e0c4;
}
.effect-duotone--quaternary .effect-duotone__layer::after {
background-color: #1e2024;
}
.effect-duotone--quaternary .effect-duotone__layer-inner {
background-color: #9fe900;
}
.effect-duotone--info .effect-duotone__layer::after {
background-color: #1e2024;
}
.effect-duotone--info .effect-duotone__layer-inner {
background-color: #0cb2e2;
}
.posts__item--category-1 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.posts__item--category-2 .effect-duotone .effect-duotone__layer-inner {
background-color: #07e0c4;
}
.posts__item--category-3 .effect-duotone .effect-duotone__layer-inner {
background-color: #9fe900;
}
.posts__item--category-4 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.posts__item--category-5 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.posts__item--category-6 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.posts__item--category-7 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.posts__item--category-8 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.posts__item--category-9 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.posts__item--category-10 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.posts__item--category-11 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.posts__item--category-12 .effect-duotone .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-1 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-2 .effect-duotone__layer-inner {
background-color: #07e0c4;
}
.hero-slider--overlay-duotone .posts__item--category-3 .effect-duotone__layer-inner {
background-color: #9fe900;
}
.hero-slider--overlay-duotone .posts__item--category-4 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-5 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-6 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-7 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-8 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-9 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-10 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-11 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.hero-slider--overlay-duotone .posts__item--category-12 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-1 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-2 .effect-duotone__layer-inner {
background-color: #07e0c4;
}
.page-heading--duotone.posts__item--category-3 .effect-duotone__layer-inner {
background-color: #9fe900;
}
.page-heading--duotone.posts__item--category-4 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-5 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-6 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-7 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-8 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-9 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-10 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-11 .effect-duotone__layer-inner {
background-color: #38a9ff;
}
.page-heading--duotone.posts__item--category-12 .effect-duotone__layer-inner {
background-color: #38a9ff;
} .effect-duotone--blue .effect-duotone__layer::after {
background-color: #1e2024;
}
.effect-duotone--blue .effect-duotone__layer-inner {
background-color: #4439e4;
}
.effect-duotone--red .effect-duotone__layer::after {
background-color: #1e2024;
}
.effect-duotone--red .effect-duotone__layer-inner {
background-color: #ff1c5c;
}
.effect-duotone--grey .effect-duotone__layer::after {
background-color: #1e2024;
}
.effect-duotone--grey .effect-duotone__layer-inner {
background-color: #dadada;
}
.effect-duotone--yellow .effect-duotone__layer::after {
background-color: #1e2024;
}
.effect-duotone--yellow .effect-duotone__layer-inner {
background-color: #ffcc00;
} .spacer {
height: 30px;
overflow: hidden;
}
.spacer-sm {
height: 15px;
overflow: hidden;
}
.spacer-xs {
height: 10px;
overflow: hidden;
}
.spacer-lg {
height: 45px;
overflow: hidden;
}
.spacer-xlg {
height: 60px;
overflow: hidden;
}
.spacer-xxlg {
height: 90px;
overflow: hidden;
} iframe {
max-width: 100%;
border: none;
} .wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid > li {
margin-bottom: 15px !important;
}
.wpb_video_wrapper .jetpack-video-wrapper {
padding-bottom: 0;
}
.wpb_video_wrapper .jetpack-video-wrapper iframe {
width: 100% !important;
height: 100% !important;
} img[src$=".svg"].wp-post-image {
width: auto !important;
height: auto !important;
} .df-color-pallete {
list-style-type: none;
display: flex;
padding: 0;
margin: 0;
}
@media (max-width: 767px) {
.df-color-pallete {
flex-wrap: wrap;
}
}
.df-color-pallete__item {
height: 120px;
flex-grow: 1;
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #fff;
line-height: 1.2em;
text-align: center;
line-height: 120px;
}
@media (max-width: 767px) {
.df-color-pallete__item {
flex-basis: 25%;
}
}
@media (max-width: 479px) {
.df-color-pallete__item {
flex-basis: 50%;
}
}
.df-color-pallete__item.color-dark {
background-color: #1e2024;
}
.df-color-pallete__item.color-dark-lighten {
background-color: #292c31;
}
.df-color-pallete__item.color-2 {
background-color: #31404b;
}
.df-color-pallete__item.color-3 {
background-color: #07e0c4;
}
.df-color-pallete__item.color-4 {
background-color: #c2ff1f;
}
.df-color-pallete__item.color-gray {
background-color: #9a9da2;
}
.df-color-pallete__item.color-primary {
background-color: #38a9ff;
}
.df-color-pallete__item.color-primary-darken {
background-color: #1892ed;
}
.svg-filters {
height: 0;
left: -9999em;
margin: 0;
padding: 0;
position: absolute;
width: 0;
} .accordion .card {
margin-bottom: 0;
}
.accordion .card:first-of-type .card__header {
border-top-right-radius: 4px;
}
.accordion .card:last-of-type .card__header {
border-bottom-right-radius: 4px;
}
.accordion .card__header {
padding: 0;
border-radius: 0;
}
.accordion .card__header::before {
display: none;
}
.accordion .accordion__title {
width: 100%;
}
.accordion .btn.accordion__header-link,
.accordion .accordion__header-link {
display: block;
width: 100%;
text-align: left;
border: none;
position: relative;
padding: 0;
font-style: normal;
font-size: 14px;
padding: 24px 94px 24px 24px;
color: #31404b;
}
.accordion .btn.accordion__header-link:hover,
.accordion .accordion__header-link:hover {
color: #1892ed;
}
.accordion .btn.accordion__header-link:not(.collapsed) .accordion__header-link-icon,
.accordion .accordion__header-link:not(.collapsed) .accordion__header-link-icon {
background-color: #38a9ff;
border-bottom-right-radius: 0;
}
.accordion .btn.accordion__header-link:not(.collapsed) .accordion__header-link-icon::after,
.accordion .accordion__header-link:not(.collapsed) .accordion__header-link-icon::after {
opacity: 0;
}
.accordion .accordion__header-link-icon {
display: block;
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 70px;
background-color: #9a9da2;
border-radius: 0;
}
.accordion .accordion__header-link-icon::before, .accordion .accordion__header-link-icon::after {
content: "";
display: block;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: #fff;
transition: opacity 0.2s ease;
}
.accordion .accordion__header-link-icon::before {
width: 12px;
height: 2px;
}
.accordion .accordion__header-link-icon::after {
width: 2px;
height: 12px;
}
.accordion .card__content p:last-child {
margin-bottom: 0;
}
.accordion--space-between .card {
margin-bottom: 15px;
}
.accordion--space-between .card:last-child {
margin-bottom: 0;
}
.accordion--space-between .card .card__header, .accordion--space-between .card:first-of-type .card__header, .accordion--space-between .card:last-of-type .card__header {
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
}
.accordion--space-between .card:not(:first-of-type):not(:last-of-type) {
border-bottom: 1px solid #e4e7ed;
border-radius: 4px;
}
.accordion--space-between .card:not(:first-of-type) .card-header:first-child {
border-radius: 4px;
}
.accordion--space-between .card:first-of-type {
border-bottom: 1px solid #e4e7ed;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.accordion--space-between .card:last-of-type {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.accordion--space-between .accordion__header-link:not(.collapsed) .accordion__header-link-icon,
.accordion--space-between .btn.accordion__header-link:not(.collapsed) .accordion__header-link-icon {
border-bottom-right-radius: 0;
}
.accordion--space-between .accordion__header-link.collapsed .accordion__header-link-icon,
.accordion--space-between .btn.accordion__header-link.collapsed .accordion__header-link-icon {
border-bottom-right-radius: 4px;
} .alert,
.wpcf7 form .wpcf7-response-output {
padding: 17px;
padding-left: 85px;
border-radius: 4px;
border: 1px solid transparent;
font-size: 13px;
position: relative;
color: #9a9da2;
margin-bottom: 20px;
margin-left: 0;
margin-right: 0;
margin-top: 0;
}
.alert::before,
.wpcf7 form .wpcf7-response-output::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
bottom: 0;
border-radius: 4px 0 0 4px;
width: 60px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: 15px 15px;
}
.alert strong,
.wpcf7 form .wpcf7-response-output strong {
color: #31404b;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: bold;
}
.alert p:last-child,
.wpcf7 form .wpcf7-response-output p:last-child {
margin-bottom: 0;
}
.alert-dismissible {
padding-right: 37px;
}
.alert-dismissible .close {
top: 17px;
right: 17px;
color: inherit;
padding: 0;
font-size: 21px;
font-weight: bold;
line-height: 1;
opacity: 0.2;
}
.alert-btn-right {
position: relative;
float: right;
top: 0;
right: 0;
}
.alert-success,
.wpcf7 form.sent .wpcf7-response-output {
background-color: #fff;
border-color: #e4e7ed !important;
}
.alert-success hr,
.wpcf7 form.sent .wpcf7-response-output hr {
border-top-color: #d5d9e3;
}
.alert-success::before,
.wpcf7 form.sent .wpcf7-response-output::before {
background-color: #24d9b0;
background-size: 14px 12px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'%3E%3Cpath transform='translate(-189.438 -2446.25)' fill='%23fff' d='M201.45,2446.24l2.121,2.13-9.192,9.19-2.122-2.12Zm-4.949,9.2-2.121,2.12-4.95-4.95,2.121-2.12Z'/%3E%3C/svg%3E");
}
.alert-info,
.wpcf7 form .wpcf7-response-output {
background-color: #fff;
border-color: #e4e7ed !important;
}
.alert-info hr,
.wpcf7 form .wpcf7-response-output hr {
border-top-color: #d5d9e3;
}
.alert-info::before,
.wpcf7 form .wpcf7-response-output::before {
background-color: #0cb2e2;
background-size: 5px 18px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 18'%3E%3Cpath transform='translate(-194 -2257)' fill='%23fff' d='M194.714,2257h3.572a0.716,0.716,0,0,1,.714.72l-0.714,11.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72L194,2257.72A0.716,0.716,0,0,1,194.714,2257Zm0.715,14.4h2.142a0.716,0.716,0,0,1,.715.72v2.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72v-2.16A0.716,0.716,0,0,1,195.429,2271.4Z'/%3E%3C/svg%3E");
}
.alert-warning,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
background-color: #fff;
border-color: #e4e7ed !important;
}
.alert-warning hr,
.wpcf7 form.invalid .wpcf7-response-output hr,
.wpcf7 form.unaccepted .wpcf7-response-output hr,
.wpcf7 form.spam .wpcf7-response-output hr {
border-top-color: #d5d9e3;
}
.alert-warning::before,
.wpcf7 form.invalid .wpcf7-response-output::before,
.wpcf7 form.unaccepted .wpcf7-response-output::before,
.wpcf7 form.spam .wpcf7-response-output::before {
background-color: #ff7e1f;
background-size: 5px 18px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 5 18'%3E%3Cpath transform='translate(-194 -2257)' fill='%23fff' d='M194.714,2257h3.572a0.716,0.716,0,0,1,.714.72l-0.714,11.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72L194,2257.72A0.716,0.716,0,0,1,194.714,2257Zm0.715,14.4h2.142a0.716,0.716,0,0,1,.715.72v2.16a0.716,0.716,0,0,1-.715.72h-2.142a0.716,0.716,0,0,1-.715-0.72v-2.16A0.716,0.716,0,0,1,195.429,2271.4Z'/%3E%3C/svg%3E");
}
.alert-danger,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
background-color: #fff;
border-color: #e4e7ed !important;
}
.alert-danger hr,
.wpcf7 form.failed .wpcf7-response-output hr,
.wpcf7 form.aborted .wpcf7-response-output hr {
border-top-color: #d5d9e3;
}
.alert-danger::before,
.wpcf7 form.failed .wpcf7-response-output::before,
.wpcf7 form.aborted .wpcf7-response-output::before {
background-color: #f34141;
background-size: 11px 11px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 11'%3E%3Cpath transform='translate(-190.844 -2353.84)' fill='%23fff' d='M190.843,2355.96l2.121-2.12,9.193,9.2-2.122,2.12Zm9.192-2.12,2.122,2.12-9.193,9.2-2.121-2.12Z'/%3E%3C/svg%3E");
} .btn,
.button {
border: 1px solid transparent;
font-weight: 700;
font-family: "Montserrat", sans-serif;
font-style: normal;
text-transform: uppercase;
transition: all 0.3s ease;
vertical-align: middle;
padding: 13px 42px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
}
.btn:hover, .btn:focus, .btn.focus,
.button:hover,
.button:focus,
.button.focus {
color: #fff;
}
.btn:active, .btn.active,
.button:active,
.button.active {
box-shadow: none;
}
.btn-container {
display: block;
}
.btn-container--inline {
display: inline-block;
}
.btn-container--align-left {
text-align: left;
}
.btn-container--align-right {
text-align: right;
}
.btn-container--align-center {
text-align: center;
}
.btn-default,
.button {
color: #fff;
background-color: #9a9da2;
border-color: transparent;
}
.btn-default:focus, .btn-default.focus,
.button:focus,
.button.focus {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
.btn-default:hover,
.button:hover {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle,
.button:active,
.button.active,
.open > .button.dropdown-toggle {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus,
.button:active:hover,
.button:active:focus,
.button:active.focus,
.button.active:hover,
.button.active:focus,
.button.active.focus,
.open > .button.dropdown-toggle:hover,
.open > .button.dropdown-toggle:focus,
.open > .button.dropdown-toggle.focus {
color: #fff;
background-color: #6e7177;
border-color: rgba(0, 0, 0, 0);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle,
.button:active,
.button.active,
.open > .button.dropdown-toggle {
background-image: none;
}
.btn-default.disabled, .btn-default[disabled],
.button.disabled,
.button[disabled] {
background-color: #676a6f;
border-color: rgba(0, 0, 0, 0);
}
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus,
.button.disabled:hover,
.button.disabled:focus,
.button.disabled.focus,
.button[disabled]:hover,
.button[disabled]:focus,
.button[disabled].focus,
fieldset[disabled] .button:hover,
fieldset[disabled] .button:focus,
fieldset[disabled] .button.focus {
background-color: #676a6f;
border-color: rgba(0, 0, 0, 0);
}
.btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .show > .btn-default.dropdown-toggle,
.button:not(:disabled):not(.disabled):active,
.button:not(:disabled):not(.disabled).active,
.show > .button.dropdown-toggle {
color: #fff;
background-color: #868a91;
border-color: transparent;
}
.btn-default .badge,
.button .badge {
color: #9a9da2;
background-color: #fff;
}
.btn-default-alt {
color: #fff;
background-color: #31404b;
border-color: transparent;
}
.btn-default-alt:focus, .btn-default-alt.focus {
color: #fff;
background-color: #2b3842;
border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:hover {
color: #fff;
background-color: #2b3842;
border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:active, .btn-default-alt.active, .open > .btn-default-alt.dropdown-toggle {
color: #fff;
background-color: #2b3842;
border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:active:hover, .btn-default-alt:active:focus, .btn-default-alt:active.focus, .btn-default-alt.active:hover, .btn-default-alt.active:focus, .btn-default-alt.active.focus, .open > .btn-default-alt.dropdown-toggle:hover, .open > .btn-default-alt.dropdown-toggle:focus, .open > .btn-default-alt.dropdown-toggle.focus {
color: #fff;
background-color: #0f1317;
border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:active, .btn-default-alt.active, .open > .btn-default-alt.dropdown-toggle {
background-image: none;
}
.btn-default-alt.disabled, .btn-default-alt[disabled] {
background-color: #090b0d;
border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt.disabled:hover, .btn-default-alt.disabled:focus, .btn-default-alt.disabled.focus, .btn-default-alt[disabled]:hover, .btn-default-alt[disabled]:focus, .btn-default-alt[disabled].focus, fieldset[disabled] .btn-default-alt:hover, fieldset[disabled] .btn-default-alt:focus, fieldset[disabled] .btn-default-alt.focus {
background-color: #090b0d;
border-color: rgba(0, 0, 0, 0);
}
.btn-default-alt:not(:disabled):not(.disabled):active, .btn-default-alt:not(:disabled):not(.disabled).active, .show > .btn-default-alt.dropdown-toggle {
color: #fff;
background-color: #2b3842;
border-color: transparent;
}
.btn-default-alt .badge {
color: #31404b;
background-color: #fff;
}
.btn-primary,
.button.alt {
color: #fff;
background-color: #31404b;
border-color: transparent;
}
.btn-primary:focus, .btn-primary.focus,
.button.alt:focus,
.button.alt.focus {
color: #fff;
background-color: #1892ed;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary:hover,
.button.alt:hover {
color: #fff;
background-color: #1892ed;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle,
.button.alt:active,
.button.alt.active,
.open > .button.alt.dropdown-toggle {
color: #fff;
background-color: #1892ed;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus,
.button.alt:active:hover,
.button.alt:active:focus,
.button.alt:active.focus,
.button.alt.active:hover,
.button.alt.active:focus,
.button.alt.active.focus,
.open > .button.alt.dropdown-toggle:hover,
.open > .button.alt.dropdown-toggle:focus,
.open > .button.alt.dropdown-toggle.focus {
color: #fff;
background-color: #0f1317;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle,
.button.alt:active,
.button.alt.active,
.open > .button.alt.dropdown-toggle {
background-image: none;
}
.btn-primary.disabled, .btn-primary[disabled],
.button.alt.disabled,
.button.alt[disabled] {
background-color: #090b0d;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus,
.button.alt.disabled:hover,
.button.alt.disabled:focus,
.button.alt.disabled.focus,
.button.alt[disabled]:hover,
.button.alt[disabled]:focus,
.button.alt[disabled].focus,
fieldset[disabled] .button.alt:hover,
fieldset[disabled] .button.alt:focus,
fieldset[disabled] .button.alt.focus {
background-color: #090b0d;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle,
.button.alt:not(:disabled):not(.disabled):active,
.button.alt:not(:disabled):not(.disabled).active,
.show > .button.alt.dropdown-toggle {
color: #fff;
background-color: #1892ed;
border-color: transparent;
}
.btn-primary .badge,
.button.alt .badge {
color: #31404b;
background-color: #fff;
}
.btn-primary-inverse {
color: #fff;
background-color: #38a9ff;
border-color: transparent;
}
.btn-primary-inverse:focus, .btn-primary-inverse.focus {
color: #fff;
background-color: #1892ed;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:hover {
color: #fff;
background-color: #1892ed;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:active, .btn-primary-inverse.active, .open > .btn-primary-inverse.dropdown-toggle {
color: #fff;
background-color: #1892ed;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:active:hover, .btn-primary-inverse:active:focus, .btn-primary-inverse:active.focus, .btn-primary-inverse.active:hover, .btn-primary-inverse.active:focus, .btn-primary-inverse.active.focus, .open > .btn-primary-inverse.dropdown-toggle:hover, .open > .btn-primary-inverse.dropdown-toggle:focus, .open > .btn-primary-inverse.dropdown-toggle.focus {
color: #fff;
background-color: #007fe0;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:active, .btn-primary-inverse.active, .open > .btn-primary-inverse.dropdown-toggle {
background-image: none;
}
.btn-primary-inverse.disabled, .btn-primary-inverse[disabled] {
background-color: #0077d1;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse.disabled:hover, .btn-primary-inverse.disabled:focus, .btn-primary-inverse.disabled.focus, .btn-primary-inverse[disabled]:hover, .btn-primary-inverse[disabled]:focus, .btn-primary-inverse[disabled].focus, fieldset[disabled] .btn-primary-inverse:hover, fieldset[disabled] .btn-primary-inverse:focus, fieldset[disabled] .btn-primary-inverse.focus {
background-color: #0077d1;
border-color: rgba(0, 0, 0, 0);
}
.btn-primary-inverse:not(:disabled):not(.disabled):active, .btn-primary-inverse:not(:disabled):not(.disabled).active, .show > .btn-primary-inverse.dropdown-toggle {
color: #fff;
background-color: #1892ed;
border-color: transparent;
}
.btn-primary-inverse .badge {
color: #38a9ff;
background-color: #fff;
}
.btn-success {
color: #fff;
background-color: #9fe900;
border-color: transparent;
}
.btn-success:focus, .btn-success.focus {
color: #fff;
background-color: #95da00;
border-color: rgba(0, 0, 0, 0);
}
.btn-success:hover {
color: #fff;
background-color: #95da00;
border-color: rgba(0, 0, 0, 0);
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
color: #fff;
background-color: #95da00;
border-color: rgba(0, 0, 0, 0);
}
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
color: #fff;
background-color: #649200;
border-color: rgba(0, 0, 0, 0);
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
background-image: none;
}
.btn-success.disabled, .btn-success[disabled] {
background-color: #598300;
border-color: rgba(0, 0, 0, 0);
}
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus {
background-color: #598300;
border-color: rgba(0, 0, 0, 0);
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
color: #fff;
background-color: #95da00;
border-color: transparent;
}
.btn-success .badge {
color: #9fe900;
background-color: #fff;
}
.btn-info {
color: #fff;
background-color: #0cb2e2;
border-color: transparent;
}
.btn-info:focus, .btn-info.focus {
color: #fff;
background-color: #0ba7d3;
border-color: rgba(0, 0, 0, 0);
}
.btn-info:hover {
color: #fff;
background-color: #0ba7d3;
border-color: rgba(0, 0, 0, 0);
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
color: #fff;
background-color: #0ba7d3;
border-color: rgba(0, 0, 0, 0);
}
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
color: #fff;
background-color: #087190;
border-color: rgba(0, 0, 0, 0);
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
background-image: none;
}
.btn-info.disabled, .btn-info[disabled] {
background-color: #076681;
border-color: rgba(0, 0, 0, 0);
}
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus {
background-color: #076681;
border-color: rgba(0, 0, 0, 0);
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
color: #fff;
background-color: #0ba7d3;
border-color: transparent;
}
.btn-info .badge {
color: #0cb2e2;
background-color: #fff;
}
.btn-warning {
color: #fff;
background-color: #ff7e1f;
border-color: transparent;
}
.btn-warning:focus, .btn-warning.focus {
color: #fff;
background-color: #ff7510;
border-color: rgba(0, 0, 0, 0);
}
.btn-warning:hover {
color: #fff;
background-color: #ff7510;
border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
color: #fff;
background-color: #ff7510;
border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
color: #fff;
background-color: #c75500;
border-color: rgba(0, 0, 0, 0);
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
background-image: none;
}
.btn-warning.disabled, .btn-warning[disabled] {
background-color: #b84e00;
border-color: rgba(0, 0, 0, 0);
}
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus {
background-color: #b84e00;
border-color: rgba(0, 0, 0, 0);
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
color: #fff;
background-color: #ff7510;
border-color: transparent;
}
.btn-warning .badge {
color: #ff7e1f;
background-color: #fff;
}
.btn-danger {
color: #fff;
background-color: #f34141;
border-color: transparent;
}
.btn-danger:focus, .btn-danger.focus {
color: #fff;
background-color: #f23333;
border-color: rgba(0, 0, 0, 0);
}
.btn-danger:hover {
color: #fff;
background-color: #f23333;
border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
color: #fff;
background-color: #f23333;
border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
color: #fff;
background-color: #d00d0d;
border-color: rgba(0, 0, 0, 0);
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
background-image: none;
}
.btn-danger.disabled, .btn-danger[disabled] {
background-color: #c20c0c;
border-color: rgba(0, 0, 0, 0);
}
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus {
background-color: #c20c0c;
border-color: rgba(0, 0, 0, 0);
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
color: #fff;
background-color: #f23333;
border-color: transparent;
}
.btn-danger .badge {
color: #f34141;
background-color: #fff;
}
.btn.btn-instagram {
background-color: #1e78dd;
color: #fff;
}
.btn.btn-instagram:hover, .btn.btn-instagram:active, .btn.btn-instagram:focus {
background-color: #3185e3;
}
.btn.btn-instagram i {
font-size: 6px;
position: relative;
top: -1px;
}
.btn.btn-instagram.btn-sm {
padding-left: 24px;
padding-right: 24px;
}
.btn.btn-facebook {
color: #fff;
background-color: #4d6baa;
border-color: transparent;
}
.btn.btn-facebook:focus, .btn.btn-facebook.focus {
color: #fff;
background-color: #5c78b5;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:hover {
color: #fff;
background-color: #5c78b5;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:active, .btn.btn-facebook.active, .open > .btn.btn-facebook.dropdown-toggle {
color: #fff;
background-color: #5c78b5;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:active:hover, .btn.btn-facebook:active:focus, .btn.btn-facebook:active.focus, .btn.btn-facebook.active:hover, .btn.btn-facebook.active:focus, .btn.btn-facebook.active.focus, .open > .btn.btn-facebook.dropdown-toggle:hover, .open > .btn.btn-facebook.dropdown-toggle:focus, .open > .btn.btn-facebook.dropdown-toggle.focus {
color: #fff;
background-color: #32456e;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:active, .btn.btn-facebook.active, .open > .btn.btn-facebook.dropdown-toggle {
background-image: none;
}
.btn.btn-facebook.disabled, .btn.btn-facebook[disabled] {
background-color: #2d3f64;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook.disabled:hover, .btn.btn-facebook.disabled:focus, .btn.btn-facebook.disabled.focus, .btn.btn-facebook[disabled]:hover, .btn.btn-facebook[disabled]:focus, .btn.btn-facebook[disabled].focus, fieldset[disabled] .btn.btn-facebook:hover, fieldset[disabled] .btn.btn-facebook:focus, fieldset[disabled] .btn.btn-facebook.focus {
background-color: #2d3f64;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-facebook:not(:disabled):not(.disabled):active, .btn.btn-facebook:not(:disabled):not(.disabled).active, .show > .btn.btn-facebook.dropdown-toggle {
color: #fff;
background-color: #5c78b5;
border-color: transparent;
}
.btn.btn-facebook .badge {
color: #4d6baa;
background-color: #fff;
}
.btn.btn-twitter {
color: #fff;
background-color: #3fcef2;
border-color: transparent;
}
.btn.btn-twitter:focus, .btn.btn-twitter.focus {
color: #fff;
background-color: #57d4f4;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:hover {
color: #fff;
background-color: #57d4f4;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:active, .btn.btn-twitter.active, .open > .btn.btn-twitter.dropdown-toggle {
color: #fff;
background-color: #57d4f4;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:active:hover, .btn.btn-twitter:active:focus, .btn.btn-twitter:active.focus, .btn.btn-twitter.active:hover, .btn.btn-twitter.active:focus, .btn.btn-twitter.active.focus, .open > .btn.btn-twitter.dropdown-toggle:hover, .open > .btn.btn-twitter.dropdown-toggle:focus, .open > .btn.btn-twitter.dropdown-toggle.focus {
color: #fff;
background-color: #0ea6cc;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:active, .btn.btn-twitter.active, .open > .btn.btn-twitter.dropdown-toggle {
background-image: none;
}
.btn.btn-twitter.disabled, .btn.btn-twitter[disabled] {
background-color: #0d9abe;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter.disabled:hover, .btn.btn-twitter.disabled:focus, .btn.btn-twitter.disabled.focus, .btn.btn-twitter[disabled]:hover, .btn.btn-twitter[disabled]:focus, .btn.btn-twitter[disabled].focus, fieldset[disabled] .btn.btn-twitter:hover, fieldset[disabled] .btn.btn-twitter:focus, fieldset[disabled] .btn.btn-twitter.focus {
background-color: #0d9abe;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-twitter:not(:disabled):not(.disabled):active, .btn.btn-twitter:not(:disabled):not(.disabled).active, .show > .btn.btn-twitter.dropdown-toggle {
color: #fff;
background-color: #57d4f4;
border-color: transparent;
}
.btn.btn-twitter .badge {
color: #3fcef2;
background-color: #fff;
}
.btn.btn-linkedin {
color: #fff;
background-color: #0077B5;
border-color: transparent;
}
.btn.btn-linkedin:focus, .btn.btn-linkedin.focus {
color: #fff;
background-color: #0088cf;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:hover {
color: #fff;
background-color: #0088cf;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:active, .btn.btn-linkedin.active, .open > .btn.btn-linkedin.dropdown-toggle {
color: #fff;
background-color: #0088cf;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:active:hover, .btn.btn-linkedin:active:focus, .btn.btn-linkedin:active.focus, .btn.btn-linkedin.active:hover, .btn.btn-linkedin.active:focus, .btn.btn-linkedin.active.focus, .open > .btn.btn-linkedin.dropdown-toggle:hover, .open > .btn.btn-linkedin.dropdown-toggle:focus, .open > .btn.btn-linkedin.dropdown-toggle.focus {
color: #fff;
background-color: #003e5e;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:active, .btn.btn-linkedin.active, .open > .btn.btn-linkedin.dropdown-toggle {
background-image: none;
}
.btn.btn-linkedin.disabled, .btn.btn-linkedin[disabled] {
background-color: #00344f;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin.disabled:hover, .btn.btn-linkedin.disabled:focus, .btn.btn-linkedin.disabled.focus, .btn.btn-linkedin[disabled]:hover, .btn.btn-linkedin[disabled]:focus, .btn.btn-linkedin[disabled].focus, fieldset[disabled] .btn.btn-linkedin:hover, fieldset[disabled] .btn.btn-linkedin:focus, fieldset[disabled] .btn.btn-linkedin.focus {
background-color: #00344f;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-linkedin:not(:disabled):not(.disabled):active, .btn.btn-linkedin:not(:disabled):not(.disabled).active, .show > .btn.btn-linkedin.dropdown-toggle {
color: #fff;
background-color: #0088cf;
border-color: transparent;
}
.btn.btn-linkedin .badge {
color: #0077B5;
background-color: #fff;
}
.btn.btn-vk {
color: #fff;
background-color: #6383A8;
border-color: transparent;
}
.btn.btn-vk:focus, .btn.btn-vk.focus {
color: #fff;
background-color: #7390b1;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:hover {
color: #fff;
background-color: #7390b1;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:active, .btn.btn-vk.active, .open > .btn.btn-vk.dropdown-toggle {
color: #fff;
background-color: #7390b1;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:active:hover, .btn.btn-vk:active:focus, .btn.btn-vk:active.focus, .btn.btn-vk.active:hover, .btn.btn-vk.active:focus, .btn.btn-vk.active.focus, .open > .btn.btn-vk.dropdown-toggle:hover, .open > .btn.btn-vk.dropdown-toggle:focus, .open > .btn.btn-vk.dropdown-toggle.focus {
color: #fff;
background-color: #415874;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:active, .btn.btn-vk.active, .open > .btn.btn-vk.dropdown-toggle {
background-image: none;
}
.btn.btn-vk.disabled, .btn.btn-vk[disabled] {
background-color: #3b516a;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk.disabled:hover, .btn.btn-vk.disabled:focus, .btn.btn-vk.disabled.focus, .btn.btn-vk[disabled]:hover, .btn.btn-vk[disabled]:focus, .btn.btn-vk[disabled].focus, fieldset[disabled] .btn.btn-vk:hover, fieldset[disabled] .btn.btn-vk:focus, fieldset[disabled] .btn.btn-vk.focus {
background-color: #3b516a;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-vk:not(:disabled):not(.disabled):active, .btn.btn-vk:not(:disabled):not(.disabled).active, .show > .btn.btn-vk.dropdown-toggle {
color: #fff;
background-color: #7390b1;
border-color: transparent;
}
.btn.btn-vk .badge {
color: #6383A8;
background-color: #fff;
}
.btn.btn-odnoklassniki {
color: #fff;
background-color: #F4731C;
border-color: transparent;
}
.btn.btn-odnoklassniki:focus, .btn.btn-odnoklassniki.focus {
color: #fff;
background-color: #f58234;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:hover {
color: #fff;
background-color: #f58234;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:active, .btn.btn-odnoklassniki.active, .open > .btn.btn-odnoklassniki.dropdown-toggle {
color: #fff;
background-color: #f58234;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:active:hover, .btn.btn-odnoklassniki:active:focus, .btn.btn-odnoklassniki:active.focus, .btn.btn-odnoklassniki.active:hover, .btn.btn-odnoklassniki.active:focus, .btn.btn-odnoklassniki.active.focus, .open > .btn.btn-odnoklassniki.dropdown-toggle:hover, .open > .btn.btn-odnoklassniki.dropdown-toggle:focus, .open > .btn.btn-odnoklassniki.dropdown-toggle.focus {
color: #fff;
background-color: #b14c09;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:active, .btn.btn-odnoklassniki.active, .open > .btn.btn-odnoklassniki.dropdown-toggle {
background-image: none;
}
.btn.btn-odnoklassniki.disabled, .btn.btn-odnoklassniki[disabled] {
background-color: #a24608;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki.disabled:hover, .btn.btn-odnoklassniki.disabled:focus, .btn.btn-odnoklassniki.disabled.focus, .btn.btn-odnoklassniki[disabled]:hover, .btn.btn-odnoklassniki[disabled]:focus, .btn.btn-odnoklassniki[disabled].focus, fieldset[disabled] .btn.btn-odnoklassniki:hover, fieldset[disabled] .btn.btn-odnoklassniki:focus, fieldset[disabled] .btn.btn-odnoklassniki.focus {
background-color: #a24608;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-odnoklassniki:not(:disabled):not(.disabled):active, .btn.btn-odnoklassniki:not(:disabled):not(.disabled).active, .show > .btn.btn-odnoklassniki.dropdown-toggle {
color: #fff;
background-color: #f58234;
border-color: transparent;
}
.btn.btn-odnoklassniki .badge {
color: #F4731C;
background-color: #fff;
}
.btn.btn-whatsapp {
color: #fff;
background-color: #25D366;
border-color: transparent;
}
.btn.btn-whatsapp:focus, .btn.btn-whatsapp.focus {
color: #fff;
background-color: #36dc74;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:hover {
color: #fff;
background-color: #36dc74;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:active, .btn.btn-whatsapp.active, .open > .btn.btn-whatsapp.dropdown-toggle {
color: #fff;
background-color: #36dc74;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:active:hover, .btn.btn-whatsapp:active:focus, .btn.btn-whatsapp:active.focus, .btn.btn-whatsapp.active:hover, .btn.btn-whatsapp.active:focus, .btn.btn-whatsapp.active.focus, .open > .btn.btn-whatsapp.dropdown-toggle:hover, .open > .btn.btn-whatsapp.dropdown-toggle:focus, .open > .btn.btn-whatsapp.dropdown-toggle.focus {
color: #fff;
background-color: #188942;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:active, .btn.btn-whatsapp.active, .open > .btn.btn-whatsapp.dropdown-toggle {
background-image: none;
}
.btn.btn-whatsapp.disabled, .btn.btn-whatsapp[disabled] {
background-color: #167c3c;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp.disabled:hover, .btn.btn-whatsapp.disabled:focus, .btn.btn-whatsapp.disabled.focus, .btn.btn-whatsapp[disabled]:hover, .btn.btn-whatsapp[disabled]:focus, .btn.btn-whatsapp[disabled].focus, fieldset[disabled] .btn.btn-whatsapp:hover, fieldset[disabled] .btn.btn-whatsapp:focus, fieldset[disabled] .btn.btn-whatsapp.focus {
background-color: #167c3c;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-whatsapp:not(:disabled):not(.disabled):active, .btn.btn-whatsapp:not(:disabled):not(.disabled).active, .show > .btn.btn-whatsapp.dropdown-toggle {
color: #fff;
background-color: #36dc74;
border-color: transparent;
}
.btn.btn-whatsapp .badge {
color: #25D366;
background-color: #fff;
}
.btn.btn-viber {
color: #fff;
background-color: #7C529E;
border-color: transparent;
}
.btn.btn-viber:focus, .btn.btn-viber.focus {
color: #fff;
background-color: #895eab;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:hover {
color: #fff;
background-color: #895eab;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:active, .btn.btn-viber.active, .open > .btn.btn-viber.dropdown-toggle {
color: #fff;
background-color: #895eab;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:active:hover, .btn.btn-viber:active:focus, .btn.btn-viber:active.focus, .btn.btn-viber.active:hover, .btn.btn-viber.active:focus, .btn.btn-viber.active.focus, .open > .btn.btn-viber.dropdown-toggle:hover, .open > .btn.btn-viber.dropdown-toggle:focus, .open > .btn.btn-viber.dropdown-toggle.focus {
color: #fff;
background-color: #4f3465;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:active, .btn.btn-viber.active, .open > .btn.btn-viber.dropdown-toggle {
background-image: none;
}
.btn.btn-viber.disabled, .btn.btn-viber[disabled] {
background-color: #472f5b;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber.disabled:hover, .btn.btn-viber.disabled:focus, .btn.btn-viber.disabled.focus, .btn.btn-viber[disabled]:hover, .btn.btn-viber[disabled]:focus, .btn.btn-viber[disabled].focus, fieldset[disabled] .btn.btn-viber:hover, fieldset[disabled] .btn.btn-viber:focus, fieldset[disabled] .btn.btn-viber.focus {
background-color: #472f5b;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-viber:not(:disabled):not(.disabled):active, .btn.btn-viber:not(:disabled):not(.disabled).active, .show > .btn.btn-viber.dropdown-toggle {
color: #fff;
background-color: #895eab;
border-color: transparent;
}
.btn.btn-viber .badge {
color: #7C529E;
background-color: #fff;
}
.btn.btn-viber img {
width: 16px;
height: auto;
}
.btn.btn-viber img + .post-sharing__label {
margin-left: 10px;
}
.btn.btn-telegram {
color: #fff;
background-color: #2CA5E0;
border-color: transparent;
}
.btn.btn-telegram:focus, .btn.btn-telegram.focus {
color: #fff;
background-color: #42aee3;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:hover {
color: #fff;
background-color: #42aee3;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:active, .btn.btn-telegram.active, .open > .btn.btn-telegram.dropdown-toggle {
color: #fff;
background-color: #42aee3;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:active:hover, .btn.btn-telegram:active:focus, .btn.btn-telegram:active.focus, .btn.btn-telegram.active:hover, .btn.btn-telegram.active:focus, .btn.btn-telegram.active.focus, .open > .btn.btn-telegram.dropdown-toggle:hover, .open > .btn.btn-telegram.dropdown-toggle:focus, .open > .btn.btn-telegram.dropdown-toggle.focus {
color: #fff;
background-color: #17729e;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:active, .btn.btn-telegram.active, .open > .btn.btn-telegram.dropdown-toggle {
background-image: none;
}
.btn.btn-telegram.disabled, .btn.btn-telegram[disabled] {
background-color: #156891;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram.disabled:hover, .btn.btn-telegram.disabled:focus, .btn.btn-telegram.disabled.focus, .btn.btn-telegram[disabled]:hover, .btn.btn-telegram[disabled]:focus, .btn.btn-telegram[disabled].focus, fieldset[disabled] .btn.btn-telegram:hover, fieldset[disabled] .btn.btn-telegram:focus, fieldset[disabled] .btn.btn-telegram.focus {
background-color: #156891;
border-color: rgba(0, 0, 0, 0);
}
.btn.btn-telegram:not(:disabled):not(.disabled):active, .btn.btn-telegram:not(:disabled):not(.disabled).active, .show > .btn.btn-telegram.dropdown-toggle {
color: #fff;
background-color: #42aee3;
border-color: transparent;
}
.btn.btn-telegram .badge {
color: #2CA5E0;
background-color: #fff;
}
.btn.btn-link {
color: rgba(49, 64, 75, 0.4);
}
.btn.btn-link:hover {
text-decoration: none;
color: #31404b;
}
.btn-lg {
padding: 16px 80px;
font-size: 13px;
line-height: 1.45em;
border-radius: 2px;
}
.btn-sm {
padding: 10px 38px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
}
.btn-xs {
padding: 5px 13px;
font-size: 9px;
line-height: 1.5em;
border-radius: 2px;
}
.btn.btn-outline {
background-color: transparent;
}
.btn.btn-outline.btn-default {
border-color: #dbdfe6;
color: #9a9da2;
}
.btn.btn-outline.btn-default:hover {
background-color: #9a9da2;
border-color: #9a9da2;
color: #fff;
}
.btn.btn-outline.btn-default:hover.btn-circle {
background-color: #9a9da2;
}
.btn.btn-outline.btn-primary {
border-color: #e4e7ed;
color: #31404b;
}
.btn.btn-outline.btn-primary:hover {
background-color: #1892ed;
border-color: #1892ed;
color: #fff;
}
.btn.btn-outline.btn-primary:hover.btn-circle {
background-color: #1892ed;
}
.btn.btn-outline.btn-inverse {
border-color: #fff;
color: #fff;
border-width: 2px;
}
.btn.btn-outline.btn-inverse:hover {
background-color: #1892ed;
border-color: #1892ed;
color: #fff;
}
.btn.btn-outline.btn-inverse:hover i {
color: #fff;
}
.btn.btn-outline.btn-inverse:hover.btn-circle {
background-color: #1892ed;
}
.btn.btn-outline.btn-success {
border-color: #9fe900;
color: #31404b;
border-width: 2px;
}
.btn.btn-outline.btn-success:hover {
background-color: #95da00;
border-color: #95da00;
color: #fff;
}
.btn.btn-outline.btn-success:hover i {
color: #fff;
}
.btn.btn-outline.btn-success:hover.btn-circle {
background-color: #95da00;
}
.btn.btn-outline.btn-info {
border-color: #0cb2e2;
color: #31404b;
border-width: 2px;
}
.btn.btn-outline.btn-info:hover {
background-color: #0ba7d3;
border-color: #0ba7d3;
color: #fff;
}
.btn.btn-outline.btn-info:hover i {
color: #fff;
}
.btn.btn-outline.btn-info:hover.btn-circle {
background-color: #0ba7d3;
}
.btn.btn-outline.btn-warning {
border-color: #ff7e1f;
color: #31404b;
border-width: 2px;
}
.btn.btn-outline.btn-warning:hover {
background-color: #ff7510;
border-color: #ff7510;
color: #fff;
}
.btn.btn-outline.btn-warning:hover i {
color: #fff;
}
.btn.btn-outline.btn-warning:hover.btn-circle {
background-color: #ff7510;
}
.btn.btn-outline.btn-danger {
border-color: #f34141;
color: #31404b;
border-width: 2px;
}
.btn.btn-outline.btn-danger:hover {
background-color: #f23333;
border-color: #f23333;
color: #fff;
}
.btn.btn-outline.btn-danger:hover i {
color: #fff;
}
.btn.btn-outline.btn-danger:hover.btn-circle {
background-color: #f23333;
}
.btn-icon i {
font-size: 14px;
margin-right: 10px;
}
.btn-icon-right i {
margin-right: 0;
margin-left: 10px;
}
.btn-single-icon {
padding-left: 0 !important;
padding-right: 0 !important;
width: 47px;
text-align: center;
}
.btn-single-icon i {
margin: 0;
font-size: 13px;
line-height: 1.2em;
}
.btn-circle {
border-radius: 50%;
width: 38px;
height: 38px;
line-height: 38px;
padding: 0;
text-align: center;
}
.btn-circle i {
font-size: 15px;
}
.btn-circle.btn-outline {
border-width: 2px;
}
.btn-block {
padding-left: 0;
padding-right: 0;
}
.btn-condensed.btn-sm {
padding: 13px 28px;
}
.btn-condensed.btn-sm.btn-icon-right {
padding-right: 22px;
}
.btn-fab {
display: block;
position: absolute;
right: 0;
top: 0;
width: 50px;
height: 50px;
overflow: hidden;
background-color: #1892ed;
border-radius: 50%;
}
.btn-fab::before, .btn-fab::after {
content: "";
display: block;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: #fff;
transition: -webkit-transform 0.25s ease;
transition: transform 0.25s ease;
transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.btn-fab::before {
width: 17px;
height: 3px;
}
.btn-fab::after {
width: 3px;
height: 17px;
}
.btn-fab:hover::before, .btn-fab:hover::after {
-webkit-transform: translate(-50%, -50%) rotate(90deg);
transform: translate(-50%, -50%) rotate(90deg);
}
.btn-fab--clean {
background-color: transparent;
}
.btn-fab--clean::before, .btn-fab--clean::after {
background-color: #38a9ff;
}
.btn-fab--sm {
width: 30px;
height: 30px;
}
.btn-fab--sm::before {
width: 10px;
height: 2px;
}
.btn-fab--sm::after {
width: 2px;
height: 10px;
} .card {
border: 1px solid #e4e7ed;
border-radius: 4px;
background-color: #fff;
margin-bottom: 15px;
}
.card.sticky {
background-color: #fff;
}
.wpb_text_column .card:last-child {
margin-bottom: 15px !important;
}
.card--row {
flex-direction: row;
}
.card--block {
display: block;
}
.card--clean {
background: none;
border: none;
}
.card--clean .card__header {
background-color: #fff;
border: 1px solid #e4e7ed;
border-radius: 4px;
}
.card--clean > .card__content {
padding: 0;
}
.card--clean > .card__header + .card__content {
padding: 15px 0 0 0;
}
.card--has-table > .card__content {
padding: 0;
margin: 0 !important;
}
.card--has-table > .card__content .table {
margin-bottom: 0;
}
.card--no-paddings > .card__content {
padding: 0;
}
.card--squared-top {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.card__header {
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 22px 23px;
border-radius: 4px 4px 0 0;
position: relative;
border-bottom: 1px solid #e4e7ed;
overflow: hidden;
background-color: #fff;
}
.card__header::before {
content: "";
display: block;
position: absolute;
width: 6px;
left: 0;
top: 0;
bottom: 0;
background-color: #38a9ff;
border-radius: 3px 0 0 0;
}
.card__header ~ .card__header {
border-radius: 0;
}
.card__header ~ .card__header::before {
border-radius: 0;
}
.card__header > h4 {
font-size: 16px;
line-height: 1.2em;
letter-spacing: -0.02em;
margin-bottom: 0;
text-transform: uppercase;
font-style: normal;
padding-right: 1em;
padding-top: 5px;
padding-bottom: 5px;
vertical-align: middle;
font-style: normal;
flex-grow: 1;
}
.card__header--single {
border: 1px solid #e4e7ed;
border-radius: 4px;
margin-bottom: 15px;
}
@media (min-width: 480px) {
.card__header--has-checkbox .checkbox {
padding-top: 0;
font-size: 10px;
font-weight: bold;
}
}
.card__header--has-arrows .slick-prev,
.card__header--has-arrows .slick-next {
top: 25px;
}
.card__header--no-bottom-border {
border-bottom: none;
}
.card__header--no-highlight::before {
display: none !important;
}
.card__content {
padding: 24px 24px;
position: relative;
}
.card__content-inner {
padding: 20px;
}
.card__subheader {
background: #f5f7f9;
border-top: 1px solid #e4e7ed;
border-bottom: 1px solid #e4e7ed;
text-align: center;
padding: 8px 0;
margin-left: -24px;
margin-right: -24px;
margin-bottom: 20px;
}
@media (min-width: 992px) {
.card__subheader {
padding: 11px 0;
margin-bottom: 30px;
}
}
.card__subheader h5 {
margin-bottom: 0;
font-style: normal;
text-transform: uppercase;
}
.card__subheader--nomargins {
margin: 0;
}
.card__subheader--sm h5 {
font-size: 11px;
line-height: 1.2em;
}
@media (min-width: 992px) {
.card--lg .card__content {
padding: 43px 43px;
}
}
@media (min-width: 992px) {
.card--xlg .card__content {
padding: 70px 70px;
}
}
.card--alt-color .card__header::before {
background-color: #9fe900;
}
.card__header.card__header--shop-filter {
padding: 0;
}
.card--section {
border-radius: 0;
border-left: none;
border-right: none;
}
.card--info .card__content p {
font-size: 0.86em;
line-height: 1.83em;
}
.card--info .card__content p:last-child {
margin-bottom: 0;
}
.card--info .contact-info {
display: flex;
flex-wrap: wrap;
border-top: 1px solid #e4e7ed;
}
.card--info .contact-info__item {
flex-grow: 1;
max-width: 100%;
flex-basis: 0;
margin: -1px 0 0 -1px;
text-align: center;
padding: 25px 10px;
border-left: 1px solid #e4e7ed;
border-top: 1px solid #e4e7ed;
}
.card--info .contact-info__item:first-child {
border-bottom-left-radius: 4px;
}
.card--info .contact-info__icon {
color: #38a9ff;
font-size: 18px;
margin-bottom: 20px;
}
.card--info .contact-info__label {
font-size: 0.86em;
font-family: "Montserrat", sans-serif;
font-weight: 700;
color: #31404b;
}
.card--info .contact-info__label a {
color: #31404b;
}
.card--info .contact-info__label a:hover {
color: #38a9ff;
} .jumbotron {
padding: 2rem 1rem;
margin-bottom: 2rem;
background-color: #fff;
background-position: 50% 0;
background-repeat: no-repeat;
background-size: cover;
border: 1px solid #e4e7ed;
}
@media (min-width: 992px) {
.jumbotron {
padding: 4rem 2rem;
}
}
.jumbotron--card {
border: 1px solid #e4e7ed;
border-radius: 4px;
}
.jumbotron--style1 {
padding: 0;
position: relative;
}
@media (min-width: 992px) {
.jumbotron--style1 {
padding: 0;
}
}
@media (min-width: 768px) {
.jumbotron--style1::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/page-heading-pattern.png);
background-size: auto;
background-position: 100% 0;
background-repeat: no-repeat;
opacity: 0.4;
}
}
.jumbotron--style1 .jumbotron__title {
line-height: 1em;
margin-bottom: 0;
color: #38a9ff;
}
@media (max-width: 479px) {
.jumbotron--style1 .jumbotron__title {
font-size: 24px;
}
}
@media (min-width: 992px) {
.jumbotron--style1 .jumbotron__title {
font-size: 72px;
}
}
@media (min-width: 1200px) {
.jumbotron--style1 .jumbotron__title {
font-size: 90px;
}
}
.jumbotron--style1 .jumbotron__title:first-line,
.jumbotron--style1 .jumbotron__title .highlight {
color: #fff;
}
.jumbotron--style1 .jumbotron__subtitle {
margin-bottom: 0.25em;
color: #fff;
}
@media (max-width: 479px) {
.jumbotron--style1 .jumbotron__subtitle {
font-size: 9px;
}
}
@media (min-width: 1200px) {
.jumbotron--style1 .jumbotron__subtitle {
font-size: 14px;
}
}
.jumbotron--style1 .jumbotron__desc {
padding-top: 0.25em;
margin-bottom: 0;
}
@media (max-width: 479px) {
.jumbotron--style1 .jumbotron__desc {
font-size: 10px;
line-height: 1.2em;
}
}
.jumbotron--style1 .jumbotron__content {
padding: 2rem 1rem;
}
@media (min-width: 992px) {
.jumbotron--style1 .jumbotron__content {
padding: 4rem 2rem;
}
} .label {
font-weight: bold;
line-height: 1;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: 0.25em;
padding: 0.5em 1.1em;
font-size: 8px;
font-family: "Montserrat", sans-serif;
color: #fff;
text-transform: uppercase;
}
a.label:hover, a.label:focus {
color: #fff;
}
.label-default {
background-color: #9a9da2;
}
.label-default[href]:hover, .label-default[href]:focus {
background-color: #7f838a;
}
.label-primary {
background-color: #38a9ff;
}
.label-primary[href]:hover, .label-primary[href]:focus {
background-color: #0593ff;
}
.label-success {
background-color: #24d9b0;
}
.label-success[href]:hover, .label-success[href]:focus {
background-color: #1dad8d;
}
.label-info {
background-color: #0cb2e2;
}
.label-info[href]:hover, .label-info[href]:focus {
background-color: #098cb2;
}
.label-warning {
background-color: #ff7e1f;
}
.label-warning[href]:hover, .label-warning[href]:focus {
background-color: #eb6400;
}
.label-danger {
background-color: #f34141;
}
.label-danger[href]:hover, .label-danger[href]:focus {
background-color: #f01111;
} label {
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
color: #31404b;
margin-bottom: 9px;
font-weight: bold;
}
label .required {
color: #38a9ff;
}
.form-control,
.input-text,
select {
width: 100%;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
height: 52px;
padding: 12px 16px;
line-height: 1.733333;
font-size: 15px;
color: #31404b;
background-color: #fff;
border: 1px solid #e4e7ed;
border-radius: 2px;
box-shadow: none;
transition: border-color ease-in-out 0.15s;
}
.form-control:focus,
.input-text:focus,
select:focus {
color: #31404b;
background-color: #fff;
border-color: #38a9ff;
box-shadow: none;
outline: none;
}
.form-control::-moz-placeholder,
.input-text::-moz-placeholder,
select::-moz-placeholder {
color: rgba(154, 157, 162, 0.6);
opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder,
select:-ms-input-placeholder {
color: rgba(154, 157, 162, 0.6);
}
.form-control::-webkit-input-placeholder,
.input-text::-webkit-input-placeholder,
select::-webkit-input-placeholder {
color: rgba(154, 157, 162, 0.6);
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control,
.input-text[disabled],
.input-text[readonly],
fieldset[disabled] .input-text,
select[disabled],
select[readonly],
fieldset[disabled] select {
background-color: #e4e7ed;
border-color: #e4e7ed;
}
.form-control[disabled]::-moz-placeholder, .form-control[readonly]::-moz-placeholder, fieldset[disabled] .form-control::-moz-placeholder,
.input-text[disabled]::-moz-placeholder,
.input-text[readonly]::-moz-placeholder,
fieldset[disabled] .input-text::-moz-placeholder,
select[disabled]::-moz-placeholder,
select[readonly]::-moz-placeholder,
fieldset[disabled] select::-moz-placeholder {
color: rgba(154, 157, 162, 0.4);
opacity: 1;
}
.form-control[disabled]:-ms-input-placeholder, .form-control[readonly]:-ms-input-placeholder, fieldset[disabled] .form-control:-ms-input-placeholder,
.input-text[disabled]:-ms-input-placeholder,
.input-text[readonly]:-ms-input-placeholder,
fieldset[disabled] .input-text:-ms-input-placeholder,
select[disabled]:-ms-input-placeholder,
select[readonly]:-ms-input-placeholder,
fieldset[disabled] select:-ms-input-placeholder {
color: rgba(154, 157, 162, 0.4);
}
.form-control[disabled]::-webkit-input-placeholder, .form-control[readonly]::-webkit-input-placeholder, fieldset[disabled] .form-control::-webkit-input-placeholder,
.input-text[disabled]::-webkit-input-placeholder,
.input-text[readonly]::-webkit-input-placeholder,
fieldset[disabled] .input-text::-webkit-input-placeholder,
select[disabled]::-webkit-input-placeholder,
select[readonly]::-webkit-input-placeholder,
fieldset[disabled] select::-webkit-input-placeholder {
color: rgba(154, 157, 162, 0.4);
}
table .form-control,
table .input-text,
table select {
font-family: "Source Sans Pro", sans-serif;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
color: #31404b;
}
.has-success .form-control {
border-color: #24d9b0;
box-shadow: none;
background-position: center right 0.9em;
background-repeat: no-repeat;
background-size: 20px 16px;
padding-right: 2.2em;
}
.has-success .form-control:focus {
border-color: #24d9b0;
box-shadow: none;
}
.has-success .input-group-addon {
color: #24d9b0;
border-color: #24d9b0;
background-color: #fff;
}
.has-success .form-control-feedback {
color: #24d9b0;
}
.has-success .form-control {
background-size: 15px 12px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'%3E%3Cpath transform='translate(-189.438 -2446.25)' fill='%2324d9b0' d='M201.45,2446.24l2.121,2.13-9.192,9.19-2.122-2.12Zm-4.949,9.2-2.121,2.12-4.95-4.95,2.121-2.12Z'/%3E%3C/svg%3E");
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
color: #31404b;
}
.has-warning .form-control {
border-color: #ff7e1f;
box-shadow: none;
background-position: center right 0.9em;
background-repeat: no-repeat;
background-size: 20px 16px;
padding-right: 2.2em;
}
.has-warning .form-control:focus {
border-color: #ff7e1f;
box-shadow: none;
}
.has-warning .input-group-addon {
color: #ff7e1f;
border-color: #ff7e1f;
background-color: #fff;
}
.has-warning .form-control-feedback {
color: #ff7e1f;
}
.has-warning .form-control {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23ff7e1f' d='M4.4 5.324h-.8v-2.46h.8zm0 1.42h-.8V5.89h.8zM3.76.63L.04 7.075c-.115.2.016.425.26.426h7.397c.242 0 .372-.226.258-.426C6.726 4.924 5.47 2.79 4.253.63c-.113-.174-.39-.174-.494 0z'/%3E%3C/svg%3E");
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
color: #31404b;
}
.has-error .form-control {
border-color: #f34141;
box-shadow: none;
background-position: center right 0.9em;
background-repeat: no-repeat;
background-size: 20px 16px;
padding-right: 2.2em;
}
.has-error .form-control:focus {
border-color: #f34141;
box-shadow: none;
}
.has-error .input-group-addon {
color: #f34141;
border-color: #f34141;
background-color: #fff;
}
.has-error .form-control-feedback {
color: #f34141;
}
.has-error .form-control {
background-size: 11px 11px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 11'%3E%3Cpath transform='translate(-190.844 -2353.84)' fill='%23f34141' d='M190.843,2355.96l2.121-2.12,9.193,9.2-2.122,2.12Zm9.192-2.12,2.122,2.12-9.193,9.2-2.121-2.12Z'/%3E%3C/svg%3E");
}
.wpcf7-not-valid {
border-color: #f34141;
box-shadow: none;
background-position: center right 0.9em;
background-repeat: no-repeat;
background-size: 20px 16px;
padding-right: 2.2em;
}
.wpcf7-not-valid:focus {
border-color: #f34141;
box-shadow: none;
}
.wpcf7-not-valid + .wpcf7-not-valid-tip {
display: none;
}
select.form-control,
select {
border-radius: 2px;
background-color: #fff;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%2331404b' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
background-position: right 1em center;
background-repeat: no-repeat;
padding-right: 2.2em;
background-size: 6px 4px;
-moz-appearance: none;
-webkit-appearance: none;
color: rgba(154, 157, 162, 0.4);
}
select.form-control::-ms-expand,
select::-ms-expand {
display: none;
}
select.form-control.input-sm,
select.input-sm {
height: 45px;
padding-top: 7px;
padding-bottom: 7px;
}
select.form-control--clean {
font-size: 15px;
height: 28px;
line-height: 1.2em;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 0;
color: #31404b;
font-family: "Montserrat", sans-serif;
border: none;
}
.input-sm {
height: 45px;
padding: 10px 14px;
font-size: 13px;
}
.form-group {
background: none;
margin-bottom: 22px;
}
.form-group--sm {
margin-bottom: 15px;
}
.form-group--xs {
margin-bottom: 10px;
}
.form-group--lg {
margin-bottom: 34px;
}
.form-group--submit {
margin-bottom: 0;
padding-top: 12px;
}
.form-group--password-forgot {
display: flex;
padding: 6px 0;
}
.form-group--password-forgot label {
flex-grow: 1;
}
.form-group--password-forgot > .row {
width: calc(100% + 16px);
}
.form-group--password-forgot .lost_password-wrap {
padding-top: 5px;
}
@media (min-width: 576px) {
.form-group--password-forgot .lost_password-wrap {
text-align: right;
padding-top: 0;
}
}
.form-group--password-forgot .password-reminder {
font-size: 11px;
text-transform: uppercase;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
}
.form-group--password-forgot .password-reminder a {
white-space: nowrap;
}
.form-group--upload {
overflow: hidden;
}
@media (min-width: 768px) {
.form-group__avatar {
float: left;
width: 240px;
width: 240px;
}
}
.form-group__avatar img {
display: inline-block;
vertical-align: middle;
margin-right: 13px;
border-radius: 50%;
}
.form-group__label {
display: inline-block;
vertical-align: middle;
}
.form-group__label h6 {
font-size: 11px;
line-height: 1.2em;
margin-bottom: 0.2em;
}
.form-group__label span {
display: block;
font-size: 11px;
line-height: 1.2em;
color: #c2c4c7;
}
.form-group__upload {
padding-top: 20px;
}
@media (min-width: 768px) {
.form-group__upload {
padding-top: 15px;
}
}
.wpcf7-checkbox .wpcf7-list-item label,
.checkbox {
position: relative;
margin: 0;
font-weight: bold;
padding-left: 24px;
}
.wpcf7-checkbox .wpcf7-list-item label:hover,
.checkbox:hover {
cursor: pointer;
}
.widget--sidebar .wpcf7-checkbox .wpcf7-list-item label,
.widget--sidebar .checkbox {
font-size: 10px;
}
.wpcf7-checkbox .wpcf7-list-item label input[type=checkbox],
.checkbox input[type=checkbox] {
display: none;
}
.wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked ~ .checkbox-indicator, .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:checked ~ .wpcf7-list-item-label::before,
.checkbox input[type=checkbox]:checked ~ .checkbox-indicator,
.checkbox input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
background-color: #1892ed;
border-color: #1892ed;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.wpcf7-checkbox .wpcf7-list-item label .checkbox-indicator,
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before,
.checkbox .checkbox-indicator,
.checkbox .wpcf7-list-item-label::before {
content: "";
width: 16px;
height: 16px;
background-color: #fff;
border: 1px solid #e4e7ed;
border-radius: 2px;
display: block;
position: absolute;
left: 0;
top: 5px;
transition: all 0.2s ease;
background-repeat: no-repeat;
background-position: center center;
background-size: 60% 60%;
}
.wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:disabled ~ .checkbox-indicator,
.wpcf7-checkbox .wpcf7-list-item label input[type=checkbox]:disabled ~ .wpcf7-list-item-label::before,
.checkbox input[type=checkbox]:disabled ~ .checkbox-indicator,
.checkbox input[type=checkbox]:disabled ~ .wpcf7-list-item-label::before {
background-color: #e4e7ed;
border-color: #e4e7ed;
}
.checkbox-inline .checkbox-indicator {
top: 50%;
margin-top: -9px;
}
.wpcf7-checkbox .wpcf7-list-item:first-child {
margin-left: 0;
}
.checkbox-table {
display: flex;
flex-wrap: wrap;
}
.checkbox-table .checkbox--cell {
margin: 0 0 -1px -1px;
}
.checkbox--cell {
width: 44px;
height: 44px;
position: relative;
}
.checkbox--cell input[type=checkbox]:checked + .checkbox-indicator {
background-color: #1892ed;
background-image: none;
border-color: #e4e7ed;
color: #fff;
}
.checkbox--cell .checkbox-indicator {
content: "";
width: 44px;
height: 44px;
background-color: #fff;
border: 1px solid #e4e7ed;
border-radius: 0;
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin-top: 0;
transition: all 0.2s ease;
text-align: center;
line-height: 42px;
}
.radio,
.wpcf7-radio .wpcf7-list-item label {
position: relative;
margin: 0;
padding-left: 24px;
cursor: pointer;
}
.radio input[type=radio],
.wpcf7-radio .wpcf7-list-item label input[type=radio] {
display: none;
}
.radio input[type=radio]:checked ~ .radio-indicator, .radio input[type=radio]:checked ~ .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label input[type=radio]:checked ~ .radio-indicator,
.wpcf7-radio .wpcf7-list-item label input[type=radio]:checked ~ .wpcf7-list-item-label::before {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%2338a9ff'/%3E%3C/svg%3E");
}
.radio .radio-indicator,
.radio .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label .radio-indicator,
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
content: "";
width: 16px;
height: 16px;
background-color: #fff;
border: 1px solid #e4e7ed;
border-radius: 50%;
display: block;
position: absolute;
left: 0;
top: 5px;
transition: all 0.2s ease;
background-repeat: no-repeat;
background-position: center center;
background-size: 8px 8px;
}
.radio input[type=radio]:disabled ~ .radio-indicator,
.radio input[type=radio]:disabled ~ .wpcf7-list-item-label::before,
.wpcf7-radio .wpcf7-list-item label input[type=radio]:disabled ~ .radio-indicator,
.wpcf7-radio .wpcf7-list-item label input[type=radio]:disabled ~ .wpcf7-list-item-label::before {
background-color: #e4e7ed;
border-color: #e4e7ed;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%239a9da2'/%3E%3C/svg%3E");
}
.wpcf7-radio .wpcf7-list-item:first-child {
margin-left: 0;
}
.radio--word {
position: relative;
padding: 0 !important;
}
.radio--word + .radio--word {
margin-left: 20px;
}
.radio--word input[type=radio]:checked + .radio-label {
color: #31404b;
}
.radio--word .radio-label {
color: #bfc2c4;
font-weight: 700;
}
.radio--word-lg {
font-size: 15px;
line-height: 1.2em;
}
.inline-form .input-group-btn .btn,
.inline-form .input-group-append .btn {
padding-left: 28px;
padding-right: 28px;
}
abbr.required {
border-bottom: none;
color: #1892ed;
margin-left: 0.2em;
}
.quantity-control {
overflow: hidden;
}
.quantity-control .btn {
display: inline-block;
height: 30px;
padding: 0 8px;
background: none;
border: none;
color: #adb3b7;
vertical-align: middle;
}
.quantity-control .btn:hover, .quantity-control .btn:focus, .quantity-control .btn:active {
color: #31404b;
}
.quantity-control .form-control {
display: inline-block;
width: 34px;
height: 30px;
line-height: 30px;
padding: 0;
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
border: none;
text-align: center;
font-size: 13px;
font-family: "Montserrat", sans-serif;
vertical-align: middle;
}
.quantity-control .form-control::-webkit-outer-spin-button, .quantity-control .form-control::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.product-quantity-control {
width: 80px;
margin: 0 auto;
}
.form-desc--sm {
font-size: 14px;
line-height: 22px;
}
.switch {
white-space: nowrap;
}
.switch__label-txt {
display: inline-block;
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
vertical-align: middle;
margin-right: 10px;
color: #31404b;
}
@media (max-width: 479px) {
.switch__label-txt {
display: none;
}
}
.alc-switch-toggle {
position: absolute;
margin-left: -9999px;
visibility: hidden;
margin: 0;
}
.alc-switch-toggle + label {
display: inline-block;
position: relative;
cursor: pointer;
outline: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
vertical-align: middle;
padding: 2px;
width: 48px;
height: 24px;
margin: 0;
background-color: #c8cfdb;
border-radius: 22px;
transition: background 0.4s;
border: 1px solid #e4e7ed;
}
.alc-switch-toggle + label::before, .alc-switch-toggle + label::after {
display: block;
position: absolute;
content: "";
}
.alc-switch-toggle + label::after {
top: 2px;
left: 2px;
bottom: 2px;
width: 18px;
background-color: #fff;
background-image: linear-gradient(to right, #e9e9ed, #e9e9ed 2px, transparent 2px), linear-gradient(to right, #e9e9ed, #e9e9ed 2px, transparent 2px);
background-size: 2px 8px, 2px 8px;
background-position: 6px 5px, 10px 5px;
background-repeat: no-repeat, no-repeat;
border-radius: 50%;
transition: margin 0.4s, background 0.4s;
}
.alc-switch-toggle:checked + label {
background-color: #24d9b0;
}
.alc-switch-toggle:checked + label::after {
margin-left: 26px;
}
legend {
color: #31404b;
margin: 1.5em 0 0.75em 0;
font-weight: 700;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
letter-spacing: -0.02em;
font-size: 16px;
text-transform: uppercase;
font-style: normal;
border-bottom: none;
}
div.wpcf7 .ajax-loader {
background-image: none;
background-color: transparent;
font-family: "Font Awesome 5 Free";
font-weight: 700;
font-size: 14px;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-animation: fa-spin 2s infinite linear;
animation: fa-spin 2s infinite linear;
width: 1.28571429em;
height: auto;
text-align: center;
margin: 0 4px;
opacity: 1;
border-radius: 0;
}
div.wpcf7 .ajax-loader::before {
content: "\f1ce";
position: static;
border-radius: 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-animation: none;
animation: none;
}
.footer div.wpcf7 .ajax-loader::before {
color: #fff;
} .tooltip {
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
.tooltip.show {
opacity: 1;
}
.tooltip-inner {
padding: 5px 10px;
color: #fff;
text-align: center;
background-color: #38a9ff;
border-radius: 2px;
}
.bs-tooltip-top .arrow::before {
border-top-color: #38a9ff;
}
.bs-tooltip-right .arrow::before {
border-right-color: #38a9ff;
}
.bs-tooltip-bottom .arrow::before {
border-bottom-color: #38a9ff;
}
.bs-tooltip-left .arrow::before {
border-left-color: #38a9ff;
} .countdown__content {
padding: 28px 0 5px 0;
}
.countdown-counter {
overflow: hidden;
display: flex;
flex-direction: row;
}
.countdown-counter > span {
font-size: 26px;
line-height: 1.2em;
text-transform: uppercase;
color: #31404b;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
text-align: center;
flex-basis: 25%;
max-width: 25%;
position: relative;
}
.countdown-counter > span > small {
display: block;
font-size: 10px;
line-height: 1.2em;
padding-top: 3px;
color: #9a9da2;
}
.countdown-counter span + span::before {
content: ":";
display: block;
position: absolute;
left: 0;
top: -3px;
font-size: 26px;
line-height: 1.2em;
font-weight: normal;
} .breadcrumbs {
padding: 3px 0;
margin-bottom: 0;
list-style: none;
background-color: transparent;
border-radius: 0;
}
.breadcrumbs ul.trail-items {
padding: 0;
margin: 0;
}
.breadcrumbs ul.trail-items > li::after {
padding: 0 0.5em;
color: #c2ff1f;
}
.breadcrumbs ul.trail-items > li > a {
transition: color 0.2s ease;
}
.breadcrumbs ul.trail-items > li > a:hover {
color: #c2ff1f;
}
.breadcrumbs ul.trail-items li.trail-end {
color: rgba(255, 255, 255, 0.5);
}
.page-heading ul.trail-items {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
padding: 0;
font-style: normal;
}
@media (min-width: 992px) {
.page-heading ul.trail-items {
font-size: 11px;
padding: 3px 0;
}
}
.page-heading ul.trail-items > li::after {
color: #9a9da2;
font-weight: normal;
}
.page-heading ul.trail-items > li > a {
color: #fff;
}
.page-heading ul.trail-items > li > a:hover {
color: #38a9ff;
}
@media (min-width: 768px) {
.page-heading .align-self-end ul.trail-items {
display: block;
text-align: right;
}
} .btn-nav {
display: inline-block;
width: 46px;
height: 46px;
line-height: 46px;
border-radius: 3px;
background-color: #9a9da2;
text-align: center;
color: #fff;
font-size: 12px;
font-weight: normal;
transition: all 0.3s ease;
}
.btn-nav:hover {
color: #fff;
background-color: #31404b;
} .post-pagination {
overflow: hidden;
}
.pagination,
.page-numbers {
list-style-type: none;
padding: 0;
margin: 20px 0;
}
.gallery + .pagination,
.gallery + .page-numbers {
text-align: center;
}
.pagination > li,
.page-numbers > li {
display: inline;
padding: 0;
margin: 0;
}
.pagination > li > a,
.pagination > li > span,
.page-numbers > li > a,
.page-numbers > li > span {
display: inline-block;
margin: 0 4px;
padding: 0;
line-height: 36px;
width: 36px;
height: 36px;
text-align: center;
background-color: #fff;
border-radius: 3px;
border-color: #e4e7ed;
color: #31404b;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: bold;
transition: all 0.2s ease;
position: static;
border: 1px solid #e4e7ed;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.page-numbers > li > a:hover,
.page-numbers > li > span:hover {
background-color: #1892ed;
border-color: #1892ed;
color: #fff;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.page-numbers > li > a:hover,
.page-numbers > li > span:hover {
background-color: #1892ed;
border-color: #1892ed;
color: #fff;
}
.pagination > li > a.current,
.pagination > li > span.current,
.page-numbers > li > a.current,
.page-numbers > li > span.current {
background-color: #1892ed;
border-color: #1892ed;
color: #fff;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus,
.page-numbers > .active > a,
.page-numbers > .active > a:hover,
.page-numbers > .active > a:focus,
.page-numbers > .active > span,
.page-numbers > .active > span:hover,
.page-numbers > .active > span:focus {
background-color: #1892ed;
border-color: #1892ed;
color: #fff;
}
.pagination--condensed > li > a,
.pagination--condensed > li > span {
border-radius: 0;
margin: 0;
margin-left: -1px;
}
.pagination--condensed > li:first-child > a,
.pagination--condensed > li:first-child > span, .pagination--condensed > li:last-child > a,
.pagination--condensed > li:last-child > span {
border-radius: 0;
}
.pagination--lg > li > a,
.pagination--lg > li > span {
width: 50px;
height: 50px;
line-height: 50px;
} .comment-navigation > a,
.comment-navigation > span {
display: inline-block;
margin: 0 4px;
padding: 0;
line-height: 36px;
width: 36px;
height: 36px;
text-align: center;
background-color: #fff;
border-radius: 3px;
border-color: #e4e7ed;
color: #31404b;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: bold;
transition: all 0.2s ease;
position: static;
border: 1px solid #e4e7ed;
}
.comment-navigation > a:hover,
.comment-navigation > span:hover {
background-color: #1892ed;
border-color: #1892ed;
color: #fff;
}
.comment-navigation > a.current, .comment-navigation > a.current:hover, .comment-navigation > a.current:focus,
.comment-navigation > span.current,
.comment-navigation > span.current:hover,
.comment-navigation > span.current:focus {
background-color: #1892ed;
border-color: #1892ed;
color: #fff;
}
.comment-navigation--condensed > a,
.comment-navigation--condensed > span {
border-radius: 0;
margin: 0;
margin-left: -1px;
}
.comment-navigation--condensed > a:first-child,
.comment-navigation--condensed > span:first-child,
.comment-navigation--condensed > a:last-child,
.comment-navigation--condensed > span:last-child {
border-radius: 0;
}
.comment-navigation--lg > a,
.comment-navigation--lg > span {
width: 50px;
height: 50px;
line-height: 50px;
}
.paging_simple_numbers {
padding: 10px 24px;
}
.sp-data-table + .paging_simple_numbers {
margin-top: 48px;
text-align: center;
}
.paging_simple_numbers .paginate_button {
display: inline-block;
margin: 0 4px;
padding: 0 1em;
line-height: 36px;
text-align: center;
background-color: #fff;
border-radius: 3px;
border-color: #e4e7ed;
color: #31404b;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: bold;
transition: all 0.2s ease;
position: static;
border: 1px solid #e4e7ed;
}
.paging_simple_numbers .paginate_button:not(.current):hover {
background-color: #1892ed;
border-color: #1892ed;
color: #fff;
cursor: pointer;
}
.paging_simple_numbers > span .paginate_button {
width: 36px;
height: 36px;
padding-left: 0;
padding-right: 0;
}
.page-links .btn {
padding-left: 0;
padding-right: 0;
width: 40px;
text-align: center;
cursor: default;
margin: 0 2px;
}
.page-links a:hover .btn {
cursor: pointer;
}
.page-links__title {
font-size: 10px;
display: inline-block;
margin-right: 1em;
}
.pagination--circle > li:first-child .page-link, .pagination--circle > li:last-child .page-link {
border-radius: 50%;
}
.pagination--circle > li > span,
.pagination--circle > li > a {
width: 32px;
height: 32px;
line-height: 30px;
border-radius: 50%;
margin: 0 2px;
}
@media (min-width: 992px) {
.pagination--circle > li > span,
.pagination--circle > li > a {
width: 46px;
height: 46px;
line-height: 44px;
margin: 0 5px;
}
} .progress-stats {
overflow: hidden;
position: relative;
margin-bottom: 19px;
display: flex;
align-items: center;
}
.progress-stats .progress {
flex-grow: 1;
margin-bottom: 0;
top: 0;
}
.progress {
overflow: hidden;
height: 6px;
margin-bottom: 10px;
background-color: #edeff3;
border-radius: 3px;
box-shadow: none;
position: relative;
top: 2px;
}
.progress__bar {
float: left;
width: 0%;
height: 100%;
line-height: 6px;
color: #fff;
background-color: #38a9ff;
box-shadow: none;
border-radius: 3px;
}
.progress__label,
.progress__number {
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1em;
}
.progress__label {
color: #31404b;
}
.progress__label + .progress {
margin-left: 10px;
}
.progress__label.progress__label--color-default {
color: #9a9da2;
}
.progress__number {
font-weight: normal;
}
.progress__number.progress__number--color-highlight {
color: #31404b;
}
.progress + .progress__number {
margin-left: 10px;
}
.progress__label-top {
display: block;
text-align: right;
}
.progress__label--abbr {
width: 20px;
white-space: nowrap;
}
.progress__number--20 {
width: 20px;
}
.progress__bar--secondary {
background-color: #c2ff1f;
}
.progress__bar--success {
background-color: #9fe900;
}
.progress__bar--info {
background-color: #0cb2e2;
}
.progress__bar--warning {
background-color: #ff7e1f;
}
.progress__bar--danger {
background-color: #f34141;
}
.progress__bar--danger {
background-color: #f34141;
}
.progress__bar--aqua-gradient {
background-color: transparent;
background-image: linear-gradient(to right, #0683d3, #3ffeca 100%);
}
.progress-double-wrapper {
width: 100%;
}
.progress-double-wrapper + .progress-double-wrapper {
margin-top: 12px;
}
.progress-double-wrapper .progress--battery {
margin-bottom: 0;
}
.progress-double-wrapper--fullwidth .progress--battery {
background-image: none !important;
}
.progress-inner-holder {
display: table;
width: 100%;
max-width: 100%;
padding-bottom: 3px;
}
.progress__digit {
display: table-cell;
width: 1%;
vertical-align: middle;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
font-weight: 400;
}
.progress__digit--40 {
width: 40px;
}
.progress__digit--40.progress__digit--left {
padding-right: 0;
}
.progress__digit--40.progress__digit--right {
text-align: right;
padding-left: 0;
}
.progress__digit--38 {
width: 38px;
}
.progress__digit--38.progress__digit--left {
padding-right: 0;
}
.progress__digit--38.progress__digit--right {
text-align: right;
padding-left: 0;
}
.progress__digit--highlight {
color: #31404b;
}
.progress__digit--left {
padding-right: 20px;
}
.progress__digit--right {
padding-left: 20px;
}
.progress-title {
font-size: 10px;
line-height: 1.2em;
margin-bottom: 0.6em;
text-align: center;
}
.progress__double {
display: flex;
flex-wrap: nowrap;
}
.progress__double .progress {
width: 50%;
margin-bottom: 0;
top: 3px;
}
.progress__double .progress:first-child {
border-radius: 3px 0 0 3px;
}
.progress__double .progress:first-child .progress__bar {
margin-left: auto;
border-radius: 3px 0 0 3px;
}
.progress__double .progress:last-child {
border-radius: 0 3px 3px 0;
}
.progress__double .progress:last-child .progress__bar {
border-radius: 0 3px 3px 0;
}
.progress__double .progress.progress--battery:first-child {
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
margin-right: 2px;
width: calc(50% - 2px);
}
.progress__double .progress.progress--battery:first-child .progress__bar {
margin-left: 0;
}
.progress__double .progress.progress--battery:last-child {
margin-left: 2px;
width: calc(50% - 2px);
}
.progress__double--label-center .progress-title {
float: left;
width: 38%;
}
.progress__double--label-center .progress {
width: 31%;
}
.progress-stats--top-labels {
flex-wrap: wrap;
justify-content: space-between;
overflow: visible;
}
.progress-stats--top-labels .progress__label {
order: 0;
}
.progress-stats--top-labels .progress {
flex-basis: 100%;
order: 2;
margin-left: 0 !important;
margin-top: 12px;
margin-bottom: 10px;
}
.progress-stats--top-labels .progress__number {
order: 1;
font-weight: 700;
}
.progress--lg {
height: 9px;
border-radius: 5px;
}
.progress--lg .progress__bar {
border-radius: 5px;
}
.progress--lg .progress__double .progress:first-child {
border-radius: 5px 0 0 5px;
}
.progress--lg .progress__double .progress:first-child .progress__bar {
border-radius: 5px 0 0 5px;
}
.progress--lg .progress__double .progress:last-child {
border-radius: 0 5px 5px 0;
}
.progress--lg .progress__double .progress:last-child .progress__bar {
border-radius: 0 5px 5px 0;
} .progress--battery {
height: 20px;
margin-bottom: 18px;
top: 0;
border-radius: 0;
background-color: transparent;
background-image: radial-gradient(circle, #edeff3, #edeff3 2px, transparent 2px, transparent), radial-gradient(circle, #edeff3, #edeff3 2px, transparent 2px, transparent), linear-gradient(to right, #edeff3, #edeff3 4px, transparent 4px, transparent 8px);
background-size: 8px 8px, 8px 8px, 8px 16px;
background-position: -2px -2px, -2px 14px, 0 2px;
background-repeat: repeat-x, repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar {
line-height: 20px;
border-radius: 0;
position: relative;
z-index: 1;
background-color: transparent;
background-image: radial-gradient(circle, #38a9ff, #38a9ff 2px, transparent 2px, transparent), radial-gradient(circle, #38a9ff, #38a9ff 2px, transparent 2px, transparent), linear-gradient(to right, #38a9ff, #38a9ff 4px, transparent 4px, transparent 8px);
background-size: 8px 8px, 8px 8px, 8px 16px;
background-position: -2px -2px, -2px 14px, 0 2px;
background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--secondary {
line-height: 20px;
border-radius: 0;
position: relative;
z-index: 1;
background-color: transparent;
background-image: radial-gradient(circle, #c2ff1f, #c2ff1f 2px, transparent 2px, transparent), radial-gradient(circle, #c2ff1f, #c2ff1f 2px, transparent 2px, transparent), linear-gradient(to right, #c2ff1f, #c2ff1f 4px, transparent 4px, transparent 8px);
background-size: 8px 8px, 8px 8px, 8px 16px;
background-position: -2px -2px, -2px 14px, 0 2px;
background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--success {
background-color: transparent;
background-image: radial-gradient(circle, #9fe900, #9fe900 2px, transparent 2px, transparent), radial-gradient(circle, #9fe900, #9fe900 2px, transparent 2px, transparent), linear-gradient(to right, #9fe900, #9fe900 4px, transparent 4px, transparent 8px);
background-size: 8px 8px, 8px 8px, 8px 16px;
background-position: -2px -2px, -2px 14px, 0 2px;
background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--info {
background-color: transparent;
background-image: radial-gradient(circle, #0cb2e2, #0cb2e2 2px, transparent 2px, transparent), radial-gradient(circle, #0cb2e2, #0cb2e2 2px, transparent 2px, transparent), linear-gradient(to right, #0cb2e2, #0cb2e2 4px, transparent 4px, transparent 8px);
background-size: 8px 8px, 8px 8px, 8px 16px;
background-position: -2px -2px, -2px 14px, 0 2px;
background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--warning {
background-color: transparent;
background-image: radial-gradient(circle, #ff7e1f, #ff7e1f 2px, transparent 2px, transparent), radial-gradient(circle, #ff7e1f, #ff7e1f 2px, transparent 2px, transparent), linear-gradient(to right, #ff7e1f, #ff7e1f 4px, transparent 4px, transparent 8px);
background-size: 8px 8px, 8px 8px, 8px 16px;
background-position: -2px -2px, -2px 14px, 0 2px;
background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery .progress__bar--danger {
background-color: transparent;
background-image: radial-gradient(circle, #f34141, #f34141 2px, transparent 2px, transparent), radial-gradient(circle, #f34141, #f34141 2px, transparent 2px, transparent), linear-gradient(to right, #f34141, #f34141 4px, transparent 4px, transparent 8px);
background-size: 8px 8px, 8px 8px, 8px 16px;
background-position: -2px -2px, -2px 14px, 0 2px;
background-repeat: repeat-x, repeat-x, repeat-x;
}
.progress--battery-custom .progress__bar {
background-image: radial-gradient(circle, currentColor, currentColor 2px, transparent 2px, transparent), radial-gradient(circle, currentColor, currentColor 2px, transparent 2px, transparent), linear-gradient(to right, currentColor, currentColor 4px, transparent 4px, transparent 8px) !important;
} .progress--lines {
height: 20px;
border-radius: 0;
padding-left: 1px;
padding-right: 1px;
position: relative;
-webkit-transform: skewX(-10deg);
transform: skewX(-10deg);
}
.progress--lines::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
z-index: 3;
background-color: transparent;
background-image: linear-gradient(to right, #fff, #fff 3px, transparent 3px, transparent 6px);
background-size: 6px 20px;
background-position: 0 0;
background-repeat: repeat-x;
}
.progress--lines .progress__bar {
line-height: 20px;
border-radius: 0;
position: relative;
z-index: 1;
} .progress-table {
width: 100%;
max-width: 100%;
border-collapse: collapse;
padding: 0;
border-spacing: 0;
font-size: 12px;
line-height: 1.2em;
color: #31404b;
font-family: "Montserrat", sans-serif;
font-weight: bold;
}
.progress-table tr + tr {
border-top: 36px solid transparent;
}
.progress-table td {
vertical-align: middle;
border: none !important;
padding-top: 0 !important;
padding-bottom: 0 !important;
}
.progress-table--sm-space tr + tr {
border-top-width: 28px;
}
.progress-table--xs-space tr + tr {
border-top-width: 14px;
}
.progress-table--m-space tr + tr {
border-top-width: 20px;
}
.progress-table__progress-bar {
width: 27%;
}
.progress-table__progress-bar .progress {
margin-bottom: 0;
top: 0;
}
.progress-table__progress-bar--first .progress--battery,
.progress-table__progress-bar--inverse .progress--battery {
-webkit-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.progress-table__progress-bar--first .progress--battery .progress__bar,
.progress-table__progress-bar--inverse .progress--battery .progress__bar {
margin-left: 0;
}
.progress-table__progress-bar--first .progress__bar,
.progress-table__progress-bar--inverse .progress__bar {
margin-left: auto;
}
.progress-table__progress-label {
width: 34px;
text-align: center;
font-size: 11px;
padding: 0 10px;
color: #9a9da2;
}
.progress-table__progress-label--highlight {
color: #31404b;
}
.progress-table__title {
width: 1px;
padding: 0 10px;
text-align: center;
white-space: nowrap;
} .progress-table--simple tr + tr {
border-top-width: 12px;
}
@media (min-width: 992px) {
.progress-table--simple tr + tr {
border-top-width: 18px;
}
}
.progress-table--simple .progress-table__progress-bar {
width: 100%;
}
.progress-table--simple .progress-table__title {
text-align: left;
padding: 0 14px 0 0;
} .progress-table--fullwidth .progress-table__progress-label:first-child {
text-align: left;
padding-left: 0;
}
.progress-table--fullwidth .progress-table__progress-label:last-child {
text-align: right;
padding-right: 0;
}
.progress-table--fullwidth .progress-table__progress-bar {
width: 43%;
}
.progress-table--fullwidth.progress-table--bar-fullwidth .progress-table__progress-bar {
width: 100%;
}
.progress-table--fullwidth.progress-table--bar-fullwidth.progress-table--xs-space .progress-table__progress-label:first-child {
padding-right: 4px;
}
.progress-table--fullwidth.progress-table--bar-fullwidth.progress-table--xs-space .progress-table__progress-label:last-child {
padding-left: 4px;
} .circular {
margin: 10px 0;
}
@media (min-width: 992px) {
.circular {
margin: 0;
}
}
.circular__bar {
position: relative;
margin: 0 auto;
width: 70px;
height: 70px;
}
.circular__bar + .circular__label {
margin-top: 1.2em;
}
@media (min-width: 992px) {
.circular__bar {
width: 90px;
height: 90px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.circular__bar {
width: 80px;
height: 80px;
}
}
.circular__bar canvas {
width: 100% !important;
height: 100% !important;
vertical-align: top;
}
.circular__percents {
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
display: block;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
color: #31404b;
line-height: 1.2em;
}
@media (min-width: 992px) {
.circular__percents {
font-size: 18px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.circular__percents {
font-size: 14px;
}
}
.circular__percents small {
font-size: 10px;
}
@media (min-width: 992px) {
.circular__percents small {
font-size: 12px;
}
}
.circular__percents .circular__label {
display: block;
font-size: 9px;
line-height: 1.2em;
color: #9a9da2;
}
@media (min-width: 992px) {
.circular__percents--lg {
font-size: 24px;
}
}
.circular__label {
display: block;
font-size: 8px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
text-align: center;
}
@media (min-width: 992px) {
.circular__label {
font-size: 10px;
}
}
.circular--size-40 .circular__bar {
width: 32px;
height: 32px;
}
@media (min-width: 768px) {
.circular--size-40 .circular__bar {
width: 40px;
height: 40px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.circular--size-40 .circular__bar {
width: 32px;
height: 32px;
}
}
.circular--size-40 .circular__bar .df-icon,
.circular--size-40 .circular__bar .df-icon-font,
.circular--size-40 .circular__bar .df-icon-img {
display: block;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
margin: 0;
}
.circular--size-40 .circular__bar .df-icon-img {
max-width: 20px;
height: auto;
}
.circular--size-70 .circular__bar {
width: 50px;
height: 50px;
}
@media (min-width: 992px) {
.circular--size-70 .circular__bar {
width: 70px;
height: 70px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.circular--size-70 .circular__bar {
width: 60px;
height: 60px;
}
}
@media (min-width: 992px) {
.circular--size-70 .circular__bar .circular__percents {
font-size: 14px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.circular--size-70 .circular__bar .circular__percents {
font-size: 14px;
}
}
.circular--size-80 .circular__bar {
width: 55px;
height: 55px;
}
@media (min-width: 992px) {
.circular--size-80 .circular__bar {
width: 80px;
height: 80px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.circular--size-80 .circular__bar {
width: 65px;
height: 65px;
}
}
.circular--size-80 .circular__bar .circular__percents .circular__label {
font-family: "Source Sans Pro", sans-serif;
text-transform: none;
font-weight: 400;
} .lightbox-holder {
position: relative;
margin-bottom: 20px;
overflow: hidden;
border-radius: 4px;
}
.lightbox-holder__link {
display: block;
position: relative;
}
.lightbox-holder__link::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: #171d21;
opacity: 0.7;
z-index: 4;
transition: opacity 0.3s ease;
}
.lightbox-holder__link:hover::before {
opacity: 0.5;
}
.lightbox-holder__link--play::before {
content: "\f04b";
display: block;
position: absolute;
width: 30px;
height: 30px;
line-height: 26px;
left: 50%;
top: 50%;
right: auto;
bottom: auto;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
border: 2px solid #38a9ff;
background-color: rgba(237, 239, 244, 0.6);
border-radius: 50%;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 400;
font-size: 10px;
text-align: center;
text-indent: 3px;
opacity: 1;
}
@media (min-width: 992px) {
.lightbox-holder__link--play::before {
width: 80px;
height: 80px;
line-height: 68px;
border-width: 6px;
font-size: 28px;
text-indent: 5px;
}
}
@media (min-width: 1199px) {
.lightbox-holder__link--play .lightbox-holder__overlay h3 {
width: 70%;
}
}
.lightbox-holder__overlay {
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 0 10px 10px 10px;
z-index: 4;
}
@media (min-width: 992px) {
.lightbox-holder__overlay {
padding: 0 30px 35px 30px;
}
}
.lightbox-holder__overlay h3 {
font-size: 12px;
line-height: 1em;
color: #fff;
margin-bottom: 0.5em;
}
@media (min-width: 992px) {
.lightbox-holder__overlay h3 {
font-size: 24px;
margin-bottom: 0.4em;
}
}
.lightbox-holder__overlay time {
display: block;
font-size: 8px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #9a9da2;
}
@media (min-width: 992px) {
.lightbox-holder__overlay time {
font-size: 10px;
}
}
.lightbox-holder__overlay--video {
padding-left: 40px;
}
@media (min-width: 992px) {
.lightbox-holder__overlay--video {
padding-left: 90px;
}
}
.lightbox-holder__overlay--video::before {
content: "\f04b";
display: block;
position: absolute;
width: 20px;
height: 20px;
line-height: 16px;
left: 10px;
top: 0;
border: 2px solid #38a9ff;
border-radius: 50%;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 400;
font-size: 10px;
text-align: center;
text-indent: 3px;
}
@media (min-width: 992px) {
.lightbox-holder__overlay--video::before {
left: 30px;
width: 40px;
height: 40px;
line-height: 32px;
border-width: 4px;
font-size: 14px;
text-indent: 5px;
}
}
.lightbox-holder.posts__item--category-1 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-1 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
}
.lightbox-holder.posts__item--category-2 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-2 .lightbox-holder__overlay--video::before {
border-color: #07e0c4;
}
.lightbox-holder.posts__item--category-3 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-3 .lightbox-holder__overlay--video::before {
border-color: #9fe900;
}
.lightbox-holder.posts__item--category-4 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-4 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
}
.lightbox-holder.posts__item--category-5 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-5 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
}
.lightbox-holder.posts__item--category-6 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-6 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
}
.lightbox-holder.posts__item--category-7 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-7 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
}
.lightbox-holder.posts__item--category-8 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-8 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
}
.lightbox-holder.posts__item--category-9 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-9 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
}
.lightbox-holder.posts__item--category-10 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-10 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
}
.lightbox-holder.posts__item--category-11 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-11 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
}
.lightbox-holder.posts__item--category-12 .lightbox-holder__link--play::before,
.lightbox-holder.posts__item--category-12 .lightbox-holder__overlay--video::before {
border-color: #38a9ff;
} .mfp-fade.mfp-bg {
opacity: 0;
transition: all 0.15s ease-out;
} .mfp-fade.mfp-bg.mfp-ready {
opacity: 0.8;
} .mfp-fade.mfp-bg.mfp-removing {
opacity: 0;
} .mfp-fade.mfp-wrap .mfp-content {
opacity: 0;
transition: all 0.15s ease-out;
} .mfp-fade.mfp-wrap.mfp-ready .mfp-content {
opacity: 1;
} .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
opacity: 0;
}  div.cs-select {
display: inline-block;
vertical-align: middle;
position: relative;
text-align: left;
background: #fff;
z-index: 100;
width: 100%;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
div.cs-select:focus {
outline: none; }
.cs-select {   }
.cs-select select {
display: none;
}
.cs-select span {
display: block;
position: relative;
cursor: pointer;
padding: 26px 24px 12px 24px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
@media (min-width: 992px) {
.cs-select span {
padding-top: 32px;
padding-bottom: 24px;
}
}
.cs-select > span {
padding-right: 3em;
}
.cs-select > span::after {
speak: none;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
content: "\f107";
right: 23px;
display: block;
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
font-style: normal;
color: #31404b;
transition: -webkit-transform 0.2s ease;
transition: transform 0.2s ease;
transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.cs-select.cs-active > span::after {
-webkit-transform: translateY(-50%) rotate(180deg);
transform: translateY(-50%) rotate(180deg);
}
.cs-select .cs-options {
position: absolute;
overflow: hidden;
background: #fff;
visibility: hidden;
left: 0;
right: 0;
width: 100%;
}
.cs-select.cs-active .cs-options {
visibility: visible;
}
.cs-select ul {
list-style: none;
margin: 0;
padding: 10px 0;
width: 100%;
}
.cs-select ul span {
padding: 1em;
}
.cs-select ul li.cs-focus span {
background-color: #ddd;
}
.cs-select li.cs-optgroup ul {
padding-left: 1em;
}
.cs-select li.cs-optgroup > span {
cursor: default;
}
div.cs-active {
z-index: 200;
} div.cs-skin-border {
background: transparent;
font-size: 13px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
text-transform: unset;
}
div.cs-skin-border > span {
border-left: 1px solid #e4e7ed;
border-right: 1px solid #e4e7ed;
border-bottom: none;
border-top: none;
color: #31404b;
transition: background 0.2s, border-color 0.2s;
}
div.cs-skin-border ul span::after {
content: "";
opacity: 0;
}
div.cs-skin-border .cs-placeholder {
font-style: normal;
text-transform: uppercase;
}
div.cs-skin-border .cs-selected span {
color: #31404b;
}
div.cs-skin-border.cs-active > span {
color: #31404b;
background-color: #fff;
}
div.cs-skin-border .cs-options {
border-left: 1px solid #e4e7ed;
border-right: 1px solid #e4e7ed;
border-bottom: 1px solid #e4e7ed;
color: rgba(49, 64, 75, 0.4);
font-size: 11px;
font-style: normal;
opacity: 0;
transition: opacity 0.2s, visibility 0s 0.2s;
}
div.cs-skin-border .cs-options ul li {
text-transform: uppercase;
}
div.cs-skin-border.cs-active .cs-options {
opacity: 1;
transition: opacity 0.2s;
}
div.cs-skin-border ul span {
padding: 5px 24px;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: color 0.2s ease;
}
div.cs-skin-border .cs-options li span:hover,
div.cs-skin-border li.cs-focus span {
color: #31404b;
} .slick-slide {
outline: none;
}  .slick-prev,
.slick-next {
position: absolute;
z-index: 1;
display: block;
height: 20px;
width: 20px;
line-height: 0px;
font-size: 0px;
cursor: pointer;
background: transparent;
color: transparent;
top: 20px;
padding: 0;
border: none;
outline: none;
background-color: #999ea6;
transition: background-color 0.2s ease;
border-radius: 2px;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
outline: none;
background-color: #1892ed;
color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
font-family: "Font Awesome 5 Free";
font-weight: 400;
font-size: 14px;
line-height: 1;
color: white;
opacity: 0.75;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-prev {
right: 50px;
}
.slick-prev::before {
content: "\f104";
font-weight: 700;
}
.slick-next {
right: 20px;
}
.slick-next::before {
content: "\f105";
font-weight: 700;
} .slick-arrows--rounded .slick-prev,
.slick-arrows--rounded .slick-next {
border-radius: 50%;
}
.slick-vertical .slick-prev::before {
content: "\f106";
}
.slick-vertical .slick-next::before {
content: "\f107";
} .slick-dotted.slick-slider {
margin-bottom: 30px;
}
.slick-dots {
position: absolute;
bottom: -25px;
list-style: none;
display: block;
text-align: center;
padding: 0;
margin: 0;
width: 100%;
}
.slick-dots li {
position: relative;
display: inline-block;
height: 10px;
width: 10px;
margin: 0 5px;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
border: 0;
padding: 0;
background: transparent;
border: none;
display: block;
height: 10px;
width: 10px;
line-height: 10px;
overflow: hidden;
outline: none;
line-height: 0px;
font-size: 0px;
color: transparent;
cursor: pointer;
border-radius: 50%;
background-color: #d7d8da;
transition: background-color 0.2s ease;
}
.slick-dots li button:hover, .slick-dots li button:focus {
outline: none;
opacity: 1;
}
.slick-dots li button:hover {
background-color: #31404b;
}
.slick-dots li.slick-active button {
background-color: #38a9ff;
opacity: 0.75;
} .slick-featured img {
border-radius: 4px;
} .posts--slider-featured .slick-prev,
.posts--slider-featured .slick-next {
box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
} .posts-slider--center .slick-prev,
.posts-slider--center .slick-next {
top: auto;
bottom: 20px;
}
@media (min-width: 992px) {
.posts-slider--center .slick-prev,
.posts-slider--center .slick-next {
bottom: 50px;
}
}
.posts-slider--center .slick-prev {
right: 50%;
margin-right: 4px;
}
.posts-slider--center .slick-next {
right: auto;
left: 50%;
margin-left: 4px;
} .featured-carousel .slick-prev,
.featured-carousel .slick-next,
.team-roster--slider .slick-prev,
.team-roster--slider .slick-next,
.awards--slider .slick-prev,
.awards--slider .slick-next {
width: 36px;
height: 36px;
border-radius: 50%;
border: 2px solid #404650;
background-color: transparent;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
margin-top: -9px;
transition: all 0.3s ease;
}
.featured-carousel .slick-prev::before,
.featured-carousel .slick-next::before,
.team-roster--slider .slick-prev::before,
.team-roster--slider .slick-next::before,
.awards--slider .slick-prev::before,
.awards--slider .slick-next::before {
opacity: 1;
}
.featured-carousel .slick-prev:hover, .featured-carousel .slick-prev:focus,
.featured-carousel .slick-next:hover,
.featured-carousel .slick-next:focus,
.team-roster--slider .slick-prev:hover,
.team-roster--slider .slick-prev:focus,
.team-roster--slider .slick-next:hover,
.team-roster--slider .slick-next:focus,
.awards--slider .slick-prev:hover,
.awards--slider .slick-prev:focus,
.awards--slider .slick-next:hover,
.awards--slider .slick-next:focus {
background-color: transparent;
border-color: #1892ed;
}
.featured-carousel .slick-prev,
.team-roster--slider .slick-prev,
.awards--slider .slick-prev {
left: 50%;
margin-left: -20%;
}
.featured-carousel .slick-prev::before,
.team-roster--slider .slick-prev::before,
.awards--slider .slick-prev::before {
content: "\f053";
margin-left: -2px;
}
.featured-carousel .slick-next,
.team-roster--slider .slick-next,
.awards--slider .slick-next {
right: 50%;
margin-right: -20%;
}
.featured-carousel .slick-next::before,
.team-roster--slider .slick-next::before,
.awards--slider .slick-next::before {
content: "\f054";
margin-left: 2px;
} .featured-carousel .slick-dots,
.player-info .slick-dots {
bottom: 20px;
}
.featured-carousel .slick-dots li,
.player-info .slick-dots li {
width: 30px;
height: 4px;
margin: 0 3px;
}
.featured-carousel .slick-dots li button,
.player-info .slick-dots li button {
width: 30px;
height: 4px;
padding: 0;
background-color: #fff;
border-radius: 0;
}
.featured-carousel .slick-dots li button::before,
.player-info .slick-dots li button::before {
display: none;
}
.featured-carousel .slick-dots li.slick-active button,
.player-info .slick-dots li.slick-active button {
background-color: #1892ed;
}
.player-info .slick-dots {
bottom: -20px;
} .awards--slider .slick-prev,
.awards--slider .slick-next {
border-color: #aeb0b4;
opacity: 0.2;
margin-top: 0;
top: 40%;
}
.awards--slider .slick-prev::before,
.awards--slider .slick-next::before {
opacity: 1;
color: #aeb0b4;
}
.awards--slider .slick-prev:hover, .awards--slider .slick-prev:focus,
.awards--slider .slick-next:hover,
.awards--slider .slick-next:focus {
opacity: 1;
border-color: #aeb0b4;
}
.awards--slider .slick-prev {
left: 0;
margin-left: 0;
}
.awards--slider .slick-next {
right: 0;
margin-right: 0;
}
.awards--slider.slick-vertical {
margin-bottom: 0;
}
.awards--slider.slick-vertical .slick-dots {
width: 10px;
height: auto;
position: absolute;
right: 0;
top: 50%;
bottom: auto;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.awards--slider.slick-vertical .slick-dots li {
height: auto;
} .team-roster--card-slider,
.js-team-roster--card-compact {
margin-bottom: 14px;
}
@media (min-width: 992px) {
.team-roster--card-slider,
.js-team-roster--card-compact {
padding-bottom: 70px;
margin-bottom: 34px;
}
}
.team-roster--card-slider .slick-prev,
.team-roster--card-slider .slick-next,
.js-team-roster--card-compact .slick-prev,
.js-team-roster--card-compact .slick-next {
top: auto;
bottom: 0;
border: 1px solid #e4e7ed;
border-radius: 0;
width: 50px;
height: 50px;
background-color: #fff;
}
.team-roster--card-slider .slick-prev::before,
.team-roster--card-slider .slick-next::before,
.js-team-roster--card-compact .slick-prev::before,
.js-team-roster--card-compact .slick-next::before {
color: #31404b;
}
.team-roster--card-slider .slick-prev:hover:not(.slick-disabled),
.team-roster--card-slider .slick-next:hover:not(.slick-disabled),
.js-team-roster--card-compact .slick-prev:hover:not(.slick-disabled),
.js-team-roster--card-compact .slick-next:hover:not(.slick-disabled) {
background-color: #38a9ff;
}
.team-roster--card-slider .slick-prev:hover:not(.slick-disabled)::before,
.team-roster--card-slider .slick-next:hover:not(.slick-disabled)::before,
.js-team-roster--card-compact .slick-prev:hover:not(.slick-disabled)::before,
.js-team-roster--card-compact .slick-next:hover:not(.slick-disabled)::before {
color: #fff;
}
.team-roster--card-slider .slick-prev,
.js-team-roster--card-compact .slick-prev {
right: auto;
left: 50%;
margin: 0 0 0 -50px;
}
.team-roster--card-slider .slick-next,
.js-team-roster--card-compact .slick-next {
right: auto;
left: 50%;
margin: 0 0 0 -1px;
} .team-roster--slider-with-nav .slick-prev,
.team-roster--slider-with-nav .slick-next {
top: auto;
bottom: 6px;
border-radius: 0;
width: 50px;
height: 50px;
background-color: transparent;
}
.team-roster--slider-with-nav .slick-prev::before,
.team-roster--slider-with-nav .slick-next::before {
color: #31404b;
}
.team-roster--slider-with-nav .slick-prev:hover:not(.slick-disabled),
.team-roster--slider-with-nav .slick-next:hover:not(.slick-disabled) {
background-color: transparent;
}
.team-roster--slider-with-nav .slick-prev:hover:not(.slick-disabled)::before,
.team-roster--slider-with-nav .slick-next:hover:not(.slick-disabled)::before {
color: #38a9ff;
}
.team-roster--slider-with-nav .slick-prev.slick-disabled,
.team-roster--slider-with-nav .slick-next.slick-disabled {
cursor: default;
}
.team-roster--slider-with-nav .slick-prev {
right: 55px;
left: auto;
margin: 0;
}
.team-roster--slider-with-nav .slick-prev::before {
content: "\f104";
}
.team-roster--slider-with-nav .slick-next {
right: 6px;
left: auto;
margin: 0;
}
.team-roster--slider-with-nav .slick-next::before {
content: "\f105";
} .team-roster--case-slider {
margin-bottom: 14px;
}
@media (min-width: 768px) {
.team-roster--case-slider {
padding-bottom: 90px;
margin-bottom: 44px;
}
}
.team-roster--case-slider .slick-prev,
.team-roster--case-slider .slick-next {
top: auto;
bottom: 0;
border: 1px solid #e4e7ed;
border-radius: 4px;
width: 46px;
height: 46px;
background-color: #fff;
}
.team-roster--case-slider .slick-prev::before,
.team-roster--case-slider .slick-next::before {
color: #31404b;
}
.team-roster--case-slider .slick-prev:hover,
.team-roster--case-slider .slick-next:hover {
background-color: #38a9ff;
}
.team-roster--case-slider .slick-prev:hover::before,
.team-roster--case-slider .slick-next:hover::before {
color: #fff;
}
.team-roster--case-slider .slick-prev {
right: auto;
left: 50%;
margin: 0 0 0 -52px;
}
.team-roster--case-slider .slick-next {
right: auto;
left: 50%;
margin: 0 0 0 6px;
} .posts--slider-var-width .slick-prev,
.posts--slider-var-width .slick-next {
top: -63px;
} .posts--slider-top-news {
margin-bottom: 0;
}
.posts--slider-top-news .slick-dots {
position: absolute;
right: 10px;
top: 50%;
bottom: auto;
width: 15px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
@media (min-width: 992px) {
.posts--slider-top-news .slick-dots {
right: 40px;
}
}
.posts--slider-top-news .slick-dots li {
margin: 5px 0;
counter-increment: step-counter;
}
@media (min-width: 480px) {
.posts--slider-top-news .slick-dots li {
margin: 8px 0;
}
}
@media (min-width: 992px) {
.posts--slider-top-news .slick-dots li {
margin: 13px 0;
}
}
.posts--slider-top-news .slick-dots li button {
font-size: 0;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 0;
width: auto;
height: auto;
margin: 0;
color: #fff;
background-color: transparent !important;
border-radius: 0;
text-align: center;
}
.posts--slider-top-news .slick-dots li button::before {
font-size: 10px;
line-height: 1.2em;
content: counters(step-counter, ".", decimal-leading-zero);
}
.posts--slider-top-news .slick-dots li.slick-active button {
opacity: 1;
color: #38a9ff;
} .sponsors--carousel .slick-prev,
.sponsors--carousel .slick-next {
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
border-radius: 0;
width: 24px;
height: 24px;
background-color: transparent;
}
.sponsors--carousel .slick-prev::before,
.sponsors--carousel .slick-next::before {
color: rgba(255, 255, 255, 0.2);
}
.sponsors--carousel .slick-prev:hover:not(.slick-disabled),
.sponsors--carousel .slick-next:hover:not(.slick-disabled) {
background-color: transparent;
}
.sponsors--carousel .slick-prev:hover:not(.slick-disabled)::before,
.sponsors--carousel .slick-next:hover:not(.slick-disabled)::before {
color: #38a9ff;
}
.sponsors--carousel .slick-prev.slick-disabled,
.sponsors--carousel .slick-next.slick-disabled {
cursor: default;
}
.sponsors--carousel .slick-prev {
right: 35px;
left: auto;
margin: 0;
}
.sponsors--carousel .slick-prev::before {
content: "\f104";
}
.sponsors--carousel .slick-next {
right: 0;
left: auto;
margin: 0;
}
.sponsors--carousel .slick-next::before {
content: "\f105";
}
.sponsors--carousel.sponsors--arrow-side .slick-prev {
right: auto;
left: 0;
}  .category-filter {
list-style: none;
padding: 0;
margin: 0;
}
.category-filter__item {
display: inline;
}
.category-filter__link {
display: inline-block;
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: rgba(49, 64, 75, 0.4);
transition: color 0.3s ease;
padding: 0 6px;
background: none;
border: none;
}
.category-filter__link:hover {
color: #31404b;
}
@media (min-width: 992px) {
.category-filter__link {
font-size: 11px;
padding: 0 12px;
}
}
.category-filter__link--active {
color: #31404b;
}
@media (min-width: 992px) {
.category-filter--extra-space {
margin-right: 66px;
}
}
.modal-dialog {
margin: 10px;
}
.modal-content {
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 0;
box-shadow: none;
}
.modal-backdrop {
background-color: #000;
}
.modal-backdrop.in {
opacity: 0.9;
}
.modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
margin-top: -2px;
}
.modal-title {
margin: 0;
line-height: 1.2em;
}
.modal-body {
position: relative;
padding: 15px;
}
.modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
margin-left: 0;
}
@media (min-width: 768px) {
.modal-dialog {
width: 600px;
margin: 30px auto;
}
.modal-sm {
width: 300px;
}
}
@media (min-width: 992px) {
.modal-lg {
width: 830px;
}
}
.modal {
text-align: center;
}
@media screen and (min-width: 768px) {
.modal:before {
display: inline-block;
vertical-align: middle;
content: " ";
height: 100%;
}
}
.modal-dialog {
display: inline-block;
text-align: left;
vertical-align: middle;
} .icobox {
margin-bottom: 40px;
}
@media (min-width: 992px) {
.icobox {
margin-bottom: 0;
}
}
.icobox__icon {
display: inline-block;
width: 50px;
height: 50px;
overflow: hidden;
position: relative;
color: #38a9ff;
}
.icobox__icon i {
display: block;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.icobox__icon--lg {
width: 90px;
height: 90px;
font-size: 32px;
}
.icobox__icon--border {
border: 2px solid #e4e7ed;
background-color: #fff;
}
.icobox__icon--filled {
background-color: #38a9ff;
color: #fff;
}
.icobox__icon--circle {
border-radius: 50%;
}
.icobox__icon--rounded {
border-radius: 8px;
}
.icobox__icon--square {
border-radius: 0;
}
.icobox__title {
font-size: 24px;
font-style: normal;
text-transform: uppercase;
margin-bottom: 1.25em;
}
.icobox__title > a {
color: #31404b;
}
.icobox__title--lg {
margin-bottom: 1.75em;
}
.icobox__icon--color--primary {
color: #38a9ff;
}
.icobox__icon--color--primary.icobox__icon--filled {
background-color: #38a9ff;
color: #fff;
}
.icobox__icon--color--secondary {
color: #c2ff1f;
}
.icobox__icon--color--secondary.icobox__icon--filled {
background-color: #c2ff1f;
color: #fff;
}
.icobox--center {
text-align: center;
}
.icobox--left {
text-align: left;
}
.icobox--right {
text-align: right;
}
.icobox--center .icobox__icon,
.icobox--left .icobox__icon,
.icobox--right .icobox__icon {
margin-bottom: 15px;
}
.icobox--center .icobox__icon.icobox__icon--lg,
.icobox--left .icobox__icon.icobox__icon--lg,
.icobox--right .icobox__icon.icobox__icon--lg {
margin-bottom: 26px;
} .alc-icon {
display: inline-block;
color: #31404b;
background-color: #fff;
position: relative;
}
.alc-icon i,
.alc-icon svg {
display: block;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.alc-icon--circle {
border-radius: 50%;
}
.alc-icon--xl {
width: 80px;
height: 80px;
}
.alc-icon--xl .df-icon {
-webkit-transform: translate(-50%, -50%) scale(1.75);
transform: translate(-50%, -50%) scale(1.75);
}
.alc-icon--sm {
width: 40px;
height: 40px;
}
.alc-icon--xs {
width: 20px;
height: 20px;
}
.alc-icon--xs i {
font-size: 8px;
}
.alc-icon--outline {
background-color: transparent;
border: 1px solid #38a9ff;
}
.alc-icon--outline-md {
border-width: 4px;
}
.alc-icon--outline-md.alc-icon--sm {
line-height: 32px;
}
.alc-icon--outline-md.alc-icon--xs {
border-width: 2px;
}
.alc-icon--outline-xl {
border-width: 8px;
}
.alc-icon--disabled {
border-color: #fff;
color: #fff;
opacity: 0.1;
} .ratings .fa {
color: #ffdc11;
}
.ratings .empty {
color: #dbdfe6;
} .timeline {
list-style: none;
padding: 0;
margin: 2em 0 0 0;
position: relative;
}
.timeline__event {
padding: 0 0 2.2em 46px;
margin: 0;
position: relative;
}
.timeline__event::before {
content: "";
display: block;
position: absolute;
left: 9px;
top: 0;
bottom: 0;
border-left: 1px solid #e4e7ed;
}
.timeline__event::after {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
width: 19px;
height: 19px;
border-radius: 50%;
background-color: #38a9ff;
border: 2px solid #38a9ff;
box-shadow: inset 0 0 0 5px #fff;
}
.timeline__event:last-child {
padding-bottom: 0;
}
.timeline__event:last-child::before {
display: none;
}
.timeline__title {
font-size: 14px;
line-height: 1.2em;
text-transform: none;
}
.sp-template-vertical-timeline .game-timeline-wrapper--vertical {
margin-top: 20px;
} .gm-map {
display: block;
width: 100%;
height: 100%;
min-height: 240px;
}
@media (min-width: 992px) {
.gm-map {
min-height: 350px;
}
}
.gm-map--lg {
min-height: 300px;
}
@media (min-width: 992px) {
.gm-map--lg {
min-height: 460px;
}
}
.wpb-js-composer .wpb_gmaps_widget {
margin-bottom: 0 !important;
}
.wpb-js-composer .wpb_gmaps_widget .wpb_wrapper {
padding: 0;
} .marquee-wrapper {
width: 100%;
background-color: #fff;
height: 38px;
position: relative;
overflow: hidden;
}
.marquee-wrapper .container {
position: relative;
}
.marquee-wrapper::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 50%;
background-color: #38a9ff;
}
.marquee-wrapper::after {
content: "";
display: block;
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 50%;
background-color: #c2ff1f;
}
.marquee {
width: 100%;
overflow: hidden;
position: relative;
z-index: 1;
line-height: 38px;
background-color: #fff;
}
@media (min-width: 768px) {
.marquee::before {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
right: -20px;
width: 135px;
-webkit-transform: skew(-25deg);
transform: skew(-25deg);
background-color: #c2ff1f;
z-index: 1;
}
.marquee::after {
content: "";
display: block;
position: absolute;
width: 4px;
right: 107px;
top: 0;
bottom: 0;
background-color: #fff;
-webkit-transform: skew(-25deg);
transform: skew(-25deg);
z-index: 1;
}
}
.marquee .posts--inline .posts__item {
display: inline-flex;
align-items: center;
}
.marquee .posts--inline .posts__cat {
top: 0;
}
.marquee-label {
display: none;
}
@media (min-width: 768px) {
.marquee-label {
display: block;
white-space: nowrap;
position: absolute;
left: 8px;
padding: 0 10px 0 0;
top: 0;
line-height: 38px;
z-index: 2;
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
background-color: #38a9ff;
}
.marquee-label::before {
content: "";
display: block;
position: absolute;
right: -26px;
top: 0;
bottom: 0;
background-color: #38a9ff;
width: 35px;
-webkit-transform: skew(-25deg);
transform: skew(-25deg);
}
.marquee-label::after {
content: "";
display: block;
position: absolute;
right: -22px;
top: 0;
bottom: 0;
background-color: #fff;
width: 4px;
-webkit-transform: skew(-25deg);
transform: skew(-25deg);
}
}
.marquee-wrapper--boxed {
border-radius: 4px;
border: 1px solid #e4e7ed;
height: 46px;
overflow: hidden;
}
.vc_row[data-vc-stretch-content] .marquee-wrapper--boxed::before, .vc_row[data-vc-stretch-content] .marquee-wrapper--boxed::after {
background-color: #fff;
}
.vc_row:not([data-vc-stretch-content]) .marquee-wrapper--boxed::before, .vc_row:not([data-vc-stretch-content]) .marquee-wrapper--boxed::after {
background-color: transparent;
}
.marquee-wrapper--boxed .container {
padding-left: 0 !important;
padding-right: 0 !important;
}
.marquee-wrapper--boxed .marquee {
line-height: 43px;
border-radius: 4px;
}
@media (min-width: 768px) {
.marquee-wrapper--boxed .marquee::before {
background-color: #fff;
}
}
.marquee-wrapper--boxed .marquee-label {
left: 0;
font-style: italic;
}
.marquee-wrapper--boxed .marquee-label i {
color: #38a9ff;
margin-right: 0.3em;
font-style: normal;
font-weight: 400;
}
@media (min-width: 768px) {
.marquee-wrapper--boxed .marquee-label {
line-height: 44px;
font-size: 14px;
padding-left: 24px;
padding-right: 13px;
background-color: #fff;
}
.marquee-wrapper--boxed .marquee-label::before {
width: 50px;
right: -38px;
background-color: #fff;
}
.marquee-wrapper--boxed .marquee-label::after {
right: -34px;
}
}
.marquee-wrapper--no-categories .posts--inline .posts__title::before {
margin-right: 1em;
color: #c2ff1f;
}
.marquee-wrapper--no-categories .posts--inline .posts__title::before {
content: "//";
} .alc-video-player-col {
padding-right: 0;
}
@media (min-width: 992px) {
.alc-video-playlist-col {
border-left: 1px solid #e4e7ed;
padding-left: 0;
}
}
.alc-video-player__header {
border-bottom: 1px solid #e4e7ed;
padding-left: 24px;
padding-right: 24px;
padding-top: 20px;
padding-bottom: 20px;
position: relative;
}
@media (max-width: 991px) {
.alc-video-player__header {
border-top: 1px solid #e4e7ed;
}
}
.alc-video-player__header .slick-prev,
.alc-video-player__header .slick-next {
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.alc-video-player__title {
font-size: 11px;
line-height: 1.2em;
margin-bottom: 0;
}
.alc-video-player .posts__thumb--video {
float: none;
margin: 0;
}
.alc-video-player .posts__thumb--video img {
width: 100%;
}
.alc-video-player .wp-block-embed:last-child {
margin-bottom: 0;
}
.alc-video-player__video-list {
position: relative;
}
.alc-video-player__video-list .slick-track {
display: block;
}
.alc-video-player__video-list .posts__item {
margin-left: 0 !important;
margin-right: 0 !important;
margin-bottom: 0 !important;
padding-top: 26px;
padding-bottom: 26px;
}
.alc-video-player__video-list .posts__item:hover {
cursor: pointer;
}
@media (min-width: 992px) and (max-width: 1199px) {
.alc-video-player__video-list .posts__item .posts__title {
font-size: 12px;
}
}
.alc-embeded-player {
position: relative;
overflow: hidden;
background-color: #000;
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
border: 1px solid #e4e7ed;
}
.card--no-paddings .alc-embeded-player {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border: none;
}
.alc-embeded-player--container {
margin: 0;
padding: 0 0 56.25% 0;
position: relative;
overflow: hidden;
max-width: 100%;
height: auto;
}
.alc-embeded-player--container iframe,
.alc-embeded-player--container object,
.alc-embeded-player--container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.alc-embeded-player--container p {
margin: 0;
padding: 0;
}
.alc-embeded-player--container .wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.alc-embeded-player--container .jetpack-video-wrapper {
position: static;
display: inline;
}
.alc-embeded-player__overlay {
display: flex;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}
.alc-embeded-player__overlay:hover {
cursor: pointer;
}
.alc-embeded-player__overlay:hover .alc-embeded-player__icon {
opacity: 0.5;
}
.alc-embeded-player__icon {
display: block;
color: #fff;
font-size: 30px;
line-height: 1em;
transition: opacity 0.3s ease;
}
html,
body {
height: 100%;
padding: 0;
margin: 0;
}
html {
overflow-x: hidden;
}
body {
display: flex;
flex-direction: column;
background-color: #edeff4;
color: #9a9da2;
font-size: 15px;
line-height: 26px;
font-family: "Source Sans Pro", sans-serif;
font-weight: 400;
text-align: left;
}
[dir=rtl] body {
direction: rtl;
unicode-bidi: embed;
} @media (max-width: 479px) {
body {
font-size: 13px;
line-height: 22px;
}
}
.site-wrapper {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transition: all 0.4s ease-in-out;
}
@media (min-width: 992px) {
.site-wrapper {
flex: 1 0 auto;
display: flex;
flex-direction: column;
}
.site-wrapper .sp-header,
.site-wrapper .header,
.site-wrapper .header-tertiary,
.site-wrapper .page-heading,
.site-wrapper .hero-unit,
.site-wrapper .footer {
flex: 0 0 auto;
}
.site-wrapper .site-content {
flex: 1 0 auto;
}
}
@media (max-width: 991px) {
.site-wrapper--has-overlay {
overflow: hidden;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
bottom: auto;
height: 100vh;
}
}
.site-overlay {
left: 0;
top: 0;
z-index: 102;
width: 100%;
height: 100%;
position: fixed;
background-color: transparent;
cursor: pointer;
visibility: hidden;
opacity: 0;
transition: visibility 0s, opacity 0.4s linear;
}
@media (max-width: 991px) {
.site-wrapper--has-overlay .site-overlay {
visibility: visible;
opacity: 1;
background-color: rgba(0, 0, 0, 0.8);
}
}
.site-wrapper--has-overlay-pushy .site-overlay {
visibility: visible;
opacity: 1;
background-color: rgba(0, 0, 0, 0.8);
} .header {
background-color: #1e2024;
position: relative;
z-index: 6;
}
@media (max-width: 991px) {
.header {
z-index: 103;
}
} .header__top-bar {
background-color: #292c31;
display: none;
}
@media (min-width: 992px) {
.header__top-bar {
display: block;
height: 48px;
}
}
.header__top-bar-inner {
display: flex;
align-items: center;
height: 48px;
}
.nav-account {
display: none;
}
@media (min-width: 992px) {
.nav-account {
display: flex;
list-style: none;
padding: 0;
margin: 0;
margin-left: auto;
width: auto;
}
.nav-account .nav-account__item {
display: inline-block;
font-size: 9px;
line-height: 1.5em;
text-transform: uppercase;
font-weight: 700;
font-family: "Montserrat", sans-serif;
}
.nav-account .nav-account__item::before {
display: inline-block;
color: #6b6d70;
margin: 0 16px 0 14px;
}
.nav-account .nav-account__item > a {
color: #fff;
transition: all 0.3s ease;
display: inline-block;
height: 48px;
line-height: 48px;
}
.nav-account .nav-account__item > a:hover {
color: #38a9ff;
}
.nav-account .nav-account__item > a:focus {
outline: none;
}
.nav-account .nav-account__item > a .highlight {
color: #38a9ff;
}
.nav-account .nav-account__item:first-child::before {
display: none !important;
}
.nav-account .nav-account__item.has-children {
position: relative;
}
.nav-account .nav-account__item.has-children::after {
content: "\f107";
display: inline-block;
margin-left: 9px;
position: relative;
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #fff;
}
.nav-account .nav-account__item.has-children ul {
list-style: none;
top: 40px;
right: 0;
min-width: 110px;
padding: 14px 0;
margin: 0;
border: 1px solid #e4e7ed;
box-shadow: none;
background-color: #fff;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: translateX(50%) rotateX(-75deg);
transform: translateX(50%) rotateX(-75deg);
visibility: hidden;
}
.nav-account .nav-account__item.has-children ul li a {
display: block;
font-size: 9px;
padding: 6px 24px;
border-bottom: none;
color: #31404b;
transition: color 0.2s ease;
}
.nav-account .nav-account__item.has-children ul li a:hover {
color: #38a9ff;
background-color: transparent;
}
.nav-account .nav-account__item.has-children:hover ul {
display: block;
-webkit-transform: translateX(50%) rotateX(0deg);
transform: translateX(50%) rotateX(0deg);
opacity: 1;
visibility: visible;
}
.nav-account .nav-account__item--logout > a {
color: #6b6d70;
}
}
.nav-account__divider-slash .nav-account__item::before {
content: "/";
}
.nav-account__divider-backslash .nav-account__item::before {
content: "\\";
}
.nav-account__divider-vert_bar .nav-account__item::before {
content: "|";
}
.nav-account__divider-bullet .nav-account__item::before {
content: "•";
}
.nav-account__divider-none .nav-account__item::before {
content: "";
margin: 0 12px 0 10px;
} .header__secondary {
background-color: #1e2024;
display: none;
}
@media (min-width: 992px) {
.header__secondary {
display: block;
text-align: right;
}
} .header__primary {
background-color: #1e2024;
position: relative;
}
.header--layout-1 .header__primary::after, .header--layout-2 .header__primary::after, .header--layout-3 .header__primary::after, .header--layout-4 .header__primary::after {
content: "";
display: block;
position: absolute;
right: 0;
top: 0;
bottom: 0;
background-color: #292c31;
}
.header--layout-1 .header__primary::after {
width: 50%;
}
.header--layout-2 .header__primary::after, .header--layout-3 .header__primary::after, .header--layout-4 .header__primary::after {
width: 100%;
}
.header__primary-inner {
position: relative;
z-index: 1;
background-color: #292c31;
}
@media (min-width: 992px) {
.header__primary-inner {
min-height: 62px;
}
}
.header--layout-1 .header__primary-inner::before {
content: "";
position: absolute;
display: none;
top: 0;
bottom: 0;
width: 210px;
background-color: #1e2024;
left: -25px;
margin-left: 0;
-webkit-transform: skew(-25deg);
transform: skew(-25deg);
}
@media (min-width: 768px) {
.header--layout-1 .header__primary-inner::before {
display: block;
}
}
@media (max-width: 991px) {
.header--layout-1 .header__primary-inner::before {
width: 80px;
}
}
@media (max-width: 991px) {
.main-nav .social-links--main-nav {
display: none;
}
} .header-logo {
position: absolute;
z-index: 3;
left: 0;
display: block;
bottom: 21px;
}
@media (max-width: 991px) {
.header-logo {
display: none;
}
}
.header-logo__img {
position: relative;
} .header-mobile {
display: none;
background-color: #1e2024;
} .header-search-form {
padding: 24px 0;
overflow: hidden;
transition: all 0.4s ease-in-out;
position: relative;
z-index: 1;
background-color: #1e2024;
vertical-align: top;
}
@media (min-width: 992px) {
.header-search-form {
display: inline-block;
width: 360px;
background-color: transparent;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.header-search-form {
width: 200px;
}
}
.header-search-form .search-form {
position: relative;
}
.main-nav .header-search-form {
padding: 11px 0;
background-color: transparent;
}
.main-nav .header-search-form.header-search-form--right {
float: right;
}
.header__secondary .header-search-form.header-search-form--left {
float: left;
} input.header-mobile__search-control {
background-color: #292c31;
border-color: #292c31;
border-radius: 20px;
height: 38px;
padding: 6px 60px 6px 20px;
font-size: 12px;
color: #fff;
}
input.header-mobile__search-control::-moz-placeholder {
color: #fff;
opacity: 1;
}
input.header-mobile__search-control:-ms-input-placeholder {
color: #fff;
}
input.header-mobile__search-control::-webkit-input-placeholder {
color: #fff;
}
@media (min-width: 992px) {
input.header-mobile__search-control {
background-color: #292c31;
border-color: #292c31;
color: #fff;
}
input.header-mobile__search-control::-moz-placeholder {
color: rgba(255, 255, 255, 0.25);
opacity: 1;
}
input.header-mobile__search-control:-ms-input-placeholder {
color: rgba(255, 255, 255, 0.25);
}
input.header-mobile__search-control::-webkit-input-placeholder {
color: rgba(255, 255, 255, 0.25);
}
}
input.header-mobile__search-control:focus {
background-color: #292c31;
border-color: #292c31;
color: #fff;
}
@media (min-width: 992px) {
input.header-mobile__search-control:focus {
background-color: #292c31;
border-color: #292c31;
color: #fff;
}
} .header-mobile__search-submit {
background: none;
position: absolute;
right: 0;
top: 0;
width: 51px;
height: 38px;
line-height: 38px;
padding: 0;
border: none;
font-size: 16px;
color: #fff;
transition: color, background-color 0.3s ease;
border-radius: 0 20px 20px 0;
}
.header-mobile__search-submit:hover {
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
}
@media (min-width: 992px) {
.header-mobile__search-submit {
color: #fff;
}
.header-mobile__search-submit:hover {
color: #fff;
}
}
@media only screen and (max-width: 991px) {
.header-mobile {
display: block;
position: relative;
top: 0;
left: 0;
width: 100%;
z-index: 5;
}
.header-mobile__inner {
overflow: hidden;
position: relative;
z-index: 2;
height: 100px;
background-color: #1e2024;
transition: all 0.4s ease-in-out;
}
.header-mobile__secondary {
display: inline-flex;
position: absolute;
gap: 16px;
right: 24px;
top: 40px;
} .header-mobile__logo {
text-align: center;
position: absolute;
z-index: 3;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
top: 50px;
margin-top: 10px;
}
.header-mobile__logo-img {
width: 97px;
height: auto;
} .burger-menu-icon {
z-index: 102;
transition: all 0.4s ease-in-out;
display: block;
position: absolute;
top: 40px;
left: 24px;
cursor: pointer;
width: 26px;
height: 19px;
}
.burger-menu-icon__line, .burger-menu-icon__line::before, .burger-menu-icon__line::after {
content: "";
cursor: pointer;
height: 3px;
width: 100%;
background-color: #fff;
position: absolute;
top: 0;
display: block;
border-radius: 1px;
}
.burger-menu-icon__line::before {
top: 8px;
}
.burger-menu-icon__line::after {
top: 16px;
} .header-mobile-pushy-panel__toggle {
width: 24px;
height: 24px;
font-size: 22px;
line-height: 24px;
text-align: center;
color: #fff;
margin-right: -10px;
}
.header-mobile-pushy-panel__toggle:hover {
cursor: pointer;
} .header-mobile__search-icon {
width: 24px;
height: 24px;
line-height: 24px;
font-size: 22px;
color: #fff;
text-align: center;
position: relative;
}
.header-mobile__search-icon::before, .header-mobile__search-icon::after {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
transition: all 0.3s ease-in-out;
}
.header-mobile__search-icon::before {
content: "\f002";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
}
.header-mobile__search-icon::after {
content: "";
-webkit-transform: translate(-50%, -50%), scale(0);
transform: translate(-50%, -50%), scale(0);
opacity: 0;
width: 24px;
height: 24px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Cpath transform='translate(-267.219 -40.219)' fill='%23fff' d='M267.62,56.258L283.258,40.62a1.5,1.5,0,0,1,2.121,2.121L269.741,58.379A1.5,1.5,0,0,1,267.62,56.258Zm15.638,2.122L267.62,42.742a1.5,1.5,0,0,1,2.121-2.121l15.638,15.638A1.5,1.5,0,0,1,283.258,58.38Z'/%3E%3C/svg%3E");
background-position: center center;
background-size: 19px 19px;
background-repeat: no-repeat;
}
.header-mobile__search-icon.header-mobile__search-icon--close::before {
-webkit-transform: translate(-50%, -50%), scale(0);
transform: translate(-50%, -50%), scale(0);
opacity: 0;
}
.header-mobile__search-icon.header-mobile__search-icon--close::after {
-webkit-transform: translate(-50%, -50%), scale(1);
transform: translate(-50%, -50%), scale(1);
opacity: 1;
}
.header-mobile__search-icon:hover {
cursor: pointer;
} .header-search-form {
padding: 0 25px;
height: 0;
top: -62px;
}
.header-mobile--expanded .header-search-form {
top: 0;
height: 63px;
} input.header-mobile__search-control {
margin-top: 12px;
} } .header-banner {
display: inline-block;
vertical-align: middle;
margin-left: 38px;
padding: 16px 0;
}
@media (min-width: 992px) {
.header-banner {
margin-left: 15px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.header-banner img {
width: 254px;
height: auto;
}
}
@media (min-width: 1200px) {
.header-banner {
margin-left: 38px;
}
}
@media (min-width: 992px) {
.main-nav__list .header-banner {
display: none;
}
}
@media (max-width: 991px) {
.main-nav__list .header-banner {
margin: 0;
padding: 15px 30px;
}
.main-nav__list .header-banner img {
max-width: 100%;
height: auto;
}
}  @media (min-width: 992px) {
.header--layout-1 .main-nav {
justify-content: flex-end;
}
} @media (min-width: 992px) {
.header--layout-2 .main-nav {
justify-content: flex-start;
}
}
.header--layout-2 .main-nav > ul,
.header--layout-2 .main-nav > div {
margin-left: auto;
}
.header--layout-2 .main-nav > ul.main-nav__list,
.header--layout-2 .main-nav > div.main-nav__list {
margin-left: 0;
} @media (min-width: 992px) {
.header--layout-3 .header__primary-inner {
display: flex;
align-items: center;
}
}
.header--layout-3 .header__primary-spacer {
margin-left: auto;
}
@media (min-width: 992px) {
.header--layout-3 .header-logo {
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
bottom: -10px;
}
}
@media (min-width: 992px) {
.header--layout-3 .main-nav__list > li:nth-of-type(1) > a {
padding-left: 0 !important;
}
}
@media (min-width: 992px) {
.header--layout-3 .header-search-form {
padding-top: 16px;
padding-bottom: 16px;
}
}
@media (min-width: 992px) {
.header--layout-3 .info-block--header .info-block__item {
padding-top: 10px;
padding-bottom: 22px;
}
.header--layout-3 .info-block--header .info-block__item.info-block__item--contact-primary, .header--layout-3 .info-block--header .info-block__item.info-block__item--contact-secondary {
margin-top: 7px;
padding-right: 0;
padding-left: 40px;
}
.header--layout-3 .info-block--header .info-block__item .df-icon,
.header--layout-3 .info-block--header .info-block__item .df-icon-custom {
top: 14px;
left: 0;
}
.header--layout-3 .info-block--header .info-block__item .info-block__menu-icon {
top: 11px !important;
}
} .header--layout-4 .header__primary::after {
background-color: #292c31;
}
@media (min-width: 992px) {
.header--layout-4 .header__primary--center .header__primary-inner {
justify-content: center;
width: 100%;
}
}
@media (min-width: 992px) {
.header--layout-4 .header__primary--center .main-nav {
margin-right: 0;
flex-basis: 100%;
}
}
@media (min-width: 992px) {
.header--layout-4 .header__primary--center .main-nav__list {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
width: 100%;
}
}
@media (min-width: 992px) and (min-width: 992px) {
.header--layout-4 .header__primary--center .main-nav__list > li:nth-of-type(1) > a {
padding: 0 34px !important;
}
}
.header--layout-4 .header__primary-inner {
background-color: #292c31;
}
@media (min-width: 992px) {
.header--layout-4 .header__primary-inner {
display: flex;
align-items: center;
justify-content: flex-end;
}
}
@media (min-width: 992px) {
.header--layout-4 .header-logo {
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
bottom: -10px;
}
}
@media (min-width: 992px) {
.header--layout-4 .main-nav {
margin-right: auto;
}
}
@media (min-width: 992px) {
.header--layout-4 .header-search-form {
padding-top: 16px;
padding-bottom: 16px;
}
}
@media (min-width: 992px) {
.header--layout-4 .info-block--header .info-block__item {
padding-top: 10px;
padding-bottom: 22px;
}
.header--layout-4 .info-block--header .info-block__item .df-icon,
.header--layout-4 .info-block--header .info-block__item .df-icon-custom {
top: 14px;
}
.header--layout-4 .info-block--header .info-block__item .info-block__menu-icon {
top: 11px !important;
}
}
.header--layout-4 .header__secondary {
position: relative;
z-index: 3;
}
.header--layout-4 .header__secondary .header-search-form {
float: left;
}
.header--layout-4 .header__secondary-inner {
position: relative;
z-index: 1;
}  @media (min-width: 992px) {
.main-nav {
display: flex;
align-items: center;
justify-content: flex-end;
}
}
.main-nav .header-mobile__logo {
display: none;
}
.main-nav__list {
display: inline-block;
text-align: left;
padding: 0;
margin: 0;
list-style: none; }
@media (min-width: 992px) {
.main-nav__list {
border-left: none;
}
}
.main-nav__list > li {
text-align: center;
display: inline-block;
padding: 0;
}
@media (min-width: 992px) {
.main-nav__list > li {
margin-left: -0.25em;
border-right: none;
}
.main-nav__list > li:first-of-type {
margin-left: 0;
}
}
.main-nav__list > li > a {
display: block;
position: relative;
font-style: normal;
color: #fff;
padding: 0 34px;
line-height: 62px;
text-decoration: none;
position: relative;
font-size: 12px;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
transition: color 0.3s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
.main-nav__list > li > a {
padding-left: 20px;
padding-right: 20px;
}
}
.main-nav__list > li > a::before {
content: "";
display: block;
position: absolute;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
background-color: transparent;
transition: background-color 0.3s ease;
z-index: -1;
}
.main-nav__list > li > a:hover {
color: #fff;
background-color: transparent;
text-decoration: none;
}
.main-nav__list > li > a:hover::before {
background-color: #38a9ff;
}
.main-nav__list > li.current-menu-item > a {
color: #fff;
text-decoration: none;
background-color: transparent;
}
.main-nav__list > li.current-menu-item > a::before {
background-color: #38a9ff;
}
.main-nav__list > li.menu-item-has-children > a::after {
content: "\f107";
display: inline-block;
margin-left: 9px;
top: -1px;
position: relative;
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #fff;
font-style: normal;
} .has-mega-menu .main-nav__sub-0 {
width: 100%;
display: flex;
flex-wrap: wrap;
left: 0;
position: absolute;
top: 62px;
z-index: 1000;
margin: 0;
text-align: left;
padding: 43px 55px;
font-size: 15px;
border: solid 1px #292c31;
background-color: #1e2024;
opacity: 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.has-mega-menu .main-nav__sub-0 .main-nav__title,
.has-mega-menu .main-nav__sub-0 .widget .widget__title,
.has-mega-menu .main-nav__sub-0 .widget-title {
font-size: 14px;
letter-spacing: -0.03em;
padding: 3px 0;
margin-bottom: 19px;
color: #fff;
text-align: left;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
line-height: 1.2em;
}
.has-mega-menu .main-nav__sub-0 .widget {
border: none;
padding: 0;
color: #9a9da2;
}
.has-mega-menu .main-nav__sub-0 .widget .widget__title {
border: none;
}
.has-mega-menu .main-nav__sub-0 .widget .widget__title::before {
display: none;
}
.has-mega-menu .main-nav__sub-0 .widget + .widget {
margin-top: 30px;
}
@media (min-width: 992px) {
.has-mega-menu .main-nav__sub-0 .widget + .widget {
margin-top: 40px;
}
}
.has-mega-menu .main-nav__sub-0 .widget ul {
margin: 0;
}
.has-mega-menu .main-nav__sub-0 .widget ul > li {
padding: 7px 0;
}
.has-mega-menu .main-nav__sub-0 .widget ul > li + li {
border-top: none;
}
.has-mega-menu .main-nav__sub-0 .widget ul > li > a {
display: inline;
padding: 0;
color: rgba(255, 255, 255, 0.4);
}
.has-mega-menu .main-nav__sub-0 .widget ul > li > a:hover {
color: #1892ed;
}
.has-mega-menu .main-nav__sub-0 .widget .post-author__name {
color: #9a9da2;
}
.has-mega-menu .main-nav__sub-0 .widget .meta__item a {
color: #9a9da2;
}
.has-mega-menu .main-nav__sub-0 .widget .meta__item a:hover {
color: #9a9da2;
}
.has-mega-menu .main-nav__sub-0 [class*=main-nav__sub-] {
min-width: auto;
border: none;
position: static;
}
.has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li {
display: block;
white-space: nowrap;
text-align: left;
text-transform: uppercase;
}
.has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a {
display: block;
font-size: 11px;
line-height: 18px;
font-family: "Montserrat", sans-serif;
font-weight: 700;
font-style: normal;
text-transform: uppercase;
text-align: left;
padding: 5px 0;
color: rgba(255, 255, 255, 0.4);
transition: color 0.3s ease;
}
.has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a:hover {
color: #fff;
background-color: transparent;
text-decoration: none;
}
@media (min-width: 992px) {
.has-mega-menu .main-nav__sub-0 .has-2cols-ul .main-nav__sub-1,
.has-mega-menu .main-nav__sub-0 .has-3cols-ul .main-nav__sub-1 {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
align-content: flex-start;
}
.has-mega-menu .main-nav__sub-0 .has-2cols-ul .main-nav__sub-1 li,
.has-mega-menu .main-nav__sub-0 .has-3cols-ul .main-nav__sub-1 li {
padding-right: 10px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.has-mega-menu .main-nav__sub-0 .has-2cols-ul .main-nav__sub-1 li a,
.has-mega-menu .main-nav__sub-0 .has-3cols-ul .main-nav__sub-1 li a {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
@media (min-width: 992px) {
.has-mega-menu .main-nav__sub-0 .has-2cols-ul .main-nav__sub-1 li {
flex-basis: 50%;
}
}
@media (min-width: 992px) {
.has-mega-menu .main-nav__sub-0 .has-3cols-ul .main-nav__sub-1 li {
flex-basis: 33.3%;
}
} @media (min-width: 992px) {
ul[class*=megamenu-col-] {
overflow: hidden;
}
ul[class*=megamenu-col-] > li.megamenu-item {
padding-left: 8px;
padding-right: 8px;
}
li.megamenu-col-2:not([class*=col-]) {
width: 50%;
}
li.megamenu-col-3:not([class*=col-]) {
width: 33.3%;
}
li.megamenu-col-4:not([class*=col-]) {
width: 25%;
}
li.megamenu-col-5:not([class*=col-]) {
width: 20%;
}
li.megamenu-col-6:not([class*=col-]) {
width: 16.66666667%;
}
}
@media (min-width: 992px) {
.main-nav__list > li:not(.has-mega-menu) {
position: relative;
}
} .main-nav__list li > .main-nav__sub-0,
.main-nav__list li > .main-nav__sub-1,
.main-nav__list li > .main-nav__sub-2 {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: rotateX(-75deg);
transform: rotateX(-75deg);
visibility: hidden;
}
.main-nav__list li:hover > .main-nav__sub-0,
.main-nav__list li:hover > .main-nav__sub-1,
.main-nav__list li:hover > .main-nav__sub-2 {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
visibility: visible;
}
.main-nav__list li.has-mega-menu:hover > .main-nav__sub-0 ul {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
visibility: visible;
} .main-nav__sub-0 {
position: absolute;
top: 62px;
z-index: 1000;
margin: 0;
padding: 0;
min-width: 240px;
background-color: #1e2024;
border: solid 1px #292c31;
opacity: 0;
-webkit-transform-origin: 0% 0%;
transform-origin: 0% 0%;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.main-nav__sub-0 > li > a {
text-decoration: none;
}
.main-nav__sub-0 > li.menu-item-has-children > a::after {
content: "\f105";
display: block;
position: absolute;
right: 24px;
top: 50%;
margin-top: -8px;
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
font-style: normal;
color: #fff;
}
.no-mega-menu .main-nav__sub-0 li {
position: relative;
margin: 0;
padding: 0;
}
.no-mega-menu .main-nav__sub-0 li a {
display: block;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 700;
font-style: normal;
font-size: 11px;
color: #fff;
text-align: left;
line-height: 1.5em;
padding: 16px 30px;
letter-spacing: normal;
border-bottom: 1px solid #292c31;
transition: background-color 0.3s ease;
}
.no-mega-menu .main-nav__sub-0 li a:hover {
color: #c2ff1f;
background-color: transparent;
}
.no-mega-menu .main-nav__sub-0 li:last-child > a {
border-bottom: none;
}
.main-nav__list li:hover .main-nav__sub {
display: block;
} .main-nav__sub-0 li {
position: relative;
padding: 0;
margin: 0;
display: block;
}
.main-nav__sub-0 li:hover .main-nav__sub-1 {
display: block;
opacity: 1;
list-style: none;
padding: 0;
background-color: #1e2024;
} .main-nav__sub-1 {
min-width: 240px;
border: solid 1px #292c31;
position: absolute;
left: 100%;
top: -1px;
margin: 0;
padding: 0;
opacity: 0;
-webkit-transform-origin: 0% 0%;
transform-origin: 0% 0%;
transition: opacity 0.4s, -webkit-transform 0.4s;
transition: transform 0.4s, opacity 0.4s;
transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.main-nav__sub-1 li:hover .main-nav__sub-2 {
opacity: 1;
list-style: none;
padding: 0;
border: solid 1px #292c31;
background-color: #1e2024;
} .main-nav__sub-2 {
min-width: 240px;
position: absolute;
left: 100%;
top: -1px;
margin: 0;
padding: 0;
opacity: 0;
-webkit-transform-origin: 0% 0%;
transform-origin: 0% 0%;
transition: opacity 0.4s, -webkit-transform 0.4s;
transition: transform 0.4s, opacity 0.4s;
transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.main-nav__toggle,
.main-nav__toggle-2 {
display: none;
}
@media only screen and (min-width: 992px) {
.main-nav__list li:hover > .main-nav__sub-0,
.main-nav__sub-0 li:hover > .main-nav__sub-1,
.main-nav__sub-1 li:hover > .main-nav__sub-2 {
display: block;
}
.main-nav__list li.has-mega-menu:hover > .megamenu-item {
display: flex;
}
.main-nav__list .nav-account__item {
display: none;
}
.main-nav__list .social-links__item {
display: none;
}
.main-nav__list .main-nav__item--social-links {
display: none;
}
.main-nav .main-nav__item--shopping-cart {
display: none;
}
} @media only screen and (max-width: 991px) {
.main-nav {
width: 270px;
inset-inline-start: 0;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
position: fixed;
top: 0;
bottom: 0;
margin: 0;
z-index: 103;
overflow: auto;
transition: all 0.4s ease-in-out;
background-color: #1e2024;
}
.site-wrapper--has-overlay .main-nav {
-webkit-transform: translateX(0);
transform: translateX(0);
transition: all 0.4s ease-in-out;
}
.main-nav .header-mobile__logo {
position: relative;
padding: 5px 0 18px 0;
display: block;
top: 0;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
border-bottom: 1px solid #292c31;
}
.main-nav .df-icon {
stroke: #c2ff1f;
}
.main-nav .df-icon-custom i {
color: #c2ff1f;
}
.main-nav .main-nav__item--shopping-cart .info-block__link-wrapper {
overflow: hidden;
font-size: 11px;
line-height: 1.5em;
padding-right: 20px;
}
.main-nav .main-nav__item--shopping-cart .df-icon-custom {
display: none;
}
.main-nav .main-nav__item--shopping-cart .df-icon-stack--bag,
.main-nav .main-nav__item--shopping-cart .df-icon--shopping-cart {
display: none;
}
.main-nav .main-nav__item--shopping-cart .info-block__heading {
margin-bottom: 0;
float: left;
font-size: 11px;
line-height: 1.5em;
}
.main-nav .main-nav__item--shopping-cart .info-block__cart-sum {
float: right;
font-size: 11px;
line-height: 1.5em;
color: #38a9ff;
}
.main-nav .main-nav__back {
width: 49px;
height: 44px;
position: absolute;
right: 0;
top: 0;
z-index: 4;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 8'%3E%3Cpath transform='translate(-238.75 -17.75)' fill='%23fff' d='M240,21h12v2H240V21Zm0.171-.415,4.243,4.243L243,26.242,238.757,22Zm4.243-1.414-4.243,4.242L238.757,22,243,17.757Z'/%3E%3C/svg%3E");
background-position: center center;
background-repeat: no-repeat;
background-size: 13px 8px;
}
.main-nav .main-nav__back:hover {
cursor: pointer;
}
.main-nav .main-nav__list > li > a::before {
top: 0;
bottom: 0;
width: 4px;
height: auto;
}
.main-nav .main-nav__list > li > a .highlight {
color: #38a9ff;
}
.main-nav .main-nav__list > li.menu-item-has-children > a::after {
display: none;
}
.main-nav .main-nav__list > li.nav-account__item--logout > a {
color: #6b6d70;
}
.main-nav .main-nav__list > li.nav-account__item--wishlist > a {
padding-right: 20px;
}
.main-nav .main-nav__list > li.nav-account__item--wishlist .highlight {
float: right;
}
.main-nav .main-nav__list > li.main-nav__item--social-links {
text-align: left;
padding: 0 15px 20px 15px;
}
.main-nav .main-nav__list > li.main-nav__item--social-links > a {
display: inline-block;
border-bottom: none;
padding: 15px;
}
.main-nav .main-nav__list > li.main-nav__item--social-links > a::before {
display: none;
}
.main-nav__list li:hover .main-nav__sub-0 {
display: none;
}
.main-nav__list li:hover .main-nav__sub-0 .main-nav__sub-1 {
display: none;
}
.main-nav__list .main-nav__sub-0 li.menu-item-has-children > a::after {
display: none;
}
.main-nav__list .main-nav__sub-0 .main-nav__sub-1 li:hover .main-nav__sub-2 {
display: none;
} .main-nav__toggle {
width: 30px;
height: 30px;
line-height: 30px;
position: absolute;
top: 8px;
right: 10px;
display: block;
cursor: pointer;
z-index: 1;
transition: all 0.4s ease;
text-align: center;
}
.main-nav__toggle::before {
display: block;
content: "\f107";
font-size: 10px;
line-height: 30px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #fff;
}
.main-nav__toggle-2 {
width: 20px;
height: 20px;
line-height: 20px;
position: absolute;
top: 3px;
right: 15px;
display: block;
cursor: pointer;
z-index: 1;
transition: all 0.4s ease;
text-align: center;
}
.main-nav__toggle-2::before {
display: block;
content: "\f107";
font-size: 10px;
line-height: 20px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #fff;
}
.main-nav__toggle--rotate {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
} .main-nav__sub-1 {
width: 100%;
position: static;
left: 100%;
top: 0;
display: none;
margin: 0;
padding: 0 !important;
border: solid 0px;
-webkit-transform: none;
transform: none;
opacity: 1;
visibility: visible;
}
.main-nav__sub-1 li {
margin: 0;
padding: 0;
position: relative;
}
.main-nav__sub-1 li a {
display: block;
padding: 10px 25px 10px 25px;
}
.main-nav__sub-1 li:hover > a {
color: #fff;
} .main-nav__sub-2 {
width: 100%;
position: static;
left: 100%;
top: 0;
display: none;
margin: 0;
padding: 0 !important;
border: solid 0px;
-webkit-transform: none;
transform: none;
opacity: 1;
visibility: visible;
}
.main-nav__sub-2 li {
margin: 0;
padding: 0;
position: relative;
}
.main-nav__sub-2 li a {
display: block;
padding: 10px 25px 10px 25px;
}
.main-nav__sub-2 li:hover > a {
color: #fff;
}
.main-nav .main-nav__list {
border-top: 1px solid #292c31;
height: 100%;
overflow-y: auto;
display: block;
}
.main-nav .main-nav__list > li {
width: 100%;
display: block;
float: none;
border-right: none;
background-color: transparent;
position: relative;
white-space: inherit;
}
.main-nav .main-nav__list > li > a {
padding: 16px 30px;
font-size: 11px;
text-align: left;
border-right: solid 0px;
background-color: transparent;
color: #fff;
line-height: 1.5em;
border-bottom: 1px solid #292c31;
position: static;
}
.main-nav .main-nav__list li.menu-item-has-children > a::after {
-webkit-transform: none;
transform: none;
top: 13px;
content: "\f107";
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #fff;
font-style: normal;
}
.main-nav__list .main-nav__sub-0 {
-webkit-transform: none;
transform: none;
opacity: 1;
display: none;
position: relative;
top: 0;
background-color: #292c31;
border: none;
padding: 15px 0;
visibility: visible;
}
.main-nav__list .main-nav__sub-0 > li > a {
line-height: 1.5em;
font-size: 10px;
padding: 7px 20px 7px 40px;
color: #9a9da2;
transition: color 0.3s ease;
border-bottom: none !important;
display: block;
text-align: left;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
}
.main-nav__list .main-nav__sub-0 > li > a:hover {
color: #fff;
background-color: transparent !important;
}
.main-nav__list .main-nav__sub-0 > li:hover > a {
background-color: transparent;
color: #fff;
}
.main-nav__list .main-nav__sub-0 > li:hover .main-nav__sub-1 {
background-color: transparent;
}
.main-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] {
padding: 15px 0;
background-color: transparent;
border: none;
}
.main-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li a {
line-height: 1.5em;
font-size: 10px;
padding: 7px 20px 7px 50px;
color: #9a9da2;
transition: color 0.3s ease;
border-bottom: none;
}
.main-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li a:hover {
color: #fff;
background-color: transparent;
}
.main-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li .main-nav__sub-2 li a {
padding-left: 60px;
}
.main-nav__list .has-mega-menu .main-nav__sub-0 {
background-color: #292c31;
color: #9a9da2;
display: none;
position: relative;
top: 0;
padding: 15px 0;
border: none;
-webkit-transform: none;
transform: none;
opacity: 1;
visibility: visible;
overflow: hidden;
}
.main-nav__list .has-mega-menu .main-nav__sub-0 .megamenu-item:not(.menu-item-has-children) {
padding-bottom: 15px;
}
.main-nav__list .has-mega-menu .main-nav__sub-0 .megamenu-item {
padding-left: 30px;
padding-right: 30px;
}
.main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__toggle-2 {
top: 8px;
}
.main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__title {
color: #fff;
font-size: 11px;
padding: 10px 0;
margin: 0;
}
.main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 {
width: 100%;
margin: 0;
padding: 0;
font-size: 13px;
}
.main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a {
padding: 7px 20px 7px 10px;
line-height: 1.5em;
font-size: 10px;
color: #9a9da2;
}
.main-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a:hover {
color: #fff;
}
.main-nav__list li:hover .main-nav__megamenu {
display: none;
position: relative;
top: 0;
} .main-nav__list li > .main-nav__sub-0,
.main-nav__list li:hover > .main-nav__sub-0,
.main-nav__sub-0 li > .main-nav__sub-1,
.main-nav__sub-0 li:hover > .main-nav__sub-1,
.main-nav__sub-1 li > .main-nav__sub-2,
.main-nav__sub-1 li:hover > .main-nav__sub-2 {
-webkit-transform: none;
transform: none;
visibility: visible;
}
.main-nav__sub-0 li:hover > .main-nav__sub-1,
.main-nav__sub-1 li > .main-nav__sub-2,
.main-nav__sub-1 li:hover > .main-nav__sub-2 {
opacity: 1;
}
}  .header-tertiary {
background-color: #fff;
}
@media (max-width: 991px) {
.header-tertiary .container {
padding-left: 0;
padding-right: 0;
}
}
.header-tertiary__inner {
position: relative;
z-index: 2;
}
@media (min-width: 992px) {
.header-tertiary__inner {
min-height: 62px;
}
}
@media (max-width: 991px) {
.secondary-nav {
padding: 24px 20px 24px 30px;
position: relative;
}
}
@media (min-width: 992px) {
.secondary-nav {
display: flex;
align-items: center;
justify-content: flex-end;
min-height: 62px;
}
}
.secondary-nav__heading {
margin: 0;
white-space: nowrap;
color: #31404b;
}
@media (max-width: 991px) {
.secondary-nav__heading {
font-size: 18px;
}
}
.secondary-nav__toggle {
display: block;
position: absolute;
right: 30px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
font-family: "Montserrat", sans-serif;
font-weight: 700;
line-height: 1.2em;
text-transform: uppercase;
font-size: 12px;
color: #9a9da2;
cursor: pointer;
}
.secondary-nav__toggle::after {
content: "\f078";
display: inline-block;
margin-left: 6px;
top: -1px;
position: relative;
transition: all 0.3s ease;
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
font-style: normal;
}
@media (min-width: 992px) {
.secondary-nav__toggle {
display: none;
}
}
.secondary-nav__toggle--rotate::after {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.secondary-nav__list {
text-align: right;
width: 100%;
padding: 0;
margin: 0;
list-style: none; }
.secondary-nav__list > li {
text-align: center;
display: inline-block;
padding: 0;
}
.secondary-nav__list > li > a {
display: block;
position: relative;
font-style: normal;
color: #31404b;
padding: 0 20px;
line-height: 62px;
text-decoration: none;
position: relative;
font-size: 12px;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 700;
transition: color 0.3s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
.secondary-nav__list > li > a {
padding-left: 20px;
padding-right: 20px;
}
}
.secondary-nav__list > li > a::before {
content: "";
display: block;
position: absolute;
left: 0;
bottom: 0;
height: 2px;
width: 100%;
background-color: transparent;
transition: background-color 0.3s ease;
}
.secondary-nav__list > li > a:hover {
color: #38a9ff;
background-color: transparent;
text-decoration: none;
}
.secondary-nav__list > li > a:hover::before {
background-color: #38a9ff;
}
.secondary-nav__list > li.current-menu-item > a {
color: #38a9ff;
text-decoration: none;
background-color: transparent;
}
.secondary-nav__list > li.current-menu-item > a::before {
background-color: #38a9ff;
}
.secondary-nav__list > li.menu-item-has-children > a::after {
content: "\f107";
display: inline-block;
margin-left: 9px;
top: -1px;
position: relative;
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #31404b;
font-style: normal;
}
@media (min-width: 992px) {
.secondary-nav__list > li:not(.has-mega-menu) {
position: relative;
}
} .secondary-nav__list li > .main-nav__sub-0,
.secondary-nav__list li > .main-nav__sub-1,
.secondary-nav__list li > .main-nav__sub-2 {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: rotateX(-75deg);
transform: rotateX(-75deg);
visibility: hidden;
}
.secondary-nav__list li:hover > .main-nav__sub-0,
.secondary-nav__list li:hover > .main-nav__sub-1,
.secondary-nav__list li:hover > .main-nav__sub-2 {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
visibility: visible;
}
.secondary-nav__list li.has-mega-menu:hover > .main-nav__sub-0 ul {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
visibility: visible;
} .secondary-nav__list .main-nav__sub-0 {
position: absolute;
top: 62px;
z-index: 1000;
margin: 0;
padding: 0;
min-width: 240px;
background-color: #1e2024;
border: solid 1px #292c31;
opacity: 0;
-webkit-transform-origin: 0% 0%;
transform-origin: 0% 0%;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, opacity 0.3s;
transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.secondary-nav__list .main-nav__sub-0 > li > a {
text-decoration: none;
}
.secondary-nav__list .main-nav__sub-0 > li.menu-item-has-children > a::after {
content: "\f105";
display: block;
position: absolute;
right: 24px;
top: 50%;
margin-top: -8px;
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
font-style: normal;
color: #fff;
}
.secondary-nav__list .no-mega-menu li {
position: relative;
margin: 0;
padding: 0;
}
.secondary-nav__list .no-mega-menu li a {
display: block;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 700;
font-style: normal;
font-size: 11px;
color: #1e2024;
text-align: left;
line-height: 1.5em;
padding: 16px 30px;
letter-spacing: normal;
border-bottom: 1px solid #292c31;
transition: background-color 0.3s ease;
}
.secondary-nav__list .no-mega-menu li a:hover {
color: #1e2024;
background-color: transparent;
}
.secondary-nav__list .no-mega-menu li:last-child > a {
border-bottom: none;
}
.secondary-nav__list li:hover .main-nav__sub {
display: block;
} .secondary-nav__list {  }
.secondary-nav__list .main-nav__sub-0 li {
position: relative;
padding: 0;
margin: 0;
display: block;
}
.secondary-nav__list .main-nav__sub-0 li:hover .main-nav__sub-1 {
display: block;
opacity: 1;
list-style: none;
padding: 0;
background-color: #1e2024;
}
.secondary-nav__list .main-nav__sub-1 {
min-width: 240px;
border: solid 1px #292c31;
position: absolute;
left: 100%;
top: -1px;
margin: 0;
padding: 0;
opacity: 0;
-webkit-transform-origin: 0% 0%;
transform-origin: 0% 0%;
transition: opacity 0.4s, -webkit-transform 0.4s;
transition: transform 0.4s, opacity 0.4s;
transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.secondary-nav__list .main-nav__sub-1 li:hover .main-nav__sub-2 {
opacity: 1;
list-style: none;
padding: 0;
border: solid 1px #292c31;
background-color: #1e2024;
}
.secondary-nav__list .main-nav__sub-2 {
min-width: 240px;
position: absolute;
left: 100%;
top: -1px;
margin: 0;
padding: 0;
opacity: 0;
-webkit-transform-origin: 0% 0%;
transform-origin: 0% 0%;
transition: opacity 0.4s, -webkit-transform 0.4s;
transition: transform 0.4s, opacity 0.4s;
transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
@media only screen and (min-width: 992px) {
.secondary-nav__list li:hover > .main-nav__sub-0,
.secondary-nav__list .main-nav__sub-0 li:hover > .main-nav__sub-1,
.secondary-nav__list .main-nav__sub-1 li:hover > .main-nav__sub-2 {
display: block;
}
.secondary-nav__list li.has-mega-menu:hover > .megamenu-item {
display: flex;
}
} @media only screen and (max-width: 991px) {
.secondary-nav {
margin: 0;
z-index: 103;
background-color: #fff;
}
.secondary-nav .secondary-nav__list {
position: absolute;
left: 0;
top: 100%;
background-color: #fff;
}
.secondary-nav .secondary-nav__list > li > a::before {
top: 0;
bottom: 0;
width: 4px;
height: auto;
}
.secondary-nav .secondary-nav__list > li > a .highlight {
color: #38a9ff;
}
.secondary-nav .secondary-nav__list > li.menu-item-has-children > a::after {
display: none;
}
.secondary-nav__list {   }
.secondary-nav__list li:hover .main-nav__sub-0 {
display: none;
}
.secondary-nav__list li:hover .main-nav__sub-0 .main-nav__sub-1 {
display: none;
}
.secondary-nav__list .main-nav__sub-0 li.menu-item-has-children > a::after {
display: none;
}
.secondary-nav__list .main-nav__sub-0 .main-nav__sub-1 li:hover .main-nav__sub-2 {
display: none;
}
.secondary-nav__list .main-nav__toggle {
width: 30px;
height: 30px;
line-height: 30px;
position: absolute;
top: 8px;
right: 10px;
display: block;
cursor: pointer;
z-index: 1;
transition: all 0.4s ease;
text-align: center;
}
.secondary-nav__list .main-nav__toggle::before {
display: block;
content: "\f107";
font-size: 10px;
line-height: 30px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #1e2024;
}
.secondary-nav__list .main-nav__toggle-2 {
width: 20px;
height: 20px;
line-height: 20px;
position: absolute;
top: 3px;
right: 15px;
display: block;
cursor: pointer;
z-index: 1;
transition: all 0.4s ease;
text-align: center;
}
.secondary-nav__list .main-nav__toggle-2::before {
display: block;
content: "\f107";
font-size: 10px;
line-height: 20px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #1e2024;
}
.secondary-nav__list .main-nav__toggle--rotate {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.secondary-nav__list .main-nav__sub-1 {
width: 100%;
position: static;
left: 100%;
top: 0;
display: none;
margin: 0;
padding: 0 !important;
border: solid 0px;
-webkit-transform: none;
transform: none;
opacity: 1;
visibility: visible;
}
.secondary-nav__list .main-nav__sub-1 li {
margin: 0;
padding: 0;
position: relative;
}
.secondary-nav__list .main-nav__sub-1 li a {
display: block;
padding: 10px 25px 10px 25px;
}
.secondary-nav__list .main-nav__sub-1 li:hover > a {
color: #fff;
}
.secondary-nav__list .main-nav__sub-2 {
width: 100%;
position: static;
left: 100%;
top: 0;
display: none;
margin: 0;
padding: 0 !important;
border: solid 0px;
-webkit-transform: none;
transform: none;
opacity: 1;
visibility: visible;
}
.secondary-nav__list .main-nav__sub-2 li {
margin: 0;
padding: 0;
position: relative;
}
.secondary-nav__list .main-nav__sub-2 li a {
display: block;
padding: 10px 25px 10px 25px;
}
.secondary-nav__list .main-nav__sub-2 li:hover > a {
color: #fff;
}
.secondary-nav .secondary-nav__list {
border-top: 1px solid #e4e7ed;
display: none;
}
.secondary-nav .secondary-nav__list > li {
width: 100%;
display: block;
float: none;
border-right: none;
background-color: transparent;
position: relative;
white-space: inherit;
}
.secondary-nav .secondary-nav__list > li > a {
padding: 16px 30px;
font-size: 11px;
text-align: left;
border-right: solid 0px;
background-color: transparent;
color: #31404b;
line-height: 1.5em;
border-bottom: 1px solid #e4e7ed;
position: static;
}
.secondary-nav .secondary-nav__list li.menu-item-has-children > a::after {
-webkit-transform: none;
transform: none;
top: 13px;
content: "\f107";
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #fff;
font-style: normal;
}
.secondary-nav__list .main-nav__sub-0 {
-webkit-transform: none;
transform: none;
opacity: 1;
display: none;
position: relative;
top: 0;
background-color: #e4e7ed;
border: none;
padding: 15px 0;
visibility: visible;
}
.secondary-nav__list .main-nav__sub-0 > li > a {
line-height: 1.5em;
font-size: 10px;
padding: 7px 20px 7px 40px;
color: #31404b;
transition: color 0.3s ease;
border-bottom: none !important;
display: block;
text-align: left;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
}
.secondary-nav__list .main-nav__sub-0 > li > a:hover {
color: #31404b;
background-color: transparent !important;
}
.secondary-nav__list .main-nav__sub-0 > li:hover > a {
background-color: transparent;
color: #31404b;
}
.secondary-nav__list .main-nav__sub-0 > li:hover .main-nav__sub-1 {
background-color: transparent;
}
.secondary-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] {
padding: 15px 0;
background-color: transparent;
border: none;
}
.secondary-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li a {
line-height: 1.5em;
font-size: 10px;
padding: 7px 20px 7px 50px;
color: #31404b;
transition: color 0.3s ease;
border-bottom: none;
}
.secondary-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li a:hover {
color: #31404b;
background-color: transparent;
}
.secondary-nav__list .main-nav__sub-0 > li [class*=main-nav__sub-] li .main-nav__sub-2 li a {
padding-left: 60px;
}
.secondary-nav__list .has-mega-menu .main-nav__sub-0 {
background-color: #e4e7ed;
color: #31404b;
display: none;
position: relative;
top: 0;
padding: 15px 0;
border: none;
-webkit-transform: none;
transform: none;
opacity: 1;
visibility: visible;
overflow: hidden;
}
.secondary-nav__list .has-mega-menu .main-nav__sub-0 .megamenu-item:not(.menu-item-has-children) {
padding-bottom: 15px;
}
.secondary-nav__list .has-mega-menu .main-nav__sub-0 .megamenu-item {
padding-left: 30px;
padding-right: 30px;
}
.secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__toggle-2 {
top: 8px;
}
.secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__title {
color: #fff;
font-size: 11px;
padding: 10px 0;
margin: 0;
}
.secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 {
width: 100%;
margin: 0;
padding: 0;
font-size: 13px;
}
.secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a {
padding: 7px 20px 7px 10px;
line-height: 1.5em;
font-size: 10px;
color: #31404b;
}
.secondary-nav__list .has-mega-menu .main-nav__sub-0 .main-nav__sub-1 > li > a:hover {
color: #31404b;
}
.secondary-nav__list li:hover .main-nav__megamenu {
display: none;
position: relative;
top: 0;
} .secondary-nav__list li > .main-nav__sub-0,
.secondary-nav__list li:hover > .main-nav__sub-0,
.main-nav__sub-0 li > .main-nav__sub-1,
.main-nav__sub-0 li:hover > .main-nav__sub-1,
.main-nav__sub-1 li > .main-nav__sub-2,
.main-nav__sub-1 li:hover > .main-nav__sub-2 {
-webkit-transform: none;
transform: none;
visibility: visible;
}
.main-nav__sub-0 li:hover > .main-nav__sub-1,
.main-nav__sub-1 li > .main-nav__sub-2,
.main-nav__sub-1 li:hover > .main-nav__sub-2 {
opacity: 1;
}
} .hero-unit {
background-color: #27313b;
overflow: hidden;
}
.hero-unit__container {
height: 400px;
position: relative;
}
@media (min-width: 1200px) {
.hero-unit__container {
height: 640px;
}
}
.hero-unit__content {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
left: 0;
right: 0;
text-align: center;
}
@media (min-width: 992px) {
.hero-unit__content {
width: 50%;
}
}
@media (min-width: 992px) {
.hero-unit__content--right-center {
left: auto;
}
}
@media (min-width: 992px) {
.hero-unit__content--center-center {
margin-left: auto;
margin-right: auto;
}
}
.hero-unit__title {
color: #fff;
margin-bottom: 0.75em;
font-size: 30px;
}
@media (min-width: 1200px) {
.hero-unit__title {
font-size: 64px;
margin-bottom: 0.25em;
}
}
.hero-unit__subtitle {
color: #fff;
margin-bottom: 0.25em;
font-size: 12px;
}
@media (min-width: 992px) {
.hero-unit__subtitle {
font-size: 18px;
}
}
.hero-unit__desc {
margin-bottom: 3em;
width: 70%;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 768px) {
.hero-unit__desc {
width: 60%;
}
}
@media (min-width: 992px) {
.hero-unit__desc {
width: 80%;
}
}
@media (min-width: 1199px) {
.hero-unit__desc {
width: 70%;
}
}
.hero-unit__btn.btn.btn-inverse.btn-outline {
color: #fff;
}
.hero-unit__decor {
display: block;
color: #ffdc11;
margin-bottom: 5px;
}
@media (min-width: 992px) {
.hero-unit__decor {
margin-bottom: 11px;
}
}
.hero-unit__decor .fa {
margin: 0 6px;
}
.hero-unit__img {
position: absolute;
right: 0;
bottom: 0;
max-width: 50%;
}
.hero-unit__img img {
max-height: 100%;
}
@media (max-width: 991px) {
.hero-unit__img {
display: none;
}
} .hero-slider-wrapper {
position: relative;
z-index: 0;
}
.hero-slider {
overflow: hidden;
background-color: #27313b;
}
.hero-slider,
.hero-slider .hero-slider__item {
height: 320px;
}
@media (min-width: 768px) {
.hero-slider,
.hero-slider .hero-slider__item {
height: 480px;
}
}
@media (min-width: 992px) {
.hero-slider,
.hero-slider .hero-slider__item {
height: 640px;
}
}
@media (min-width: 1200px) {
.hero-slider,
.hero-slider .hero-slider__item {
height: 720px;
}
}
.posts--slider-top-news .hero-slider__item {
height: 320px;
}
@media (min-width: 768px) {
.posts--slider-top-news .hero-slider__item {
height: 480px;
}
}
@media (min-width: 992px) {
.posts--slider-top-news .hero-slider__item {
height: 640px;
}
}
@media (min-width: 1200px) {
.posts--slider-top-news .hero-slider__item {
height: 660px;
}
}
.hero-slider__item {
position: relative;
}
.hero-slider__item-image {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: cover;
}
.hero-slider__item-container {
display: block;
position: absolute;
z-index: 3;
left: 0;
right: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
text-align: center;
}
.hero-slider__item-container .post__meta-block--top {
padding-bottom: 0;
}
.hero-slider__item-container .posts__title .highlight {
color: #c2ff1f;
}
.hero-slider__item-link {
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 2;
}
.hero-slider-thumbs-wrapper {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 3;
}
@media (max-width: 991px) {
.hero-slider-thumbs-wrapper {
display: none;
}
}
.hero-slider-thumbs .posts__title {
color: #fff;
font-size: 15px;
}
.hero-slider-thumbs .posts__cat {
margin-bottom: 18px;
}
.hero-slider-thumbs .posts__cat-label {
font-size: 10px;
}
.hero-slider-thumbs .posts__inner {
padding: 0 30% 37px 0;
}
.hero-slider-thumbs .posts__date,
.hero-slider-thumbs .posts__comments {
color: rgba(255, 255, 255, 0.6);
}
.hero-slider-thumbs__item {
opacity: 0.3;
transition: opacity 0.3s ease;
}
.hero-slider-thumbs__item.slick-current {
opacity: 1;
}
.hero-slider-thumbs__item:hover {
cursor: pointer;
}
.hero-slider--overlay-on .hero-slider__item::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: #000;
opacity: 0.6;
z-index: 2;
}
rs-dotted.threexthree {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/gridtile_4x4.gif);
}
.metis.tparrows:hover::before {
color: #fff !important;
}
.label--revslider {
font-size: 10px !important;
line-height: 21px !important;
padding-top: 0 !important;
padding-bottom: 0 !important;
} .pushy-panel__toggle {
width: 62px;
min-width: 62px;
height: 62px;
line-height: 62px;
background-color: #38a9ff;
vertical-align: middle;
margin-left: 27px;
position: relative;
}
@media (min-width: 992px) {
.pushy-panel__toggle {
display: inline-block;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.pushy-panel__toggle {
margin-left: 18px;
}
}
.pushy-panel__toggle:hover .pushy-panel__line {
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
.pushy-panel__toggle:hover .pushy-panel__line::before, .pushy-panel__toggle:hover .pushy-panel__line::after {
width: 50%;
}
.pushy-panel__toggle:hover .pushy-panel__line::before {
top: 0;
-webkit-transform: translateX(-3px) translateY(1px) rotate(-45deg);
transform: translateX(-3px) translateY(1px) rotate(-45deg);
}
.pushy-panel__toggle:hover .pushy-panel__line::after {
bottom: 0;
-webkit-transform: translateX(-3px) translateY(-1px) rotate(45deg);
transform: translateX(-3px) translateY(-1px) rotate(45deg);
}
.pushy-panel__line {
top: 50%;
left: 23px;
right: 24px;
width: 16px;
transition: -webkit-transform 0.3s;
transition: transform 0.3s;
transition: transform 0.3s, -webkit-transform 0.3s;
}
.pushy-panel__line, .pushy-panel__line::before, .pushy-panel__line::after {
display: block;
position: absolute;
height: 2px;
background-color: #fff;
}
.pushy-panel__line::before, .pushy-panel__line::after {
content: "";
width: 100%;
}
.pushy-panel__line::before {
top: -5px;
-webkit-transform-origin: top left;
transform-origin: top left;
transition: width 0.3s, top 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, width 0.3s, top 0.3s;
transition: transform 0.3s, width 0.3s, top 0.3s, -webkit-transform 0.3s;
}
.pushy-panel__line::after {
bottom: -5px;
-webkit-transform-origin: bottom left;
transform-origin: bottom left;
transition: width 0.3s, bottom 0.3s, -webkit-transform 0.3s;
transition: transform 0.3s, width 0.3s, bottom 0.3s;
transition: transform 0.3s, width 0.3s, bottom 0.3s, -webkit-transform 0.3s;
}
.pushy-panel {
position: fixed;
z-index: 1000;
inset-inline-end: 0;
-webkit-transform: translateX(100%);
transform: translateX(100%);
top: 0;
bottom: 0;
width: 380px;
max-width: 100%;
text-align: left;
transition: all 0.4s ease-in-out;
}
body.admin-bar .pushy-panel {
top: 32px;
}
@media (max-width: 782px) {
body.admin-bar .pushy-panel {
top: 46px;
}
}
.site-wrapper--has-overlay-pushy .pushy-panel {
-webkit-transform: translateX(0);
transform: translateX(0);
}
.pushy-panel .posts--simple-list .posts__title + .posts__date {
margin-top: 0.4em;
}
.pushy-panel .posts--simple-list .posts__item {
margin-bottom: 44px;
}
.pushy-panel .posts--simple-list .posts__excerpt {
overflow: hidden;
clear: both;
}
.pushy-panel .posts--simple-list--lg .posts__item {
margin-bottom: 44px !important;
}
.pushy-panel--active {
right: 0;
}
.pushy-panel__inner {
width: 100%;
height: 100%;
background-color: #fff;
position: relative;
overflow-y: scroll;
-ms-overflow-style: none;
-webkit-overflow-scrolling: touch;
}
.pushy-panel__back-btn {
display: block;
width: 49px;
height: 44px;
position: absolute;
right: 32px;
top: 22px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath fill='%2331404b' d='M14.000,6.000 L4.586,6.000 L6.414,7.828 L5.000,9.242 L0.757,5.000 L2.172,3.585 L2.172,3.586 L5.000,0.757 L6.414,2.171 L4.586,4.000 L14.000,4.000 L14.000,6.000 Z'/%3E%3C/svg%3E");
background-position: center center;
background-repeat: no-repeat;
background-size: 13px 8px;
}
.pushy-panel__back-btn:hover {
cursor: pointer;
}
.pushy-panel__header {
padding: 28px 30px 60px 30px;
text-align: center;
}
.pushy-panel__content {
padding: 0 20px;
}
@media (min-width: 992px) {
.pushy-panel__content {
padding: 0 40px;
}
}
.pushy-panel__logo-img {
width: 94px;
height: auto;
}
.pushy-panel--dark .pushy-panel__inner {
background-color: #292c31;
}
.pushy-panel--dark .widget--side-panel .widget__title {
color: #fff;
}
.pushy-panel--dark .btn.btn-outline {
border-color: #3f4653;
color: #fff;
}
.pushy-panel--dark .posts__title a {
color: #fff;
}
.pushy-panel--dark .posts__title a:hover {
color: #fff;
}
.pushy-panel--dark .pushy-panel__back-btn {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 10'%3E%3Cpath fill='%23ffffff' d='M14.000,6.000 L4.586,6.000 L6.414,7.828 L5.000,9.242 L0.757,5.000 L2.172,3.585 L2.172,3.586 L5.000,0.757 L6.414,2.171 L4.586,4.000 L14.000,4.000 L14.000,6.000 Z'/%3E%3C/svg%3E");
}
.pushy-panel__alert {
margin: 6em 0 0 0;
} .page-heading {
background-color: #1e2024;
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/soccer/page-heading.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
text-align: center;
padding: 50px 0;
position: relative;
}
@media (min-width: 992px) {
.page-heading {
padding: 110px 0 106px 0;
}
}
.page-heading::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/page-heading-pattern.png);
background-size: auto;
background-position: 100% 0;
background-repeat: no-repeat;
opacity: 0.4;
}
.page-heading.effect-duotone .container {
position: relative;
z-index: 3;
}
.page-heading--no-bg::before {
background-image: none;
background-color: transparent;
}
.page-heading--horizontal {
text-align: inherit;
}
@media (max-width: 767px) {
.page-heading--horizontal .row {
display: block;
text-align: center;
}
}
.page-heading--horizontal .page-header__desc {
padding-left: 0;
padding-right: 0;
}
.page-heading__title {
text-transform: uppercase;
color: #fff;
letter-spacing: -0.02em;
font-size: 24px;
font-weight: 700;
line-height: 1em;
margin-bottom: 0;
font-style: normal;
font-family: "Montserrat", sans-serif;
}
@media (min-width: 992px) {
.page-heading__title {
font-size: 30px;
}
}
.page-heading__title .highlight {
color: #c2ff1f;
}
.page-header__desc {
line-height: 1.5em;
padding: 20px 10px 0 10px;
}
.page-header__desc p:last-child {
margin-bottom: 0;
}
@media (min-width: 992px) {
.page-heading--post-3 {
padding: 110px 0 106px 0;
}
}
.page-heading--overlay {
position: relative;
overflow: hidden;
}
.page-heading--overlay::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-image: none;
background-color: rgba(0, 0, 0, 0.6);
opacity: 1;
}
.page-heading--duotone {
position: relative;
overflow: hidden;
}
.page-heading--duotone::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-image: none;
background-color: transparent;
}
.page-heading--duotone .container {
position: relative;
z-index: 3;
}
.page-heading--simple {
height: 240px;
}
.page-heading--simple::before {
display: none;
}
@media (min-width: 768px) {
.page-heading--simple {
height: 320px;
}
}
@media (min-width: 992px) {
.page-heading--simple {
height: 360px;
}
}
@media (min-width: 1200px) {
.page-heading--simple {
height: 420px;
}
} .site-content,
.section {
padding: 30px 0;
}
@media (min-width: 992px) {
.site-content,
.section {
padding: 60px 0;
}
}
.section--bg1 {
background-color: #fff;
}
.section--no-paddings {
padding: 0;
}
@media (min-width: 992px) {
.section--no-paddings {
padding: 0;
}
} .footer {
font-size: 14px;
line-height: 22px;
color: rgba(154, 157, 162, 0.6);
} .footer-widgets {
background: #1e2024;
position: relative;
}
.footer-widgets [class^=col-]:last-child .widget--footer {
margin-bottom: 0;
}
@media (max-width: 767px) {
.footer-widgets.effect-duotone {
background-image: none;
}
}
.footer-widgets.effect-duotone::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: #1e2024;
}
@supports (position: -ms-page) {
.footer-widgets.effect-duotone::after {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: #fff;
opacity: 0.9;
}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.footer-widgets.effect-duotone::after {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: #fff;
opacity: 0.9;
}
}
.footer-widgets--overlay::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: #1e2024;
opacity: 0.8;
}
.footer-widgets__inner {
padding: 30px 0;
position: relative;
z-index: 4;
}
@media (min-width: 768px) {
.footer-widgets__inner {
padding: 60px 0 70px;
}
}
@media (min-width: 992px) {
.footer-widgets__inner {
padding: 80px 0 96px;
}
}
.footer-col-inner {
padding: 0 7px;
} .footer-logo {
padding: 0 0 50px 0;
text-align: center;
width: 40%;
margin: 0 auto;
}
@media (min-width: 992px) {
.footer-logo {
width: auto;
margin: 0;
padding: 30px 0;
}
}
.footer-logo__img {
max-width: 100%;
height: auto;
}
.footer-logo--has-txt {
text-align: left;
width: 100%;
padding-bottom: 30px;
}
@media (min-width: 992px) {
.footer-logo--has-txt {
padding: 0 0 25px 0;
margin-top: -25px;
}
}
.footer-logo--has-txt .footer-logo__img {
display: inline-block;
vertical-align: middle;
margin-right: 16px;
}
.footer-logo--has-txt .footer-logo__heading {
display: inline-block;
vertical-align: middle;
}
.footer-logo--has-txt .footer-logo__txt {
margin-bottom: 0;
color: #fff;
}
.footer-logo--has-txt .footer-logo__tagline {
display: block;
color: #9a9da2;
font-size: 12px;
}
.footer-logo--has-txt + .footer-col-inner .widget__title {
display: none;
} .footer-secondary {
background-color: #16171a;
}
@media (min-width: 768px) {
.footer-secondary--has-decor {
background-color: #38a9ff;
}
}
.footer-secondary--has-decor .footer-secondary__inner {
border-top: none;
background-color: #16171a;
padding: 12px 0 26px 0;
}
@media (min-width: 992px) {
.footer-secondary--has-decor .footer-secondary__inner {
padding: 12px 0 26px 0;
}
}
.footer-secondary--has-decor .footer-secondary__inner::before, .footer-secondary--has-decor .footer-secondary__inner::after {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
width: 120px;
background-color: #38a9ff;
display: none;
}
@media (min-width: 768px) {
.footer-secondary--has-decor .footer-secondary__inner::before, .footer-secondary--has-decor .footer-secondary__inner::after {
display: block;
}
}
@media (max-width: 991px) {
.footer-secondary--has-decor .footer-secondary__inner::before, .footer-secondary--has-decor .footer-secondary__inner::after {
width: 80px;
}
}
.footer-secondary--has-decor .footer-secondary__inner::before {
left: -20px;
-webkit-transform: skew(20deg);
transform: skew(20deg);
}
.footer-secondary--has-decor .footer-secondary__inner::after {
right: -20px;
-webkit-transform: skew(-20deg);
transform: skew(-20deg);
}
.footer-secondary__inner {
background-color: #16171a;
padding: 24px 0;
position: relative;
border-top: 1px solid transparent;
}
@media (min-width: 992px) {
.footer-secondary__inner {
padding: 24px 0;
}
}
.footer-nav {
list-style-type: none;
padding: 0;
margin: 0;
text-align: center;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-size: 11px;
line-height: 1.2em;
font-weight: bold;
}
@media (max-width: 479px) {
.footer-nav {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
}
.footer-nav .menu-item {
display: inline-block;
padding: 0 2px;
}
@media (max-width: 479px) {
.footer-nav .menu-item {
padding: 0.25em 0;
}
}
@media (min-width: 480px) {
.footer-nav .menu-item {
padding: 0 10px;
}
}
@media (min-width: 768px) {
.footer-nav .menu-item {
padding: 0 16px;
}
}
@media (min-width: 992px) {
.footer-nav .menu-item {
padding: 0 24px;
}
}
@media (min-width: 1200px) {
.footer-nav .menu-item {
padding: 0 32px;
}
}
.footer-nav .menu-item > a {
color: #fff;
display: inline-block;
padding: 0.5em;
transition: color 0.2s ease;
}
.footer-nav .menu-item > a:hover {
color: #38a9ff;
}
@media (max-width: 479px) {
.footer-nav--condensed .footer-nav .menu-item {
display: inline-block;
padding: 0;
text-align: center;
width: auto;
float: none;
}
}
@media (min-width: 480px) {
.footer-nav--condensed .footer-nav .menu-item {
padding: 0 8px;
}
}
@media (min-width: 768px) {
.footer-nav--condensed .footer-nav .menu-item {
padding: 0 10px;
}
}
@media (min-width: 992px) {
.footer-nav--condensed .footer-nav .menu-item {
padding: 0 12px;
}
}
@media (min-width: 1200px) {
.footer-nav--condensed .footer-nav .menu-item {
padding: 0 15px;
}
}
.footer-nav--right {
text-align: center;
}
@media (min-width: 992px) {
.footer-nav--right {
text-align: right;
}
.footer-nav--right .menu-item {
padding-right: 0 !important;
}
}
.footer-nav--sm {
font-size: 9px;
} .sponsors {
display: flex;
align-items: center;
justify-content: center;
padding: 24px 0;
flex-wrap: wrap;
position: relative;
z-index: 4;
}
.footer-widgets__inner + .sponsors-container .sponsors::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 8px;
right: 8px;
height: 1px;
background-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
.sponsors {
margin-top: -16px;
flex-wrap: nowrap;
padding: 35px 0 47px 0;
}
}
@media (min-width: 992px) {
.sponsors {
margin-top: -24px;
}
}
.sponsors-title {
font-size: 9px;
line-height: 1.2em;
color: #fff;
margin: 0 0 12px 0;
text-align: center;
}
@media (min-width: 768px) {
.sponsors-title {
margin: 0 25px 0 0;
text-align: right;
}
}
.sponsors-logos {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
@media (max-width: 767px) {
.sponsors-logos {
flex-wrap: wrap;
}
}
.sponsors__item {
text-align: center;
}
@media (max-width: 1199px) {
.sponsors__item {
padding: 0 10px;
}
}
@media (max-width: 767px) {
.sponsors__item {
padding: 10px;
}
}
@media (min-width: 992px) {
.sponsors__item {
margin: 0 12px;
}
}
@media (min-width: 1200px) {
.sponsors__item {
margin: 0 25px;
}
}
.sponsors__item img {
opacity: 0.2;
transition: opacity 0.3s ease;
}
.sponsors__item img:hover {
opacity: 1;
}
@media (max-width: 767px) {
.sponsors--default .sponsors__item {
width: 33.3%;
}
}
@media (max-width: 479px) {
.sponsors--default .sponsors__item {
width: 50%;
}
}
.sponsors--carousel .slick-track {
display: flex !important;
align-items: center !important;
}
.sponsors--carousel .sponsors__item img {
display: inline-block;
} .footer-info {
background-color: #1e2024;
}
@media (min-width: 992px) {
.footer-info .footer-logo--has-txt {
width: auto;
padding: 0;
margin-top: 0;
margin-right: 30px;
text-align: left;
}
}
@media (min-width: 1200px) {
.footer-info .footer-logo--has-txt {
margin-right: 58px;
}
}
.footer-info .footer-logo--has-txt .footer-logo__img {
margin-right: 8px;
}
.footer-info .footer-logo--has-txt .footer-logo__txt {
font-size: 16px;
text-transform: uppercase;
}
.footer-info__inner {
display: flex;
justify-content: center;
align-items: center;
border-bottom: 1px solid transparent;
padding: 20px 15px;
flex-wrap: wrap;
}
@media (min-width: 992px) {
.footer-info__inner {
padding: 44px 0 50px 0;
flex-wrap: nowrap;
}
} .footer-copyright {
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #9a9da2;
text-align: center;
}
@media (min-width: 992px) {
.footer-copyright {
text-align: left;
}
}
.footer-copyright a {
color: #fff;
transition: color 0.2s ease;
}
.footer-copyright a:hover {
color: #38a9ff;
} .footer-social {
background: #16171a;
}
.footer-social__list {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 25px 0 20px 0;
margin: 0;
}
.footer-social__item {
margin: 0;
}
@media (min-width: 768px) {
.footer-social__item {
margin: 0 10px;
}
}
@media (min-width: 992px) {
.footer-social__item {
margin: 0;
}
}
@media (min-width: 1200px) {
.footer-social__item {
margin: 0 15px;
}
}
.footer-social__link {
display: flex;
align-items: center;
padding: 5px 10px 10px 10px;
}
.footer-social__icon {
font-size: 22px;
}
.footer-social__icon svg {
display: inline-block;
vertical-align: top;
width: 18px;
height: 18px;
fill: #1892ed;
}
.footer-social__txt {
text-transform: uppercase;
font-weight: 700;
font-family: "Montserrat", sans-serif;
display: none;
}
@media (min-width: 992px) {
.footer-social__txt {
display: block;
padding: 0 0 0 15px;
}
}
.footer-social__name {
display: block;
font-size: 12px;
line-height: 1.2em;
padding-bottom: 0.25em;
color: #fff;
}
.footer-social__user {
display: block;
font-size: 10px;
line-height: 1.2em;
font-style: italic;
color: #a59cae;
}  .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; } .wp-caption {
margin-bottom: 1.5em;
max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
display: block;
margin: 0 auto;
}
.wp-caption-text {
text-align: center;
}
.wp-caption .wp-caption-text {
margin: 0;
} .comment-content a {
word-wrap: break-word;
}
.bypostauthor {
font-style: normal;
} .alignleft {
float: left;
margin: 0 30px 20px 0;
}
.alignright {
float: right;
margin: 0 0 20px 30px;
}
.aligncenter {
display: block;
margin: 0 auto 20px auto;
clear: both;
}
.aligncenter.wp-caption {
margin: 0 auto 20px auto;
max-width: 100%;
}
.alignnone {
margin: 0 0 20px 0;
clear: both;
}
.post--style-5 .wp-block-image.size-full {
display: block !important;
}
@media (min-width: 992px) {
.post--style-5 .wp-block-image.size-full {
margin: 0 -80px 0 -80px;
max-width: calc(100% + 160px) !important;
}
}
@media (min-width: 1200px) {
.post--style-5 .wp-block-image.size-full {
margin: 0 -100px 0 -100px;
max-width: calc(100% + 200px) !important;
}
}
.post--style-5 .wp-block-image.size-full figcaption {
text-align: center;
}
@media (min-width: 992px) {
.post--style-5 .wp-block-image.size-full figcaption {
white-space: nowrap;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
}
.post--style-7 .post__content--inner-left .wp-block-image.size-full {
display: block !important;
}
@media (min-width: 992px) {
.post--style-7 .post__content--inner-left .wp-block-image.size-full {
margin-left: -80px;
max-width: calc(100% + 80px) !important;
}
}
@media (min-width: 1200px) {
.post--style-7 .post__content--inner-left .wp-block-image.size-full {
margin-left: -100px;
max-width: calc(100% + 100px) !important;
}
} .wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.jetpack-video-wrapper {
position: relative;
padding-bottom: 56.25%;
overflow: hidden;
max-width: 100%;
height: 0;
}
.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.wp-embed-aspect-16-9 .wp-block-embed__wrapper object,
.wp-embed-aspect-16-9 .wp-block-embed__wrapper embed,
.jetpack-video-wrapper iframe,
.jetpack-video-wrapper object,
.jetpack-video-wrapper embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}  .form-post-pass-protected .form-group + p {
display: inline;
} .gallery { }
.gallery .gallery-item {
display: inline-block;
text-align: left;
vertical-align: top;
margin: 0 0 1em;
padding: 0 1em 0 0;
width: 50%;
}
.gallery .gallery-columns-1 .gallery-item {
width: 100%;
}
.gallery .gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery .gallery-item a,
.gallery .gallery-item a:hover,
.gallery .gallery-item a:focus {
box-shadow: none;
background: none;
display: inline-block;
max-width: 100%;
}
.gallery .gallery-item a img {
display: block;
transition: -webkit-filter 0.2s ease-in;
transition: filter 0.2s ease-in;
transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.gallery .gallery-item a:hover img,
.gallery .gallery-item a:focus img {
-webkit-filter: opacity(60%);
filter: opacity(60%);
}
.gallery .gallery-caption {
display: block;
text-align: left;
padding: 0 10px 0 0;
margin-bottom: 0;
}
@media (min-width: 480px) {
.gallery .gallery-item {
max-width: 25%;
}
.gallery.gallery-columns-1 .gallery-item {
max-width: 100%;
}
.gallery.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
max-width: 33.33%;
}
.gallery.gallery-columns-4 .gallery-item {
max-width: 25%;
}
}
@media (min-width: 768px) {
.gallery.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
}  ul.posts {
list-style-type: none;
padding: 0;
}
ul.posts:not(.post-grid) {
margin: 0;
}
.posts__item {
margin-bottom: 1em;
}
.posts__item:last-child {
margin-bottom: 0;
}
.posts__cat {
display: block;
overflow: hidden;
margin-bottom: 4px;
padding-right: 5px;
z-index: 1;
}
.posts__cat-label {
background-color: #1892ed;
display: block;
float: left;
margin-bottom: 4px;
font-style: normal;
}
.posts__cat-label + .posts__title {
margin-top: 0.55em;
}
.posts__cat-label + .posts__cat-label {
margin-left: 0.5em !important;
}
.posts__item--category-1 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-1 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-1 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__item--category-2 .posts__cta {
background-color: #07e0c4;
}
.posts__item--category-2 .posts__title--color-hover > a:hover {
color: #07e0c4;
}
.posts__item--category-2 .posts__thumb--hover::before {
background-color: #07e0c4;
}
.posts__item--category-3 .posts__cta {
background-color: #9fe900;
}
.posts__item--category-3 .posts__title--color-hover > a:hover {
color: #9fe900;
}
.posts__item--category-3 .posts__thumb--hover::before {
background-color: #9fe900;
}
.posts__item--category-4 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-4 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-4 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__item--category-5 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-5 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-5 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__item--category-6 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-6 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-6 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__item--category-7 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-7 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-7 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__item--category-8 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-8 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-8 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__item--category-9 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-9 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-9 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__item--category-10 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-10 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-10 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__item--category-11 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-11 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-11 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__item--category-12 .posts__cta {
background-color: #38a9ff;
}
.posts__item--category-12 .posts__title--color-hover > a:hover {
color: #38a9ff;
}
.posts__item--category-12 .posts__thumb--hover::before {
background-color: #38a9ff;
}
.posts__cat-label--category-1 {
background-color: #38a9ff;
}
.posts__cat-label--category-2 {
background-color: #07e0c4;
}
.posts__cat-label--category-3 {
background-color: #9fe900;
}
.posts__cat-label--category-4 {
background-color: #38a9ff;
}
.posts__cat-label--category-5 {
background-color: #38a9ff;
}
.posts__cat-label--category-6 {
background-color: #38a9ff;
}
.posts__cat-label--category-7 {
background-color: #38a9ff;
}
.posts__cat-label--category-8 {
background-color: #38a9ff;
}
.posts__cat-label--category-9 {
background-color: #38a9ff;
}
.posts__cat-label--category-10 {
background-color: #38a9ff;
}
.posts__cat-label--category-11 {
background-color: #38a9ff;
}
.posts__cat-label--category-12 {
background-color: #38a9ff;
}
.posts__thumb {
float: left;
margin: 0 10px 0 0;
}
.posts__thumb--hover {
position: relative;
}
.posts__thumb--hover::before {
content: "";
display: block;
position: absolute;
z-index: 1;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: #38a9ff;
color: #fff;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.posts__thumb--hover > a {
position: relative;
display: block;
}
.posts__thumb--hover > a::before, .posts__thumb--hover > a::after {
content: "";
display: block;
position: absolute;
background-color: #fff;
overflow: hidden;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%) scale(0);
transform: translate(-50%, -50%) scale(0);
z-index: 2;
transition: all 0.3s ease;
}
.posts__thumb--hover > a::before {
height: 4px;
width: 18px;
}
.posts__thumb--hover > a::after {
height: 18px;
width: 4px;
}
.posts__thumb--hover:hover::before {
opacity: 0.8;
}
.posts__thumb--hover:hover > a::before, .posts__thumb--hover:hover > a::after {
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
}
.posts__thumb--overlay-dark {
position: relative;
}
.posts__thumb--overlay-dark::before {
content: "";
display: block;
position: absolute;
z-index: 1;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-image: linear-gradient(to bottom, transparent, #000);
transition: opacity 0.3s ease;
pointer-events: none;
}
.posts__thumb--video {
position: relative;
}
.posts__thumb--video::before {
content: "\f04b";
display: block;
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
margin: -30px 0 0 -30px;
width: 60px;
height: 60px;
line-height: 60px;
text-align: center;
border-radius: 50% !important;
color: #fff;
font-size: 28px;
text-indent: 4px;
background-color: rgba(0, 0, 0, 0.8);
text-rendering: auto;
font-family: "Font Awesome 5 Free";
font-weight: 900;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
pointer-events: none;
transition: -webkit-transform 0.3s ease;
transition: transform 0.3s ease;
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.posts__thumb--video:hover::before {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.posts__thumb--video-sm::before {
width: 32px;
height: 32px;
margin: -16px 0 0 -16px;
line-height: 32px;
font-size: 14px;
text-indent: 2px;
}
.posts__thumb.h-100 img {
-o-object-fit: cover;
object-fit: cover;
-o-object-position: 50% 50%;
object-position: 50% 50%;
}
.posts__title {
text-transform: uppercase;
letter-spacing: -0.03em;
font-style: normal;
}
.posts__title + .posts__date {
margin-top: 0.7em;
}
.posts__title a {
color: #31404b;
transition: color 0.2s ease-in-out;
}
.posts__title a:hover {
color: #4f6779;
}
.posts__date {
display: inline-block;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
line-height: 1.2em;
} .posts--simple-list .posts__item {
overflow: hidden;
margin-bottom: 18px;
}
.card .posts--simple-list .posts__item {
border-bottom: 1px solid #e4e7ed;
margin-left: -24px;
margin-right: -24px;
padding-left: 24px;
padding-right: 24px;
padding-bottom: 24px;
margin-bottom: 24px;
}
.posts--simple-list .posts__item:last-child, .card .posts--simple-list .posts__item:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}
.card .posts--simple-list .posts__item--card {
margin-top: -24px;
padding-left: 0;
padding-right: 0;
padding-bottom: 0 !important;
}
.posts--simple-list .posts__item--card .posts__excerpt {
display: block !important;
font-size: 15px;
line-height: 26px;
}
.posts--simple-list .posts__item--card .posts__inner {
overflow: visible;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item {
padding-left: 100px;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item::before {
width: 100px;
text-align: center;
margin-top: -16px;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item:last-child::before {
margin-top: -4px;
}
.card .posts--simple-list.posts--simple-list-numbered .posts__item .posts__title {
font-size: 14px;
}
.posts--simple-list .posts__inner {
overflow: hidden;
}
.posts--simple-list .posts__cat-label + .posts__title {
margin-top: 0.55em;
}
.posts--simple-list .posts__title {
margin-bottom: 0;
line-height: 1em;
}
.widget--footer .posts--simple-list .posts__title {
font-size: 12px;
line-height: 1em;
font-style: normal;
}
.widget--footer .posts--simple-list .posts__title > a {
transition: color 0.2s ease;
}
.widget--footer .posts--simple-list .posts__title > a:not(:hover) {
color: #31404b;
}
.widget--footer .posts--simple-list .posts__title:not(.posts__title--color-hover) > a:hover {
color: #38a9ff;
}
.widget--footer .posts--simple-list .posts__title + .posts__date {
margin-top: 0.25em;
}
.has-mega-menu .posts--simple-list .posts__title {
font-size: 12px;
}
@media (max-width: 991px) {
.has-mega-menu .posts--simple-list .posts__title {
font-size: 11px;
}
.has-mega-menu .posts--simple-list .posts__title > a {
color: #fff;
}
}
@media (min-width: 992px) {
.has-mega-menu .posts--simple-list .posts__title > a {
color: #fff;
}
}
.posts--simple-list .posts__thumb {
border-radius: 0;
}
.posts--simple-list .posts__thumb::before {
border-radius: 0;
}
.posts--simple-list .posts__thumb img {
border-radius: 0;
}
.posts--simple-list .posts__date,
.posts--simple-list .posts__comments {
font-size: 10px;
line-height: 1.2em;
vertical-align: middle;
display: inline-block;
}
@media (max-width: 991px) {
.has-mega-menu .posts--simple-list .posts__date,
.has-mega-menu .posts--simple-list .posts__comments {
font-size: 8px;
}
}
.widget--footer .posts--simple-list .posts__date,
.widget--footer .posts--simple-list .posts__comments {
font-size: 9px;
}
.posts--simple-list .posts__comments i {
font-size: 12px;
margin-right: 3px;
margin-left: 1px;
display: inline-block;
vertical-align: middle;
}
.widget--footer .posts--simple-list .posts__comments {
min-width: 57px;
}
.posts--simple-list .posts__excerpt {
margin-top: 6px;
}
@media (max-width: 991px) {
.has-mega-menu .posts--simple-list .posts__excerpt {
font-size: 11px;
line-height: 17px;
}
}
.posts--simple-list .posts__excerpt--space {
padding: 20px 0;
}
.posts--simple-list .posts__excerpt--space-sm {
padding-top: 10px;
font-size: 13px;
line-height: 22px;
}
.posts--simple-list .posts__footer {
padding-top: 17px;
}
.card .posts--simple-list .posts__footer {
padding: 17px 24px;
border-top: 1px solid #e4e7ed;
overflow: hidden;
margin-left: -24px;
margin-right: -24px;
}
.posts--simple-list .post-author {
float: left;
width: 50%;
}
@media (max-width: 479px) {
.posts--simple-list .post-author {
width: 40%;
}
}
.posts--simple-list .post-author__avatar {
width: 24px;
height: 24px;
margin-right: 4px;
vertical-align: middle;
border-radius: 50%;
overflow: hidden;
}
.posts--simple-list .post-author__avatar img {
vertical-align: top;
}
@media (max-width: 479px) {
.posts--simple-list .post-author__avatar {
display: none;
}
}
.posts--simple-list .post-author__name {
font-size: 10px;
text-transform: uppercase;
color: #9a9da2;
font-weight: 400;
}
.posts--simple-list .post__meta {
width: 50%;
float: right;
text-align: right;
}
@media (max-width: 479px) {
.posts--simple-list .post__meta {
width: 60%;
}
}
.posts--simple-list .posts__more {
padding: 20px 0 0 0;
} .card .posts--simple-list-condensed .posts__item {
padding-bottom: 16px;
margin-bottom: 18px;
} .posts--simple-list-numbered {
counter-reset: list;
}
.posts--simple-list-numbered .posts__item {
padding-left: 100px;
position: relative;
counter-increment: list;
}
.widget--footer .posts--simple-list-numbered .posts__item {
padding-left: 38px;
}
.posts--simple-list-numbered .posts__item::before {
content: counter(list, decimal-leading-zero);
font-family: "Montserrat", sans-serif;
font-size: 44px;
line-height: 1em;
font-style: italic;
position: absolute;
left: 0;
top: 15px;
opacity: 0.2;
margin-top: 0 !important;
}
.widget--footer .posts--simple-list-numbered .posts__item::before {
font-size: 24px;
top: 22px;
} .widget--side-panel .posts--simple-list--lg .posts__item {
margin-bottom: 50px;
}
.widget--side-panel .posts--simple-list--lg .posts__item:last-child {
margin-bottom: 0;
}
.has-mega-menu .posts--simple-list--lg .posts__item {
padding-top: 20px;
padding-bottom: 20px;
}
@media (min-width: 992px) {
.has-mega-menu .posts--simple-list--lg .posts__item {
padding-left: 10px;
padding-right: 10px;
padding-top: 0;
padding-bottom: 0;
}
}
@media (min-width: 1200px) {
.has-mega-menu .posts--simple-list--lg .posts__item {
padding-left: 15px;
padding-right: 15px;
}
}
.posts--simple-list--lg .posts__item .posts__thumb {
float: none;
margin: 0 0 1.5em 0;
}
@media (min-width: 992px) {
.has-mega-menu .posts--simple-list--lg .posts__item .posts__title {
font-size: 16px;
}
}
@media (min-width: 1200px) {
.has-mega-menu .posts--simple-list--lg .posts__item .posts__title {
font-size: 22px;
}
}
.posts--simple-list--lg .posts__cat {
margin-bottom: 10px;
}
@media (min-width: 992px) {
.posts--simple-list--lg .posts__cat-label {
font-size: 10px;
}
}
.posts--simple-list--lg .posts__title {
margin-bottom: 0.2em;
}
@media (min-width: 992px) {
.posts--simple-list--lg .posts__title {
font-size: 18px;
line-height: 1em;
}
.widget--side-panel .posts--simple-list--lg .posts__title {
font-size: 22px;
}
}
.posts--simple-list--lg .posts__excerpt {
font-size: 15px;
line-height: 26px;
}
.posts--simple-list--lg.posts--simple-list--lg--clean .posts__item {
border-bottom: none;
margin-bottom: 0;
}
.posts--simple-list--lg.posts--simple-list--lg--clean .posts__footer {
border-top: none;
} .posts--simple-list--xlg .posts__cat {
margin-bottom: 10px;
}
@media (min-width: 992px) {
.posts--simple-list--xlg .posts__cat-label {
font-size: 10px;
}
}
.posts--simple-list--xlg .posts__title {
margin-bottom: 0.1em;
}
@media (min-width: 768px) {
.posts--simple-list--xlg .posts__title {
font-size: 30px;
}
}
@media (min-width: 992px) {
.posts--simple-list--xlg .posts__title {
font-size: 24px;
}
}
@media (min-width: 1199px) {
.posts--simple-list--xlg .posts__title {
font-size: 30px;
line-height: 28px;
}
}
.posts--simple-list--xlg .posts__date {
font-size: 9px;
}
@media (min-width: 992px) {
.posts--simple-list--xlg .posts__date {
font-size: 11px;
}
}
.posts--simple-list--xlg .posts__excerpt {
font-size: 15px;
line-height: 26px;
}
@media (min-width: 1199px) {
.posts--simple-list--xlg .posts__excerpt {
margin-top: 13px;
}
}
@media (min-width: 992px) {
.posts--simple-list--xlg .posts__more {
padding-top: 30px;
}
}
@media (min-width: 1199px) {
.posts--simple-list--xlg .posts__more {
padding-top: 38px;
}
} .posts--simple-list--search .posts__excerpt > p:last-child {
margin-bottom: 0;
} .posts--simple-list--xs .posts__thumb {
max-width: 50px;
} .posts-layout-horizontal,
.megamenu-row.col-12 .posts--simple-list {
display: flex;
}
@media (max-width: 991px) {
.posts-layout-horizontal,
.megamenu-row.col-12 .posts--simple-list {
flex-wrap: wrap;
}
}
@media (min-width: 992px) {
.megamenu-item .posts-layout-horizontal,
.megamenu-item .megamenu-row.col-12 .posts--simple-list {
padding-bottom: 22px;
margin-bottom: 30px !important;
margin-left: -55px !important;
margin-right: -55px !important;
padding-left: 47px;
padding-right: 47px;
border-bottom: 1px solid #292c31;
}
}
.posts-layout-horizontal .posts__item,
.megamenu-row.col-12 .posts--simple-list .posts__item {
padding-right: 8px;
padding-left: 8px;
}
@media (max-width: 991px) {
.posts-layout-horizontal .posts__item,
.megamenu-row.col-12 .posts--simple-list .posts__item {
padding-left: 0;
padding-right: 0;
}
.megamenu-item .posts-layout-horizontal .posts__item .posts__thumb,
.megamenu-item .megamenu-row.col-12 .posts--simple-list .posts__item .posts__thumb {
max-width: 35%;
}
}
@media (min-width: 992px) {
.posts-layout-horizontal .posts__item,
.megamenu-row.col-12 .posts--simple-list .posts__item {
padding-right: 20px;
}
}
@media (min-width: 1199px) {
.posts-layout-horizontal .posts__item,
.megamenu-row.col-12 .posts--simple-list .posts__item {
padding-right: 30px;
}
}
.posts-layout-horizontal--3cols .posts__item,
.megamenu-row.has-3cols .posts--simple-list .posts__item {
flex-basis: 100%;
}
@media (min-width: 992px) {
.posts-layout-horizontal--3cols .posts__item,
.megamenu-row.has-3cols .posts--simple-list .posts__item {
flex-basis: 33.3%;
}
} @media (max-width: 767px) {
.posts--cards .post-grid__item {
width: 100%;
}
}
.posts__item--card {
height: calc(100% - 15px);
}
.posts__item--card, .posts__item--card:last-child {
margin-bottom: 15px;
}
.posts__item--card .posts__thumb {
float: none;
margin: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.posts__item--card .posts__thumb:first-child {
overflow: hidden;
border-radius: 4px 4px 0 0;
}
.posts__item--card .posts__thumb:last-child {
overflow: hidden;
border-radius: 0 0 4px 4px;
}
.posts__item--card .posts__thumb img {
width: 100%;
height: auto;
transition: -webkit-transform 0.5s ease;
transition: transform 0.5s ease;
transition: transform 0.5s ease, -webkit-transform 0.5s ease;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.posts__item--card .posts__thumb:hover img {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.posts__item--card.posts__item--card-condensed {
margin-bottom: 0;
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.posts__item--card .posts__cta {
display: block;
position: absolute;
top: 0;
right: 23px;
width: 50px;
height: 50px;
overflow: hidden;
border-radius: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.posts__item--card .posts__cta::before, .posts__item--card .posts__cta::after {
content: "";
display: block;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: #fff;
transition: -webkit-transform 0.25s ease;
transition: transform 0.25s ease;
transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.posts__item--card .posts__cta::before {
width: 17px;
height: 3px;
}
.posts__item--card .posts__cta::after {
width: 3px;
height: 17px;
}
.posts__item--card .posts__cta:hover::before, .posts__item--card .posts__cta:hover::after {
-webkit-transform: translate(-50%, -50%) rotate(90deg);
transform: translate(-50%, -50%) rotate(90deg);
}
.posts__item--card .posts__cat {
display: block;
position: absolute;
left: 23px;
top: 23px;
}
.posts__item--card .posts__inner .posts__cat {
position: static;
margin-bottom: 10px;
}
.posts__item--card .posts__cat-label {
font-size: 10px;
padding-top: 0.6em;
margin-bottom: 0.6em;
}
.posts__item--card .posts__date {
font-size: 10px;
line-height: 1.2em;
font-style: normal;
}
.posts__item--card .posts__date + .posts__title {
margin-top: 5px;
}
@media (min-width: 992px) {
.posts__item--card .posts__date + .posts__title {
margin-top: 10px;
}
}
@media (min-width: 992px) {
.posts__item--card .posts__date {
font-size: 11px;
}
}
.posts__item--card .posts__date > a {
color: #9a9da2;
}
.posts__item--card .posts__title {
font-size: 18px;
line-height: 1em;
margin-bottom: 0.2em;
}
@media (min-width: 992px) {
.posts__item--card .posts__title {
font-size: 20px;
}
}
@media (min-width: 1200px) {
.posts__item--card .posts__title {
font-size: 24px;
}
}
@media (min-width: 992px) {
.posts__item--card .posts__title--sm {
font-size: 18px;
}
}
@media (min-width: 992px) {
.posts__item--card .posts__title--sm + .posts__excerpt {
padding: 10px 0 0 0;
}
}
.posts__item--card .posts__excerpt {
padding: 13px 0 0 0;
}
@media (min-width: 992px) {
.posts__item--card .posts__excerpt {
padding: 23px 0 8px 0;
}
}
.posts__item--card .posts__excerpt > p:last-child {
margin-bottom: 0;
}
.posts__item--card .posts__inner {
padding-top: 18px;
position: relative;
flex-grow: 1;
}
.posts__item--card .posts__footer {
padding: 17px 24px;
border-top: 1px solid #e4e7ed;
display: table;
width: 100%;
}
.posts__item--card .post-author {
display: table-cell;
width: 50%;
text-align: left;
}
@media (max-width: 479px) {
.posts__item--card .post-author {
width: 40%;
}
}
.posts__item--card .post-author__avatar {
width: 24px;
height: 24px;
margin-right: 7px;
vertical-align: middle;
border-radius: 50%;
overflow: hidden;
}
.posts__item--card .post-author__avatar img {
vertical-align: top;
}
@media (max-width: 479px) {
.posts__item--card .post-author__avatar {
display: none;
}
}
.posts__item--card .post-author__name {
font-size: 10px;
text-transform: uppercase;
color: #9a9da2;
font-weight: 400;
font-style: normal;
}
.posts__item--card .post__meta {
display: table-cell;
width: 50%;
text-align: right;
} .posts--card-compact .posts__item, .posts--card-compact .posts__item:last-child {
margin-bottom: 15px;
}
.posts--card-compact .posts__item .posts__thumb {
float: none;
margin: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.posts--card-compact .posts__item .posts__thumb:first-child {
overflow: hidden;
border-radius: 4px 4px 0 0;
}
.posts--card-compact .posts__item .posts__thumb:last-child {
overflow: hidden;
border-radius: 0 0 4px 4px;
}
.posts--card-compact .posts__item .posts__thumb img {
width: 100%;
height: auto;
transition: -webkit-transform 0.5s ease;
transition: transform 0.5s ease;
transition: transform 0.5s ease, -webkit-transform 0.5s ease;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.posts--card-compact .posts__item .posts__cat {
margin-bottom: 12px;
}
.posts--card-compact .posts__item .posts__title {
font-size: 18px;
line-height: 1.11em;
margin-bottom: 0.4em;
}
.posts--card-compact .posts__item--lg .posts__cat-label {
font-size: 10px;
}
@media (min-width: 992px) {
.posts--card-compact .posts__item--lg .posts__title {
font-size: 26px;
line-height: 1em;
}
} .has-mega-menu .posts--tile {
margin: -44px -65px -44px 0;
}
@media only screen and (max-width: 991px) {
.has-mega-menu .posts--tile {
margin: 0 -30px;
}
.has-mega-menu .posts--tile .posts__footer,
.has-mega-menu .posts--tile .posts__cta {
display: none;
}
}
.has-mega-menu .posts--tile .posts__item--tile {
margin-bottom: 0 !important;
border-radius: 0;
}
.has-mega-menu .posts--tile .posts__thumb img {
border-radius: 0;
}
.posts--tile .posts__title {
color: #fff;
}
.posts--tile .posts__title > a {
color: #fff;
}
.posts--tile .post-author__info .posts__date {
color: #fff;
}
.posts__item--tile {
position: relative;
margin-bottom: 15px !important;
}
.posts__item--tile .posts__thumb {
margin: 0;
float: none;
position: relative;
}
.posts__item--tile .posts__thumb img {
border-radius: 4px;
width: 100%;
height: auto;
}
.posts__item--tile .posts__thumb::after {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 1;
}
.posts__item--tile .posts__inner {
position: absolute;
text-align: center;
left: 0;
right: 0;
bottom: 0;
z-index: 4;
}
.posts__item--tile .posts__inner--centered {
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.posts__item--tile .posts__cat .posts__cat-label {
float: none;
display: inline-block;
font-size: 10px;
}
.posts__item--tile .posts__title {
padding-left: 24px;
padding-right: 24px;
margin-bottom: 0.5em;
line-height: 1em;
font-size: 18px;
}
@media (min-width: 768px) {
.posts__item--tile .posts__title {
font-size: 20px;
}
}
@media (min-width: 992px) {
.posts__item--tile .posts__title {
font-size: 24px;
line-height: 1.0833em;
}
}
.posts__item--tile .posts__title > a {
color: #fff;
}
.posts__item--tile .posts__title > a:hover {
color: #fff;
opacity: 0.9;
}
.posts__item--tile .posts__cta {
display: block;
position: absolute;
right: 24px;
top: 24px;
width: 50px;
height: 50px;
overflow: hidden;
border-radius: 50%;
z-index: 4;
}
.posts__item--tile .posts__cta::before, .posts__item--tile .posts__cta::after {
content: "";
display: block;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background-color: #fff;
transition: -webkit-transform 0.25s ease;
transition: transform 0.25s ease;
transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.posts__item--tile .posts__cta::before {
width: 17px;
height: 3px;
}
.posts__item--tile .posts__cta::after {
width: 3px;
height: 17px;
}
.posts__item--tile .posts__cta:hover::before, .posts__item--tile .posts__cta:hover::after {
-webkit-transform: translate(-50%, -50%) rotate(90deg);
transform: translate(-50%, -50%) rotate(90deg);
}
.posts__item--tile .posts__date {
font-size: 11px;
color: #fff;
margin-bottom: 2.5em;
}
.posts__item--tile .posts__footer {
border-top: 1px solid #e4e7ed;
padding-top: 16px;
padding-bottom: 16px;
text-align: center;
}
.posts__item--tile .post-author {
display: inline-block;
margin-right: 14px;
position: relative;
top: -2px;
}
.posts__item--tile .post-author__avatar {
display: inline-block;
vertical-align: middle;
border-radius: 50%;
overflow: hidden;
width: 24px;
height: 24px;
float: none;
margin-right: 5px;
}
.posts__item--tile .post-author__name {
margin: 0;
display: inline-block;
font-size: 10px;
font-weight: 400;
font-style: normal;
color: #9a9da2;
}
.posts__item--tile .post__meta {
display: inline-block;
}
.posts__item--tile .meta__item a:hover {
color: #fff;
}
.posts--tile-alt .posts__item-link-overlay {
display: block;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: transparent;
opacity: 0.8;
z-index: 4;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
transition: background-color 0.3s ease;
}
.posts--tile-alt .posts__item-link-overlay:hover {
background-color: #31404b;
}
.posts--tile-alt .posts__item-link-overlay:hover + .posts__inner--noactive .posts__excerpt {
max-height: 70px;
opacity: 1;
}
.posts--tile-alt .posts__thumb img {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.posts--tile-alt .posts__thumb::after {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 20%;
opacity: 0.6;
background-image: linear-gradient(to bottom, transparent 0%, #000 100%);
}
.posts--tile-alt .posts__inner {
z-index: 5;
text-align: left;
padding: 12px 24px;
}
.posts--tile-alt .posts__inner--noactive {
pointer-events: none;
}
.posts--tile-alt .posts__cat {
margin-bottom: 10px;
}
.posts--tile-alt .posts__title {
padding-left: 0;
padding-right: 0;
line-height: 1em;
margin-bottom: 0.15em;
font-size: 20px;
}
@media (min-width: 992px) {
.posts--tile-alt .posts__title {
font-size: 24px;
}
}
@media (min-width: 1200px) {
.posts--tile-alt .posts__title {
font-size: 30px;
}
}
.posts--tile-alt .posts__date {
margin-bottom: 0;
font-weight: bold;
}
.posts--tile-alt .posts__excerpt {
max-height: 0;
opacity: 0;
overflow: hidden;
padding-top: 10px;
padding-bottom: 10px;
transition: max-height 0.4s ease, opacity 0.7s ease;
color: rgba(255, 255, 255, 0.6);
}
.posts--tile-alt .posts__cta {
z-index: 5;
}
.posts--tile-alt .posts__footer {
text-align: left;
display: flex;
padding-left: 24px;
padding-right: 24px;
}
@media (max-width: 991px) {
.posts--tile-alt .posts__footer {
flex-wrap: wrap;
}
}
.posts--tile-alt .post__meta {
margin-left: auto;
}
.posts--tile-alt .meta__item, .posts--tile-alt .meta__item a {
color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 992px) {
.posts__item--tile-sm .posts__title {
font-size: 22px;
}
}
@media (min-width: 992px) {
.posts__item--tile-sm .posts__thumb img {
height: 237px;
-o-object-fit: cover;
object-fit: cover;
}
}
@media (min-width: 992px) {
.posts__item--tile-lg .posts__title {
font-size: 34px;
}
}
.posts--tile-alt-nopaddings {
margin-left: 0;
margin-right: 0;
}
.posts--tile-alt-nopaddings .post-grid__item {
padding-left: 0;
padding-right: 0;
}
.posts--tile-alt-nopaddings .posts__item {
margin-bottom: 0 !important;
}
.posts--tile-alt-nopaddings .posts__thumb img {
border-radius: 0 !important;
}
.posts--tile-meta-position .posts__title + .posts__date {
margin-top: 0;
margin-right: 10px;
}
@media (min-width: 992px) {
.posts--tile-meta-position .meta__item + .meta__item {
margin-left: 8px;
}
}
.posts--tile-thumb-bordered .posts__thumb {
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
overflow: hidden;
}
@media (min-width: 992px) {
.posts--tile-hero-post-grid .posts__title {
font-size: 20px;
}
}
@media (min-width: 1200px) {
.posts--tile-hero-post-grid .posts__title {
font-size: 22px;
}
}
@media (min-width: 992px) {
.posts--tile-hero-post-grid .posts__title--lg {
font-size: 36px;
}
}
.posts--tile-alt-noborder .posts__item--tile {
border: 0;
border-radius: 0;
margin-bottom: 0 !important;
}
.posts--tile-alt-noborder .posts__thumb {
border-radius: 0 !important;
}
.posts--tile-alt-noborder .posts__thumb img {
border-radius: 0 !important;
}
.posts--tile-alt-noborder .posts__item-link-overlay {
border-radius: 0 !important;
}
@media (min-width: 1200px) {
.posts--tile-alt-noborder .posts__title {
font-size: 36px;
}
}
@media (min-width: 1200px) {
.posts--tile-alt-noborder .posts__inner {
padding: 40px;
}
} .posts__item--tile-event .posts__inner {
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
top: 0;
padding-top: 30px;
padding-bottom: 20px;
font-size: 12.855px;
line-height: 1.833em;
color: #31404b;
}
@media (min-width: 992px) {
.posts__item--tile-event .posts__inner {
padding-top: 45px;
padding-bottom: 30px;
}
}
@media (min-width: 1200px) {
.posts__item--tile-event .posts__inner {
padding-top: 60px;
padding-bottom: 40px;
}
}
.posts__item--tile-event .posts__thumb::after {
top: 0;
background-image: linear-gradient(120deg, #31404b 0%, #07e0c4 100%);
opacity: 0.4;
}
.posts__item--tile-event .posts__excerpt {
padding: 10px 0;
}
@media (min-width: 992px) {
.posts__item--tile-event .posts__excerpt {
padding: 10px 20px;
}
}
.posts__item--tile-event .posts__countdown {
margin-top: auto;
margin-bottom: auto;
}
.posts__item--tile-event .posts__logo img {
width: auto;
height: auto;
margin: 0 auto;
}
.posts__item--tile-event .countdown-counter__label {
color: #31404b;
} @media (max-width: 479px) {
.post-grid--2cols .post-grid__item {
width: 100%;
}
}
.post-grid--3-4 .post-grid__item .posts__title {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
}
.post-grid--3-4 :is(.post-grid__item:first-child, .post-grid__item:nth-child(2), .post-grid__item:nth-child(3)) .posts__title {
-webkit-line-clamp: 4;
}
.post-grid--3-4 .post-grid__item .posts__cat {
overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}
.post-grid--featured {
padding-top: 15px;
} .posts--cards-thumb-left .posts__item--card {
overflow: hidden;
}
.posts--cards-thumb-left .posts__thumb {
width: 100%;
float: none;
overflow: hidden;
height: 200px;
}
@media (min-width: 375px) {
.posts--cards-thumb-left .posts__thumb {
height: 240px;
}
}
@media (min-width: 992px) {
.posts--cards-thumb-left .posts__thumb {
float: left;
margin: 0;
max-width: 325px;
height: auto;
}
.posts--cards-thumb-left .posts__thumb:first-child {
border-radius: 4px 0 0 4px;
}
}
@media (min-width: 992px) {
.posts--cards-thumb-left .posts__thumb {
max-width: 220px;
}
}
@media (min-width: 1199px) {
.posts--cards-thumb-left .posts__thumb {
max-width: 380px;
}
}
.posts--cards-thumb-left .posts__inner {
overflow: hidden;
padding-top: 0;
}
@media (min-width: 992px) {
.posts--cards-thumb-left .posts__inner {
padding-top: 8px;
}
}
.posts--cards-thumb-left .posts__cta {
position: absolute;
left: 20px;
top: 20px;
-webkit-transform: none;
transform: none;
}
.posts--cards-thumb-left .posts__cta:hover {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
} @media (min-width: 992px) {
.posts--cards-thumb-lg .posts__inner {
padding-top: 30px;
}
}
.posts--cards-thumb-lg .posts__cat {
position: static;
}
@media (min-width: 992px) {
.posts--cards-thumb-lg .posts__cat {
margin-bottom: 13px;
}
}
@media (min-width: 992px) {
.posts--cards-thumb-lg .posts__title {
font-size: 28px;
line-height: 1.07em;
}
} .posts__item--quote {
background-color: #194676;
border-radius: 4px;
position: relative;
overflow: hidden;
min-width: 304px;
}
@media (min-width: 992px) {
.posts__item--quote {
min-height: 482px;
}
}
@media (min-width: 1199px) {
.posts__item--quote {
min-height: 488px;
}
}
.posts__item--quote::before {
content: "“";
display: block;
position: absolute;
left: -0.09em;
top: -0.18em;
font-family: "Montserrat", sans-serif;
color: #fff;
opacity: 0.1;
font-size: 300px;
line-height: 1em;
pointer-events: none;
}
@media (min-width: 992px) {
.posts__item--quote::before {
font-size: 600px;
}
}
@media (min-width: 1199px) {
.posts__item--quote::before {
font-size: 700px;
}
}
.blockquote--card {
border: none;
padding: 0;
margin: 0;
width: 100%;
}
.blockquote--card .blockquote__content {
font-size: 16px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1em;
color: #fff;
font-style: normal;
margin: 0;
padding-bottom: 50px;
position: relative;
z-index: 1;
}
@media (min-width: 992px) {
.blockquote--card .blockquote__content {
font-size: 24px;
}
}
@media (min-width: 1199px) {
.blockquote--card .blockquote__content {
font-size: 36px;
}
}
.blockquote--card .blockquote-stress {
display: block;
color: #c2ff1f;
}
.blockquote--card .blockquote__footer {
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #fff;
line-height: 1.2em;
position: absolute;
right: 24px;
bottom: 24px;
}
.blockquote--card .blockquote__footer::before {
display: none;
}
@media (min-width: 992px) {
.blockquote--card .blockquote__footer {
text-align: right;
}
}
.blockquote--card .blockquote__cite {
font-style: normal;
}
.blockquote--card .blockquote__author-name {
display: block;
font-size: 11px;
}
@media (min-width: 992px) {
.blockquote--card .blockquote__author-name {
font-size: 14px;
}
}
.blockquote--card .blockquote__author-info {
font-size: 9px;
color: rgba(255, 255, 255, 0.7);
display: block;
}
@media (min-width: 992px) {
.blockquote--card .blockquote__author-info {
font-size: 10px;
}
} .posts--slider-featured:hover .posts__thumb img {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.posts--slider-featured .posts__item {
border-radius: 4px;
overflow: hidden;
position: relative;
margin-bottom: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.posts--slider-featured .posts__thumb {
margin: 0;
float: none;
}
.posts--slider-featured .posts__thumb img {
width: 100%;
border-radius: 4px;
position: relative;
transition: -webkit-transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out;
transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.posts--slider-featured .posts__inner {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px;
background-image: linear-gradient(to bottom, transparent, #000);
border-radius: 0 0 4px 4px;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
pointer-events: none;
}
@media (min-width: 992px) {
.posts--slider-featured .posts__inner {
padding: 30px 23% 30px 40px;
}
}
@media (min-width: 992px) {
.posts--slider-featured .posts__cat {
margin-bottom: 13px;
}
}
@media (min-width: 992px) {
.posts--slider-featured .posts__cat-label {
font-size: 10px;
}
}
.posts--slider-featured .posts__title {
font-size: 14px;
line-height: 1em;
margin-bottom: 0.4em;
color: #fff;
}
@media (min-width: 768px) {
.posts--slider-featured .posts__title {
font-size: 24px;
}
}
@media (min-width: 992px) {
.posts--slider-featured .posts__title {
font-size: 32px;
}
}
@media (min-width: 1199px) {
.posts--slider-featured .posts__title {
font-size: 38px;
line-height: 34px;
}
}
.posts--slider-featured .posts__title .text-primary {
display: block;
}
.posts--slider-featured .posts__title-higlight {
color: #9fe900;
}
.posts--slider-featured .post-author {
color: #fff;
}
.posts--slider-featured .post-author__avatar {
width: 24px;
height: 24px;
margin-right: 4px;
}
@media (min-width: 768px) {
.posts--slider-featured .post-author__avatar {
margin-right: 8px;
}
}
.posts--slider-featured .post-author__name,
.posts--slider-featured .posts__date {
font-size: 9px;
color: #fff;
text-transform: uppercase;
display: inline-block;
font-weight: 700;
margin-bottom: 0;
}
@media (min-width: 768px) {
.posts--slider-featured .post-author__name,
.posts--slider-featured .posts__date {
font-size: 11px;
}
}
.posts--slider-featured .post-author__name + .posts__date::before {
content: "–";
margin-right: 0.25em;
} .posts-slider--center .posts__thumb {
float: none;
position: relative;
}
.posts-slider--center .posts__thumb::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: #000;
opacity: 0.6;
z-index: 1;
}
.posts-slider--center .posts__inner {
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
right: auto;
background: none;
text-align: center;
width: 80%;
padding: 0;
z-index: 2;
}
@media (min-width: 992px) {
.posts-slider--center .posts__inner {
padding: 0;
width: 60%;
}
}
.posts-slider--center .posts__cat-label {
float: none;
display: inline-block;
}
.posts-slider--center .posts__title {
font-size: 14px;
}
@media (min-width: 768px) {
.posts-slider--center .posts__title {
font-size: 20px;
}
}
@media (min-width: 992px) {
.posts-slider--center .posts__title {
font-size: 24px;
}
}
@media (min-width: 1199px) {
.posts-slider--center .posts__title {
font-size: 32px;
line-height: 32px;
}
} .posts--carousel-featured .posts__item {
position: relative;
}
.posts--carousel-featured .posts__title {
color: #fff;
margin-bottom: 0.25em;
font-size: 15px;
}
@media (min-width: 480px) {
.posts--carousel-featured .posts__title {
font-size: 13px;
}
}
@media (min-width: 768px) {
.posts--carousel-featured .posts__title {
font-size: 15px;
}
}
@media (min-width: 1199px) {
.posts--carousel-featured .posts__title {
font-size: 18px;
line-height: 1.11em;
}
}
.posts--carousel-featured .posts__title > a {
color: #fff;
transition: all 0.2s ease;
}
.posts--carousel-featured .posts__title > a:hover {
opacity: 0.75;
}
@media (min-width: 992px) {
.posts--carousel-featured .posts__cat {
margin-bottom: 10px;
}
}
@media (min-width: 1199px) {
.posts--carousel-featured .posts__cat {
margin-bottom: 13px;
}
}
.posts--carousel-featured .posts__cat-label {
float: none;
display: inline-block;
}
@media (min-width: 992px) {
.posts--carousel-featured .posts__cat-label {
font-size: 10px;
}
}
.posts--carousel-featured .posts__thumb {
float: none;
position: relative;
margin: 0;
}
.posts--carousel-featured .posts__thumb img {
width: 100%;
vertical-align: top;
}
.posts--carousel-featured .posts__inner {
position: absolute;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
padding: 0 15%;
text-align: center;
width: 100%;
}
.posts--carousel-featured .posts__date {
color: #9a9da2;
font-size: 9px;
font-weight: 700;
}
@media (min-width: 992px) {
.posts--carousel-featured .posts__date {
font-size: 11px;
}
}
.posts--carousel-featured .post__meta {
padding-top: 5px;
}
@media (min-width: 992px) {
.posts--carousel-featured .post__meta {
padding-top: 10px;
}
}
@media (min-width: 1199px) {
.posts--carousel-featured .post__meta {
padding-top: 22px;
}
}
.posts--carousel-featured .meta__item {
color: #fff;
}
.posts--carousel-featured .meta__item > a {
color: #fff;
transition: all 0.2s ease;
}
.posts--carousel-featured .meta__item > a:hover {
color: #fff;
opacity: 0.75;
} .posts--horizontal {
display: flex;
}
@media (max-width: 767px) {
.posts--horizontal {
flex-direction: column;
}
}
@media (min-width: 768px) {
.posts--horizontal .posts__item, .card .posts--horizontal .posts__item {
padding-bottom: 0;
border-left: 1px solid #e4e7ed;
border-bottom: none;
margin: -24px 0 !important;
}
.posts--horizontal .posts__item:first-child, .card .posts--horizontal .posts__item:first-child {
border-left: none;
padding-left: 0;
}
.posts--horizontal .posts__item:first-child .posts__inner, .card .posts--horizontal .posts__item:first-child .posts__inner {
padding-left: 0;
}
.posts--horizontal .posts__item:last-child, .card .posts--horizontal .posts__item:last-child {
padding-right: 0;
}
.posts--horizontal .posts__item:last-child .posts__inner, .card .posts--horizontal .posts__item:last-child .posts__inner {
padding-right: 0;
}
.posts--horizontal .posts__item .posts__inner, .card .posts--horizontal .posts__item .posts__inner {
padding: 24px 0;
}
} .posts--carousel .posts__item {
position: relative;
overflow: hidden;
text-align: center;
margin: 0;
}
.posts--carousel .posts__link-wrapper {
display: inline-block;
vertical-align: top;
position: relative;
margin: 0 8px;
text-align: left;
}
.posts--carousel .posts__link-wrapper:hover .posts__inner {
-webkit-transform: translateY(0);
transform: translateY(0);
}
.posts--carousel .posts__link-wrapper:hover::before {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.posts--carousel .posts__link-wrapper::before {
content: "\f067";
display: block;
position: absolute;
left: 50%;
top: 50%;
width: 40px;
height: 40px;
margin: -20px 0 0 -20px;
background-color: rgba(23, 29, 33, 0.6);
border-radius: 50%;
border: 4px solid #38a9ff;
z-index: 1;
color: #fff;
font-size: 14px;
text-align: center;
line-height: 32px;
font-family: "Font Awesome 5 Free";
font-weight: 700;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: -webkit-transform 0.3s ease;
transition: transform 0.3s ease;
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
pointer-events: none;
}
.posts--carousel .format-video .posts__link-wrapper::before {
content: "\f04b";
text-indent: 3px;
}
.posts--carousel .posts__inner {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 0 15px 18px 15px;
-webkit-transform: translateY(100%);
transform: translateY(100%);
transition: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
pointer-events: none;
}
.posts--carousel .posts__title {
color: #fff;
margin-bottom: 0.25em;
font-size: 12px;
line-height: 1em;
}
@media (min-width: 480px) {
.posts--carousel .posts__title {
font-size: 12px;
}
}
@media (min-width: 768px) {
.posts--carousel .posts__title {
font-size: 13px;
}
}
@media (min-width: 1199px) {
.posts--carousel .posts__title {
font-size: 14px;
}
}
.posts--carousel .posts__thumb {
float: none;
margin: 0;
background-color: #171d21;
border-radius: 4px;
}
.posts--carousel .posts__thumb img {
border-radius: 4px;
position: relative;
transition: opacity 0.3s ease-in-out;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
opacity: 0.6;
}
.posts--carousel .posts__thumb:hover img {
opacity: 0.3;
}
.posts--carousel .posts__date {
color: #9a9da2;
font-size: 9px;
font-weight: 700;
display: block;
line-height: 1em;
}
@media (min-width: 992px) {
.posts--carousel .posts__date {
font-size: 10px;
}
}
.posts--carousel .slick-prev,
.posts--carousel .slick-next {
top: -62px;
}
.posts--carousel .slick-prev:hover,
.posts--carousel .slick-next:hover {
background-color: #31404b;
}
.posts--carousel .slick-next {
right: 28px;
}
.posts--carousel .slick-prev {
right: 58px;
} .posts--inline {
margin: 0;
}
.posts--inline .posts__cat,
.posts--inline .posts__item,
.posts--inline .posts__title,
.posts--inline .posts__excerpt {
display: inline-block;
margin: 0;
font-size: 12px;
}
.posts--inline .posts__title {
margin-right: 0.5em;
}
.posts--inline .posts__cat {
position: relative;
top: 3px;
}
.posts--inline .posts__cat-label {
margin-bottom: 0;
}
.posts--inline .posts__excerpt {
margin-right: 1em;
} .posts--slider-var-width {
margin-bottom: -11px;
}
.posts--slider-var-width .posts__item--desc-center .posts__thumb {
margin-bottom: 14px;
}
.posts--slider-layout-1x2 .row {
display: block;
}
.posts--slider-layout-1x2 .row [class*=col-] {
float: left;
}
.posts__item--desc-center .posts__inner {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
right: auto;
background: none;
text-align: center;
width: 80%;
padding: 0;
z-index: 2;
transition: -webkit-transform 0.25s ease;
transition: transform 0.25s ease;
transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (min-width: 992px) {
.posts__item--desc-center .posts__inner {
padding: 0;
width: 60%;
}
}
.posts__item--desc-center .posts__thumb {
border-radius: 4px;
overflow: hidden;
border: 1px solid #e4e7ed;
float: none;
margin: 0 0 15px 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.posts__item--desc-center .posts__thumb img {
width: 100%;
height: auto;
}
.posts__item--desc-center .posts__cat {
overflow: visible;
}
.posts__item--desc-center .posts__cat-label {
float: none;
display: inline-block;
font-size: 10px;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-center .posts__title {
font-size: 14px;
text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
color: #fff;
}
@media (min-width: 768px) {
.posts__item--desc-center .posts__title {
font-size: 20px;
}
}
@media (min-width: 992px) {
.posts__item--desc-center .posts__title {
font-size: 24px;
}
}
@media (min-width: 1199px) {
.posts__item--desc-center .posts__title {
font-size: 34px;
line-height: 1em;
}
}
.posts__item--desc-center .post-author__avatar {
width: 24px;
height: 24px;
border-radius: 50%;
margin-right: 10px;
}
.posts__item--desc-center .posts__date {
font-size: 11px;
color: #fff;
text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-center .posts__title-higlight {
color: #38a9ff;
}
.posts__item--desc-center:hover .posts__inner {
-webkit-transform: translate3d(-50%, -58%, 0);
transform: translate3d(-50%, -58%, 0);
}
.posts__item--desc-left {
position: relative;
}
.posts__item--desc-left .posts__inner {
position: absolute;
bottom: 24px;
left: 24px;
background: none;
width: 80%;
padding: 0;
z-index: 2;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
transition: -webkit-transform 0.25s ease;
transition: transform 0.25s ease;
transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (min-width: 992px) {
.posts__item--desc-left .posts__inner {
padding: 0;
width: 75%;
}
}
.posts__item--desc-left .posts__thumb {
border-radius: 4px;
overflow: hidden;
border: 1px solid #e4e7ed;
float: none;
margin: 0 0 14px 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.posts__item--desc-left .posts__thumb img {
width: 100%;
height: auto;
transition: -webkit-transform 0.5s ease;
transition: transform 0.5s ease;
transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.posts__item--desc-left .posts__cat {
overflow: visible;
}
.posts__item--desc-left .posts__cat-label {
display: inline-block;
float: none;
font-size: 10px;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
.posts__item--desc-left .posts__title {
font-size: 14px;
line-height: 1em;
margin-bottom: 0.1em;
color: #fff;
text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
color: #fff;
}
@media (min-width: 768px) {
.posts__item--desc-left .posts__title {
font-size: 16px;
}
}
@media (min-width: 992px) {
.posts__item--desc-left .posts__title {
font-size: 18px;
}
}
@media (min-width: 1199px) {
.posts__item--desc-left .posts__title {
font-size: 20px;
line-height: 1em;
}
}
.posts__item--desc-left .posts__date {
font-size: 10px;
text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
color: #fff;
}
.posts__item--desc-left .posts__title-higlight {
color: #38a9ff;
}
.posts__item--desc-left:hover .posts__inner {
-webkit-transform: translateY(-12px);
transform: translateY(-12px);
} .posts--slider-top-news {
margin-bottom: 0 !important;
}
.posts--slider-top-news .slick-list,
.posts--slider-top-news .slick__slide {
max-height: 660px !important;
}
.posts--slider-top-news .posts__thumb {
float: none;
margin: 0;
}
.posts--slider-top-news .posts__thumb img {
width: 100%;
height: auto;
}
.posts--slider-top-news .posts__inner {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
width: 80%;
}
@media (min-width: 480px) {
.posts--slider-top-news .posts__inner {
width: 50%;
}
}
@media (min-width: 768px) {
.posts--slider-top-news .posts__inner {
width: 50%;
}
}
@media (min-width: 992px) {
.posts--slider-top-news .posts__inner {
width: 620px;
}
}
.posts--slider-top-news .posts__cat {
visibility: visible;
}
@media (min-width: 992px) {
.posts--slider-top-news .posts__cat {
margin-bottom: 13px;
}
}
.posts--slider-top-news .posts__cat-label {
display: inline-block;
float: none;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
.posts--slider-top-news .posts__cat-label {
font-size: 10px;
}
}
.posts--slider-top-news .posts__title {
font-size: 18px;
line-height: 1em;
text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 479px) {
.posts--slider-top-news .posts__title {
padding-left: 15px;
padding-right: 15px;
}
}
@media (min-width: 768px) {
.posts--slider-top-news .posts__title {
font-size: 24px;
}
}
@media (min-width: 992px) {
.posts--slider-top-news .posts__title {
font-size: 34px;
}
}
@media (min-width: 1200px) {
.posts--slider-top-news .posts__title {
font-size: 42px;
}
}
.posts--slider-top-news .posts__title > a:hover {
color: #fff !important;
}
.posts--slider-top-news .posts__title-higlight {
color: #9fe900;
}
.posts--slider-top-news .posts__footer {
display: flex;
align-items: center;
justify-content: center;
}
.posts--slider-top-news .posts__footer .post-author {
margin: 0 10px 0 0;
}
.posts--slider-top-news .posts__footer .post-author__avatar {
margin-bottom: 0;
}
.posts--slider-top-news .posts__footer .post__meta {
margin: 0;
}
.posts--slider-top-news .posts__footer .meta__item {
line-height: 14px;
}
.posts--slider-top-news .post-author {
display: inline-block;
}
@media (max-width: 479px) {
.posts--slider-top-news .post-author {
display: block;
}
}
.posts--slider-top-news .post-author__avatar {
width: 24px;
height: 24px;
margin-right: 4px;
border-radius: 50%;
}
@media (min-width: 768px) {
.posts--slider-top-news .post-author__avatar {
margin-right: 8px;
}
}
.posts--slider-top-news .posts__date {
color: #fff;
font-size: 11px;
}
.posts--slider-top-news .post__meta {
display: inline-block;
margin-right: 0;
color: #fff;
text-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 479px) {
.posts--slider-top-news .post__meta {
margin-bottom: 10px !important;
}
}
@media (min-width: 768px) {
.posts--slider-top-news .post__meta {
margin-right: 2.5em;
}
}
.posts--slider-top-news .meta__item a {
color: #fff;
}
@media (min-width: 768px) {
.posts--slider-top-news .posts__item-has-img .posts__inner {
text-align: left;
-webkit-transform: translate(-50%, -50%) translateX(35%);
transform: translate(-50%, -50%) translateX(35%);
}
}
.posts--slider-top-news .posts__item-has-img .posts__img-player {
position: absolute;
top: 0;
bottom: 0;
max-width: 45%;
z-index: 4;
}
@media (max-width: 767px) {
.posts--slider-top-news .posts__item-has-img .posts__img-player {
display: none;
}
}
@media (min-width: 1200px) {
.posts--slider-top-news .posts__item-has-img .posts__img-player {
left: 50%;
top: auto;
bottom: 0;
-webkit-transform: translate(-585px, 0);
transform: translate(-585px, 0);
}
}
.posts--slider-top-news .posts__item-has-img .posts__img-player img {
vertical-align: bottom;
}
.posts--slider-top-news .posts__item-has-img .posts__footer {
justify-content: flex-start;
} .posts--video-grid .posts__item {
position: relative;
z-index: 4;
overflow: hidden;
margin-bottom: 15px;
border: 1px solid #e4e7ed;
border-radius: 4px;
}
.posts--video-grid .posts__item.posts__item--category-1 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.posts__item--category-2 .posts__link-wrapper::before {
border-color: #07e0c4;
}
.posts--video-grid .posts__item.posts__item--category-3 .posts__link-wrapper::before {
border-color: #9fe900;
}
.posts--video-grid .posts__item.posts__item--category-4 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.posts__item--category-5 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.posts__item--category-6 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.posts__item--category-7 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.posts__item--category-8 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.posts__item--category-9 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.posts__item--category-10 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.posts__item--category-11 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.posts__item--category-12 .posts__link-wrapper::before {
border-color: #38a9ff;
}
.posts--video-grid .posts__item.format-video .posts__link-wrapper::before {
content: "\f04b";
text-indent: 3px;
}
@media (min-width: 992px) {
.posts--video-grid .posts__item--lg .posts__link-wrapper::before {
width: 80px;
height: 80px;
border-width: 6px;
line-height: 68px;
font-size: 32px;
}
.posts--video-grid .posts__item--lg .posts__title {
font-size: 24px;
line-height: 1.08333em;
}
.posts--video-grid .posts__item--lg .posts__cat-label {
font-size: 10px;
}
}
.posts--video-grid .posts__link-wrapper {
display: block;
vertical-align: top;
position: relative;
text-align: left;
}
.posts--video-grid .posts__link-wrapper:hover .posts__inner {
-webkit-transform: translateY(0);
transform: translateY(0);
}
.posts--video-grid .posts__link-wrapper:hover::before {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.posts--video-grid .posts__link-wrapper::before {
content: "\f067";
display: block;
position: absolute;
left: 50%;
top: 50%;
width: 60px;
height: 60px;
margin: -30px 0 0 -30px;
background-color: rgba(23, 29, 33, 0.6);
border-radius: 50%;
border: 4px solid #38a9ff;
z-index: 4;
color: #fff;
font-size: 24px;
text-align: center;
line-height: 52px;
font-family: "Font Awesome 5 Free";
font-weight: 700;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: -webkit-transform 0.3s ease;
transition: transform 0.3s ease;
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
pointer-events: none;
}
.posts--video-grid .posts__inner {
position: absolute;
left: 0;
width: 75%;
bottom: 0;
padding: 0 24px 18px 24px;
-webkit-transform: translateY(100%);
transform: translateY(100%);
transition: -webkit-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
pointer-events: none;
z-index: 4;
}
.posts--video-grid .posts__title {
color: #fff;
margin-bottom: 0.25em;
font-size: 12px;
line-height: 1em;
}
@media (min-width: 480px) {
.posts--video-grid .posts__title {
font-size: 12px;
}
}
@media (min-width: 768px) {
.posts--video-grid .posts__title {
font-size: 13px;
}
}
@media (min-width: 1199px) {
.posts--video-grid .posts__title {
font-size: 14px;
}
}
.posts--video-grid .posts__thumb {
float: none;
margin: 0;
background-color: #171d21;
border-radius: 4px;
}
.posts--video-grid .posts__thumb img {
width: 100%;
height: auto;
border-radius: 4px;
position: relative;
transition: opacity 0.3s ease-in-out;
}
.posts--video-grid .posts__date {
color: #9a9da2;
font-size: 9px;
font-weight: 700;
display: block;
line-height: 1em;
}
@media (min-width: 992px) {
.posts--video-grid .posts__date {
font-size: 10px;
}
}
.posts--excerpt-hide .posts__excerpt {
display: none;
}
.grid-layout {
display: grid;
justify-content: stretch;
grid-column-gap: 0;
grid-row-gap: 0;
}
.grid-layout--1-2-1 {
grid-template-columns: 1fr;
grid-template-rows: repeat(4, 1fr);
}
@media (min-width: 480px) {
.grid-layout--1-2-1 {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
}
}
@media (min-width: 992px) {
.grid-layout--1-2-1 {
grid-template-columns: 43% 1fr 1fr;
grid-template-rows: 360px 260px;
}
}
@media (min-width: 992px) {
.grid-layout--1-2-1 .post-grid__item:nth-child(1) {
grid-row-start: 1;
grid-row-end: 3;
}
}
@media (min-width: 992px) {
.grid-layout--1-2-1 .post-grid__item:nth-child(4) {
grid-column-start: 2;
grid-column-end: 4;
}
} .post--single .post__thumbnail {
border-radius: 4px 4px 0 0;
overflow: hidden;
}
.post--single .post__thumbnail > img {
width: 100%;
height: auto;
}
.post--single .post__thumbnail--square {
border-radius: 0;
}
.post--single .post__category {
overflow: hidden;
margin-bottom: 15px;
}
.post--single .post__title {
font-size: 18px;
line-height: 1.0625em;
margin-bottom: 0.55em;
}
@media (min-width: 992px) {
.post--single .post__title {
font-size: 32px;
}
}
.post--single .post__content-wrapper {
position: relative;
}
.post--single .post__content--inner {
padding: 40px 0 0 45px;
}
@media (min-width: 992px) {
.post--single .post__content--inner-left {
padding-left: 80px;
}
}
@media (min-width: 1200px) {
.post--single .post__content--inner-left {
padding-left: 100px;
}
}
.post--single .post__meta {
margin-bottom: 20px;
}
@media (min-width: 992px) {
.post--single .post__meta {
margin-bottom: 34px;
}
}
.post--single .post__footer {
padding: 30px 0 10px 0;
}
.post--single .post__tags .btn {
margin: 0 5px 8px 0;
}
.post--single .post__tags--simple a {
display: inline-block;
color: #31404b;
font-family: "Montserrat", sans-serif;
margin-right: 0.35em;
}
.post--single .post__tags--simple a::before {
content: "#";
color: #38a9ff;
}
.post--single .post__tags--simple a:hover {
color: #38a9ff;
}
@media (min-width: 992px) {
.post--single .posts__cat-label {
font-size: 10px;
}
}
.post--single-sm .post__title {
margin-bottom: 0.35em;
}
@media (min-width: 992px) {
.post--single-sm .post__title {
font-size: 26px;
}
}
.post--single-sm .post__meta {
margin-bottom: 0;
}
.post--single-sm .post__meta .meta__item--date {
color: #31404b;
}
@media (min-width: 992px) {
.post--single-sm .post__meta {
margin-bottom: 0;
}
}
.post-sharing {
margin-bottom: 10px;
display: flex;
}
.post-sharing .btn {
margin: 0 8px 5px 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding-left: 10px;
padding-right: 15px;
}
.post-sharing .btn:first-child {
margin-left: 0;
}
.post-sharing .btn:last-child {
margin-right: 0;
}
@media (max-width: 768px) {
.post-sharing .btn {
padding-left: 0;
padding-right: 0;
}
.post-sharing .btn .fa {
margin-right: 0;
}
}
@media (max-width: 768px) {
.post-sharing__label {
display: none;
}
}
.post-sharing-compact {
display: flex;
justify-content: center;
padding-top: 20px;
}
@media (min-width: 992px) {
.post-sharing-compact {
padding-top: 40px;
}
}
@media (min-width: 1200px) {
.post-sharing-compact {
padding-top: 70px;
}
}
.post-sharing-compact .btn {
margin: 0 10px;
padding: 5px 0;
width: 80px;
text-align: center;
}
.post-sharing-compact .btn .fa {
margin: 0;
}
.post-sharing-compact.stacked {
justify-content: flex-start;
padding: 0 0 20px 0;
}
@media (min-width: 992px) {
.post-sharing-compact.stacked {
padding: 0;
position: absolute;
left: 0;
top: 0;
flex-direction: column;
}
.post-sharing-compact.stacked .btn {
margin: 0 0 10px 0;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.post-sharing-compact.stacked .btn {
width: 60px;
}
}
@media (min-width: 1200px) {
.post-sharing-compact.stacked {
padding-top: 0;
}
}
.post-sharing-compact--footer {
display: flex;
justify-content: flex-start;
padding-top: 0;
margin-bottom: 1.5em;
}
@media (min-width: 992px) {
.post-sharing-compact--footer {
padding-top: 0;
}
}
@media (min-width: 1200px) {
.post-sharing-compact--footer {
padding-top: 0;
}
}
.post-sharing-compact--footer .btn {
margin-left: 0;
margin-right: 20px;
}
.post-sharing-compact--footer .btn:last-child {
margin-right: 0;
}
.post-sharing-compact--footer:last-child {
margin-bottom: 0;
}
.post--extra-top {
margin-top: -100px;
z-index: 3;
}
@media (min-width: 992px) {
.post--extra-top {
margin-top: -160px;
}
} .post-author__header {
overflow: hidden;
}
.post-author__header + .post-author__description {
margin-top: 26px;
}
.post-author__avatar {
width: 60px;
height: 60px;
overflow: hidden;
border-radius: 50%;
margin: 0 14px 0 0;
display: inline-block;
vertical-align: middle;
}
.post-author__avatar img {
max-width: 100%;
height: auto;
vertical-align: top;
}
.post-author__info {
position: relative;
display: inline-block;
vertical-align: middle;
}
.post-author__name {
margin-bottom: 0.2em;
}
.post-author__slogan {
display: block;
font-size: 11px;
line-height: 1.2em;
font-family: "Montserrat", sans-serif;
color: #9a9da2;
font-weight: 400;
}
.post-author__social-links.social-links {
padding: 10px 0 0 0;
}
@media (min-width: 992px) {
.post-author__social-links.social-links {
padding: 0;
float: right;
margin-right: -2px;
}
}
.post-author--avatar-left .post-author__header {
margin-bottom: 12px;
padding-top: 5px;
}
.post-author--avatar-left .post-author__header + .post-author__description {
margin-top: 0;
}
@media (max-width: 767px) {
.post-author--avatar-left .post-author__header + .post-author__description {
clear: both;
padding-top: 10px;
}
}
.post-author--avatar-left .post-author__avatar {
float: left;
margin-right: 24px;
}
.post-author--avatar-left .card__content {
overflow: hidden;
}
.post-author--simplified .post-author__avatar {
width: auto;
height: auto;
border-radius: 50%;
}
.post-author--simplified .post-author__avatar {
margin-right: 16px;
} .meta {
list-style: none;
padding: 0;
margin: 0;
}
.meta__item {
font-family: "Montserrat", sans-serif;
font-size: 10px;
text-transform: uppercase;
line-height: 1.2em;
display: inline-block;
vertical-align: middle;
}
.meta__item + .meta__item {
margin-left: 8px;
}
@media (min-width: 992px) {
.meta__item + .meta__item {
margin-left: 15px;
}
}
.meta__item::before {
font-size: 13px;
line-height: 1em;
vertical-align: middle;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
font-family: "simple-line-icons";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin-right: 4px;
position: relative;
top: -1px;
}
@media (min-width: 992px) {
.meta__item::before {
margin-right: 8px;
}
}
.meta__item a {
color: #9a9da2;
transition: color 0.2s ease;
}
.meta__item a:hover {
color: #31404b;
}
.meta__item--date {
font-size: 10px;
}
@media (min-width: 992px) {
.meta__item--date {
font-size: 11px;
}
}
.meta__item--date::before {
display: none;
}
.meta__item--views::before {
content: "\e087";
}
.meta__item--likes::before {
display: none;
}
.meta__item--likes .meta-like {
vertical-align: middle;
margin-right: 6px;
font-size: 12px;
}
.meta__item--likes > a {
display: inline-block;
}
.meta__item--likes .liked .meta-like {
color: #f1365e;
}
.meta__item--comments::before {
display: none;
}
.meta__item--comments > a {
display: inline-block;
}
.meta__item--comments > a::before {
font-size: 13px;
line-height: 1em;
vertical-align: middle;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
font-family: "simple-line-icons";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin-right: 4px;
position: relative;
top: -1px;
content: "\e07d";
font-size: 12px;
}
@media (min-width: 992px) {
.meta__item--comments > a::before {
margin-right: 8px;
}
} .post__meta-block--side {
padding: 24px;
}
.post__meta-block--side .post-author__name {
font-size: 13px;
}
.post__meta-block--side .social-links--btn {
margin-left: 74px;
}
.post__meta-block--side .post__meta {
display: none;
}
.post__meta-block--side + .card__content .meta__item--views,
.post__meta-block--side + .card__content .meta__item--likes,
.post__meta-block--side + .card__content .meta__item--comments {
display: inline-block;
}
@media (min-width: 992px) {
.post__meta-block--side {
padding: 0;
float: left;
width: 60px;
margin: 43px 0 0 24px;
}
.post__meta-block--side + .card__content {
overflow: hidden;
padding-left: 24px;
}
.post__meta-block--side + .card__content .meta__item--views,
.post__meta-block--side + .card__content .meta__item--likes,
.post__meta-block--side + .card__content .meta__item--comments {
display: none;
}
.post__meta-block--side .post-author {
text-align: center;
padding-bottom: 34px;
}
.post__meta-block--side .post-author__avatar {
float: none;
margin: 0 auto 8px auto;
width: 60px;
height: 60px;
border-radius: 50%;
}
.post__meta-block--side .post-author__name {
font-size: 10px;
line-height: 1.2em;
margin-bottom: 0.75em;
}
.post__meta-block--side .post-author__slogan {
font-size: 9px;
}
.post__meta-block--side .post__meta {
display: block;
}
.post__meta-block--side .meta__item {
display: block;
text-align: center;
margin: 0 0 21px 0;
}
.post__meta-block--side .meta__item::before {
display: block;
margin: 0 auto 6px auto;
}
.post__meta-block--side .meta__item--likes .meta-like {
display: block;
margin: 0 auto 6px auto;
}
.post__meta-block--side .meta__item--comments > a::before {
display: block;
margin: 0 auto 6px auto;
}
.post__meta-block--side .social-links--btn {
text-align: center;
padding-bottom: 20px;
margin-left: 0;
}
.post__meta-block--side .social-links--btn .social-links__item {
display: block;
margin: 0 auto 12px auto;
}
}
.post__meta-block--top {
padding-bottom: 65px;
}
@media (max-width: 479px) {
.post__meta-block--top {
padding-left: 15px;
padding-right: 15px;
}
}
@media (min-width: 992px) {
.hero-slider .post__meta-block--top .posts__title {
font-size: 42px;
}
}
.hero-slider .post__meta-block--top .posts__title > a {
color: #fff;
}
.post__meta-block--top .post__category {
margin-bottom: 22px;
}
.post__meta-block--top .posts__cat-label {
display: inline-block;
float: none;
font-size: 10px;
}
.post__meta-block--top .page-heading__title,
.post__meta-block--top .posts__title {
font-size: 18px;
line-height: 1em;
margin-bottom: 0.475em;
}
@media (min-width: 480px) {
.post__meta-block--top .page-heading__title,
.post__meta-block--top .posts__title {
font-size: 24px;
}
}
@media (min-width: 768px) {
.post__meta-block--top .page-heading__title,
.post__meta-block--top .posts__title {
font-size: 32px;
}
}
@media (min-width: 992px) {
.post__meta-block--top .page-heading__title,
.post__meta-block--top .posts__title {
font-size: 42px;
}
}
.post__meta-block--top .page-heading__title > a,
.post__meta-block--top .posts__title > a {
color: #fff;
}
.post__meta-block--top .post__meta {
color: #fff;
margin-bottom: 22px;
}
.post__meta-block--top .meta__item a {
color: #fff;
}
.post__meta-block--top .post-author {
text-align: center;
}
.post__meta-block--top .post-author__avatar {
display: block;
width: 40px;
height: 40px;
margin: 0 auto 10px auto;
}
.post__meta-block--top .post-author__avatar--sm {
width: 24px;
height: 24px;
margin: 0 5px 0 0;
border-radius: 50%;
display: inline-block;
vertical-align: middle;
}
.post__meta-block--top .post-author__name {
font-size: 13px;
color: #fff;
}
.post__meta-block--top .post-author__slogan {
font-size: 10px;
font-weight: 400;
}
.post__meta-block-wrapper {
display: flex;
align-items: center;
justify-content: center;
}
@media (min-width: 992px) {
.post__meta-block-wrapper {
height: 450px;
}
}
@media (min-width: 1200px) {
.post__meta-block-wrapper {
height: 545px;
}
}
.post__meta-block-wrapper .post__meta-block--top {
padding-bottom: 0;
} .post__meta-block--side-wide {
padding: 24px;
}
.post__meta-block--side-wide .post__title {
font-size: 18px;
line-height: 1.0833em;
}
@media (min-width: 992px) {
.post__meta-block--side-wide .post__title {
font-size: 24px;
}
}
.post__meta-block--side-wide .post__meta {
margin-bottom: 20px;
}
.post__meta-block--side-wide .post-author {
margin-bottom: 18px;
}
.post__meta-block--side-wide .post-author__avatar {
width: 24px;
height: 24px;
display: inline-block;
vertical-align: middle;
border-radius: 50%;
margin-right: 5px;
}
.post__meta-block--side-wide .post-author__name {
font-size: 10px;
line-height: 1.2em;
color: #9a9da2;
font-weight: 400;
font-style: normal;
}
@media (min-width: 992px) {
.post__meta-block--side-wide {
padding: 0;
float: left;
width: 190px;
margin: 43px 0 0 24px;
}
.post__meta-block--side-wide + .card__content {
overflow: hidden;
padding-left: 60px;
}
.post__meta-block--side-wide .social-links--btn-block {
padding-right: 20px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.post__meta--in-side-wide .meta__item--views,
.post__meta--in-side-wide .meta__item--likes,
.post__meta--in-side-wide .meta__item--comments {
display: none;
}
}
@media (min-width: 1200px) {
.post__meta--in-side-wide .meta__item--views,
.post__meta--in-side-wide .meta__item--likes,
.post__meta--in-side-wide .meta__item--comments {
display: none;
}
} .post-related__prev {
position: relative;
}
.post-related__prev .card__content {
position: relative;
text-align: center;
}
@media (min-width: 992px) {
.post-related__prev .card__content {
text-align: left;
padding-left: 93px;
}
}
.post-related__prev .posts {
display: none;
}
@media (min-width: 992px) {
.post-related__prev .posts {
display: block;
}
}
@media (min-width: 992px) {
.post-related__prev .btn-nav {
position: absolute;
left: 23px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
}
.post-related__next {
text-align: right;
position: relative;
}
.post-related__next .card__content {
position: relative;
text-align: center;
}
@media (min-width: 992px) {
.post-related__next .card__content {
padding-right: 93px;
padding-left: 30px;
text-align: right;
}
.post-related__next .card__content .posts__cat-label {
float: right;
}
.post-related__next .card__content .posts__cat-label + .posts__cat-label {
margin-left: 0 !important;
margin-right: 0.5em;
}
}
.post-related__next .card__content .posts {
display: none;
}
@media (min-width: 992px) {
.post-related__next .card__content .posts {
display: block;
}
}
@media (min-width: 992px) {
.post-related__next .btn-nav {
position: absolute;
right: 23px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
} .post-comments {
overflow: hidden;
}
.comments,
.commentlist {
list-style: none;
padding: 0;
margin: 0;
margin-bottom: -1px;
}
.comment,
.pingback {
position: relative;
padding: 0;
margin: 0;
}
.comments__inner {
position: relative;
border-bottom: 1px solid #e4e7ed;
padding-top: 36px;
padding-bottom: 36px;
}
.card .comments__inner {
margin-left: -24px;
margin-right: -24px;
padding-left: 24px;
padding-right: 24px;
}
.card--lg .comments__inner {
margin-left: -43px;
margin-right: -43px;
padding-left: 43px;
padding-right: 43px;
}
.comments > .comment:first-child > .comments__inner, .comments > .pingback:first-child > .comments__inner {
padding-top: 0;
}
.comment__header {
overflow: hidden;
position: relative;
margin-bottom: 25px;
}
.comment__author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
display: inline-block;
vertical-align: middle;
margin-right: 14px;
}
.pingback .comment__author-avatar {
display: none;
}
.comment__author-avatar--sm {
width: 40px;
height: 40px;
margin-right: 10px;
}
.comment__author-avatar--md {
width: 46px;
height: 46px;
margin-right: 12px;
}
.comment__author-avatar--rounded {
border-radius: 4px;
}
.comment__author-info {
display: inline-block;
vertical-align: middle;
}
.comment__author-info .star-rating {
margin: 12px auto 0 auto;
}
.comment__author-name {
text-transform: none;
font-size: 16px;
margin-bottom: 0.25em;
}
.comment__post-date {
font-size: 11px;
line-height: 1.2em;
display: block;
font-family: "Montserrat", sans-serif;
}
.comment__post-date a {
color: #9a9da2;
}
.comment__post-date a:hover {
color: #38a9ff;
}
.comment__post-date a + a {
color: #1892ed;
}
.comment__post-date a + a:hover {
color: #38a9ff;
}
.comment__reply {
margin-top: 5px;
}
@media (min-width: 992px) {
.comment__reply {
display: block;
position: absolute;
right: 0;
top: 0;
margin-top: 0;
}
}
.comment__body > p:last-child {
margin-bottom: 0;
} .comments .children {
padding-left: 0;
list-style: none;
}
@media (min-width: 992px) {
.card .comments .children .comment .comments__inner {
padding-left: 48px;
}
.card .comments .children .comment .comments__inner::before {
content: "";
display: block;
position: absolute;
left: 15px;
top: 43px;
width: 14px;
height: 20px;
border-left: 1px solid #e4e7ed;
border-bottom: 1px solid #e4e7ed;
}
.card .comments .children .comments--children .comment .comments__inner {
padding-left: 72px;
}
.card .comments .children .comments--children .comment .comments__inner::before {
left: 39px;
}
.card .comments .children .comments--children .comments--children .comment .comments__inner {
padding-left: 96px;
}
.card .comments .children .comments--children .comments--children .comment .comments__inner::before {
left: 63px;
}
.card--lg .comments .children .comment .comments__inner {
padding-left: 86px;
}
.card--lg .comments .children .comment .comments__inner::before {
content: "";
display: block;
position: absolute;
left: 53px;
top: 43px;
width: 14px;
height: 20px;
border-left: 1px solid #e4e7ed;
border-bottom: 1px solid #e4e7ed;
}
.card--lg .comments .children .comments--children .comment .comments__inner {
padding-left: 129px;
}
.card--lg .comments .children .comments--children .comment .comments__inner::before {
left: 96px;
}
.card--lg .comments .children .comments--children .comments--children .comment .comments__inner {
padding-left: 172px;
}
.card--lg .comments .children .comments--children .comments--children .comment .comments__inner::before {
left: 139px;
}
}
.comments--left-thumb .comments__inner {
border-bottom: none;
display: flex;
padding-top: 16px;
flex-wrap: wrap;
}
@media (min-width: 768px) {
.comments--left-thumb .comments__inner {
flex-wrap: nowrap;
}
}
.comments--left-thumb .comment__header {
text-align: center;
flex: 0 0 100%;
padding: 0 10px;
}
@media (min-width: 768px) {
.comments--left-thumb .comment__header {
flex: 0 0 160px;
}
}
@media (min-width: 992px) {
.comments--left-thumb .comment__header {
flex: 0 0 180px;
padding: 0 20px;
}
}
@media (min-width: 1200px) {
.comments--left-thumb .comment__header {
flex: 0 0 200px;
}
}
.comments--left-thumb .comment__author-avatar {
display: block;
margin: 0 auto 10px auto;
}
.comments--left-thumb .comment__author-name {
font-size: 11px;
}
@media (min-width: 992px) {
.comments--left-thumb .comment__author-name {
font-size: 13px;
}
}
.comments--left-thumb .comment__ratings .fa {
font-size: 10px;
margin: 0 1px;
}
.comments--left-thumb .comment__title {
font-size: 12px;
margin-bottom: 1.5em;
padding-top: 0.33em;
}
@media (min-width: 768px) {
.comments--left-thumb .comment__title {
font-size: 18px;
}
}
.post__comments-pagination {
text-align: center;
margin-left: -43px;
margin-right: -43px;
padding: 36px 43px;
}
.post__comments-pagination .pagination {
margin: 0;
}
.comments--thumb-top {
margin-bottom: 50px;
}
.comments--thumb-top .comment__author-avatar {
border-radius: 0;
width: 40px;
height: 40px;
margin-right: 10px;
}
.comments--thumb-top .comment__author-name {
font-size: 13px;
display: inline-block;
margin-right: 0.5em;
margin-bottom: 0;
}
@media (min-width: 992px) {
.comments--thumb-top .comment__author-name {
font-size: 16px;
}
}
.comments--thumb-top .star-rating {
line-height: 1em;
margin: 3px 0 0 0;
text-align: left;
}
.comments--thumb-top .star-rating .fa {
font-size: 10px;
}
.comments--thumb-top .comment__post-date {
display: inline-block;
}
.comments--thumb-top .comment__title {
font-size: 12px;
margin-bottom: 1em;
padding-top: 0.33em;
}
@media (min-width: 768px) {
.comments--thumb-top .comment__title {
font-size: 18px;
}
}
.comments--alt .comment-respond .post-comment-form__header {
background-color: transparent;
}
.comments--alt .comments__inner {
display: flex;
flex-direction: row;
align-items: flex-start;
}
.comments--alt .comment__inner-wrap {
flex: 1;
}
.comments--alt .comment__author-info {
margin-bottom: 4px;
}
.comments--alt .comment__author-name {
display: inline-block;
margin-right: 0.3em;
font-size: 14px;
margin-bottom: 0;
font-style: normal;
}
.comments--alt .comment__post-date {
display: inline-block;
}
.comments--alt .comment__body {
font-size: 12.855px;
line-height: 1.8333em;
}
.comments--alt .comment__reply {
font-family: "Montserrat", sans-serif;
font-size: 10px;
line-height: 1.2em;
padding-top: 11px;
}
@media (min-width: 992px) {
.comments--alt .comment__reply {
position: static;
float: none;
}
}
.comments--alt .comment__reply-link {
color: #31404b;
}
.comments--alt .comment__reply-link:hover {
color: #38a9ff;
}
@media (min-width: 992px) {
.card .comments--alt .children .comment .comments__inner, .comments--alt .children .comment .comments__inner {
padding-left: 72px;
}
.card .comments--alt .children .comment .comments__inner::before, .comments--alt .children .comment .comments__inner::before {
display: none;
}
.card .comments--alt .children .children .comment .comments__inner, .comments--alt .children .children .comment .comments__inner {
padding-left: 96px;
}
.card .comments--alt .children .children .children .comment .comments__inner, .comments--alt .children .children .children .comment .comments__inner {
padding-left: 120px;
}
}
.comments .comment-respond {
padding: 48px 0;
}
.comments .post-comment-form__content {
padding: 0;
}
.comments .post-comment-form__header {
padding: 0;
border: none;
margin-bottom: 24px;
}
.comments .post-comment-form__header::before {
display: none;
}
.form-submit {
margin-bottom: 0;
}
#cancel-comment-reply-link {
color: #f34141;
display: inline-block;
padding: 0 0.5em;
} .post-filter {
background-color: #fff;
border-bottom: 1px solid #e4e7ed;
position: relative;
z-index: 5;
}
@media (max-width: 767px) {
.post-filter .container {
padding-left: 0;
padding-right: 0;
}
}
.post-filter__form {
display: flex;
flex-wrap: wrap;
}
@media (min-width: 992px) {
.post-filter__form {
flex-wrap: nowrap;
}
}
.post-filter__select {
position: relative;
width: 100%;
}
@media (min-width: 992px) {
.post-filter__select {
width: 100%;
max-width: 100%;
flex-grow: 1;
flex-basis: 0;
}
.post-filter__select + .post-filter__select div.cs-skin-border > span {
margin-left: -1px;
}
.post-filter__select + .post-filter__select .cs-options {
left: -1px;
width: auto;
}
}
.post-filter__select .cs-select {
margin-bottom: -1px;
}
.post-filter__select .post-filter__label {
display: block;
position: absolute;
left: 24px;
top: 16px;
z-index: 2;
font-size: 8px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #9a9da2;
}
@media (min-width: 992px) {
.post-filter__select .post-filter__label {
z-index: 201;
top: 28px;
}
}
.post-filter__submit {
display: flex;
width: 100%;
}
@media (min-width: 992px) {
.post-filter__submit {
width: 100%;
max-width: 100%;
flex-grow: 1;
flex-basis: 0;
}
}
.post-filter__submit .btn {
border-radius: 0;
border: none;
width: 100%;
max-width: 100%;
flex-grow: 1;
flex-basis: 0;
}
.post-filter--boxed {
background-color: transparent;
border-bottom: 0;
padding-top: 30px;
}
@media (min-width: 992px) {
.post-filter--boxed {
padding-top: 60px;
margin-bottom: -20px;
}
}
.post-filter--boxed .post-filter__form {
background-color: #fff;
border: 1px solid #e4e7ed;
border-radius: 4px;
}
.post-filter--boxed .post-filter__form .post-filter__select:first-child {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.post-filter--boxed .post-filter__form .post-filter__select:first-child div.cs-skin-border > span {
border-left: 0;
}
.post-filter--boxed .cs-select .cs-options {
left: -1px;
width: calc(100% + 1px);
border-top: 1px solid #e4e7ed;
transition: all 0.2s ease;
overflow: visible;
}
.post-filter--boxed .cs-select .cs-options::before, .post-filter--boxed .cs-select .cs-options::after {
content: "";
display: block;
position: absolute;
width: 0;
height: 0;
font-size: 0;
line-height: 0;
}
.post-filter--boxed .cs-select .cs-options::before {
right: 18px;
top: -8px;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #e4e7ed;
}
.post-filter--boxed .cs-select .cs-options::after {
right: 20px;
top: -7px;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 7px solid #fff;
}
.post-filter--boxed .cs-select.cs-active .cs-options {
transition: all 0.2s ease;
-webkit-transform: translateY(-2px);
transform: translateY(-2px);
}
@media (min-width: 992px) {
.post-filter--boxed .cs-select.cs-active .cs-options {
-webkit-transform: translateY(16px);
transform: translateY(16px);
}
}
.post-filter--boxed .post-filter__submit .btn {
border-radius: 0;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}
@media (min-width: 992px) {
.post-filter--boxed .post-filter__submit .btn {
border-bottom-left-radius: 0;
border-top-right-radius: 4px;
}
} .blog-load-more {
padding: 30px 0 20px 0;
}
@media (min-width: 992px) {
.blog-load-more {
padding: 65px 0 40px 0;
}
}
.blog-load-more .btn {
margin: 0 auto;
}
@media (min-width: 992px) {
.blog-load-more .btn {
width: calc(33.3% + 60px);
}
}   .like-loader,
.like-loader:before,
.like-loader:after {
background: rgba(0, 0, 0, 0.2);
-webkit-animation: load1 1s infinite ease-in-out;
animation: load1 1s infinite ease-in-out;
width: 0.2em;
height: 0.6em;
}
.like-loader:before,
.like-loader:after {
position: absolute;
top: 0;
content: "";
}
.like-loader:before {
left: -0.375em;
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.like-loader {
text-indent: -9999em;
display: inline-block;
position: relative;
vertical-align: middle;
font-size: 1em;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
margin-left: 0.75em;
}
.like-loader::after {
left: 0.375em;
}
@-webkit-keyframes load1 {
0%, 80%, 100% {
box-shadow: 0 0 rgba(0, 0, 0, 0.2);
height: 0.6em;
}
40% {
box-shadow: 0 -0.3em rgba(0, 0, 0, 0.2);
height: 1em;
}
}
@keyframes load1 {
0%, 80%, 100% {
box-shadow: 0 0 rgba(0, 0, 0, 0.2);
height: 0.6em;
}
40% {
box-shadow: 0 -0.3em rgba(0, 0, 0, 0.2);
height: 1em;
}
} .sidebar {
overflow: hidden;
} .widget__title {
text-transform: uppercase;
}
.widget--sidebar .widget__content {
display: none;
}
.widget--sidebar .widget__title + .widget__content,
.widget--sidebar .widget__content:only-child,
.widget--sidebar .widget__content + .widget__content {
display: block;
}
.widget__content-inner {
padding: 24px 24px;
}
.widget__content--bottom-decor {
padding-bottom: 30px;
background-image: linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, whitesmoke 8px, transparent 8px), linear-gradient(to right, #ebebeb 8px, transparent 8px);
background-repeat: repeat-x;
background-size: 72px 24px, 72px 30px, 72px 34px, 72px 40px, 72px 37px, 72px 29px, 144px 30px, 216px 37px;
background-position: 0 100%, 12px 100%, 24px 100%, 36px 100%, 48px 100%, 60px 100%, 12px 100%, 48px 100%;
} .widget--side-panel {
margin-bottom: 62px;
}
.widget--side-panel .widget__title {
margin-bottom: 30px;
font-size: 16px;
text-transform: uppercase;
} .widget--sidebar {
margin-bottom: 15px;
}
.widget--sidebar .widget__content {
font-size: 14px;
line-height: 22px;
} .widget--footer .widget__title {
color: #fff;
font-size: 14px;
font-style: normal;
margin-bottom: 3.5em;
}
@media (max-width: 767px) {
.widget--footer .widget__title {
margin-bottom: 2em;
}
}
.widget--footer + .widget--footer {
margin-top: 30px;
}
@media (max-width: 991px) {
.footer-widgets .row > [class*=col-] .widget--footer {
margin-bottom: 60px;
}
.footer-widgets .row > [class*=col-]:last-child .widget--footer {
margin-bottom: 0;
}
.footer-widgets .row > [class*=col-].col-sm-6:nth-child(3n) {
clear: left;
}
} .widget_media_image .card__content {
text-align: center;
padding-top: 38px;
padding-bottom: 38px;
}  .alc-achievements__content {
text-align: center;
padding: 32px 0 36px 0;
}
.alc-achievements__icon {
margin: 0 auto 13px auto;
}
.alc-achievements__event-title {
font-style: normal;
margin-bottom: 0.15em;
}
.alc-achievements__event-date {
font-family: "Montserrat", sans-serif;
font-size: 10px;
line-height: 1.2em;
text-transform: uppercase;
font-weight: 700;
}
.alc-achievements__meta {
display: flex;
flex-wrap: wrap;
border-top: 1px solid #e4e7ed;
}
.alc-achievements__meta-item {
border-right: 1px solid #e4e7ed;
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
text-align: center;
padding: 24px 12px;
}
.alc-achievements__meta-item:last-child {
border-right: 0;
}
.alc-achievements__meta-value {
font-size: 16px;
line-height: 1.2em;
margin-bottom: 0.4em;
}
.alc-achievements__meta-name {
font-size: 9px;
line-height: 1.2em;
} .widget_archive ul:first-child,
.widget_archive .widget__title + ul, .megamenu-widgets-container .widget_archive ul,
.widget_nav_menu ul:first-child,
.widget_nav_menu .widget__title + ul,
.megamenu-widgets-container .widget_nav_menu ul,
.widget_meta ul:first-child,
.widget_meta .widget__title + ul,
.megamenu-widgets-container .widget_meta ul,
.widget_pages ul:first-child,
.widget_pages .widget__title + ul,
.megamenu-widgets-container .widget_pages ul,
.widget_recent_comments ul:first-child,
.widget_recent_comments .widget__title + ul,
.megamenu-widgets-container .widget_recent_comments ul,
.widget_recent_entries ul:first-child,
.widget_recent_entries .widget__title + ul,
.megamenu-widgets-container .widget_recent_entries ul,
.widget_categories ul:first-child,
.widget_categories .widget__title + ul,
.megamenu-widgets-container .widget_categories ul,
.widget_rss ul:first-child,
.widget_rss .widget__title + ul,
.megamenu-widgets-container .widget_rss ul,
.widget_product_categories ul:first-child,
.widget_product_categories .widget__title + ul,
.megamenu-widgets-container .widget_product_categories ul {
list-style: none;
padding: 0;
margin-left: -24px;
margin-right: -24px;
margin-top: -24px;
margin-bottom: -24px;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
}
.widget_archive ul:first-child > li,
.widget_archive .widget__title + ul > li, .megamenu-widgets-container .widget_archive ul > li,
.widget_nav_menu ul:first-child > li,
.widget_nav_menu .widget__title + ul > li,
.megamenu-widgets-container .widget_nav_menu ul > li,
.widget_meta ul:first-child > li,
.widget_meta .widget__title + ul > li,
.megamenu-widgets-container .widget_meta ul > li,
.widget_pages ul:first-child > li,
.widget_pages .widget__title + ul > li,
.megamenu-widgets-container .widget_pages ul > li,
.widget_recent_comments ul:first-child > li,
.widget_recent_comments .widget__title + ul > li,
.megamenu-widgets-container .widget_recent_comments ul > li,
.widget_recent_entries ul:first-child > li,
.widget_recent_entries .widget__title + ul > li,
.megamenu-widgets-container .widget_recent_entries ul > li,
.widget_categories ul:first-child > li,
.widget_categories .widget__title + ul > li,
.megamenu-widgets-container .widget_categories ul > li,
.widget_rss ul:first-child > li,
.widget_rss .widget__title + ul > li,
.megamenu-widgets-container .widget_rss ul > li,
.widget_product_categories ul:first-child > li,
.widget_product_categories .widget__title + ul > li,
.megamenu-widgets-container .widget_product_categories ul > li {
position: relative;
padding: 0;
}
.widget_archive ul:first-child > li::before,
.widget_archive .widget__title + ul > li::before, .megamenu-widgets-container .widget_archive ul > li::before,
.widget_nav_menu ul:first-child > li::before,
.widget_nav_menu .widget__title + ul > li::before,
.megamenu-widgets-container .widget_nav_menu ul > li::before,
.widget_meta ul:first-child > li::before,
.widget_meta .widget__title + ul > li::before,
.megamenu-widgets-container .widget_meta ul > li::before,
.widget_pages ul:first-child > li::before,
.widget_pages .widget__title + ul > li::before,
.megamenu-widgets-container .widget_pages ul > li::before,
.widget_recent_comments ul:first-child > li::before,
.widget_recent_comments .widget__title + ul > li::before,
.megamenu-widgets-container .widget_recent_comments ul > li::before,
.widget_recent_entries ul:first-child > li::before,
.widget_recent_entries .widget__title + ul > li::before,
.megamenu-widgets-container .widget_recent_entries ul > li::before,
.widget_categories ul:first-child > li::before,
.widget_categories .widget__title + ul > li::before,
.megamenu-widgets-container .widget_categories ul > li::before,
.widget_rss ul:first-child > li::before,
.widget_rss .widget__title + ul > li::before,
.megamenu-widgets-container .widget_rss ul > li::before,
.widget_product_categories ul:first-child > li::before,
.widget_product_categories .widget__title + ul > li::before,
.megamenu-widgets-container .widget_product_categories ul > li::before {
display: none;
}
.widget_archive ul:first-child > li + li,
.widget_archive .widget__title + ul > li + li, .megamenu-widgets-container .widget_archive ul > li + li,
.widget_nav_menu ul:first-child > li + li,
.widget_nav_menu .widget__title + ul > li + li,
.megamenu-widgets-container .widget_nav_menu ul > li + li,
.widget_meta ul:first-child > li + li,
.widget_meta .widget__title + ul > li + li,
.megamenu-widgets-container .widget_meta ul > li + li,
.widget_pages ul:first-child > li + li,
.widget_pages .widget__title + ul > li + li,
.megamenu-widgets-container .widget_pages ul > li + li,
.widget_recent_comments ul:first-child > li + li,
.widget_recent_comments .widget__title + ul > li + li,
.megamenu-widgets-container .widget_recent_comments ul > li + li,
.widget_recent_entries ul:first-child > li + li,
.widget_recent_entries .widget__title + ul > li + li,
.megamenu-widgets-container .widget_recent_entries ul > li + li,
.widget_categories ul:first-child > li + li,
.widget_categories .widget__title + ul > li + li,
.megamenu-widgets-container .widget_categories ul > li + li,
.widget_rss ul:first-child > li + li,
.widget_rss .widget__title + ul > li + li,
.megamenu-widgets-container .widget_rss ul > li + li,
.widget_product_categories ul:first-child > li + li,
.widget_product_categories .widget__title + ul > li + li,
.megamenu-widgets-container .widget_product_categories ul > li + li {
border-top: 1px solid #e4e7ed;
}
.widget_archive ul:first-child > li > a,
.widget_archive .widget__title + ul > li > a, .megamenu-widgets-container .widget_archive ul > li > a,
.widget_nav_menu ul:first-child > li > a,
.widget_nav_menu .widget__title + ul > li > a,
.megamenu-widgets-container .widget_nav_menu ul > li > a,
.widget_meta ul:first-child > li > a,
.widget_meta .widget__title + ul > li > a,
.megamenu-widgets-container .widget_meta ul > li > a,
.widget_pages ul:first-child > li > a,
.widget_pages .widget__title + ul > li > a,
.megamenu-widgets-container .widget_pages ul > li > a,
.widget_recent_comments ul:first-child > li > a,
.widget_recent_comments .widget__title + ul > li > a,
.megamenu-widgets-container .widget_recent_comments ul > li > a,
.widget_recent_entries ul:first-child > li > a,
.widget_recent_entries .widget__title + ul > li > a,
.megamenu-widgets-container .widget_recent_entries ul > li > a,
.widget_categories ul:first-child > li > a,
.widget_categories .widget__title + ul > li > a,
.megamenu-widgets-container .widget_categories ul > li > a,
.widget_rss ul:first-child > li > a,
.widget_rss .widget__title + ul > li > a,
.megamenu-widgets-container .widget_rss ul > li > a,
.widget_product_categories ul:first-child > li > a,
.widget_product_categories .widget__title + ul > li > a,
.megamenu-widgets-container .widget_product_categories ul > li > a {
display: block;
padding: 22px 24px;
color: #31404b;
transition: color 0.3s ease;
}
.widget_archive ul:first-child > li > a:hover,
.widget_archive .widget__title + ul > li > a:hover, .megamenu-widgets-container .widget_archive ul > li > a:hover,
.widget_nav_menu ul:first-child > li > a:hover,
.widget_nav_menu .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_nav_menu ul > li > a:hover,
.widget_meta ul:first-child > li > a:hover,
.widget_meta .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_meta ul > li > a:hover,
.widget_pages ul:first-child > li > a:hover,
.widget_pages .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_pages ul > li > a:hover,
.widget_recent_comments ul:first-child > li > a:hover,
.widget_recent_comments .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_recent_comments ul > li > a:hover,
.widget_recent_entries ul:first-child > li > a:hover,
.widget_recent_entries .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_recent_entries ul > li > a:hover,
.widget_categories ul:first-child > li > a:hover,
.widget_categories .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_categories ul > li > a:hover,
.widget_rss ul:first-child > li > a:hover,
.widget_rss .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_rss ul > li > a:hover,
.widget_product_categories ul:first-child > li > a:hover,
.widget_product_categories .widget__title + ul > li > a:hover,
.megamenu-widgets-container .widget_product_categories ul > li > a:hover {
color: #1892ed;
}
.widget_archive ul:first-child > li.cat-item-none,
.widget_archive .widget__title + ul > li.cat-item-none, .megamenu-widgets-container .widget_archive ul > li.cat-item-none,
.widget_nav_menu ul:first-child > li.cat-item-none,
.widget_nav_menu .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_nav_menu ul > li.cat-item-none,
.widget_meta ul:first-child > li.cat-item-none,
.widget_meta .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_meta ul > li.cat-item-none,
.widget_pages ul:first-child > li.cat-item-none,
.widget_pages .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_pages ul > li.cat-item-none,
.widget_recent_comments ul:first-child > li.cat-item-none,
.widget_recent_comments .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_recent_comments ul > li.cat-item-none,
.widget_recent_entries ul:first-child > li.cat-item-none,
.widget_recent_entries .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_recent_entries ul > li.cat-item-none,
.widget_categories ul:first-child > li.cat-item-none,
.widget_categories .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_categories ul > li.cat-item-none,
.widget_rss ul:first-child > li.cat-item-none,
.widget_rss .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_rss ul > li.cat-item-none,
.widget_product_categories ul:first-child > li.cat-item-none,
.widget_product_categories .widget__title + ul > li.cat-item-none,
.megamenu-widgets-container .widget_product_categories ul > li.cat-item-none {
padding: 24px 24px;
}
.widget_archive ul:first-child ul,
.widget_archive .widget__title + ul ul, .megamenu-widgets-container .widget_archive ul ul,
.widget_nav_menu ul:first-child ul,
.widget_nav_menu .widget__title + ul ul,
.megamenu-widgets-container .widget_nav_menu ul ul,
.widget_meta ul:first-child ul,
.widget_meta .widget__title + ul ul,
.megamenu-widgets-container .widget_meta ul ul,
.widget_pages ul:first-child ul,
.widget_pages .widget__title + ul ul,
.megamenu-widgets-container .widget_pages ul ul,
.widget_recent_comments ul:first-child ul,
.widget_recent_comments .widget__title + ul ul,
.megamenu-widgets-container .widget_recent_comments ul ul,
.widget_recent_entries ul:first-child ul,
.widget_recent_entries .widget__title + ul ul,
.megamenu-widgets-container .widget_recent_entries ul ul,
.widget_categories ul:first-child ul,
.widget_categories .widget__title + ul ul,
.megamenu-widgets-container .widget_categories ul ul,
.widget_rss ul:first-child ul,
.widget_rss .widget__title + ul ul,
.megamenu-widgets-container .widget_rss ul ul,
.widget_product_categories ul:first-child ul,
.widget_product_categories .widget__title + ul ul,
.megamenu-widgets-container .widget_product_categories ul ul {
border-top: 1px solid #e4e7ed;
list-style: none;
margin: 0;
padding: 18px 24px 18px 39px;
}
.widget_archive ul:first-child ul li,
.widget_archive .widget__title + ul ul li, .megamenu-widgets-container .widget_archive ul ul li,
.widget_nav_menu ul:first-child ul li,
.widget_nav_menu .widget__title + ul ul li,
.megamenu-widgets-container .widget_nav_menu ul ul li,
.widget_meta ul:first-child ul li,
.widget_meta .widget__title + ul ul li,
.megamenu-widgets-container .widget_meta ul ul li,
.widget_pages ul:first-child ul li,
.widget_pages .widget__title + ul ul li,
.megamenu-widgets-container .widget_pages ul ul li,
.widget_recent_comments ul:first-child ul li,
.widget_recent_comments .widget__title + ul ul li,
.megamenu-widgets-container .widget_recent_comments ul ul li,
.widget_recent_entries ul:first-child ul li,
.widget_recent_entries .widget__title + ul ul li,
.megamenu-widgets-container .widget_recent_entries ul ul li,
.widget_categories ul:first-child ul li,
.widget_categories .widget__title + ul ul li,
.megamenu-widgets-container .widget_categories ul ul li,
.widget_rss ul:first-child ul li,
.widget_rss .widget__title + ul ul li,
.megamenu-widgets-container .widget_rss ul ul li,
.widget_product_categories ul:first-child ul li,
.widget_product_categories .widget__title + ul ul li,
.megamenu-widgets-container .widget_product_categories ul ul li {
padding: 10px 24px 10px 0;
position: relative;
}
.widget_archive ul:first-child ul li a,
.widget_archive .widget__title + ul ul li a, .megamenu-widgets-container .widget_archive ul ul li a,
.widget_nav_menu ul:first-child ul li a,
.widget_nav_menu .widget__title + ul ul li a,
.megamenu-widgets-container .widget_nav_menu ul ul li a,
.widget_meta ul:first-child ul li a,
.widget_meta .widget__title + ul ul li a,
.megamenu-widgets-container .widget_meta ul ul li a,
.widget_pages ul:first-child ul li a,
.widget_pages .widget__title + ul ul li a,
.megamenu-widgets-container .widget_pages ul ul li a,
.widget_recent_comments ul:first-child ul li a,
.widget_recent_comments .widget__title + ul ul li a,
.megamenu-widgets-container .widget_recent_comments ul ul li a,
.widget_recent_entries ul:first-child ul li a,
.widget_recent_entries .widget__title + ul ul li a,
.megamenu-widgets-container .widget_recent_entries ul ul li a,
.widget_categories ul:first-child ul li a,
.widget_categories .widget__title + ul ul li a,
.megamenu-widgets-container .widget_categories ul ul li a,
.widget_rss ul:first-child ul li a,
.widget_rss .widget__title + ul ul li a,
.megamenu-widgets-container .widget_rss ul ul li a,
.widget_product_categories ul:first-child ul li a,
.widget_product_categories .widget__title + ul ul li a,
.megamenu-widgets-container .widget_product_categories ul ul li a {
color: #9a9da2;
transition: color 0.3s ease;
}
.widget_archive ul:first-child ul li a:hover,
.widget_archive .widget__title + ul ul li a:hover, .megamenu-widgets-container .widget_archive ul ul li a:hover,
.widget_nav_menu ul:first-child ul li a:hover,
.widget_nav_menu .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_nav_menu ul ul li a:hover,
.widget_meta ul:first-child ul li a:hover,
.widget_meta .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_meta ul ul li a:hover,
.widget_pages ul:first-child ul li a:hover,
.widget_pages .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_pages ul ul li a:hover,
.widget_recent_comments ul:first-child ul li a:hover,
.widget_recent_comments .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_recent_comments ul ul li a:hover,
.widget_recent_entries ul:first-child ul li a:hover,
.widget_recent_entries .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_recent_entries ul ul li a:hover,
.widget_categories ul:first-child ul li a:hover,
.widget_categories .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_categories ul ul li a:hover,
.widget_rss ul:first-child ul li a:hover,
.widget_rss .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_rss ul ul li a:hover,
.widget_product_categories ul:first-child ul li a:hover,
.widget_product_categories .widget__title + ul ul li a:hover,
.megamenu-widgets-container .widget_product_categories ul ul li a:hover {
color: #31404b;
}
.widget_archive ul:first-child ul li .count,
.widget_archive .widget__title + ul ul li .count, .megamenu-widgets-container .widget_archive ul ul li .count,
.widget_nav_menu ul:first-child ul li .count,
.widget_nav_menu .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_nav_menu ul ul li .count,
.widget_meta ul:first-child ul li .count,
.widget_meta .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_meta ul ul li .count,
.widget_pages ul:first-child ul li .count,
.widget_pages .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_pages ul ul li .count,
.widget_recent_comments ul:first-child ul li .count,
.widget_recent_comments .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_recent_comments ul ul li .count,
.widget_recent_entries ul:first-child ul li .count,
.widget_recent_entries .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_recent_entries ul ul li .count,
.widget_categories ul:first-child ul li .count,
.widget_categories .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_categories ul ul li .count,
.widget_rss ul:first-child ul li .count,
.widget_rss .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_rss ul ul li .count,
.widget_product_categories ul:first-child ul li .count,
.widget_product_categories .widget__title + ul ul li .count,
.megamenu-widgets-container .widget_product_categories ul ul li .count {
top: 10px;
right: 0;
}
.widget_archive ul:first-child ul ul,
.widget_archive .widget__title + ul ul ul, .megamenu-widgets-container .widget_archive ul ul ul,
.widget_nav_menu ul:first-child ul ul,
.widget_nav_menu .widget__title + ul ul ul,
.megamenu-widgets-container .widget_nav_menu ul ul ul,
.widget_meta ul:first-child ul ul,
.widget_meta .widget__title + ul ul ul,
.megamenu-widgets-container .widget_meta ul ul ul,
.widget_pages ul:first-child ul ul,
.widget_pages .widget__title + ul ul ul,
.megamenu-widgets-container .widget_pages ul ul ul,
.widget_recent_comments ul:first-child ul ul,
.widget_recent_comments .widget__title + ul ul ul,
.megamenu-widgets-container .widget_recent_comments ul ul ul,
.widget_recent_entries ul:first-child ul ul,
.widget_recent_entries .widget__title + ul ul ul,
.megamenu-widgets-container .widget_recent_entries ul ul ul,
.widget_categories ul:first-child ul ul,
.widget_categories .widget__title + ul ul ul,
.megamenu-widgets-container .widget_categories ul ul ul,
.widget_rss ul:first-child ul ul,
.widget_rss .widget__title + ul ul ul,
.megamenu-widgets-container .widget_rss ul ul ul,
.widget_product_categories ul:first-child ul ul,
.widget_product_categories .widget__title + ul ul ul,
.megamenu-widgets-container .widget_product_categories ul ul ul {
border-top: none;
padding-left: 15px;
padding-bottom: 0;
}
.widget_archive ul:first-child .count,
.widget_archive .widget__title + ul .count, .megamenu-widgets-container .widget_archive ul .count,
.widget_nav_menu ul:first-child .count,
.widget_nav_menu .widget__title + ul .count,
.megamenu-widgets-container .widget_nav_menu ul .count,
.widget_meta ul:first-child .count,
.widget_meta .widget__title + ul .count,
.megamenu-widgets-container .widget_meta ul .count,
.widget_pages ul:first-child .count,
.widget_pages .widget__title + ul .count,
.megamenu-widgets-container .widget_pages ul .count,
.widget_recent_comments ul:first-child .count,
.widget_recent_comments .widget__title + ul .count,
.megamenu-widgets-container .widget_recent_comments ul .count,
.widget_recent_entries ul:first-child .count,
.widget_recent_entries .widget__title + ul .count,
.megamenu-widgets-container .widget_recent_entries ul .count,
.widget_categories ul:first-child .count,
.widget_categories .widget__title + ul .count,
.megamenu-widgets-container .widget_categories ul .count,
.widget_rss ul:first-child .count,
.widget_rss .widget__title + ul .count,
.megamenu-widgets-container .widget_rss ul .count,
.widget_product_categories ul:first-child .count,
.widget_product_categories .widget__title + ul .count,
.megamenu-widgets-container .widget_product_categories ul .count {
display: block;
position: absolute;
right: 24px;
top: 22px;
}
.widget_archive.widget--footer ul:first-child, .widget__title + .widget_archive.widget--footer,
.widget_nav_menu.widget--footer ul:first-child,
.widget__title + .widget_nav_menu.widget--footer,
.widget_meta.widget--footer ul:first-child,
.widget__title + .widget_meta.widget--footer,
.widget_pages.widget--footer ul:first-child,
.widget__title + .widget_pages.widget--footer,
.widget_recent_comments.widget--footer ul:first-child,
.widget__title + .widget_recent_comments.widget--footer,
.widget_recent_entries.widget--footer ul:first-child,
.widget__title + .widget_recent_entries.widget--footer,
.widget_categories.widget--footer ul:first-child,
.widget__title + .widget_categories.widget--footer,
.widget_rss.widget--footer ul:first-child,
.widget__title + .widget_rss.widget--footer,
.widget_product_categories.widget--footer ul:first-child,
.widget__title + .widget_product_categories.widget--footer {
margin: 0;
padding: 0;
}
.widget_archive.widget--footer ul:first-child > li + li, .widget__title + .widget_archive.widget--footer > li + li,
.widget_nav_menu.widget--footer ul:first-child > li + li,
.widget__title + .widget_nav_menu.widget--footer > li + li,
.widget_meta.widget--footer ul:first-child > li + li,
.widget__title + .widget_meta.widget--footer > li + li,
.widget_pages.widget--footer ul:first-child > li + li,
.widget__title + .widget_pages.widget--footer > li + li,
.widget_recent_comments.widget--footer ul:first-child > li + li,
.widget__title + .widget_recent_comments.widget--footer > li + li,
.widget_recent_entries.widget--footer ul:first-child > li + li,
.widget__title + .widget_recent_entries.widget--footer > li + li,
.widget_categories.widget--footer ul:first-child > li + li,
.widget__title + .widget_categories.widget--footer > li + li,
.widget_rss.widget--footer ul:first-child > li + li,
.widget__title + .widget_rss.widget--footer > li + li,
.widget_product_categories.widget--footer ul:first-child > li + li,
.widget__title + .widget_product_categories.widget--footer > li + li {
border-top: none;
}
.widget_archive.widget--footer ul:first-child > li > a, .widget__title + .widget_archive.widget--footer > li > a,
.widget_nav_menu.widget--footer ul:first-child > li > a,
.widget__title + .widget_nav_menu.widget--footer > li > a,
.widget_meta.widget--footer ul:first-child > li > a,
.widget__title + .widget_meta.widget--footer > li > a,
.widget_pages.widget--footer ul:first-child > li > a,
.widget__title + .widget_pages.widget--footer > li > a,
.widget_recent_comments.widget--footer ul:first-child > li > a,
.widget__title + .widget_recent_comments.widget--footer > li > a,
.widget_recent_entries.widget--footer ul:first-child > li > a,
.widget__title + .widget_recent_entries.widget--footer > li > a,
.widget_categories.widget--footer ul:first-child > li > a,
.widget__title + .widget_categories.widget--footer > li > a,
.widget_rss.widget--footer ul:first-child > li > a,
.widget__title + .widget_rss.widget--footer > li > a,
.widget_product_categories.widget--footer ul:first-child > li > a,
.widget__title + .widget_product_categories.widget--footer > li > a {
padding: 10px 0;
color: #6b6d70;
}
.widget_archive.widget--footer ul:first-child > li > a:hover, .widget__title + .widget_archive.widget--footer > li > a:hover,
.widget_nav_menu.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_nav_menu.widget--footer > li > a:hover,
.widget_meta.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_meta.widget--footer > li > a:hover,
.widget_pages.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_pages.widget--footer > li > a:hover,
.widget_recent_comments.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_recent_comments.widget--footer > li > a:hover,
.widget_recent_entries.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_recent_entries.widget--footer > li > a:hover,
.widget_categories.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_categories.widget--footer > li > a:hover,
.widget_rss.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_rss.widget--footer > li > a:hover,
.widget_product_categories.widget--footer ul:first-child > li > a:hover,
.widget__title + .widget_product_categories.widget--footer > li > a:hover {
color: #38a9ff;
}
.widget_archive.widget--footer ul:first-child ul, .widget__title + .widget_archive.widget--footer ul,
.widget_nav_menu.widget--footer ul:first-child ul,
.widget__title + .widget_nav_menu.widget--footer ul,
.widget_meta.widget--footer ul:first-child ul,
.widget__title + .widget_meta.widget--footer ul,
.widget_pages.widget--footer ul:first-child ul,
.widget__title + .widget_pages.widget--footer ul,
.widget_recent_comments.widget--footer ul:first-child ul,
.widget__title + .widget_recent_comments.widget--footer ul,
.widget_recent_entries.widget--footer ul:first-child ul,
.widget__title + .widget_recent_entries.widget--footer ul,
.widget_categories.widget--footer ul:first-child ul,
.widget__title + .widget_categories.widget--footer ul,
.widget_rss.widget--footer ul:first-child ul,
.widget__title + .widget_rss.widget--footer ul,
.widget_product_categories.widget--footer ul:first-child ul,
.widget__title + .widget_product_categories.widget--footer ul {
border-top: none;
padding: 0 0 0 15px;
}
.widget_archive.widget--footer ul:first-child ul li a, .widget__title + .widget_archive.widget--footer ul li a,
.widget_nav_menu.widget--footer ul:first-child ul li a,
.widget__title + .widget_nav_menu.widget--footer ul li a,
.widget_meta.widget--footer ul:first-child ul li a,
.widget__title + .widget_meta.widget--footer ul li a,
.widget_pages.widget--footer ul:first-child ul li a,
.widget__title + .widget_pages.widget--footer ul li a,
.widget_recent_comments.widget--footer ul:first-child ul li a,
.widget__title + .widget_recent_comments.widget--footer ul li a,
.widget_recent_entries.widget--footer ul:first-child ul li a,
.widget__title + .widget_recent_entries.widget--footer ul li a,
.widget_categories.widget--footer ul:first-child ul li a,
.widget__title + .widget_categories.widget--footer ul li a,
.widget_rss.widget--footer ul:first-child ul li a,
.widget__title + .widget_rss.widget--footer ul li a,
.widget_product_categories.widget--footer ul:first-child ul li a,
.widget__title + .widget_product_categories.widget--footer ul li a {
color: #6b6d70;
}
.widget_archive.widget--footer ul:first-child ul li a:hover, .widget__title + .widget_archive.widget--footer ul li a:hover,
.widget_nav_menu.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_nav_menu.widget--footer ul li a:hover,
.widget_meta.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_meta.widget--footer ul li a:hover,
.widget_pages.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_pages.widget--footer ul li a:hover,
.widget_recent_comments.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_recent_comments.widget--footer ul li a:hover,
.widget_recent_entries.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_recent_entries.widget--footer ul li a:hover,
.widget_categories.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_categories.widget--footer ul li a:hover,
.widget_rss.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_rss.widget--footer ul li a:hover,
.widget_product_categories.widget--footer ul:first-child ul li a:hover,
.widget__title + .widget_product_categories.widget--footer ul li a:hover {
color: #38a9ff;
}
.widget_nav_menu.widget--sidebar .sub-menu li, .widget_nav_menu.widget--footer .sub-menu li, .widget_nav_menu.widget--side-panel .sub-menu li {
width: 100% !important;
float: none;
}
.widget_recent_entries .post-date {
display: block;
margin-bottom: 10px;
}
.widget_recent_entries:not(.widget--footer) .post-date {
padding: 0 24px 22px;
margin-top: -12px;
margin-bottom: 0;
}
.widget_recent_comments ul:first-child > li {
padding: 22px 24px;
}
.widget_recent_comments ul:first-child > li > a {
display: inline;
padding: 0;
}
.widget_recent_comments.widget--footer ul {
padding: 0;
}
.widget_recent_comments.widget--footer ul > li {
font-family: "Source Sans Pro", sans-serif;
text-transform: none;
font-weight: 400;
font-size: 14px;
line-height: 22px;
}
.widget_recent_comments.widget--footer ul > li + li {
margin-top: 1em;
}
.widget_rss ul:first-child > li,
.widget_rss .widget__title + ul > li {
padding: 22px 24px;
}
.widget_rss ul:first-child > li::before,
.widget_rss .widget__title + ul > li::before {
display: none !important;
}
.widget_rss ul:first-child > li > a,
.widget_rss .widget__title + ul > li > a {
padding: 0;
}
.widget_rss ul:first-child > li .rss-date,
.widget_rss .widget__title + ul > li .rss-date {
display: block;
margin-top: 0.5em;
font-size: 9px;
font-weight: 400;
}
.widget_rss ul:first-child > li .rssSummary,
.widget_rss .widget__title + ul > li .rssSummary {
margin-top: 0.75em;
font-family: "Source Sans Pro", sans-serif;
text-transform: none;
font-weight: 400;
font-size: 14px;
line-height: 22px;
}
.widget_rss ul:first-child > li cite,
.widget_rss .widget__title + ul > li cite {
display: block;
font-family: "Source Sans Pro", sans-serif;
margin-top: 0.75em;
text-transform: none;
}
.widget_rss.widget--footer ul > li {
padding: 0;
}
.widget_rss.widget--footer ul > li + li {
margin-top: 2em;
}
.widget_rss.widget--footer ul > li > a {
color: #fff;
}
.widget_rss.widget--footer ul > li .rssSummary {
font-size: 14px;
line-height: 22px;
} #sb_instagram {
--images_padding: 0px;
}
#sb_instagram #sb_instagram_header {
padding: 0 !important;
margin-bottom: 20px;
}
#sb_instagram #sbi_images {
padding: 0 !important;
width: calc(100% + var(--images_padding) * 2);
margin-top: calc(var(--images_padding) * -1);
margin-left: calc(var(--images_padding) * -1);
margin-right: calc(var(--images_padding) * -1);
}
#sb_instagram #sbi_images .sbi_item {
padding: var(--images_padding) !important;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo {
border-radius: 0;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo::before {
content: "";
display: block;
position: absolute;
z-index: 2;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: #1892ed;
border-radius: 0;
opacity: 0;
transition: opacity 0.3s ease;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo::after {
content: "\f067";
display: block;
position: absolute;
z-index: 2;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%) scale(0);
transform: translate(-50%, -50%) scale(0);
text-rendering: auto;
font-family: "Font Awesome 5 Free";
font-weight: 700;
font-size: 1.5em;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transition: all 0.3s ease;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo:hover::before {
opacity: 0.8;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo:hover::after {
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
}
#sb_instagram #sbi_load {
text-align: left;
}
#sb_instagram #sbi_load .sbi_follow_btn {
text-align: left;
margin-left: 0;
}
#sb_instagram #sbi_load .sbi_follow_btn > a {
border: 1px solid transparent;
font-weight: 700;
font-family: "Montserrat", sans-serif;
font-style: normal;
text-transform: uppercase;
transition: all 0.3s ease;
vertical-align: middle;
padding: 13px 42px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
padding: 10px 38px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
background-color: #1e78dd;
color: #fff;
box-shadow: none;
margin: 15px 5px 0 0;
padding-left: 24px;
padding-right: 24px;
}
#sb_instagram #sbi_load .sbi_follow_btn > a:hover, #sb_instagram #sbi_load .sbi_follow_btn > a:focus, #sb_instagram #sbi_load .sbi_follow_btn > a.focus {
color: #fff;
}
#sb_instagram #sbi_load .sbi_follow_btn > a:active, #sb_instagram #sbi_load .sbi_follow_btn > a.active {
box-shadow: none;
}
#sb_instagram #sbi_load .sbi_follow_btn > a:hover, #sb_instagram #sbi_load .sbi_follow_btn > a:active, #sb_instagram #sbi_load .sbi_follow_btn > a:focus {
background-color: #3185e3;
box-shadow: none;
}
#sb_instagram #sbi_load .sbi_load_btn {
border: 1px solid transparent;
font-weight: 700;
font-family: "Montserrat", sans-serif;
font-style: normal;
text-transform: uppercase;
transition: all 0.3s ease;
vertical-align: middle;
padding: 13px 42px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
color: #fff;
background-color: #9a9da2;
border-color: transparent;
padding: 10px 38px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
box-shadow: none;
margin: 15px 5px 0 0;
padding-left: 24px;
padding-right: 24px;
}
#sb_instagram #sbi_load .sbi_load_btn:hover, #sb_instagram #sbi_load .sbi_load_btn:focus, #sb_instagram #sbi_load .sbi_load_btn.focus {
color: #fff;
}
#sb_instagram #sbi_load .sbi_load_btn:active, #sb_instagram #sbi_load .sbi_load_btn.active {
box-shadow: none;
}
#sb_instagram #sbi_load .sbi_load_btn:focus, #sb_instagram #sbi_load .sbi_load_btn.focus {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:hover {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:active, #sb_instagram #sbi_load .sbi_load_btn.active, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:active:hover, #sb_instagram #sbi_load .sbi_load_btn:active:focus, #sb_instagram #sbi_load .sbi_load_btn:active.focus, #sb_instagram #sbi_load .sbi_load_btn.active:hover, #sb_instagram #sbi_load .sbi_load_btn.active:focus, #sb_instagram #sbi_load .sbi_load_btn.active.focus, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle:hover, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle:focus, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle.focus {
color: #fff;
background-color: #6e7177;
border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:active, #sb_instagram #sbi_load .sbi_load_btn.active, .open > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle {
background-image: none;
}
#sb_instagram #sbi_load .sbi_load_btn.disabled, #sb_instagram #sbi_load .sbi_load_btn[disabled] {
background-color: #676a6f;
border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn.disabled:hover, #sb_instagram #sbi_load .sbi_load_btn.disabled:focus, #sb_instagram #sbi_load .sbi_load_btn.disabled.focus, #sb_instagram #sbi_load .sbi_load_btn[disabled]:hover, #sb_instagram #sbi_load .sbi_load_btn[disabled]:focus, #sb_instagram #sbi_load .sbi_load_btn[disabled].focus, fieldset[disabled] #sb_instagram #sbi_load .sbi_load_btn:hover, fieldset[disabled] #sb_instagram #sbi_load .sbi_load_btn:focus, fieldset[disabled] #sb_instagram #sbi_load .sbi_load_btn.focus {
background-color: #676a6f;
border-color: rgba(0, 0, 0, 0);
}
#sb_instagram #sbi_load .sbi_load_btn:not(:disabled):not(.disabled):active, #sb_instagram #sbi_load .sbi_load_btn:not(:disabled):not(.disabled).active, .show > #sb_instagram #sbi_load .sbi_load_btn.dropdown-toggle {
color: #fff;
background-color: #868a91;
border-color: transparent;
}
#sb_instagram #sbi_load .sbi_load_btn .badge {
color: #9a9da2;
background-color: #fff;
}
#sb_instagram #sbi_load .sbi_load_btn:hover, #sb_instagram #sbi_load .sbi_load_btn:active, #sb_instagram #sbi_load .sbi_load_btn:focus {
box-shadow: none;
}
.alc-sbi--insta-section#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo, .alc-sbi--insta-section#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo::before {
border-radius: 0;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a {
color: #fff;
background-color: #9a9da2;
border-color: transparent;
padding: 13px 42px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.focus {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:hover {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active:hover, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active.focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active:hover, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active.focus, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle:hover, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle:focus, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle.focus {
color: #fff;
background-color: #6e7177;
border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:active, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.active, .open > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle {
background-image: none;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.disabled, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a[disabled] {
background-color: #676a6f;
border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.disabled:hover, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.disabled:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.disabled.focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a[disabled]:hover, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a[disabled]:focus, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a[disabled].focus, fieldset[disabled] .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:hover, fieldset[disabled] .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:focus, fieldset[disabled] .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.focus {
background-color: #676a6f;
border-color: rgba(0, 0, 0, 0);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:not(:disabled):not(.disabled):active, .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a:not(:disabled):not(.disabled).active, .show > .alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a.dropdown-toggle {
color: #fff;
background-color: #868a91;
border-color: transparent;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a .badge {
color: #9a9da2;
background-color: #fff;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_load_btn {
padding: 13px 42px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
}
@media (min-width: 580px) {
.alc-sbi--insta-section#sb_instagram #sbi_load {
position: absolute;
width: auto;
float: left;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_follow_btn > a {
margin-top: 0;
}
.alc-sbi--insta-section#sb_instagram #sbi_load .sbi_load_btn {
margin-top: 0;
}
} .widget-contact-info__desc {
margin-bottom: 32px;
} .footer-widgets .widget_text .form-control {
background-color: #2b2e33;
color: #fff;
}
.footer-widgets .widget_text .form-control:not(:focus) {
border-color: #2b2e33;
} .widget.widget-social {
background-color: transparent;
border: none;
box-shadow: none;
}
.widget.widget-social .card__content {
padding: 0;
}
.widget-social--condensed {
display: flex;
justify-content: space-between;
margin-left: -5px;
margin-right: -5px;
overflow: hidden;
}
.widget-social--condensed .btn-social-counter {
display: flex;
flex-direction: column;
flex-wrap: wrap;
padding: 0;
text-align: center;
margin-left: 5px;
margin-right: 5px;
width: 33.3%;
max-width: 33.3%;
}
.widget-social--condensed .btn-social-counter + .btn-social-counter {
margin-top: 0;
}
.widget-social--condensed .btn-social-counter__icon {
position: relative;
width: 100%;
padding: 35px 0 10px 0;
background-color: transparent !important;
color: #fff;
}
.widget-social--condensed .btn-social-counter__title {
font-size: 10px;
padding: 0 12px 10px 12px;
}
.widget-social--condensed .btn-social-counter__add-icon {
position: relative;
right: auto;
top: 0;
margin-top: 0;
margin-left: auto;
margin-right: auto;
margin-bottom: 10px;
}
.widget-social--condensed .btn-social-counter__count {
order: 9;
padding: 10px 5px;
}
.widget-social--grid {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
overflow: hidden;
margin-bottom: -10px;
}
.widget-social--grid .btn-social-counter {
padding: 0;
text-align: center;
flex-basis: calc(50% - 5px);
max-width: calc(50% - 5px);
margin-bottom: 10px;
text-align: left;
padding-left: 46px;
padding-top: 20px;
padding-right: 38px;
}
.widget-social--grid .btn-social-counter + .btn-social-counter {
margin-top: 0;
}
.widget-social--grid .btn-social-counter .btn-social-counter__icon {
background-color: transparent;
width: 46px;
text-indent: 8px;
color: #fff;
}
.widget-social--grid .btn-social-counter .btn-social-counter__title {
font-size: 12px;
line-height: 1em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.widget-social--grid .btn-social-counter .btn-social-counter__count {
font-size: 10px;
line-height: 1em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.widget-social--grid .btn-social-counter .btn-social-counter__add-icon {
border: none;
width: 34px;
top: 0;
bottom: 0;
right: 0;
height: auto;
margin: 0;
border-radius: 0;
background-color: rgba(255, 255, 255, 0.1);
}
.widget-social--buttons {
display: flex;
flex-wrap: wrap;
overflow: hidden;
margin: 0 -8px;
}
.widget-social--buttons .btn-social-counter {
display: flex;
flex-direction: column;
flex-wrap: wrap;
padding: 0;
text-align: center;
width: calc(33.3% - 16px);
max-width: calc(33.3% - 16px);
border: none;
margin: 0 8px 16px 8px;
}
.widget-social--buttons .btn-social-counter + .btn-social-counter {
margin-top: 0;
}
.widget-social--buttons .btn-social-counter__icon {
position: relative;
width: 100%;
padding: 45px 0 0 0;
background-color: transparent !important;
color: #fff;
}
.widget-social--buttons .btn-social-counter__title {
display: none;
}
.widget-social--buttons .btn-social-counter__add-icon {
width: 18px;
height: 18px;
right: 8px;
top: 8px;
margin-top: 0;
}
.widget-social--buttons .btn-social-counter__count {
order: 9;
padding: 4px 5px 14px 5px;
} .widget_tag_cloud .tagcloud .btn,
.widget_product_tag_cloud .tagcloud .btn {
margin: 0 5px 9px 0;
}
.widget_tag_cloud .tagcloud .btn.btn-xs,
.widget_product_tag_cloud .tagcloud .btn.btn-xs {
font-size: 9px !important;
}
.widget_tag_cloud.widget--sidebar .widget__content,
.widget_product_tag_cloud.widget--sidebar .widget__content {
padding-bottom: 18px;
}
.footer-widgets .widget_tag_cloud .tagcloud .btn.btn-outline.btn-primary,
.footer-widgets .widget_product_tag_cloud .tagcloud .btn.btn-outline.btn-primary {
color: #fff;
border-color: rgba(255, 255, 255, 0.2);
} .widget-banner.widget--sidebar .widget__content {
padding: 38px;
}
.widget-banner__img {
text-align: center;
}
.widget-banner__img img {
max-width: 100%;
height: auto;
} .widget-tabbed .nav.widget-tabbed__nav {
margin: -24px -24px 26px -24px;
border-bottom: 1px solid #e4e7ed;
width: auto;
padding: 0;
}
.widget-tabbed .nav.widget-tabbed__nav > li {
margin-bottom: 0;
}
.widget-tabbed .nav.widget-tabbed__nav > li > a {
border: none;
border-radius: 0;
font-size: 11px;
font-style: normal;
line-height: 1.5em;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
padding: 12px 6px;
color: rgba(49, 64, 75, 0.4);
font-weight: bold;
letter-spacing: -0.02em;
transition: color 0.2s ease-in-out;
}
.widget-tabbed .nav.widget-tabbed__nav > li > a:hover {
background-color: transparent;
border: none;
color: #31404b;
}
.widget-tabbed .nav.widget-tabbed__nav > li > a.active {
border: none;
background-color: transparent;
color: #31404b;
}
.footer-widgets .widget-tabbed .nav.widget-tabbed__nav {
margin: 0 0 26px 0;
border-bottom: none;
}
.footer-widgets .widget-tabbed .nav.widget-tabbed__nav > li > a {
color: rgba(255, 255, 255, 0.4);
}
.footer-widgets .widget-tabbed .nav.widget-tabbed__nav > li > a:hover {
color: #fff;
}
.footer-widgets .widget-tabbed .nav.widget-tabbed__nav > li > a.active {
background-color: transparent;
color: #fff;
} .widget-newsletter .widget-newsletter__subtitle,
.widget_mc4wp_form_widget .widget-newsletter__subtitle {
font-size: 13px;
text-transform: uppercase;
margin-bottom: 1.4em;
}
.widget-newsletter .widget-newsletter__desc,
.widget_mc4wp_form_widget .widget-newsletter__desc {
margin-bottom: 20px;
}
.widget-newsletter .widget-newsletter__desc p:last-child,
.widget_mc4wp_form_widget .widget-newsletter__desc p:last-child {
margin-bottom: 0;
}
.widget-newsletter .inline-form,
.widget_mc4wp_form_widget .inline-form {
padding: 8px 0;
}
.mc4wp-error {
color: #f34141;
}
.mc4wp-success {
color: #24d9b0;
}
.mc4wp-notice {
color: #0cb2e2;
} .newslog {
list-style: none;
padding: 0;
margin: 0;
}
.card .newslog {
margin-top: -24px;
margin-bottom: -24px;
}
.newslog__item {
border-bottom: 1px solid #e4e7ed;
padding: 24px 24px;
font-size: 11px;
line-height: 17px;
font-family: "Montserrat", sans-serif;
}
.card .newslog__item {
margin-left: -24px;
margin-right: -24px;
}
.newslog__item:last-child {
border-bottom: none;
}
.newslog__item strong {
font-weight: 400;
color: #31404b;
}
.newslog__item--injury .newslog__item-inner::before {
width: 16px;
height: 16px;
border-radius: 50%;
background-color: #ff5353;
border: 1px solid #e54444;
background-image: linear-gradient(to left, #fff, #fff), linear-gradient(to left, #fff, #fff);
background-size: 8px 2px, 2px 8px;
background-position: 3px 6px, 6px 3px;
}
.newslog__item--join .newslog__item-inner::before {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 12'%3E%3Cpath transform='translate(-983.875 -2316.34)' fill='%2314d6c6' stroke='none' d='M986,2327.66l-2.122-2.13,3.536-3.53-3.536-3.54,2.122-2.12,5.657,5.66Z'/%3E%3C/svg%3E");
background-size: 8px 12px;
width: 8px;
height: 12px;
}
.newslog__item--exit .newslog__item-inner::before {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 12'%3E%3Cpath transform='translate(-983.875 -2316.34)' fill='%23ee5353' stroke='none' d='M986,2327.66l-2.122-2.13,3.536-3.53-3.536-3.54,2.122-2.12,5.657,5.66Z'/%3E%3C/svg%3E");
background-size: 8px 12px;
width: 8px;
height: 12px;
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
.newslog__item--award .newslog__item-inner::before {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/soccer/icon-trophy.svg);
background-size: 18px 19px;
width: 18px;
height: 19px;
}
.newslog__item--oth-pos .newslog__item-inner::before {
content: "\f00c";
top: 0;
font-family: "Font Awesome 5 Free";
font-weight: 700;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 14px;
color: #24d9b0;
width: 16px;
background-image: none;
}
.newslog__item--oth-neg .newslog__item-inner::before {
content: "\f00d";
top: 0;
font-family: "Font Awesome 5 Free";
font-weight: 700;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 14px;
color: #f34141;
width: 16px;
background-image: none;
}
.newslog__item-inner {
position: relative;
padding-left: 36px;
}
.newslog__item-inner:before {
content: "";
display: block;
position: absolute;
left: 0;
top: 6px;
background-repeat: no-repeat;
background-size: 13px 13px;
width: 13px;
height: 13px;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 13'%3E%3Cpath transform='translate(-978.5 -2710.5)' fill='none' stroke='%231bdfb8' d='M991,2719h-4v4h-4v-4h-4v-4h4v-4h4v4h4v4Z'/%3E%3C/svg%3E");
}
.newslog__date {
margin-top: 0.5em;
display: block;
color: rgba(154, 157, 162, 0.4);
} .widget_countdown .match-preview__countdown {
margin: 32px -24px 0 -24px;
} .comments-list {
list-style-type: none;
padding: 0;
margin: 0;
}
.comments-list__item {
overflow: hidden;
margin-bottom: 18px;
}
.card .comments-list__item {
border-bottom: 1px solid #e4e7ed;
margin-left: -24px;
margin-right: -24px;
padding-left: 24px;
padding-right: 24px;
padding-bottom: 24px;
margin-bottom: 24px;
}
.comments-list__item:last-child, .card .comments-list__item:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}
.comments-list__header {
margin-bottom: 12px;
overflow: hidden;
position: relative;
padding-right: 40px;
}
.comments-list__avatar {
width: 40px;
height: 40px;
overflow: hidden;
border-radius: 50%;
display: inline-block;
vertical-align: middle;
margin-right: 7px;
}
.comments-list__info {
display: inline-block;
vertical-align: middle;
}
.comments-list__author-name {
text-transform: none;
font-size: 13px;
line-height: 1.2em;
margin-bottom: 0.1em;
}
@media (min-width: 992px) {
.comments-list__author-name {
font-size: 15px;
}
}
.comments-list__date {
display: block;
font-size: 11px;
line-height: 1.2em;
font-family: "Montserrat", sans-serif;
}
.comments-list__link {
display: block;
position: absolute;
top: 5px;
right: 0;
color: #c2c4c7;
font-size: 14px;
transition: color 0.2s ease;
width: 30px;
height: 20px;
line-height: 20px;
text-align: center;
}
.comments-list__link:hover {
color: #31404b;
}
.comments-list--alt .comments-list__item--category-1 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__item--category-2 .comments-list__post::before {
background-color: #07e0c4;
}
.comments-list--alt .comments-list__item--category-3 .comments-list__post::before {
background-color: #9fe900;
}
.comments-list--alt .comments-list__item--category-4 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__item--category-5 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__item--category-6 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__item--category-7 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__item--category-8 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__item--category-9 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__item--category-10 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__item--category-11 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__item--category-12 .comments-list__post::before {
background-color: #38a9ff;
}
.comments-list--alt .comments-list__avatar {
float: left;
margin-right: 10px;
border-radius: 4px;
}
.comments-list--alt .comments-list__info {
display: block;
}
.comments-list--alt .comments-list__author-name {
text-transform: uppercase;
padding-top: 0.3em;
}
.comments-list--alt .comments-list__post {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 11px;
line-height: 1.2em;
font-style: italic;
margin-bottom: 0;
}
.comments-list--alt .comments-list__link {
top: 0;
}
.comments-list--alt .comments-list__body {
font-size: 13px;
margin-bottom: 17px;
} .team-info-list {
margin: 0;
}
.team-info__item {
padding: 10px 24px;
display: flex;
}
.team-info__item + .team-info__item {
border-top: 1px solid #e4e7ed;
}
.team-info__label,
.team-info__value,
.team-info__item--desc strong {
font-family: "Montserrat", sans-serif;
font-size: 12px;
color: #31404b;
font-weight: 700;
}
.team-info__value {
margin-left: auto;
}
.team-info__value--active {
color: #38a9ff;
}
.team-info__item--desc {
display: block;
padding-top: 24px;
padding-bottom: 24px;
font-size: 12px;
line-height: 20px;
}
.team-info__item--desc .team-info__label {
display: inline-block;
margin: 0;
}
.team-info__item--desc p:last-child {
margin-bottom: 0;
} .twitter-feed {
list-style-type: none;
padding: 0;
margin: 0;
}
.twitter-feed__item {
overflow: hidden;
margin-bottom: 18px;
}
.card .twitter-feed__item {
border-bottom: 1px solid #e4e7ed;
margin-left: -24px;
margin-right: -24px;
padding-left: 24px;
padding-right: 24px;
padding-bottom: 24px;
margin-bottom: 24px;
}
.twitter-feed__item:last-child, .card .twitter-feed__item:last-child {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}
.twitter-feed__header {
margin-bottom: 12px;
display: flex;
align-items: center;
}
.twitter-feed__header .twitter-feed__timestamp {
display: none;
}
.twitter-feed__header .twitter-feed__timestamp::before {
display: none;
}
.twitter-feed__thumb {
width: 40px;
height: 40px;
overflow: hidden;
border-radius: 2px;
margin-right: 10px;
vertical-align: middle;
}
.twitter-feed__info {
flex: 1 0 auto;
}
.twitter-feed__name {
font-size: 12px;
font-weight: 400;
font-style: normal;
text-transform: none;
margin-bottom: 0.1em;
line-height: 1.2em;
}
@media (min-width: 992px) {
.twitter-feed__name {
font-size: 15px;
}
}
.twitter-feed__username {
color: #9a9da2;
font-size: 11px;
line-height: 1.2em;
margin-bottom: 0;
font-weight: 400;
font-style: normal;
text-transform: none;
}
.twitter-feed__username > a {
color: #9a9da2;
text-decoration: none;
transition: color 0.2s ease;
}
.twitter-feed__username > a:hover {
color: #31404b;
text-decoration: none;
}
.twitter-feed__body {
margin-bottom: 20px;
font-size: 14px;
line-height: 22px;
}
.twitter-feed__body a {
color: #2bd0ff;
}
.twitter-feed__body a:hover {
color: #00acde;
}
.twitter-feed__footer {
overflow: hidden;
}
.twitter-feed__timestamp {
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
font-weight: 400;
line-height: 1.2em;
text-transform: none;
float: left;
}
.twitter-feed__timestamp::before {
content: "\f099";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
text-rendering: auto;
font-size: 14px;
color: #3fcef2;
margin-right: 7px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.twitter-feed__timestamp > a {
color: #9a9da2;
text-decoration: none;
transition: color 0.2s ease;
}
.twitter-feed__timestamp > a:hover {
color: #31404b;
text-decoration: none;
}
.twitter-feed__actions {
float: right;
}
.twitter-feed__reply {
display: inline-block;
margin-right: 5px;
width: 18px;
height: 14px;
position: relative;
top: -2px;
background-size: 12px 8px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath transform='translate(-1241 -2200)' fill='%23c2c4c7' d='M1247,2203h6v2h-6v-2Zm4,0h2v5h-2v-5Zm-10,1,6-3.99v7.98Z'/%3E%3C/svg%3E");
transition: opacity 0.3s ease;
}
.twitter-feed__reply:hover {
opacity: 0.7;
}
.twitter-feed__retweet {
display: inline-block;
margin: 0 5px;
width: 18px;
height: 14px;
position: relative;
top: -2px;
background-size: 16px 11px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 11'%3E%3Cpath transform='translate(-1270 -2199)' fill='%23c2c4c7' d='M1272,2204h2v5h-2v-5Zm0,3h6v2h-6v-2Zm1-8,3.01,5h-6.02Zm11,6h-2v-5h2v5Zm0-3h-6v-2h6v2Zm-1,8-3.01-5h6.02Z'/%3E%3C/svg%3E");
transition: opacity 0.3s ease;
}
.twitter-feed__retweet:hover {
opacity: 0.7;
}
.twitter-feed__favorite {
display: inline-block;
margin-left: 5px;
width: 14px;
height: 14px;
position: relative;
top: -2px;
background-size: 12px 12px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 15'%3E%3Cpath fill='%23c2c4c7' d='M15.021875,1.25 C15.9072961,2.16146289 16.35,3.27473301 16.35,4.58984375 C16.35,5.90495449 15.9072961,7.01822461 15.021875,7.9296875 L8.225,15 L1.428125,7.9296875 C0.542703906,7.01822461 0.1,5.90495449 0.1,4.58984375 C0.1,3.27473301 0.542703906,2.16146289 1.428125,1.25 C2.20937891,0.4166625 3.16640059,0 4.29921875,0 C5.43203691,0 6.38905859,0.4166625 7.1703125,1.25 L8.225,2.34375 L9.31875,1.25 C10.1000039,0.4166625 11.0505152,0 12.1703125,0 C13.2901098,0 14.2406211,0.4166625 15.021875,1.25 Z'/%3E%3C/svg%3E");
transition: opacity 0.3s ease;
}
.twitter-feed__favorite:hover {
opacity: 0.7;
} .widget--footer .twitter-feed__thumb {
width: 25px;
height: 25px;
}
.widget--footer .twitter-feed__name {
font-size: 11px;
text-transform: uppercase;
font-weight: 700;
color: #fff;
}
@media (min-width: 992px) {
.widget--footer .twitter-feed__name {
font-size: 12px;
}
}
.widget--footer .twitter-feed__username {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
}
.widget--footer .twitter-feed__username > a:hover {
color: #38a9ff;
}
.widget--footer .twitter-feed__body {
margin-bottom: 1em;
}
.widget--footer .twitter-feed__body a {
color: #4cd3ff;
}
.widget--footer .twitter-feed__body a:hover {
color: #fff;
}
.widget--footer .twitter-feed__footer {
display: none;
} .widget-twitter--alt .twitter-feed__header .twitter-feed__timestamp {
display: block;
}
.widget-twitter--alt .twitter-feed__footer .twitter-feed__timestamp {
display: none;
}
.widget-twitter--alt .twitter-feed__footer .twitter-feed__actions {
float: none;
}
.widget-twitter--alt .twitter-feed__reply {
margin-right: 10px;
}
.widget-twitter--alt .twitter-feed__retweet {
margin: 0 10px;
}
.widget-twitter--alt .twitter-feed__favorite {
margin-left: 10px;
} .widget_custom-twitter-feeds-widget .card__content {
padding: 0;
}
.widget_custom-twitter-feeds-widget.card .ctf-item {
border-bottom: 1px solid #e4e7ed;
padding-inline: 24px !important;
padding-block: 24px !important;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more {
margin: 24px 24px;
-webkit-margin-before: 0;
margin-block-start: 0;
width: auto;
border: 1px solid transparent;
font-weight: 700;
font-family: "Montserrat", sans-serif;
font-style: normal;
text-transform: uppercase;
transition: all 0.3s ease;
vertical-align: middle;
padding: 13px 42px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
color: #fff;
background-color: #1b95e0;
border-color: transparent;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.focus {
color: #fff;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:active, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active {
box-shadow: none;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.focus {
color: #fff;
background-color: #2fa0e6;
border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:hover {
color: #fff;
background-color: #2fa0e6;
border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:active, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle {
color: #fff;
background-color: #2fa0e6;
border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:active:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more:active:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more:active.focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active.focus, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle:hover, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle:focus, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle.focus {
color: #fff;
background-color: #126293;
border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:active, .widget_custom-twitter-feeds-widget #ctf #ctf-more.active, .open > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle {
background-image: none;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more.disabled, .widget_custom-twitter-feeds-widget #ctf #ctf-more[disabled] {
background-color: #105885;
border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more.disabled:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more.disabled:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more.disabled.focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more[disabled]:hover, .widget_custom-twitter-feeds-widget #ctf #ctf-more[disabled]:focus, .widget_custom-twitter-feeds-widget #ctf #ctf-more[disabled].focus, fieldset[disabled] .widget_custom-twitter-feeds-widget #ctf #ctf-more:hover, fieldset[disabled] .widget_custom-twitter-feeds-widget #ctf #ctf-more:focus, fieldset[disabled] .widget_custom-twitter-feeds-widget #ctf #ctf-more.focus {
background-color: #105885;
border-color: rgba(0, 0, 0, 0);
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more:not(:disabled):not(.disabled):active, .widget_custom-twitter-feeds-widget #ctf #ctf-more:not(:disabled):not(.disabled).active, .show > .widget_custom-twitter-feeds-widget #ctf #ctf-more.dropdown-toggle {
color: #fff;
background-color: #2fa0e6;
border-color: transparent;
}
.widget_custom-twitter-feeds-widget #ctf #ctf-more .badge {
color: #1b95e0;
background-color: #fff;
} .widget_tp_twitch_widget.card {
border: none;
padding: 0;
border-radius: 0;
background-color: transparent;
box-shadow: none;
}
.widget_tp_twitch_widget.card .card__content {
padding: 0;
}
.widget_tp_twitch_widget.card .card__header {
border-radius: 4px;
}
.widget_tp_twitch_widget.card .card__header::before {
border-bottom-left-radius: 4px;
}
.widget_tp_twitch_widget.card .card__header + .card__content {
padding-top: 15px;
}
.widget_tp_twitch_widget.card .twitch-stream-video .card__content {
padding: 24px 24px;
}
.twitch-stream-wrapper {
margin-bottom: 15px;
}
.twitch-stream-wrapper:last-child {
margin-bottom: 0;
}
.twitch-stream {
flex-direction: row;
align-items: stretch;
min-height: 86px;
position: relative;
overflow: hidden;
z-index: 1;
margin-bottom: 0 !important;
}
.twitch-stream--has-video, .twitch-stream--has-video.card {
border-bottom: 0;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
margin-bottom: 0;
}
.twitch-stream--has-video .twitch-stream__overlay {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.twitch-stream__overlay {
background-position: 0 0;
background-size: cover;
background-repeat: no-repeat;
display: block;
position: absolute !important;
z-index: -1;
left: 0;
right: 0;
top: 0;
bottom: 0;
border-radius: 4px;
}
.twitch-stream__img {
flex-basis: 102px;
align-self: center;
}
.twitch-stream__body {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
padding: 10px 15px;
}
.twitch-stream__featured {
font-size: 12px;
line-height: 1.2em;
text-transform: uppercase;
font-style: italic;
color: #9a9da2;
margin-bottom: 0.2em;
}
.twitch-stream__featured a {
color: #9a9da2;
}
.twitch-stream__title {
font-size: 12px;
margin-bottom: 0.4em;
color: #fff;
}
@media (min-width: 992px) {
.twitch-stream__title {
font-size: 14px;
}
}
.twitch-stream__title > a {
color: #fff;
}
.twitch-stream__info {
font-size: 10px;
line-height: 1.5em;
margin-bottom: 8px;
color: #9a9da2;
}
@media (min-width: 992px) {
.twitch-stream__info {
font-size: 11px;
}
}
.twitch-stream__info a {
color: #9a9da2;
}
.twitch-stream__info a:hover {
color: #fff;
}
.twitch-stream__info .tp-twitch-icon-verified {
margin-left: 0.5em;
vertical-align: middle;
}
.tp-twitch-icon-views {
margin-right: 0.5em;
vertical-align: middle;
}
.twitch-stream__footer {
display: flex;
flex-wrap: nowrap;
align-items: center;
}
.twitch-stream__counters {
margin-left: auto;
font-size: 11px;
display: flex;
align-items: center;
}
.twitch-stream__views,
.twitch-stream__viewers {
margin-left: 1em;
}
.twitch-stream__views::before,
.twitch-stream__viewers::before {
font-size: 13px;
vertical-align: top;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
display: inline-block;
font-family: "simple-line-icons";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin-right: 3px;
}
.twitch-stream__viewers {
color: #fff;
}
.twitch-stream__viewers::before {
content: "\e005";
}
.twitch-stream__views::before {
content: "\e087";
}
.twitch-stream__status {
font-size: 12px;
line-height: 1.2em;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-style: italic;
font-weight: 700;
position: relative;
padding-left: 14px;
color: #9a9da2;
}
.twitch-stream__status::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 50%;
margin-top: -3px;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: #9a9da2;
}
.tp-twitch-stream--live .twitch-stream__status {
color: #fff;
}
.tp-twitch-stream--live .twitch-stream__status::before {
background-color: #ff004e;
box-shadow: 0 0 0 rgba(255, 0, 78, 0.4);
-webkit-animation: twitchpulse 1.5s infinite;
animation: twitchpulse 1.5s infinite;
}
.twitch-stream__status--scheduled::before {
background-color: #31404b;
}
.twitch-stream__countdown-counter {
display: inline-block;
vertical-align: text-top;
}
.twitch-stream__countdown-counter .countdown-counter__item {
font-size: 12px;
display: inline-block;
float: none;
width: auto;
color: #455a6a;
}
.twitch-stream__countdown-counter .countdown-counter__item + .countdown-counter__item::before {
display: inline-block;
position: static;
left: 0;
top: 0;
font-size: 12px;
margin: 0 0.2em;
}
.twitch-stream__countdown-counter .countdown-counter__label {
display: none;
}
.twitch-stream-video {
margin-bottom: 0 !important;
}
.twitch-stream-video, .twitch-stream-video.card {
border-top-left-radius: 0;
border-top-right-radius: 0;
text-align: center;
}
.twitch-iframe-container {
position: relative;
padding-bottom: 56.25%;
overflow: hidden;
max-width: 100%;
height: auto;
}
.twitch-iframe-container iframe,
.twitch-iframe-container object,
.twitch-iframe-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.twitch-stream-video__clip {
border: 1px solid #e4e7ed;
display: inline-block;
margin: 0 auto;
}
.twitch-stream-video__clip iframe,
.twitch-stream-video__clip img {
max-width: 100%;
vertical-align: top;
}
.twitch-stream-video__link {
display: block;
position: relative;
}
.twitch-stream-video__link::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
opacity: 0.8;
background-color: #000;
}
.twitch-stream-video__link::after {
content: "\f04b";
display: block;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-size: 30px;
line-height: 1em;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 900;
transition: all 0.2s ease;
}
.twitch-stream-video__link:hover::after {
opacity: 0.7;
}
.twitch-stream__thumbnail-link {
display: block;
position: relative;
overflow: hidden;
background-color: #000;
border: 1px solid #e4e7ed;
padding-bottom: 56.25%;
max-width: 100%;
height: auto;
}
.card--no-paddings .twitch-stream__thumbnail-link {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border: none;
}
.twitch-stream__thumbnail-link .twitch-stream__thumbnail-img {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.twitch-stream__thumbnail-overlay {
display: flex;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}
.twitch-stream__thumbnail-overlay:hover {
cursor: pointer;
}
.twitch-stream__thumbnail-overlay:hover .twitch-stream__thumbnail-icon {
opacity: 0.5;
}
.twitch-stream__thumbnail-icon {
display: block;
color: #fff;
font-size: 30px;
line-height: 1em;
transition: opacity 0.3s ease;
}
@-webkit-keyframes twitchpulse {
0% {
box-shadow: 0 0 0 0 rgba(255, 0, 78, 0.4);
}
70% {
box-shadow: 0 0 0 8px rgba(255, 0, 78, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 0, 78, 0);
}
}
@keyframes twitchpulse {
0% {
box-shadow: 0 0 0 0 rgba(255, 0, 78, 0.4);
}
70% {
box-shadow: 0 0 0 8px rgba(255, 0, 78, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 0, 78, 0);
}
} .widget-featured .card__header::before {
background-color: #ef2e5b;
}
.widget-featured .widget__content.card__content {
padding-bottom: 0;
}
.widget-featured .posts__thumb {
position: relative;
overflow: hidden;
}
.widget-featured .posts__thumb::before {
content: "!";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-color: rgba(239, 46, 91, 0.8);
font-size: 54px;
line-height: 80px;
text-align: center;
color: #fff;
font-family: "Montserrat", sans-serif;
font-weight: 700;
} .poll-form__question {
font-size: 15px;
line-height: 26px;
margin-bottom: 1em;
}
.poll-form__options {
line-height: 26px;
}
.poll-form__options .radio-inline {
margin-bottom: 9px;
font-weight: 700;
}
.poll-form__options .radio-wrapper {
overflow: hidden;
}
.poll-form__options .radio-progress-value {
float: right;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
} .awards--slider {
position: relative;
}
.awards__item {
text-align: center;
}
.awards__figure {
display: block;
text-align: center;
}
.awards__figure img {
margin: 0 auto;
}
.awards__figure--space {
padding: 30px 0;
}
.awards__desc {
padding: 18px 0;
}
@media (min-width: 992px) {
.awards__desc {
padding: 27px 0;
}
}
.awards__name {
line-height: 1.2em;
margin-bottom: 0.25em;
font-size: 12px;
text-transform: uppercase;
}
@media (min-width: 992px) {
.awards__name {
font-size: 14px;
}
}
.awards__date {
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
}
@media (min-width: 992px) {
.awards__date {
font-size: 10px;
}
}
.awards__stars {
font-size: 10px;
padding: 5px 0 0 0;
}
.awards__stars .fa {
margin: 0 2px;
color: #ffdc11;
}
.awards-filter {
list-style: none;
padding: 0 0 0 7px;
margin-top: 0;
margin-left: -24px;
margin-right: -24px;
margin-bottom: 3px;
border-bottom: 1px solid #e4e7ed;
}
.awards-filter__item {
display: inline;
}
.awards-filter__link {
display: inline-block;
padding: 9px 16px;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #9a9da2;
transition: color 0.3s ease;
}
.awards-filter__link:hover {
color: #31404b;
}
.awards-filter__link--active {
color: #31404b;
}  .widget_calendar .card__content {
padding: 0;
}
.calendar_wrap,
.sp-calendar-wrapper {
padding: 10px;
}
.calendar_wrap > table,
.sp-calendar-wrapper > table {
width: 100%;
background: none;
}
.calendar_wrap > table > thead > tr > th,
.sp-calendar-wrapper > table > thead > tr > th {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
text-align: center;
padding: 10px;
border-bottom: none;
}
.calendar_wrap > table > tfoot > tr > td,
.sp-calendar-wrapper > table > tfoot > tr > td {
border-top: none;
}
.calendar_wrap > table > tbody > tr > td,
.sp-calendar-wrapper > table > tbody > tr > td {
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
text-align: center;
padding: 8px 10px;
border-top: none;
height: 38px;
vertical-align: middle;
}
.calendar_wrap > table > tbody > tr > td a,
.sp-calendar-wrapper > table > tbody > tr > td a {
display: inline-block;
width: 30px;
height: 30px;
background-color: #38a9ff;
border-radius: 50%;
text-align: center;
line-height: 30px;
color: #fff;
margin: 0 -4px;
}
.calendar_wrap > table #prev,
.calendar_wrap > table #next,
.sp-calendar-wrapper > table #prev,
.sp-calendar-wrapper > table #next {
padding: 14px;
}
.calendar_wrap > table #prev a,
.calendar_wrap > table #next a,
.sp-calendar-wrapper > table #prev a,
.sp-calendar-wrapper > table #next a {
display: inline-block;
position: relative;
width: 20px;
height: 20px;
line-height: 20px;
border-radius: 2px;
font-size: 0;
line-height: 0;
transition: background-color 0.3s ease;
vertical-align: middle;
font-weight: 400;
background-color: #9a9da2;
}
.calendar_wrap > table #prev a::before,
.calendar_wrap > table #next a::before,
.sp-calendar-wrapper > table #prev a::before,
.sp-calendar-wrapper > table #next a::before {
content: "";
font-size: 14px;
line-height: 20px;
display: block;
position: absolute;
text-align: center;
color: #fff;
left: 0;
top: 0;
width: 20px;
height: 20px;
font-family: "Font Awesome 5 Free";
font-weight: 700;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.calendar_wrap > table #prev a:hover,
.calendar_wrap > table #next a:hover,
.sp-calendar-wrapper > table #prev a:hover,
.sp-calendar-wrapper > table #next a:hover {
background-color: #38a9ff;
}
.calendar_wrap > table #prev,
.sp-calendar-wrapper > table #prev {
text-align: left;
padding-left: 14px;
}
.calendar_wrap > table #prev a::before,
.sp-calendar-wrapper > table #prev a::before {
content: "\f104";
}
.calendar_wrap > table #next,
.sp-calendar-wrapper > table #next {
text-align: right;
padding-right: 14px;
}
.calendar_wrap > table #next a::before,
.sp-calendar-wrapper > table #next a::before {
content: "\f105";
font-weight: 700;
}
.calendar_wrap caption,
.sp-calendar-wrapper caption {
text-align: center;
overflow: hidden;
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
line-height: 1.2em;
border-bottom: 1px solid #e4e7ed;
margin: -10px -10px 10px -10px;
padding-left: 14px;
padding-right: 14px;
vertical-align: middle;
caption-side: top;
background-color: #fff;
}
.footer-widgets .widget_calendar .calendar_wrap {
padding: 0;
}
.footer-widgets .widget_calendar .calendar_wrap > table thead th {
color: #fff;
}
.footer-widgets .widget_calendar .calendar_wrap > table tbody td {
color: #fff;
}
.footer-widgets .widget_calendar .calendar_wrap caption {
color: #fff;
border-bottom: none;
background-color: transparent;
}
.widget_sp_event_calendar .sp-template {
margin-bottom: 0;
} .recent-videos.card {
border: none;
padding: 0;
border-radius: 0;
background-color: transparent;
}
.recent-videos.card .widget__content {
padding: 0;
} .info-block {
list-style: none;
padding: 0;
margin: 0;
}
.info-block__item {
position: relative;
min-height: 26px;
padding: 2px 0 0 40px;
margin-bottom: 34px;
list-style: none;
text-align: left;
}
.info-block__item:last-child {
margin-bottom: 0;
}
.info-block__item .df-icon,
.info-block__item .df-icon-stack,
.info-block__item .df-icon-custom {
display: block;
position: absolute;
left: 0;
top: 0;
}
.info-block__item .df-icon-custom {
height: auto;
font-size: 28px;
line-height: 1.2em;
color: #c2ff1f;
}
.info-block__item .df-icon-custom img {
width: 28px;
height: auto;
}
.header__primary .info-block__item {
text-align: left;
margin: 20px 0;
padding: 2px 30px 16px 70px;
}
.header__primary .info-block__item.info-block__item--contact-primary {
margin-top: 36px;
}
.header__primary .info-block__item.info-block__item--contact-secondary {
margin-bottom: 0;
}
.header__primary .info-block__item .df-icon,
.header__primary .info-block__item .df-icon-custom {
left: 30px;
}
.header__primary .info-block__item .df-icon-custom i {
color: #c2ff1f;
font-size: 24px;
}
.header__primary .info-block__item .df-icon-custom img {
width: 28px;
height: auto;
}
.header__primary .info-block__item .info-block__link {
padding: 0;
font-size: 9px;
line-height: 1.2em;
color: #6b6d70;
border: none;
}
.header__primary .info-block__item .info-block__link::before {
display: none;
}
.header__primary .info-block__item .info-block__link:hover {
color: #fff;
}
@media (min-width: 992px) {
.header__primary .info-block__item {
display: none;
}
}
.info-block__item--nopadding {
padding-left: 0;
}
.info-block__heading {
font-size: 9px;
line-height: 1.2em;
margin-bottom: 5px;
text-transform: uppercase;
}
.footer .info-block__heading {
color: #fff;
}
.header .info-block__heading {
color: #fff;
}
.info-block__link {
display: block;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-size: 9px;
line-height: 1.2em;
color: #6b6d70;
vertical-align: top;
transition: color 0.25s cubic-bezier(0.3, 0.1, 0.55, 1);
}
.footer .info-block__link:hover {
color: #fff;
}
.header .info-block__link {
color: #6b6d70;
}
.header .info-block__link:hover {
color: #fff;
}
.info-block__link-wrapper {
display: block;
}
.info-block--header {
display: inline-block;
vertical-align: middle;
}
@media (max-width: 991px) {
.info-block--header {
display: none;
}
}
.info-block--header .info-block__item {
display: inline-block;
margin: 7px 0 0 26px;
}
.info-block--header .info-block__item .df-icon {
stroke: #c2ff1f;
}
.info-block--header .info-block__item .df-icon-custom {
line-height: inherit;
}
.info-block--header .info-block__item .df-icon-custom i {
color: #c2ff1f;
}
@media (min-width: 992px) {
.info-block--header .info-block__item {
padding-top: 20px;
padding-bottom: 32px;
}
.info-block--header .info-block__item .df-icon,
.info-block--header .info-block__item .df-icon-custom {
top: 24px;
}
.info-block--header .info-block__item .df-icon-custom i {
font-size: 24px;
}
.info-block--header .info-block__item .df-icon-custom img {
width: 28px;
height: auto;
}
.info-block--header .info-block__item .df-icon-custom .df-icon {
top: 0;
}
.info-block--header .info-block__item .df-icon-stack--bag {
top: 3px;
}
.info-block--header .info-block__item .df-icon-stack--bag .df-icon--bag-handle {
top: 19px;
}
.header--layout-4 .info-block--header .info-block__item .df-icon-stack--bag .df-icon--bag-handle {
top: 10px;
}
.info-block--header .info-block__item .info-block__heading {
margin-top: 5px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.info-block--header .info-block__item {
margin-left: 20px;
}
}
.info-block--header .info-block__item.has-children.js-info-block__item--onhover > .info-block__link-wrapper {
padding-right: 16px;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onhover > .info-block__link-wrapper::after {
display: block;
content: "\f107";
position: absolute;
right: 0;
top: 23px;
font-size: 10px;
line-height: 1.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
color: #fff;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick {
padding-right: 0;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon {
display: block;
position: absolute;
right: 0;
top: 21px;
width: 16px;
height: 16px;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon::before {
content: "\f0c9";
display: block;
position: absolute;
right: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
font-family: "Font Awesome 5 Free";
font-weight: 700;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
pointer-events: none;
font-size: 10px;
line-height: 1em;
color: #fff;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon:hover {
cursor: pointer;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon.active::before {
content: "\f00d";
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick .info-block__menu-icon.active ~ .header-cart-dropdown {
-webkit-transform: rotateX(0deg);
transform: rotateX(0deg);
opacity: 1;
visibility: visible;
}
.info-block--header .info-block__item.has-children.js-info-block__item--onclick > .info-block__link-wrapper {
margin-right: 20px;
}
.header--layout-2 .info-block--header .info-block__item.has-children > .info-block__link-wrapper::after {
top: 25px;
}
.header--layout-4 .info-block--header .info-block__item.has-children > .info-block__link-wrapper::after {
top: 13px;
}
.info-block--header .info-block__item--shopping-cart .info-block__heading {
margin-bottom: 3px;
}
.info-block--header .info-block__cart-sum {
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
line-height: 1.2em;
display: block;
color: #c2ff1f;
}
.footer-widgets .info-block__item .df-icon {
stroke: #c2ff1f;
}
.footer-widgets .info-block__item .df-icon-custom {
font-size: 24px;
color: #c2ff1f;
}
.info-block--horizontal {
display: flex;
align-items: center;
flex-wrap: wrap;
width: 100%;
}
@media (min-width: 992px) {
.info-block--horizontal {
flex-wrap: nowrap;
width: auto;
}
}
.info-block--horizontal .info-block__item {
width: 100%;
padding-left: 50px;
}
@media (min-width: 768px) {
.info-block--horizontal .info-block__item {
width: 33.3%;
}
}
@media (min-width: 992px) {
.info-block--horizontal .info-block__item {
width: auto;
margin: 0 20px;
}
}
@media (min-width: 1200px) {
.info-block--horizontal .info-block__item {
margin: 0 43px;
}
}
@media (max-width: 991px) {
.info-block--horizontal .info-block__item:last-child {
margin-bottom: 34px;
}
}
@media (min-width: 992px) {
.info-block--horizontal .info-block__item:last-child {
margin-right: 0;
}
}
@media (min-width: 1200px) {
.info-block--horizontal .info-block__item:last-child {
margin-right: 20px;
}
}
.info-block--horizontal .info-block__item--social {
padding-left: 0;
}
.info-block--horizontal .df-icon-custom i {
font-size: 24px;
color: #c2ff1f;
} .btn-social-counter {
display: block;
width: 100%;
color: #fff;
text-transform: uppercase;
border: 1px solid #e4e7ed;
border-radius: 4px;
min-height: 65px;
position: relative;
overflow: hidden;
background-clip: padding-box;
padding: 20px 60px 18px 86px;
transition: all 0.3s ease-in-out;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.btn-social-counter + .btn-social-counter {
margin-top: 10px;
}
.btn-social-counter:hover {
color: #fff;
}
.widget--footer .btn-social-counter {
border-color: transparent;
}
.btn-social-counter__icon {
display: block;
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 68px;
background-color: rgba(0, 0, 0, 0.1);
color: #fff;
text-align: center;
font-size: 18px;
}
.btn-social-counter__icon .fa,
.btn-social-counter__icon .fab {
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
display: block;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.btn-social-counter__title {
font-size: 11px;
line-height: 1.2em;
color: #fff;
margin-bottom: 1px;
letter-spacing: -0.02em;
}
@media (min-width: 992px) {
.btn-social-counter__title {
font-size: 13px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.btn-social-counter__title {
font-size: 11px;
}
}
.btn-social-counter__count {
display: block;
font-size: 10px;
line-height: 1.2em;
color: #fff;
font-weight: 700;
font-family: "Montserrat", sans-serif;
}
.btn-social-counter__add-icon {
display: block;
position: absolute;
width: 26px;
height: 26px;
border-radius: 50%;
border: 2px solid #fff;
right: 23px;
top: 50%;
margin-top: -13px;
}
.btn-social-counter__add-icon::before, .btn-social-counter__add-icon::after {
content: "";
display: block;
position: absolute;
background-color: #fff;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
transition: -webkit-transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.btn-social-counter__add-icon::before {
width: 8px;
height: 2px;
}
.btn-social-counter__add-icon::after {
width: 2px;
height: 8px;
}
.btn-social-counter:hover .btn-social-counter__add-icon::before, .btn-social-counter:hover .btn-social-counter__add-icon::after {
-webkit-transform: translate(-50%, -50%) rotate(-90deg);
transform: translate(-50%, -50%) rotate(-90deg);
}
.btn-social-counter__name {
font-size: 24px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #fff;
line-height: 1em;
text-transform: none;
letter-spacing: -0.03em;
}
@media (min-width: 1199px) {
.btn-social-counter__name {
font-size: 28px;
}
}
.btn-social-counter--fb .btn-social-counter__name {
text-transform: lowercase;
} .btn-social-counter--card {
padding: 34px 60px 18px 23px;
height: 150px;
width: 100%;
}
@media (min-width: 992px) {
.btn-social-counter--card {
height: 200px;
}
}
@media (min-width: 1199px) {
.btn-social-counter--card {
height: 216px;
}
}
.post-grid__item .btn-social-counter--card {
margin-bottom: 15px;
}
.btn-social-counter--card .btn-social-counter__footer {
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 0 60px 30px 23px;
}
.btn-social-counter--card .btn-social-counter__footer .btn-social-counter__add-icon {
top: 0;
margin-top: 0;
} .btn-social-counter--fb {
background-color: #4d6baa;
}
.btn-social-counter--fb .btn-social-counter__icon {
background-color: #43609c;
}
.btn-social-counter--fb:hover {
background-color: #5c78b5;
}
.widget-social--condensed .btn-social-counter--fb {
background-color: #43609c;
}
.widget-social--condensed .btn-social-counter--fb .btn-social-counter__count {
background-color: #4d6baa;
}
.widget-social--grid .btn-social-counter--fb {
background-color: #43609c;
}
.widget-social--grid .btn-social-counter--fb:hover {
background-color: #4e6cac;
}
.widget-social--grid .btn-social-counter--fb .btn-social-counter__add-icon {
background-color: #4e6cac;
}
.btn-social-counter--twitter {
background-color: #3fcef2;
}
.btn-social-counter--twitter .btn-social-counter__icon {
background-color: #38c2e5;
}
.btn-social-counter--twitter:hover {
background-color: #57d4f4;
}
.widget-social--condensed .btn-social-counter--twitter {
background-color: #38c2e5;
}
.widget-social--condensed .btn-social-counter--twitter .btn-social-counter__count {
background-color: #3fcef2;
}
.widget-social--grid .btn-social-counter--twitter {
background-color: #32b8e4;
}
.widget-social--grid .btn-social-counter--twitter:hover {
background-color: #4cd3ff;
}
.widget-social--grid .btn-social-counter--twitter .btn-social-counter__add-icon {
background-color: #4cd3ff;
}
.btn-social-counter--rss {
background-color: #ffcc00;
}
.btn-social-counter--rss .btn-social-counter__icon {
background-color: #ffbf13;
}
.btn-social-counter--rss:hover {
background-color: #ffd11a;
}
.widget-social--condensed .btn-social-counter--rss {
background-color: #ffbf13;
}
.widget-social--condensed .btn-social-counter--rss .btn-social-counter__count {
background-color: #ffcc00;
}
.widget-social--grid .btn-social-counter--rss {
background-color: #ffbf13;
}
.widget-social--grid .btn-social-counter--rss:hover {
background-color: #ffd427;
}
.widget-social--grid .btn-social-counter--rss .btn-social-counter__add-icon {
background-color: #ffd427;
}
.btn-social-counter--instagram {
background-color: #e4405f;
}
.btn-social-counter--instagram .btn-social-counter__icon {
background-color: #e12a4c;
}
.btn-social-counter--instagram:hover {
background-color: #e75672;
}
.widget-social--condensed .btn-social-counter--instagram {
background-color: #e12a4c;
}
.widget-social--condensed .btn-social-counter--instagram .btn-social-counter__count {
background-color: #e4405f;
}
.widget-social--grid .btn-social-counter--instagram {
background-color: #e12a4c;
}
.widget-social--grid .btn-social-counter--instagram:hover {
background-color: #e4405f;
}
.widget-social--grid .btn-social-counter--instagram .btn-social-counter__add-icon {
background-color: #e4405f;
}
.btn-social-counter--youtube {
background-color: #FF0000;
}
.btn-social-counter--youtube .btn-social-counter__icon {
background-color: rgba(0, 0, 0, 0.08);
}
.btn-social-counter--youtube:hover {
background-color: #ff1a1a;
}
.df-social-count--columns .btn-social-counter--youtube .btn-social-counter__count {
background-color: rgba(0, 0, 0, 0.05);
}
.btn-social-counter--twitch {
background-color: #6441A4;
}
.btn-social-counter--twitch .btn-social-counter__icon {
background-color: #593a92;
}
.btn-social-counter--twitch:hover {
background-color: #6f48b6;
}
.widget-social--condensed .btn-social-counter--twitch {
background-color: #6441A4;
}
.widget-social--condensed .btn-social-counter--twitch .btn-social-counter__count {
background-color: #6f48b6;
} .social-links {
list-style-type: none;
padding: 0;
margin: 0;
}
.social-links__item {
display: inline-block;
vertical-align: middle;
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
margin-right: 12px;
}
.social-links__item .fa,
.social-links__item .fab,
.social-links__item svg {
font-size: 12px;
margin-right: 5px;
transition: color 0.2s ease;
color: #38a9ff;
}
.header .social-links__item .fa,
.header .social-links__item .fab,
.header .social-links__item svg {
color: #fff;
}
.footer .social-links__item .fa,
.footer .social-links__item .fab,
.footer .social-links__item svg {
color: #fff;
}
.social-links__item svg {
fill: #38a9ff;
}
.header .social-links__item svg {
fill: #fff;
}
.footer .social-links__item svg {
fill: #fff;
}
.social-links__item:last-child {
margin-right: 0;
}
.social-links__link {
display: inline-block;
color: #6b6d70;
transition: color 0.2s ease;
}
.header .social-links__link:hover .fa,
.header .social-links__link:hover .fab {
color: #38a9ff;
}
.footer .social-links__link:hover {
color: #fff;
}
.footer .social-links__link:hover .fa,
.footer .social-links__link:hover .fab {
color: #38a9ff;
}
.social-links--main-nav {
display: inline-block;
padding-left: 30px;
}
.social-links--main-nav .social-links__item {
margin-right: 19px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.social-links--main-nav .social-links__item {
margin-right: 10px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.social-links--main-nav {
padding-left: 30px;
}
}
.social-links--main-nav .social-links__link--svg svg {
display: inline-block;
width: 14px;
height: 18px;
line-height: 18px;
vertical-align: top;
}
.social-links--top-bar {
padding-left: 0;
}
.social-links--top-bar .social-links__item {
margin-right: 20px;
}
.social-links--top-bar .social-links__item .fa,
.social-links--top-bar .social-links__item .fab,
.social-links--top-bar .social-links__item svg {
font-size: 16px;
opacity: 0.6;
}
.social-links--top-bar .social-links__link .fa,
.social-links--top-bar .social-links__link .fab {
color: #9a9da2;
}
.social-links--top-bar .social-links__link:hover .fa,
.social-links--top-bar .social-links__link:hover .fab {
opacity: 1;
color: #38a9ff;
}
.social-links--top-bar .social-links__link--svg svg {
fill: #9a9da2;
}
.social-links--top-bar .social-links__link--svg:hover svg {
opacity: 1;
fill: #38a9ff;
}
.social-links--btn .social-links__item {
margin: 0;
}
.social-links--btn .social-links__link {
display: inline-block;
width: 26px;
height: 26px;
line-height: 26px;
text-align: center;
color: #fff;
border-radius: 2px;
font-size: 12px;
margin: 0 2px;
transition: opacity 0.2s ease-in-out;
}
.social-links--btn .social-links__link:hover {
opacity: 0.8;
}
.social-links--btn .social-links__link:hover .fa,
.social-links--btn .social-links__link:hover .fab {
color: #fff;
}
.social-links--btn .social-links__link .fa,
.social-links--btn .social-links__link .fab {
margin: 0;
}
.social-links--btn .social-links__link--lg {
width: 32px;
height: 32px;
line-height: 32px;
margin: 0 6px;
}
.social-links--btn [class*=social-links__link--] > .fa,
.social-links--btn [class*=social-links__link--] > .fab {
color: #fff;
}
.social-links--btn .social-links__link--fb {
background-color: #4d6baa;
}
.social-links--btn .social-links__link--twitter {
background-color: #3fcef2;
color: #fff;
}
.social-links--btn .social-links__link--linkedin {
background-color: #0077B5;
}
.social-links--btn .social-links__link--vk {
background-color: #6383A8;
}
.social-links--btn .social-links__link--ok {
background-color: #F4731C;
}
.social-links--btn .social-links__link--whatsapp {
background-color: #25D366;
}
.social-links--btn .social-links__link--viber {
background-color: #7C529E;
}
.social-links--btn .social-links__link--viber img {
width: 12px;
height: auto;
}
.social-links--btn .social-links__link--telegram {
background-color: #2CA5E0;
}
.social-links--btn .social-links__link--mail,
.social-links--btn .social-links__link--site {
background-color: #9a9da2;
}
.social-links--btn.social-links--btn-block .social-links__item {
display: inline;
}
.social-links--btn.social-links--btn-block .social-links__link {
display: block;
width: 100%;
padding-left: 0;
padding-right: 0;
margin-bottom: 12px;
font-size: 9px;
height: 24px;
line-height: 24px;
}
.social-links--circle .social-links__item {
margin-right: 20px;
}
@media (min-width: 992px) {
.social-links--circle .social-links__item {
margin-right: 10px;
}
}
@media (min-width: 1200px) {
.social-links--circle .social-links__item {
margin-right: 24px;
}
}
.social-links--circle .social-links__item:last-child {
margin-right: 0;
}
.social-links--circle .social-links__link {
border: 2px solid rgba(154, 157, 162, 0.4);
border-radius: 50%;
width: 34px;
height: 34px;
text-align: center;
transition: border-color 0.3s ease;
vertical-align: top;
}
.social-links--circle .social-links__link .fa,
.social-links--circle .social-links__link .fab {
margin-right: 0;
font-size: 14px;
line-height: 30px;
}
.social-links--circle .social-links__link svg {
display: inline-block;
width: 14px;
height: 30px;
margin-right: 0;
}
.social-links--circle .social-links__link:hover {
border-color: #c2ff1f;
}
.social-links--circle .social-links__link:hover .fa,
.social-links--circle .social-links__link:hover .fab {
color: #fff;
}
.social-links--circle .social-links__link:hover svg {
fill: #fff;
}
.social-links--circle-filled .social-links__item {
margin-right: 10px;
}
@media (min-width: 992px) {
.social-links--circle-filled .social-links__item {
margin-right: 10px;
}
}
@media (min-width: 1200px) {
.social-links--circle-filled .social-links__item {
margin-right: 18px;
}
}
.social-links--circle-filled .social-links__item:last-child {
margin-right: 0;
}
.social-links--circle-filled .social-links__link {
border-radius: 50%;
width: 40px;
height: 40px;
text-align: center;
transition: opacity 0.3s ease;
vertical-align: top;
}
.social-links--circle-filled .social-links__link::before {
color: #fff;
margin-right: 0;
font-size: 14px;
line-height: 40px;
}
.social-links--circle-filled .social-links__link:hover {
opacity: 0.8;
}
.social-links--circle-filled .social-links__link:hover::before {
color: #fff;
}
.player-info-details__item--social-links .social-links--circle-filled-sm {
padding-top: 4px;
}
.social-links--circle-filled-sm .social-links__item {
margin-right: 5px;
}
@media (min-width: 992px) {
.social-links--circle-filled-sm .social-links__item {
margin-right: 5px;
}
}
@media (min-width: 1200px) {
.social-links--circle-filled-sm .social-links__item {
margin-right: 9px;
}
}
.social-links--circle-filled-sm .social-links__item:last-child {
margin-right: 0;
}
.social-links--circle-filled-sm .social-links__link {
width: 24px;
height: 24px;
line-height: 24px;
}
.social-links--circle-filled-sm .social-links__link::before {
font-size: 12px;
line-height: 24px;
}
.social-link-url {                                           }
.social-link-url::before {
content: "";
margin-right: 0;
text-rendering: auto;
font-family: "Font Awesome 5 Free";
font-weight: 700;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.social-link-url[href*=http], .social-link-url[href*="#"] {
background-color: rgba(0, 0, 0, 0.1);
}
.social-link-url[href*=http]::before, .social-link-url[href*="#"]::before {
content: "\f0c1";
}
.social-link-url[href*="amazon."] {
background-color: #ff9900;
}
.social-link-url[href*="amazon."]::before {
content: "\f270";
font-family: "Font Awesome 5 Brands";
font-weight: 700;
}
.social-link-url[href*="behance.net"], .social-link-url[href*="be.net"] {
background-color: #1769ff;
}
.social-link-url[href*="behance.net"]::before, .social-link-url[href*="be.net"]::before {
content: "\f1b4";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="bitbucket.org"] {
background-color: #205081;
}
.social-link-url[href*="bitbucket.org"]::before {
content: "\f171";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="del.icio.us"] {
background-color: #3399ff;
}
.social-link-url[href*="del.icio.us"]::before {
content: "\f1a5";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="dribbble.com"] {
background-color: #ea4c89;
}
.social-link-url[href*="dribbble.com"]::before {
content: "\f17d";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="digg.com"] {
background-color: #005be2;
}
.social-link-url[href*="digg.com"]::before {
content: "\f1a6";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="etsy.com"] {
background-color: #d5641c;
}
.social-link-url[href*="etsy.com"]::before {
content: "\f2d7";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="facebook.com"] {
background-color: #3B5998;
}
.social-link-url[href*="facebook.com"]::before {
content: "\f09a";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="faceit.com"] {
background-color: #FF5500;
}
.social-link-url[href*="faceit.com"]::before {
display: none;
}
.social-link-url[href*="faceit.com"]::after {
content: "";
display: inline-block;
width: 14px;
height: 40px;
line-height: 40px;
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/icon-faceit.svg);
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: 14px auto;
}
.social-link-url[href*="flickr.com"] {
background-color: #ff1981;
}
.social-link-url[href*="flickr.com"]::before {
content: "\f16e";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="foursquare.com"] {
background-color: #f94877;
}
.social-link-url[href*="foursquare.com"]::before {
content: "\f180";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="github.com"] {
background-color: #333;
}
.social-link-url[href*="github.com"]::before {
content: "\f09b";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="gitlab.com"] {
background-color: #554488;
}
.social-link-url[href*="gitlab.com"]::before {
content: "\f296";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="imdb.com"] {
background-color: #f5de50;
}
.social-link-url[href*="imdb.com"]::before {
content: "\f2d8";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="instagram.com"] {
background-color: #E4405F;
}
.social-link-url[href*="instagram.com"]::before {
content: "\f16d";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="linkedin.com"] {
background-color: #0077B5;
}
.social-link-url[href*="linkedin.com"]::before {
content: "\f0e1";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="medium.com"] {
background-color: #00ab6c;
}
.social-link-url[href*="medium.com"]::before {
content: "\f23a";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="paypal.com"] {
background-color: #003087;
}
.social-link-url[href*="paypal.com"]::before {
content: "\f1ed";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="pinterest.com"] {
background-color: #bd081c;
}
.social-link-url[href*="pinterest.com"]::before {
content: "\f231";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="quora.com"] {
background-color: #a82400;
}
.social-link-url[href*="quora.com"]::before {
content: "\f2c4";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="reddit.com"] {
background-color: #ff4500;
}
.social-link-url[href*="reddit.com"]::before {
content: "\f281";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="slack.com"] {
background-color: #3eb991;
}
.social-link-url[href*="slack.com"]::before {
content: "\f198";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="soundcloud.com"] {
background-color: #ff8800;
}
.social-link-url[href*="soundcloud.com"]::before {
content: "\f1be";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="spotify.com"] {
background-color: #1db954;
}
.social-link-url[href*="spotify.com"]::before {
content: "\f1bc";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="snapchat.com"] {
background-color: #fffc00;
}
.social-link-url[href*="snapchat.com"]::before {
content: "\f2ac";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="stackoverflow.com"] {
background-color: #f48024;
}
.social-link-url[href*="stackoverflow.com"]::before {
content: "\f16c";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="steamcommunity.com"] {
background-color: #171A21;
}
.social-link-url[href*="steamcommunity.com"]::before {
content: "\f1b6";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="stumbleupon.com"] {
background-color: #eb4924;
}
.social-link-url[href*="stumbleupon.com"]::before {
content: "\f1a4";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="tripadvisor.com"] {
background-color: #00af87;
}
.social-link-url[href*="tripadvisor.com"]::before {
content: "\f262";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="tumblr.com"] {
background-color: #35465c;
}
.social-link-url[href*="tumblr.com"]::before {
content: "\f173";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="twitch.tv"] {
background-color: #6441A4;
}
.social-link-url[href*="twitch.tv"]::before {
content: "\f1e8";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="twitter.com"] {
background-color: #1DA1F2;
}
.social-link-url[href*="twitter.com"]::before {
content: "\f099";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="vimeo.com"] {
background-color: #1ab7ea;
}
.social-link-url[href*="vimeo.com"]::before {
content: "\f194";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="weibo.com"] {
background-color: #df2029;
}
.social-link-url[href*="weibo.com"]::before {
content: "\f18a";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="wikipedia.org"] {
background-color: #000000;
}
.social-link-url[href*="wikipedia.org"]::before {
content: "\f266";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="wordpress.org"], .social-link-url[href*="wordpress.com"] {
border-color: #21759b;
}
.social-link-url[href*="wordpress.org"]::before, .social-link-url[href*="wordpress.com"]::before {
content: "\f19a";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="xing.com"] {
background-color: #026466;
}
.social-link-url[href*="xing.com"]::before {
content: "\f168";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="yahoo.com"] {
background-color: #410093;
}
.social-link-url[href*="yahoo.com"]::before {
content: "\f19e";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="youtube.com"] {
background-color: #FF0000;
}
.social-link-url[href*="youtube.com"]::before {
content: "\f167";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="mixer.com"] {
background-color: #002050;
}
.social-link-url[href*="mixer.com"]::before {
content: "稜";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="vk.com"], .social-link-url[href*="vkontakte.com"] {
background-color: #6383A8;
}
.social-link-url[href*="vk.com"]::before, .social-link-url[href*="vkontakte.com"]::before {
content: "\f189";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
}
.social-link-url[href*="ok.ru"] {
background-color: #F4731C;
}
.social-link-url[href*="ok.ru"]::before {
content: "\f263";
font-family: "Font Awesome 5 Brands";
font-weight: 400;
} .main-news-banner {
background-color: #27313b;
background-position: 0 0;
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
position: relative;
border-radius: 4px;
margin-bottom: 15px;
}
.main-news-banner .posts__title > a {
color: #31404b;
}
.main-news-banner .main-news-banner__highlight {
color: #9fe900;
}
.main-news-banner__inner {
padding: 20px;
position: relative;
z-index: 2;
}
@media (min-width: 992px) {
.main-news-banner__inner {
padding: 35px 30px 35px 30px;
}
}
@media (min-width: 1199px) {
.main-news-banner__inner {
padding: 55px 35px 55px 55px;
}
} .main-news-banner--img-left {
will-change: opacity;
}
.main-news-banner--img-left::before {
content: "";
display: block;
position: absolute;
z-index: 1;
left: 0;
top: 0;
bottom: 0;
right: 0;
background-image: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.8), transparent);
background-repeat: no-repeat;
background-position: 0 0;
mix-blend-mode: overlay;
}
@media (min-width: 992px) {
.main-news-banner--img-left::before {
background-image: radial-gradient(at 180px 0%, rgba(255, 255, 255, 0.8), transparent);
}
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.main-news-banner--img-left::before {
background-image: none !important;
}
}
@supports (-ms-ime-align: auto) {
.main-news-banner--img-left::before {
background-image: none !important;
}
}
.main-news-banner--img-left .main-news-banner__img {
float: left;
max-width: 50%;
position: relative;
z-index: 2;
}
.main-news-banner--img-left .main-news-banner__img::before {
content: "";
display: block;
position: absolute;
z-index: 1;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
height: 23%;
background-color: #38a9ff;
width: 50%;
}
.main-news-banner--img-left .main-news-banner__img img {
position: relative;
z-index: 2;
}
.main-news-banner--img-left .posts__excerpt {
display: none;
}
@media (min-width: 768px) {
.main-news-banner--img-left .posts__excerpt {
display: block;
}
}
.main-news-banner--img-left .posts__date {
display: none;
}
@media (min-width: 768px) {
.main-news-banner--img-left .posts__date {
display: block;
}
}
@media (max-width: 479px) {
.main-news-banner--img-left .posts__more {
padding-top: 10px;
}
}
@media (max-width: 479px) {
.main-news-banner--img-left .posts__more .btn {
padding-left: 20px;
padding-right: 15px;
padding-top: 6px;
padding-bottom: 6px;
font-size: 10px;
border-width: 1px;
}
}
.main-news-banner--img-left .posts__more .btn.btn-inverse.btn-outline {
color: #fff;
} .main-news-banner--bg::before {
content: "";
display: block;
position: absolute;
z-index: 1;
left: 0;
top: 0;
bottom: 0;
right: 0;
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}
@media (min-width: 992px) {
.main-news-banner--bg::before {
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}
}
.main-news-banner--bg .main-news-banner__inner {
padding: 30px;
}
@media (min-width: 992px) {
.main-news-banner--bg .main-news-banner__inner {
padding: 30px 30px 30px 48%;
}
}
@media (min-width: 1199px) {
.main-news-banner--bg .main-news-banner__inner {
padding: 41px 35px 41px 48%;
}
}
.main-news-banner--bg .posts__date {
color: rgba(255, 255, 255, 0.8);
} .main-news-banner--soccer-ball {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/soccer/samples/banner-soccer-ball.png);
background-repeat: no-repeat;
background-position: 100% 100%;
background-size: auto;
}
@media (max-width: 1199px) {
.main-news-banner--soccer-ball {
background-size: 40% auto;
}
}
.main-news-banner--soccer-ball::before {
display: none;
}
.main-news-banner--soccer-ball .main-news-banner__inner {
padding-right: 20%;
}
@media (min-width: 992px) {
.main-news-banner--soccer-ball .main-news-banner__inner {
padding-right: 30%;
}
}
@media (min-width: 1200px) {
.main-news-banner--soccer-ball .main-news-banner__inner {
padding-right: 30%;
}
}
.main-news-banner--soccer-ball .posts__excerpt {
padding-right: 20px;
}
@media (min-width: 992px) {
.main-news-banner--soccer-ball .posts__excerpt {
padding-right: 40px;
}
}
@media (min-width: 1200px) {
.main-news-banner--soccer-ball .posts__excerpt {
padding-right: 60px;
}
} .featured-carousel .slick-slide::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: #0e0f10;
opacity: 0.9;
z-index: 2;
pointer-events: none;
transition: all 0.3s ease;
}
.featured-carousel .slick-slide::after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
height: 0;
background-color: #1892ed;
z-index: 1;
transition: height 0.6s ease;
}
.featured-carousel .slick-slide.slick-current::before {
opacity: 0.6;
z-index: 1;
}
@media (min-width: 992px) {
.featured-carousel .slick-slide.slick-current::after {
height: 4px;
}
}
@media (min-width: 1199px) {
.featured-carousel .slick-slide.slick-current::after {
height: 6px;
}
}
.featured-carousel .slick-slide.slick-current .posts__inner {
z-index: 2;
} .content-filter {
background-color: #fff;
position: relative;
z-index: 2;
}
@media (min-width: 992px) {
.content-filter {
border-bottom: 1px solid #e4e7ed;
}
}
@media (max-width: 991px) {
.content-filter .container {
width: 100%;
padding-left: 0;
padding-right: 0;
}
}
.content-filter__toggle {
display: none;
}
@media (max-width: 991px) {
.content-filter__toggle {
display: block;
position: absolute;
right: 10px;
top: 10px;
z-index: 2;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
font-weight: 400;
font-size: 16px;
}
}
.content-filter__toggle::before {
content: "\f141";
line-height: 40px;
color: #31404b;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: "Font Awesome 5 Free";
font-weight: 700;
}
.content-filter__toggle--active::before {
content: "\f00d";
}
.content-filter__list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
flex-direction: column;
}
@media (min-width: 992px) {
.content-filter__list {
flex-direction: row;
border-left: 1px solid #e4e7ed;
border-right: 1px solid #e4e7ed;
}
}
.content-filter__item {
flex-grow: 1;
text-align: center;
border-bottom: 1px solid #e4e7ed;
}
@media (min-width: 992px) {
.content-filter__item {
border-bottom: none !important;
flex-grow: 1;
display: flex;
align-items: center;
justify-content: center;
}
.content-filter__item + .content-filter__item {
border-left: 1px solid #e4e7ed;
}
}
@media (max-width: 991px) {
.content-filter__item:not(.content-filter__item--active) {
display: none;
}
}
@media (max-width: 991px) {
.content-filter__list--expanded .content-filter__item {
display: block;
}
}
.content-filter__link {
display: block;
font-size: 13px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
font-style: normal;
font-weight: 700;
line-height: 1.2em;
color: #9a9da2;
padding: 18px 20px 18px 20px;
transition: color 0.3s ease-out;
position: relative;
z-index: 1;
}
@media (min-width: 992px) {
.content-filter__link {
padding-top: 28px;
padding-bottom: 28px;
flex-grow: 1;
}
}
.content-filter__link small {
display: block;
font-size: 8px;
font-style: normal;
font-weight: 400;
line-height: 1.2em;
color: #9a9da2;
}
.content-filter__link:hover {
color: #31404b;
}
.content-filter__link::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 0;
opacity: 0;
background-color: #38a9ff;
transition: opacity height 0.2s ease-out;
}
.content-filter__item--active,
.content-filter__item.is-active {
background-color: transparent;
}
@media (max-width: 991px) {
.content-filter__item--active,
.content-filter__item.is-active {
order: -1;
}
}
.content-filter__item--active .content-filter__link,
.content-filter__item.is-active .content-filter__link {
color: #31404b;
}
.content-filter__item--active .content-filter__link::before,
.content-filter__item.is-active .content-filter__link::before {
height: 4px;
opacity: 1;
}
.content-filter__item--active .content-filter__link:hover,
.content-filter__item.is-active .content-filter__link:hover {
cursor: default;
}
.content-filter--boxed {
background-color: transparent;
border-bottom: 0;
margin-bottom: 40px;
}
@media (max-width: 575px) {
.content-filter--boxed {
margin-left: 8px;
margin-right: 8px;
}
}
.single-sp_team .content-filter--boxed {
margin-top: 30px;
margin-bottom: 20px;
}
@media (min-width: 992px) {
.single-sp_team .content-filter--boxed {
margin-top: 60px;
margin-bottom: 40px;
}
}
.single-sp_team .content-filter--boxed + .site-content {
padding-top: 0;
}
@media (min-width: 992px) {
.single-sp_team .content-filter--boxed + .site-content {
padding-top: 0;
}
}
.content-filter--boxed .content-filter__inner {
position: relative;
background-color: #fff;
border: 1px solid #e4e7ed;
border-radius: 4px;
}
.content-filter--boxed .content-filter__list {
border-left: 0;
border-right: 0;
}
.content-filter--boxed .content-filter__item:first-child {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
.content-filter--highlight-side .content-filter__item .content-filter__link::before {
content: "";
left: 0;
right: auto;
bottom: 0;
top: 0;
height: auto;
transition: opacity width 0.2s ease-out;
}
.content-filter--highlight-side .content-filter__item--active .content-filter__link::before,
.content-filter--highlight-side .content-filter__item.is-active .content-filter__link::before {
width: 6px;
}
.content-filter--highlight-side.content-filter--boxed .content-filter__item:first-child .content-filter__link::before {
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
}
@media (min-width: 992px) {
.content-filter--label-left .content-filter__item {
text-align: left;
}
} .gallery__item-inner {
display: block;
overflow: hidden;
transition: background-color 0.3s ease;
}
.gallery__item-inner:hover {
background-color: #fff;
color: #9a9da2;
}
.gallery__item-inner:hover .gallery__date {
color: #9a9da2;
}
.gallery__item-inner:hover .gallery__icon {
color: #31404b;
}
.gallery__item-inner:hover .gallery__name {
color: #31404b;
}
.gallery__item-inner:hover .gallery__btn-fab {
opacity: 1;
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
}
.gallery__item-inner:hover .gallery__thumb img {
opacity: 0.2;
}
.gallery__thumb {
position: relative;
background-color: #1e2024;
}
.gallery__thumb img {
width: 100%;
height: auto;
transition: opacity 0.3s ease;
}
.gallery__thumb--cropped {
overflow: hidden;
max-height: 220px;
}
.gallery__btn-fab {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%) scale(0.1);
transform: translate(-50%, -50%) scale(0.1);
opacity: 0;
transition: all 0.3s ease;
}
.gallery__content {
overflow: hidden;
}
@media (max-width: 479px) {
.gallery__content {
padding: 12px 12px;
}
}
.gallery__icon {
float: left;
margin-right: 15px;
font-size: 30px;
line-height: 1em;
color: #38a9ff;
transition: color 0.3s ease;
}
@media (max-width: 479px) {
.gallery__icon {
font-size: 20px;
margin-right: 8px;
}
}
.gallery__icon--circle {
width: 40px;
height: 40px;
border-radius: 50%;
border: 4px solid #38a9ff;
color: #31404b;
font-size: 16px;
text-align: center;
line-height: 32px;
}
.gallery__details {
overflow: hidden;
}
.gallery__name {
text-transform: uppercase;
line-height: 1.2em;
margin: 0;
font-size: 12px;
padding: 0.25em 0;
transition: color 0.2s ease;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-style: normal;
}
@media (min-width: 992px) {
.gallery__name {
font-size: 14px;
}
}
@media (min-width: 1200px) {
.gallery__name {
font-size: 16px;
}
}
.gallery__date {
display: block;
font-size: 8px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #9a9da2;
line-height: 1.2em;
transition: color 0.3s ease;
}
@media (min-width: 992px) {
.gallery__date {
font-size: 10px;
}
}
.gallery__header {
display: flex;
align-items: center;
padding-top: 20px;
padding-bottom: 20px;
}
.gallery__header .gallery__details {
flex-grow: 1;
}
.gallery__header .gallery__like {
font-size: 10px;
line-height: 1.2em;
color: #9a9da2;
padding-left: 10px;
white-space: nowrap;
}
.gallery__header .gallery__like i {
font-size: 12px;
line-height: 1em;
margin-left: 0.3em;
display: inline-block;
vertical-align: middle;
}
.gallery__thumb-list {
margin: 0;
padding: 6px 0 0 0;
display: flex;
justify-content: space-between;
border-bottom: 1px solid #e4e7ed;
}
.gallery__thumb-item {
position: relative;
overflow: hidden;
margin-left: 3px;
margin-right: 3px;
}
.gallery__thumb-item:first-child {
margin-left: 0;
}
.gallery__thumb-item:last-child {
margin-right: 0;
}
.gallery__thumb-item:last-child::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
bottom: -1px;
right: 0;
background-color: #31404b;
opacity: 0.9;
background-color: #38a9ff;
}
.gallery__thumb-item:last-child::after {
content: "\f067";
display: block;
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-family: "Font Awesome 5 Free";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: auto;
font-size: 18px;
line-height: 1.2em;
font-weight: 700;
color: #fff;
}
@media (min-width: 992px) {
.gallery__thumb-item:last-child::after {
font-size: 36px;
}
} .album-wrapper {
overflow: hidden;
}
.album.container-fluid {
margin-left: -12px;
margin-right: -12px;
padding-left: 0;
padding-right: 0;
}
.album--condensed {
padding-left: 0;
padding-right: 0;
margin-left: 0;
margin-right: 0;
}
.album--condensed .album__item {
padding: 0;
}
.album__item {
margin-bottom: 15px;
}
.album--condensed .album__item {
padding: 6px;
margin-bottom: 0;
}
.album__item-holder {
display: block;
overflow: hidden;
position: relative;
background-color: #171d21;
}
.album__item-holder:hover .album__thumb {
opacity: 0.2;
}
.album__item-holder:hover .album__item-desc {
opacity: 1;
visibility: visible;
-webkit-transform: scale(1);
transform: scale(1);
}
.album__item-holder:hover .album__item-desc:not(.album__item-desc--bottom-left) {
-webkit-transform: scale(1) translateY(-50%);
transform: scale(1) translateY(-50%);
}
.album__item-holder:hover .album__item-meta {
visibility: visible;
opacity: 1;
}
.album__item-holder--color--primary {
background-color: #38a9ff;
}
.album__item-holder--color--primary .album__item-date {
color: #fff;
}
.album__item-link {
display: block;
}
.album__thumb {
opacity: 1;
position: relative;
transition: opacity 0.3s ease;
}
.album__thumb img {
width: 100%;
height: auto;
}
.album__item-desc {
display: block;
position: absolute;
top: 50%;
left: 0;
right: 0;
text-align: center;
padding: 0 14%;
-webkit-transform: scale(0.95) translateY(-50%);
transform: scale(0.95) translateY(-50%);
visibility: hidden;
opacity: 0;
transition: all 0.3s ease;
}
.album__item-desc--bottom-left {
-webkit-transform: scale(0.95);
transform: scale(0.95);
top: auto;
bottom: 20px;
text-align: left;
padding: 0 10%;
}
@media (min-width: 992px) {
.album__item-desc--bottom-left {
padding-left: 32px;
padding-right: 32px;
}
}
.album__item-icon {
float: left;
margin-right: 15px;
font-size: 30px;
line-height: 1em;
color: #38a9ff;
transition: color 0.3s ease;
}
@media (max-width: 479px) {
.album__item-icon {
font-size: 20px;
margin-right: 8px;
}
}
.album__item-desc-inner {
overflow: hidden;
}
.album__item-title {
color: #fff;
line-height: 1em;
font-size: 14px;
text-transform: uppercase;
margin-bottom: 0.35em;
}
@media (min-width: 992px) {
.album__item-title {
font-size: 18px;
}
}
@media (max-width: 767px) {
.album__item-title {
display: none;
}
}
.album__item-date {
display: block;
font-size: 8px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #9a9da2;
margin-bottom: 0.9em;
}
@media (min-width: 992px) {
.album__item-date {
font-size: 10px;
}
}
@media (max-width: 767px) {
.album__item-date {
display: none;
}
}
.album__item-btn-fab {
position: relative;
left: auto;
top: auto;
margin: 0 auto;
}
.album__item-meta {
display: block;
opacity: 0;
visibility: hidden;
position: absolute;
right: 20px;
top: 15px;
transition: opacity 0.3s ease;
}
@media (min-width: 992px) {
.album__item-meta {
right: 30px;
top: 25px;
}
}
.album__item-meta .meta__item {
color: #fff;
}
.album__item-meta .meta__item > a {
color: #fff;
} .album-load-more {
padding: 30px 0 20px 0;
}
@media (min-width: 992px) {
.album-load-more {
padding: 80px 0 40px 0;
}
}
.album-load-more .btn {
margin: 0 auto;
}
@media (min-width: 992px) {
.album-load-more .btn {
width: calc(33.3% + 60px);
}
} .modal--login .modal-header {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/login_register_bg.jpg);
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: cover;
}
@media (min-width: 992px) {
.modal--login .modal-header {
height: 90px;
}
}
.modal--login .modal-header .close {
width: 33px;
height: 33px;
padding: 0;
line-height: 33px;
border-radius: 50%;
background-color: #31404b;
color: #fff;
opacity: 1;
margin: 0;
text-shadow: none;
position: absolute;
top: 0;
right: 0;
-webkit-transform: translate(50%, -50%);
transform: translate(50%, -50%);
transition: all 0.3s ease;
}
.modal--login .modal-header .close span {
margin-left: 2px;
}
.modal--login .modal-header .close:hover {
background-color: #1892ed;
}
.modal--login .modal-body {
padding: 0;
}
.modal--login .modal-account-holder {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.modal--login .modal-account__item {
flex-basis: 100%;
padding: 20px;
}
@media (min-width: 768px) {
.modal--login .modal-account__item {
flex-basis: 50%;
padding: 30px 20px;
}
.modal--login .modal-account__item:nth-child(2) {
border-left: 1px solid #e4e7ed;
}
}
@media (min-width: 992px) {
.modal--login .modal-account__item {
flex-basis: 50%;
padding: 50px 38px;
}
}
.modal--login .modal-account__item--logo {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/soccer/samples/login_register_bg.jpg);
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: cover;
color: #fff;
position: relative;
}
@media (max-width: 991px) {
.modal--login .modal-account__item--logo {
display: none;
}
}
.modal--login .modal-account__item--logo a {
color: #c2ff1f;
font-weight: bold;
}
.modal--login .modal-account__item--logo a:hover {
color: #fff;
}
.modal--login .modal-account__item-register-txt {
position: absolute;
left: 30px;
right: 40px;
top: 100%;
-webkit-transform: translateY(-100%) translateY(-30px);
transform: translateY(-100%) translateY(-30px);
}
.modal--login-only .modal-header {
height: 0;
padding: 0;
background-image: none;
border: none;
}
.nav-tabs-login-wrapper {
margin-left: -20px;
margin-right: -20px;
margin-bottom: -20px;
margin-top: 20px;
}
@media (min-width: 768px) {
.nav-tabs-login-wrapper {
margin-left: -20px;
margin-right: -20px;
margin-bottom: -30px;
margin-top: 30px;
}
}
@media (min-width: 992px) {
.nav-tabs-login-wrapper {
margin-left: -38px;
margin-right: -38px;
margin-bottom: -50px;
margin-top: 30px;
}
}
.nav-tabs--login {
border-top: 1px solid #e4e7ed;
}
.nav-tabs--login > li > a {
border: none !important;
border-radius: 0 !important;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: rgba(49, 64, 75, 0.4);
padding-top: 15px;
padding-bottom: 15px;
}
.nav-tabs--login > li > a:hover {
background-color: transparent;
color: #38a9ff;
}
.nav-tabs--login > li.active > a {
color: #38a9ff;
}
.nav-tabs--login > li.active > a:hover {
color: #38a9ff;
}
.nav-tabs--login > li + li {
border-left: 1px solid #e4e7ed;
}
.modal-form h5 {
margin-bottom: 1.7em;
}
@media (min-width: 992px) {
.modal-form h5 {
font-size: 18px;
}
}
.modal-form .form-group {
margin-bottom: 15px;
}
.modal-form .form-group--submit {
margin: 30px 0;
padding-top: 9px;
}
.modal-form .modal-form--note {
font-size: 14px;
line-height: 22px;
}
.modal-form .form-group--pass-reminder {
font-size: 14px;
overflow: hidden;
}
.modal-form .form-group--pass-reminder label {
font-size: 10px;
}
.modal-form .form-group--pass-reminder a {
color: #9a9da2;
}
.modal-form .form-group--pass-reminder a:hover {
color: #1892ed;
}
@media (min-width: 992px) {
.modal-form .form-group--pass-reminder a {
float: right;
}
}
.modal-form .form-note {
padding-top: 15px;
padding-bottom: 15px;
}
.modal-form--social {
padding-top: 4px;
}
.modal-form--social h6 {
font-size: 10px;
line-height: 1.2em;
text-align: center;
}  .sponsor-card {
height: calc(100% - 16px);
}
.sponsor-card__header {
display: flex;
align-items: center;
justify-content: center;
height: 172px;
}
.sponsor-card__header::before {
display: none;
}
.sponsor-card__logo img {
max-height: 130px;
}
.sponsor-card__content {
flex-grow: 1;
}
.sponsor-card__excerpt {
font-size: 0.86em;
line-height: 1.83em;
text-align: center;
}
.sponsor-card__social {
text-align: center;
padding-top: 32px;
padding-bottom: 4px;
}
.sponsor-card__social .social-links__item {
margin: 0 14px;
}
.sponsor-card__social .social-links__item:last-child {
margin-right: 14px;
}
.sponsor-card__social .social-links__link {
background-color: transparent;
color: #9a9da2;
font-size: 16px;
margin-right: 0;
opacity: 0.6;
}
.sponsor-card__social .social-links__link:hover {
color: #38a9ff;
opacity: 1;
}
.sponsor-card__footer {
border-top: 1px solid #e4e7ed;
background-color: #fff;
padding: 18px 10px;
text-align: center;
}
.sponsor-card__link {
font-size: 10px;
line-height: 1.2em;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
color: #31404b;
font-weight: 700;
text-transform: uppercase;
}
.text-uppercase {
text-transform: uppercase;
}
.text-lowercase {
text-transform: lowercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-primary,
.text-color-primary {
color: #38a9ff !important;
}
.text-transform-normal {
text-transform: none !important;
}
.text-transform-uppercase {
text-transform: uppercase !important;
}
.text-center {
text-align: center !important;
}
.pt-0 {
padding-top: 0 !important;
}
.pb-0 {
padding-bottom: 0 !important;
}
.mb-0 {
margin-bottom: 0 !important;
}
.mb-10 {
margin-bottom: 10px !important;
}
.mb-15 {
margin-bottom: 15px !important;
}
.mb-20 {
margin-bottom: 20px !important;
}
.mb-30 {
margin-bottom: 30px !important;
}
.mb-40 {
margin-bottom: 40px !important;
}
.mb-50 {
margin-bottom: 50px !important;
}
.mb-60 {
margin-bottom: 60px !important;
}
.mb-70 {
margin-bottom: 70px !important;
}
.mt-10 {
margin-top: 10px !important;
}
.mt-20 {
margin-top: 20px !important;
}
.mt-30 {
margin-top: 30px !important;
}
.mt-40 {
margin-top: 40px !important;
}
.mt-50 {
margin-top: 50px !important;
}
.mt-60 {
margin-top: 60px !important;
}
.mt-70 {
margin-top: 70px !important;
}
.inactive-item {
pointer-events: none !important;
}
  .sp-template {
overflow-x: hidden;
margin-bottom: 0;
}
.sp-event-results > thead > tr > th:first-child,
.sp-event-results > tbody > tr > td:first-child {
padding-left: 24px;
}
.sp-event-results > thead > tr > th:last-child,
.sp-event-results > tbody > tr > td:last-child {
padding-right: 24px;
}
.sp-event-results > thead > tr > th:not(.data-name),
.sp-event-results > tbody > tr > td:not(.data-name) {
text-align: center;
}
.sp-event-results .data-name > a {
color: #31404b;
}
.sp-event-performance > thead > tr > th,
.sp-event-performance > tbody > tr > td,
.sp-event-performance > tfoot > tr > td {
vertical-align: middle;
text-align: center;
}
.sp-event-performance > thead > tr > th.data-number,
.sp-event-performance > tbody > tr > td.data-number,
.sp-event-performance > tfoot > tr > td.data-number {
text-align: left;
color: #31404b;
}
.sp-event-performance > thead > tr > th.data-name,
.sp-event-performance > tbody > tr > td.data-name,
.sp-event-performance > tfoot > tr > td.data-name {
text-align: left;
}
.sp-event-performance > thead > tr > th.data-name > a,
.sp-event-performance > tbody > tr > td.data-name > a,
.sp-event-performance > tfoot > tr > td.data-name > a {
color: #31404b;
}
.sp-event-performance > thead > tr > th.data-position,
.sp-event-performance > tbody > tr > td.data-position,
.sp-event-performance > tfoot > tr > td.data-position {
text-align: left;
}
.sp-event-performance > thead > tr > th:first-child,
.sp-event-performance > tbody > tr > td:first-child,
.sp-event-performance > tfoot > tr > td:first-child {
padding-left: 24px;
}
.sp-event-performance > thead > tr > th:last-child,
.sp-event-performance > tbody > tr > td:last-child,
.sp-event-performance > tfoot > tr > td:last-child {
padding-right: 24px;
}
.sp-event-details > thead > tr > th:first-child,
.sp-event-details > tbody > tr > td:first-child {
padding-left: 24px;
}
.sp-event-details > thead > tr > th:last-child,
.sp-event-details > tbody > tr > td:last-child {
padding-right: 24px;
}
.sp-template-event-calendar {
border: 1px solid #e4e7ed;
border-radius: 4px;
background-color: #fff;
margin-bottom: 15px;
}
@media (max-width: 479px) {
.sportspress > .sp-template-player-photo {
float: none;
text-align: center;
max-width: 100%;
margin-right: 0;
}
}
.sp-template-player-details .card__content {
padding: 24px 24px;
}
.sp-template-player-details .sp-player-details {
margin-bottom: 0;
}
.sp-template-player-details .sp-player-details dt {
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 18px;
color: #31404b;
margin-bottom: 10px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
@media (max-width: 991px) {
.sp-template-player-details .sp-player-details dt {
flex-basis: 45%;
max-width: 45%;
padding-right: 5%;
}
}
.sp-template-player-details .sp-player-details dd {
margin-bottom: 10px;
line-height: 18px;
}
@media (max-width: 991px) {
.sp-template-player-details .sp-player-details dd {
flex-basis: 55%;
max-width: 55%;
}
}
@media (max-width: 991px) {
.sp-template-player-details .sp-player-details {
display: flex;
flex-wrap: wrap;
}
}
@media (min-width: 992px) {
.sp-template-player-details .sp-player-details {
display: flex;
flex-wrap: wrap;
}
.sp-template-player-details .sp-player-details dt {
width: 34%;
}
.sp-template-player-details .sp-player-details dd {
margin-left: auto;
width: 66%;
padding-left: 20px;
}
}
.sp-template-player-statistics {
margin-bottom: 15px;
}
@media (max-width: 800px) {
table.sp-responsive-table tbody tr td,
table.sp-responsive-table tbody tr th {
display: flex !important;
text-align: left !important;
padding-left: 24px !important;
padding-right: 24px !important;
}
table.sp-responsive-table tbody tr td::before,
table.sp-responsive-table tbody tr th::before {
position: static !important;
width: 40% !important;
}
}
.sp-player-list .data-name {
white-space: nowrap;
}
.sp-player-list .data-name .player-photo {
width: 30px;
height: 30px;
overflow: hidden;
border-radius: 50%;
margin-right: 10px;
}
.sp-player-list .data-name .player-photo img {
max-width: none;
max-height: none;
display: inline-block;
width: 100%;
height: auto;
} .sp-section-content-content:not(:empty) {
border: 1px solid #e4e7ed;
border-radius: 4px;
background-color: #fff;
margin-bottom: 15px;
padding: 24px 24px;
}
.sp-section-content-content:not(:empty) .sp-post-caption {
display: flex;
flex-wrap: wrap;
align-items: center;
padding: 22px 23px;
border-radius: 4px 4px 0 0;
position: relative;
border-bottom: 1px solid #e4e7ed;
overflow: hidden;
background-color: #fff;
font-size: 16px;
line-height: 1.2em;
letter-spacing: -0.02em;
margin-bottom: 0;
text-transform: uppercase;
font-style: normal;
padding-right: 1em;
vertical-align: middle;
margin-top: -24px;
margin-left: -24px;
margin-right: -24px;
margin-bottom: 24px;
}
.sp-section-content-content:not(:empty) .sp-post-caption::before {
content: "";
display: block;
position: absolute;
width: 6px;
left: 0;
top: 0;
bottom: 0;
background-color: #38a9ff;
border-radius: 3px 0 0 0;
}
.sp-section-content-content:not(:empty) p:last-child {
margin-bottom: 0;
}
.sp-section-content-excerpt .sp-excerpt {
border: 1px solid #e4e7ed;
border-radius: 4px;
background-color: #fff;
margin-bottom: 15px;
padding: 24px 24px;
}
.sp-template-event-venue iframe {
border: none;
pointer-events: none;
}
.sp-template-event-venue iframe.clicked {
pointer-events: auto;
}
.alc-event-venue__map-caption {
margin-top: 1em;
margin-bottom: 0;
} .sp-event-performance-teams {
display: flex;
flex-wrap: wrap;
}
.sp-event-performance-teams > * {
flex-basis: 100%;
max-width: 100%;
padding: 0;
}
.sp-event-performance-teams .sp-template-event-performance-icons {
max-width: 100%;
flex-basis: 0;
flex-grow: 1;
padding: 0 !important;
}
.sp-event-performance-teams .sp-template-event-performance-icons + .sp-template-event-performance-icons {
margin-left: 16px;
max-width: calc(50% - 16px);
width: calc(50% - 16px);
}
@media (max-width: 649px) {
.sp-event-performance-teams .sp-template-event-performance-icons + .sp-template-event-performance-icons {
width: 100% !important;
min-width: 100% !important;
margin-left: 0;
}
}
.sp-event-performance-teams .sp-template-event-performance-icons .sp-event-performance .data-number {
color: #9a9da2;
}
.sp-event-performance-teams .sp-template-event-performance-icons .sp-event-performance thead tr:first-child th {
border: none;
}
.sp-event-performance-teams .sp-template-event-performance-icons .sp-event-performance tbody tr:first-child td {
border: none;
}
.sp-event-performance-teams .sp-template-event-performance-icons + .alc-event-stats {
clear: both;
width: 100%;
}
.sp-event-performance-teams .sp-player-position {
display: block;
}
.sp-performance-icons img {
margin: 2px 1px 2px 2px;
}
.sp-event-performance .sub-out::before,
.sp-event-performance .sub-in::before {
content: "";
width: 8px;
height: 11px;
display: inline-block;
background-repeat: no-repeat;
background-position: 0 0;
background-size: cover;
margin: 0 4px 0 4px;
transform: translateY(1px);
}
.sp-event-performance .sub-out::before {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/soccer/icon-out.svg);
}
.sp-event-performance .sub-in::before {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/soccer/icon-in.svg);
}
.sp-event-stars {
display: inline-block;
vertical-align: middle;
padding-left: 0.2em;
}
.sp-event-stars .sp-event-star {
font-size: 16px;
line-height: 16px;
width: 16px;
height: 16px;
}
.sp-event-performance .sp-event-star-number {
margin-left: 0.3em;
width: auto;
}
.sp-event-staff {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #9a9da2;
font-weight: normal;
text-transform: uppercase;
line-height: 1.5em;
margin: 0;
}
.sp-event-staff__item + .sp-event-staff__item {
margin-top: 1.5em;
}
.sp-event-staff__name {
color: #31404b;
font-weight: bold;
} .match-preview__header {
text-align: center;
margin-bottom: 15px;
}
.match-preview__header--decor {
background-image: linear-gradient(to right, transparent, transparent 2px, #e4e7ed 2px, #e4e7ed 4px);
background-repeat: repeat-x;
background-position: 0 0;
background-size: 4px 100%;
margin-left: -24px;
margin-right: -24px;
margin-bottom: 26px;
}
.match-preview__header-inner {
display: inline-block;
background-color: #fff;
padding: 0 20px 5px 20px;
vertical-align: middle;
}
.match-preview__header-inner .match-preview__title {
margin-bottom: 0;
}
.match-preview__title {
font-size: 14px;
line-height: 1.2em;
margin-bottom: 0.25em;
text-transform: uppercase;
font-style: normal;
}
.match-preview__title--lg {
padding-top: 0.15em;
margin-bottom: 1.25em;
}
@media (min-width: 768px) {
.match-preview__title--lg {
font-size: 26px;
}
}
.match-preview__heading {
font-size: 16px;
line-height: 1.2em;
text-transform: uppercase;
font-style: normal;
padding-top: 0.15em;
margin-bottom: 0.25em;
}
@media (min-width: 768px) {
.match-preview__heading {
font-size: 24px;
}
}
.match-preview__date {
display: block;
text-transform: uppercase;
font-size: 10px;
line-height: 1.2em;
font-family: "Montserrat", sans-serif;
font-weight: bold;
}
.match-preview__info {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #9a9da2;
font-weight: 400;
}
.match-preview__info + .match-preview__title {
line-height: 1em;
}
.match-preview__content {
overflow: hidden;
padding: 0 0 30px 0;
}
@media (max-width: 767px) {
.match-preview__content {
display: flex;
flex-wrap: nowrap;
flex-direction: column;
padding-bottom: 20px;
}
}
.match-preview__team {
margin-bottom: 16px;
}
@media (min-width: 768px) {
.match-preview__team {
float: left;
width: 37%;
text-align: center;
margin-bottom: 0;
}
}
@media (max-width: 767px) {
.match-preview__team--odd {
order: 0;
}
}
@media (max-width: 767px) {
.match-preview__team--even {
order: 2;
}
}
@media (min-width: 768px) {
.match-preview__team--even {
float: right;
}
}
.match-preview__team-logo {
width: 46px;
float: left;
margin: 0 10px 0 0;
}
@media (min-width: 768px) {
.match-preview__team-logo {
height: 105px;
margin: 0 0 10px 0;
width: auto;
float: none;
padding: 0 5px;
}
}
.match-preview__team-logo img {
max-width: 100%;
height: auto;
}
@media (min-width: 768px) {
.match-preview__team-logo img {
position: relative;
top: 50%;
transform: translateY(-50%);
}
}
.match-preview__team-name {
font-size: 13px;
line-height: 1.2em;
text-transform: uppercase;
letter-spacing: -0.02em;
padding: 12px 0 0 0;
margin: 0;
}
@media (min-width: 768px) {
.match-preview__team-name {
padding: 0;
font-size: 15px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.match-preview__team-name {
font-size: 13px;
}
}
.match-preview__team-info {
font-size: 7px;
line-height: 1.3em;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 700;
}
@media (min-width: 768px) {
.match-preview__team-info {
font-size: 8px;
}
}
.match-preview__vs {
margin: 0 0 16px 0;
}
@media (max-width: 767px) {
.match-preview__vs {
order: 1;
}
}
@media (min-width: 768px) {
.match-preview__vs {
float: left;
width: 26%;
text-align: center;
padding: 38px 0 0 0;
margin: 0;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.match-preview__vs {
padding-left: 2px;
padding-right: 2px;
}
}
.match-preview__conj {
display: block;
font-size: 18px;
line-height: 1.2em;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
color: #31404b;
font-weight: 700;
letter-spacing: -0.02em;
width: 53px;
text-align: center;
display: inline-block;
}
@media (min-width: 992px) {
.match-preview__conj {
font-size: 30px;
width: auto;
display: block;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.match-preview__conj {
font-size: 24px;
}
}
.match-preview__match-info {
font-size: 10px;
line-height: 1.2em;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-weight: 700;
display: inline-block;
}
@media (min-width: 768px) {
.match-preview__match-info {
display: block;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.match-preview__match-info {
font-size: 8px;
}
}
.match-preview__match-info .event-time-status {
margin-bottom: 0.5em;
display: inline-block;
}
.match-preview__match-info--header {
border-bottom: 1px solid #e4e7ed;
margin-left: -24px;
margin-right: -24px;
margin-top: -24px;
padding: 10px 24px;
margin-bottom: 26px;
display: flex;
font-weight: 400;
}
.match-preview__match-info--header .match-preview__match-place {
flex-grow: 1;
color: #31404b;
}
.match-preview__action--ticket {
padding: 62px 24px 15px 24px;
position: relative;
margin-left: -25px;
margin-right: -25px;
overflow: hidden;
background-image: linear-gradient(to right, transparent 3px, #e4e7ed 3px);
background-repeat: repeat-x;
background-size: 10px 1px;
background-position: 0 22px;
}
@media (min-width: 768px) {
.match-preview__action--ticket {
padding-left: 48px;
padding-right: 48px;
}
}
.match-preview__action--ticket::before, .match-preview__action--ticket::after {
content: "";
display: block;
position: absolute;
height: 45px;
width: 45px;
background-color: #edeff4;
border: 1px solid #e4e7ed;
border-radius: 50%;
top: 0;
}
.match-preview__action--ticket::before {
left: -22px;
}
.match-preview__action--ticket::after {
right: -22px;
}
.match-preview__countdown .countdown__title {
background-color: #f5f7f9;
font-size: 11px;
line-height: 1.2em;
text-align: center;
text-transform: uppercase;
padding: 12px;
border-top: 1px solid #e4e7ed;
border-bottom: 1px solid #e4e7ed;
margin: 0;
}
.match-preview--alt .match-preview__content {
display: table;
width: 100%;
}
.match-preview--alt .match-preview__content .match-preview__team {
display: table-cell;
width: 50%;
float: none;
vertical-align: middle;
}
.match-preview--alt .match-preview__content .match-preview__team--odd {
text-align: left;
}
.match-preview--alt .match-preview__content .match-preview__team--even {
text-align: right;
}
.match-preview--alt .match-preview__content .match-preview__team-logo {
width: 32px;
float: none;
margin: 0 5px 0 0;
display: inline-block;
vertical-align: middle;
}
@media (min-width: 768px) {
.match-preview--alt .match-preview__content .match-preview__team-logo {
width: auto;
}
}
@media (min-width: 768px) {
.match-preview--alt .match-preview__content .match-preview__team-logo {
height: 50px;
margin: 0 10px 0 0;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.match-preview--alt .match-preview__content .match-preview__team-logo {
margin-right: 5px;
}
}
.match-preview--alt .match-preview__content .match-preview__team--even .match-preview__team-logo {
margin: 0 0 0 5px;
}
@media (min-width: 768px) {
.match-preview--alt .match-preview__content .match-preview__team--even .match-preview__team-logo {
margin: 0 0 0 10px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.match-preview--alt .match-preview__content .match-preview__team--even .match-preview__team-logo {
margin-left: 5px;
}
}
.match-preview--alt .match-preview__content .match-preview__team-name {
font-size: 18px;
line-height: 1.2em;
padding: 0;
margin: 0;
}
@media (min-width: 768px) {
.match-preview--alt .match-preview__content .match-preview__team-name {
padding: 0;
font-size: 24px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.match-preview--alt .match-preview__content .match-preview__team-name {
font-size: 18px;
}
}
.match-preview--alt .match-preview__content .match-prevew__team-details {
display: inline-block;
vertical-align: middle;
}
@media (max-width: 991px) {
.match-preview--alt .match-preview__content .match-preview__team-info {
display: none;
}
}
.match-preview--alt .match-preview__content .match-preview__vs {
display: table-cell;
width: 50px;
text-align: center;
vertical-align: middle;
float: none;
padding: 0;
}
.match-preview--alt .match-preview__content .match-preview__conj {
width: auto;
font-size: 14px;
display: inline-block;
vertical-align: middle;
}
@media (min-width: 768px) {
.match-preview--alt .match-preview__content .match-preview__conj {
font-size: 18px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.match-preview--alt .match-preview__content .match-preview__conj {
font-size: 12px;
}
}
.match-preview--alt .match-preview__action {
display: table;
width: 100%;
}
.match-preview--alt .match-preview__match-info {
display: table-cell;
width: 50%;
vertical-align: middle;
}
@media (min-width: 768px) {
.match-preview--alt .match-preview__match-info {
display: table-cell;
}
}
.match-preview--alt .match-preview__match-time {
color: #31404b;
letter-spacing: -0.02em;
line-height: 1.5em;
}
@media (min-width: 768px) {
.match-preview--alt .match-preview__match-time {
font-size: 14px;
}
}
.match-preview--alt .match-preview__match-time small {
font-size: 0.75em;
}
.match-preview--alt .match-preview__action-btn {
display: table-cell;
width: 50%;
}
.widget_sp_countdown .event-image {
margin-bottom: 20px;
} .game-result__header {
text-align: center;
margin-bottom: 15px;
}
.game-result__title {
font-size: 12px;
line-height: 1.2em;
margin-bottom: 0.25em;
text-transform: uppercase;
font-style: normal;
}
@media (min-width: 992px) {
.game-result__title {
font-size: 14px;
}
}
.game-result__date {
display: block;
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
}
@media (min-width: 992px) {
.game-result__date {
font-size: 10px;
}
}
.game-result__matchday {
display: block;
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
padding-top: 0.2em;
}
@media (min-width: 992px) {
.game-result__matchday {
font-size: 10px;
}
}
.game-result__header--alt {
display: flex;
flex-wrap: wrap;
font-size: 9px;
line-height: 1.2em;
font-weight: 400;
text-transform: uppercase;
text-align: left;
border-top: 1px solid #e4e7ed;
border-bottom: 1px solid #e4e7ed;
padding: 10px 0 7px 0;
margin-left: -24px;
margin-right: -24px;
margin-top: -25px;
margin-bottom: 40px;
padding-left: 24px;
padding-right: 24px;
}
@media (max-width: 991px) {
.game-result__header--alt {
justify-content: space-between;
}
}
.game-result__header--alt .game-result__header--alt__team {
flex-basis: 50%;
min-width: 50%;
}
@media (min-width: 992px) {
.game-result__header--alt .game-result__header--alt__team {
padding: 0 16px;
}
}
.game-result__header--alt .game-result__header--alt__team + .game-result__header--alt__team {
text-align: right;
}
.game-result__header--alt .game-result__league {
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
font-weight: 400;
text-align: left;
}
@media (max-width: 991px) {
.game-result__header--alt .game-result__league {
flex-basis: 50%;
order: 1;
}
}
@media (min-width: 992px) {
.game-result__header--alt .game-result__league {
flex-basis: 25%;
}
}
.game-result__header--alt .game-result__date {
font-weight: 400;
text-align: right;
}
@media (max-width: 991px) {
.game-result__header--alt .game-result__date {
flex-basis: 50%;
order: 2;
}
}
@media (min-width: 992px) {
.game-result__header--alt .game-result__date {
flex-basis: 25%;
}
}
.game-result__header--alt .game-result__title {
font-size: 9px;
text-align: center;
flex-basis: 100%;
}
@media (max-width: 991px) {
.game-result__header--alt .game-result__title {
order: 0;
margin-bottom: 0.5em;
}
}
@media (min-width: 992px) {
.game-result__header--alt .game-result__title {
flex-basis: 50%;
}
}
.game-result__header--alt .game-result__title .highlight {
color: #38a9ff;
}
.game-result__header--alt .game-result__matchday {
margin-left: auto;
margin-right: auto;
}
@media (max-width: 991px) {
.game-result__header--alt .game-result__matchday {
order: 4;
}
}
.game-result__header--alt .game-result__goal {
color: #31404b;
text-transform: none;
font-family: "Montserrat", sans-serif;
padding: 0 10px;
margin: 2px 0;
display: inline-block;
}
@media (max-width: 991px) {
.game-result__header--alt .game-result__goal {
flex-basis: 100%;
max-width: 100%;
}
}
.game-result__header--alt .game-result__icon {
vertical-align: middle;
margin-left: 7px;
font-size: 16px;
width: 16px;
height: 16px;
position: relative;
top: -1px;
}
.game-result__header--alt .game-result__icon-img {
vertical-align: middle;
margin-left: 7px;
width: 12px;
height: 12px;
position: relative;
top: -1px;
}
.game-result__header--alt img[src$=".svg"].wp-post-image.game-result__icon-img {
width: 12px !important;
height: 12px !important;
}
.game-result__header--alt-compact {
justify-content: flex-start;
}
.game-result__header--alt-compact .game-result__date {
flex-basis: auto;
text-align: left;
font-size: 10px;
line-height: 1.2em;
font-weight: 700;
}
.game-result__header--alt-compact .game-result__title {
flex-basis: auto;
margin-left: auto;
text-align: left;
font-size: 10px;
line-height: 1.2em;
font-weight: 700;
color: #9a9da2;
}
.game-result__content {
margin: 0 0 30px 0;
position: relative;
display: flex;
flex-wrap: wrap;
}
@media (min-width: 1199px) {
.game-result__content {
flex-wrap: nowrap;
}
}
.game-result__content--block {
display: block;
}
.game-result__content--visible {
overflow: visible;
}
.game-result__team {
width: 50%;
text-align: center;
margin-bottom: 20px;
display: flex;
align-items: center;
flex-wrap: wrap;
}
@media (min-width: 1199px) {
.game-result__team {
width: 37%;
margin-bottom: 0;
padding-right: 0;
flex-wrap: nowrap;
text-align: left;
}
}
@media (min-width: 1199px) {
.game-result__team--odd {
order: 0;
}
}
@media (min-width: 1199px) {
.game-result__team--even {
order: 2;
}
.game-result__team--even .game-result__team-logo {
order: 1;
}
.game-result__team--even .game-result__team-info {
order: 0;
text-align: right;
margin-right: 20px;
}
}
@media (min-width: 992px) {
.game-result__team--even .game-result__team-logo {
margin-left: auto;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.game-result__team--even .game-result__team-logo {
margin: 0 0 10px 0;
}
}
.game-result__team-logo {
margin: 0 0 10px 0;
text-align: center;
width: 100%;
}
@media (max-width: 479px) {
.game-result__team-logo {
height: 50px;
}
.game-result__team-logo img {
max-height: 50px;
width: auto;
}
}
@media (min-width: 1199px) {
.game-result__team-logo {
width: auto;
margin: 0 20px 0 0;
}
}
.game-result__team-info {
flex-grow: 1;
text-align: center;
}
@media (min-width: 1199px) {
.game-result__team-info {
text-align: left;
}
}
.game-result__team-name {
font-size: 13px;
margin-bottom: 0.1em;
text-transform: uppercase;
}
@media (min-width: 992px) {
.game-result__team-name {
font-size: 18px;
}
}
.game-result__team-desc {
font-size: 7px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
}
@media (min-width: 992px) {
.game-result__team-desc {
font-size: 10px;
}
}
.game-result__score-wrap {
margin: 0;
width: 100%;
text-align: center;
}
@media (min-width: 1199px) {
.game-result__score-wrap {
width: 26%;
text-align: center;
padding: 33px 0 0 0;
margin: 0;
order: 1;
}
}
.game-result__score {
font-size: 24px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
}
@media (min-width: 992px) {
.game-result__score {
font-size: 34px;
line-height: 1.2em;
margin-bottom: 10px;
}
}
@media (min-width: 992px) {
.game-result__score--sm {
font-size: 36px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.game-result__score--sm {
font-size: 24px;
}
}
.game-result__score--sm .game-result__score-result--winner::before {
display: none;
}
@media (min-width: 992px) {
.game-result__score--lg {
font-size: 44px;
}
}
.game-result__score-result {
position: relative;
}
.game-result__score-result--winner::before {
content: "";
display: block;
position: absolute;
left: -20px;
top: 50%;
width: 0;
height: 0;
border-left: 8px solid #38a9ff;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
transform: translateY(-50%);
}
.game-result__score-result--loser ~ .game-result__score-result--winner::before {
display: none;
}
.game-result__score-result--loser ~ .game-result__score-result--winner::after {
content: "";
display: block;
position: absolute;
right: -20px;
top: 50%;
width: 0;
height: 0;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
transform: translateY(-50%);
border-right: 8px solid #38a9ff;
}
.game-result__score-result--loser {
color: #9a9da2;
}
.game-result__score-label {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
}
@media (max-width: 991px) {
.game-result__score-label {
line-height: 1em;
font-size: 9px;
}
}
.game-result__score-video-icon {
display: inline-block;
width: 24px;
height: 24px;
border-radius: 50%;
color: #fff;
font-size: 10px;
text-align: center;
line-height: 24px;
background-color: #9a9da2;
}
.game-result__score-video-icon:hover {
background-color: #1892ed;
color: #fff;
}
.game-result__score-video-icon .fa {
margin-left: 2px;
}
.game-result__subtitle {
font-size: 11px;
margin-bottom: 0;
}
@media (min-width: 992px) {
.game-result__subtitle {
font-size: 13px;
}
}
.game-result__stats {
padding: 0 0 0 0;
}
@media (min-width: 992px) {
.game-result__stats {
padding: 0 20px 0 20px;
}
}
.game-result__section {
padding-top: 16px;
}
.game-result__section-decor {
padding-bottom: 50px;
background-image: linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 8px, transparent 8px), linear-gradient(to right, whitesmoke 8px, transparent 8px), linear-gradient(to right, #ebebeb 8px, transparent 8px);
background-repeat: repeat-x;
background-size: 72px 24px, 72px 30px, 72px 34px, 72px 40px, 72px 37px, 72px 29px, 144px 30px, 216px 37px;
background-position: 0 100%, 12px 100%, 24px 100%, 36px 100%, 48px 100%, 60px 100%, 12px 100%, 48px 100%;
}
.card .game-result__section-decor {
margin-left: -24px;
margin-right: -24px;
margin-bottom: -24px;
}
@media (min-width: 1199px) {
.game-result__table-stats {
margin: 0 10px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.game-result__table-stats .table > thead > tr > th,
.game-result__table-stats .table > thead > tr > td,
.game-result__table-stats .table > tbody > tr > th,
.game-result__table-stats .table > tbody > tr > td,
.game-result__table-stats .table > tfoot > tr > th,
.game-result__table-stats .table > tfoot > tr > td {
padding-left: 6px;
padding-right: 6px;
}
}
@media (min-width: 1199px) {
.game-result__stats-team-1,
.game-result__stats-team-2 {
padding-top: 5px;
}
}
.game-result__table-additional-stats .table > thead > tr > th,
.game-result__table-additional-stats .table > thead > tr > td,
.game-result__table-additional-stats .table > tbody > tr > th,
.game-result__table-additional-stats .table > tbody > tr > td,
.game-result__table-additional-stats .table > tfoot > tr > th,
.game-result__table-additional-stats .table > tfoot > tr > td {
padding-top: 10px;
padding-bottom: 10px;
text-align: center;
}
.game-result__table-additional-stats .table > thead > tr > th:first-child,
.game-result__table-additional-stats .table > thead > tr > td:first-child,
.game-result__table-additional-stats .table > tbody > tr > th:first-child,
.game-result__table-additional-stats .table > tbody > tr > td:first-child,
.game-result__table-additional-stats .table > tfoot > tr > th:first-child,
.game-result__table-additional-stats .table > tfoot > tr > td:first-child {
text-align: left;
}
.game-result__table-stats--soccer th {
text-align: center;
}
.game-result__table-stats--soccer td {
text-align: center;
}
.game-result__table-stats--soccer tbody > tr > td {
border: none !important;
padding-top: 6px;
padding-bottom: 6px;
text-transform: uppercase;
font-size: 10px;
font-weight: 700;
}
.game-result__table-stats--soccer tbody > tr:first-child > td {
padding-top: 20px;
}
.game-result__table-stats--soccer tbody > tr:last-child > td {
padding-bottom: 20px;
}
.game-result__table-stats--soccer tbody > tr > td:first-child,
.game-result__table-stats--soccer tbody > tr > td:last-child {
color: #31404b;
} .game-timeline-wrapper {
width: 100%;
padding-left: 24px;
padding-right: 24px;
padding-bottom: 20px;
}
@media (max-width: 991px) {
.game-timeline-wrapper {
padding: 0;
}
}
.game-timeline {
position: relative;
height: 140px;
}
@media (max-width: 991px) {
.game-timeline {
height: auto;
}
}
.game-timeline::before {
content: "";
display: block;
position: absolute;
left: -48px;
right: -48px;
top: 50%;
height: 1px;
background-color: #e4e7ed;
}
@media (max-width: 991px) {
.game-timeline::before {
left: 50%;
right: auto;
top: 0;
bottom: 0;
height: auto;
width: 1px;
}
}
@media (max-width: 991px) {
.game-timeline::after {
content: "";
display: block;
position: absolute;
z-index: 1;
left: 0;
right: 0;
top: 13px;
height: 1px;
background-color: #e4e7ed;
}
}
.game-timeline__event {
position: absolute;
text-align: center;
display: block;
left: 0;
top: 0;
bottom: 0;
min-width: 26px;
}
@media (max-width: 991px) {
.game-timeline__event {
position: static;
min-width: 100%;
width: 100%;
text-align: center;
clear: both;
margin-bottom: 16px;
}
}
.game-timeline__event--kickoff {
margin-left: -26px;
clear: none;
}
@media (min-width: 992px) {
.game-timeline__event--kickoff.game-timeline__event--side-away {
top: 50%;
margin-top: 26px;
}
}
@media (max-width: 991px) {
.game-timeline__event--kickoff {
margin-left: 0;
margin-bottom: 32px;
}
.game-timeline__event--kickoff .game-timeline__time--kickoff {
position: absolute;
z-index: 2;
left: 50%;
top: 0;
transform: translateX(-50%);
}
.game-timeline__event--kickoff.game-timeline__event--side-home {
width: 50%;
min-width: auto;
float: left;
}
.game-timeline__event--kickoff.game-timeline__event--side-home .game-timeline__team-logo {
margin: 0;
position: relative;
z-index: 2;
}
.game-timeline__event--kickoff.game-timeline__event--side-away {
width: 50%;
min-width: auto;
float: right;
}
.game-timeline__event--kickoff.game-timeline__event--side-away .game-timeline__team-logo {
margin: 0 0 0 auto;
position: relative;
z-index: 2;
}
}
.game-timeline__event--ht {
left: 50%;
transform: translateX(-50%);
}
@media (max-width: 991px) {
.game-timeline__event--ht {
transform: none;
}
}
.game-timeline__event--ft {
left: 100%;
}
.game-timeline__event--side-home {
top: 0;
}
.game-timeline__event--side-home .game-timeline__team-logo {
margin-top: 14px;
}
.game-timeline__event--side-away {
bottom: 0;
}
.game-timeline__team-logo {
display: block;
width: 27px;
position: relative;
}
.game-timeline__team-logo img {
width: 100%;
height: auto;
}
.game-timeline__icon {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
@media (max-width: 991px) {
.game-timeline__icon {
position: relative;
left: 0;
transform: none;
flex-shrink: 0;
}
}
.game-timeline__icon img[src$=".svg"].wp-post-image {
width: 14px !important;
}
.game-timeline__icon .sp-icon-sub {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/soccer/icon-substitution.svg);
background-position: 50% 50%;
background-repeat: no-repeat;
}
.game-timeline__icon .sp-icon-sub::before {
display: none;
}
.game-timeline__icon--home {
top: 26px;
}
@media (max-width: 991px) {
.game-timeline__icon--home {
position: static;
}
}
.game-timeline__icon--away {
bottom: 26px;
}
@media (max-width: 991px) {
.game-timeline__icon--away {
position: static;
order: 0;
}
}
.game-timeline__time {
width: 26px;
height: 26px;
border: 1px solid #e4e7ed;
border-radius: 50%;
background-color: #fff;
text-align: center;
line-height: 24px;
color: #31404b;
font-family: "Montserrat", sans-serif;
font-size: 9px;
font-weight: 700;
display: block;
position: absolute;
top: 50%;
margin-top: -13px;
}
@media (max-width: 991px) {
.game-timeline__time {
position: relative;
margin: 0 auto;
}
}
.game-timeline__time--kickoff-away {
display: none;
}
.game-timeline__event-info {
font-size: 10px;
line-height: 1.2em;
}
@media (max-width: 991px) {
.game-timeline__event-info {
display: flex;
padding-top: 5px;
align-items: center;
}
}
@media (max-width: 991px) {
.game-timeline__event-info--side-home {
float: left;
width: calc(50% - 26px);
justify-content: flex-end;
}
}
@media (max-width: 991px) {
.game-timeline__event-info--side-home .game-timeline__event-name {
padding-right: 6px;
}
}
@media (max-width: 991px) {
.game-timeline__event-info--side-away {
width: calc(50% - 26px);
float: right;
text-align: left;
}
}
@media (max-width: 991px) {
.game-timeline__event-info--side-away .game-timeline__event-name {
order: 1;
padding-left: 6px;
}
}
.game-timeline__event-name {
color: #31404b;
font-family: "Montserrat", sans-serif;
font-weight: 700;
white-space: nowrap;
line-height: 1.3em;
display: none;
}
@media (max-width: 991px) {
.game-timeline__event-name {
display: block;
font-weight: 400;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.game-timeline__event-desc {
font-size: 7px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
white-space: nowrap;
} @media (min-width: 992px) {
.game-timeline-wrapper--horizontal {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
height: 140px;
position: relative;
}
}
@media (min-width: 992px) {
.game-timeline-wrapper--horizontal .game-timeline-teams {
flex: 0 1 auto;
}
}
@media (min-width: 992px) {
.game-timeline-wrapper--horizontal .game-timeline__event--kickoff {
margin-left: 0;
}
}
@media (min-width: 992px) {
.game-timeline-wrapper--horizontal .game-timeline {
flex: 1 0 auto;
overflow: auto;
}
.game-timeline-wrapper--horizontal .game-timeline::before {
left: 0;
right: 0;
}
}
@media (min-width: 992px) {
.game-timeline-wrapper--horizontal .game-timeline-ft {
flex: 0 1 auto;
}
}
@media (min-width: 992px) {
.game-timeline-wrapper--horizontal .game-timeline__event--ft {
left: auto;
right: 0;
}
} .game-timeline-wrapper--vertical {
padding: 0;
}
.game-timeline-wrapper--vertical .game-timeline {
height: auto;
padding-bottom: 24px;
}
.game-timeline-wrapper--vertical .game-timeline::before {
left: 50%;
right: auto;
top: 0;
bottom: 0;
height: auto;
width: 1px;
}
.game-timeline-wrapper--vertical .game-timeline::after {
content: "";
display: block;
position: absolute;
z-index: 1;
left: 0;
right: 0;
top: 13px;
height: 1px;
background-color: #e4e7ed;
}
.game-timeline-wrapper--vertical .game-timeline__event {
position: static;
min-width: 100%;
width: 100%;
padding-left: 24px;
padding-right: 24px;
text-align: center;
clear: both;
margin-bottom: 16px;
}
.game-timeline-wrapper--vertical .game-timeline__event--kickoff {
margin-left: 0;
margin-bottom: 32px;
min-height: 30px;
}
.game-timeline-wrapper--vertical .game-timeline__event--kickoff + .game-timeline__event--kickoff {
clear: none;
}
.game-timeline-wrapper--vertical .game-timeline__event--kickoff .game-timeline__time--kickoff {
position: absolute;
z-index: 2;
left: 50%;
top: 0;
transform: translateX(-50%);
}
@media (min-width: 992px) {
.game-timeline-wrapper--vertical .game-timeline__event--kickoff.game-timeline__event--side-away {
margin-top: 0;
}
}
.game-timeline-wrapper--vertical .game-timeline__event--kickoff.game-timeline__event--side-home {
width: 50%;
min-width: 50%;
float: left;
}
.game-timeline-wrapper--vertical .game-timeline__event--kickoff.game-timeline__event--side-home .game-timeline__team-logo {
margin: 0;
position: relative;
z-index: 2;
}
.game-timeline-wrapper--vertical .game-timeline__event--kickoff.game-timeline__event--side-away {
width: 50%;
min-width: auto;
float: right;
}
.game-timeline-wrapper--vertical .game-timeline__event--kickoff.game-timeline__event--side-away .game-timeline__team-logo {
margin: 0 0 0 auto;
position: relative;
z-index: 2;
}
.game-timeline-wrapper--vertical .game-timeline__event--ht {
transform: none;
}
.game-timeline-wrapper--vertical .game-timeline__icon {
position: relative;
left: 0;
transform: none;
flex-shrink: 0;
}
.game-timeline-wrapper--vertical .game-timeline__icon img[src$=".svg"].wp-post-image {
width: 13px !important;
}
.game-timeline-wrapper--vertical .game-timeline__icon--home {
position: static;
}
.game-timeline-wrapper--vertical .game-timeline__icon--away {
position: static;
order: 0;
}
.game-timeline-wrapper--vertical .game-timeline__time {
position: relative;
margin: 0 auto;
}
.game-timeline-wrapper--vertical .game-timeline__event-info {
display: flex;
padding-top: 5px;
align-items: center;
}
.game-timeline-wrapper--vertical .game-timeline__event-info--side-home {
float: left;
width: calc(50% - 26px);
justify-content: flex-end;
}
.game-timeline-wrapper--vertical .game-timeline__event-info--side-home .game-timeline__event-name {
padding-right: 8px;
}
.game-timeline-wrapper--vertical .game-timeline__event-info--side-away {
width: calc(50% - 26px);
float: right;
text-align: left;
}
.game-timeline-wrapper--vertical .game-timeline__event-info--side-away .game-timeline__event-name {
order: 1;
padding-left: 8px;
}
.game-timeline-wrapper--vertical .game-timeline__event-name {
display: block;
font-weight: 400;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.widget .game-timeline-wrapper--vertical .game-timeline__team-logo {
display: none;
}
.game-result__teams-wrapper--flex {
display: flex;
flex-wrap: nowrap;
align-items: center;
}
.game-result__teams-wrapper--flex .game-result__team {
flex-direction: column;
}
.game-result__teams-wrapper--flex .game-result__team .game-result__team-logo {
height: 100px;
display: flex;
align-items: center;
justify-content: center;
}
@media (min-width: 992px) {
.game-result__teams-wrapper--flex .game-result__team .game-result__team-logo {
float: none !important;
margin: 0 !important;
text-align: center !important;
}
}
@media (min-width: 992px) {
.game-result__teams-wrapper--flex .game-result__team .game-result__team-info {
padding: 11px 0 0 0;
text-align: center;
}
}
.game-result__teams-wrapper--flex .game-result__team .game-result__team-name {
font-style: normal;
}
@media (min-width: 992px) {
.game-result__teams-wrapper--flex .game-result__team .game-result__team-name {
font-size: 14px;
}
}
.game-result__teams-wrapper--flex .game-result__team .game-result__team-desc {
font-family: "Source Sans Pro", sans-serif;
font-weight: normal;
text-transform: none;
}
.game-result__teams-wrapper--flex .game-result__team--odd {
order: 1;
}
.game-result__teams-wrapper--flex .game-result__team--even {
order: 3;
}
@media (min-width: 1199px) {
.game-result__teams-wrapper--flex .game-result__team--even .game-result__team-logo {
order: 0;
}
.game-result__teams-wrapper--flex .game-result__team--even .game-result__team-info {
order: 1;
text-align: center;
margin-right: 0;
}
}
.game-result__teams-wrapper--flex .game-result__score-wrap {
order: 2;
}
@media (min-width: 1199px) {
.game-result__teams-wrapper--flex .game-result__score-wrap {
padding-top: 0;
}
} .game-result__section--box {
display: flex;
margin-left: -24px;
margin-right: -24px;
margin-bottom: -24px;
}
.game-result__item .card__subheader {
margin: 0;
}
.game-result__item .game-result__subtitle {
font-style: normal;
}
@media (min-width: 992px) {
.game-result__item .game-result__subtitle {
font-size: 12px;
}
}
.game-result__item .game-result__content {
padding: 24px 24px;
}
@media (min-width: 768px) {
.game-result__item .game-result__content {
border-right: 1px solid #e4e7ed;
}
}
.game-result__item:last-child .game-result__content {
border-right: none;
} .game-result__mvp {
display: flex;
align-items: center;
}
.game-result__mvp-player {
display: flex;
align-items: center;
}
@media (max-width: 479px) {
.game-result__mvp-player-icon-holder {
display: none;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.game-result__mvp-player-icon-holder {
display: none;
}
}
.game-result__mvp-player-icon {
display: block;
width: 40px;
height: 40px;
border: 4px solid #38a9ff;
border-radius: 50%;
margin-right: 10px;
text-align: center;
line-height: 32px;
color: #31404b;
font-size: 18px;
}
.game-result__mvp-player-meta {
font-size: 12px;
line-height: 1.2em;
flex-grow: 1;
}
.game-result__mvp-player-name {
color: #31404b;
font-family: "Montserrat", sans-serif;
font-weight: 700;
display: block;
margin-bottom: 0;
line-height: 1.2em;
}
.game-result__mvp-player-team {
display: block;
font-size: 9px;
line-height: 1.2em;
}
.game-result__mvp-stats {
margin-left: auto;
}
.game-result__mvp-stats-list {
display: flex;
margin: 0;
}
.game-result__mvp-stats-item {
text-align: center;
font-size: 12px;
line-height: 1.2em;
padding: 0 7px;
}
.game-result__mvp-stats-value {
display: block;
color: #31404b;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
.game-result__mvp-stats-label {
font-size: 9px;
line-height: 1.2em;
display: block;
} .game-result__stats-circular-bars {
display: flex;
align-items: center;
margin: 0;
width: 100%;
}
.game-result__stats-circular-bars .game-result__stats-circular-item {
font-size: 12px;
line-height: 1.2em;
flex-grow: 1;
display: flex;
align-items: center;
}
.game-result__stats-circular-bars .game-result__stats-circular-item .circular {
margin: 0 10px 0 0;
}
.game-result__stats-circular-bars .game-result__stats-value {
display: block;
color: #31404b;
font-family: "Montserrat", sans-serif;
font-weight: 700;
}
.game-result__stats-circular-bars .game-result__stats-label {
font-size: 9px;
line-height: 1.2em;
display: block;
}
.event-time-status {
font-size: 1em;
}
.event-time-status--time {
margin-left: 0.35em;
}
.event-time-status--has-divider::before {
content: "–";
display: inline-block;
margin-left: 0.3em;
margin-right: 0.3em;
}
.event-time-status--no-divider .event-time-status__badge {
margin-left: 0.35em;
}
.event-time-status__badge {
font-size: 1em;
}  .sp-template-team-gallery {
overflow: hidden;
margin-bottom: 0;
}
.sp-team-gallery-wrapper {
display: flex;
flex-wrap: wrap;
}
.sp-team-gallery-wrapper .gallery-item {
text-align: center;
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
.sp-team-gallery-wrapper .gallery-item .gallery-icon {
width: 100%;
}
.sp-team-gallery-wrapper .gallery-item .gallery-icon + a {
width: 100%;
}
.sp-team-gallery-wrapper .gallery-item img {
padding: 0.5em;
}
@media (max-width: 479px) {
.sp-team-gallery-wrapper .gallery-item {
flex-basis: 50% !important;
max-width: 50% !important;
}
}
.sp-team-gallery-wrapper .gallery-caption {
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
text-align: center;
}
.gallery-columns-1 .sp-team-gallery-wrapper {
flex-wrap: nowrap;
}
.gallery-columns-1 .sp-team-gallery-wrapper .gallery-item {
flex-basis: 100%;
max-width: 100%;
}
.gallery-columns-2 .sp-team-gallery-wrapper .gallery-item {
flex-basis: 50%;
max-width: 50%;
}
.gallery-columns-3 .sp-team-gallery-wrapper .gallery-item {
flex-basis: 33.3%;
max-width: 33.3%;
}
.gallery-columns-4 .sp-team-gallery-wrapper .gallery-item {
flex-basis: 25%;
max-width: 25%;
}
.gallery-columns-5 .sp-team-gallery-wrapper .gallery-item {
flex-basis: 20%;
max-width: 20%;
}
.gallery-columns-6 .sp-team-gallery-wrapper .gallery-item {
flex-basis: 16.66%;
max-width: 16.66%;
}
.sp-team-gallery-link {
text-align: center;
padding-top: 1.5em;
}
.sp-team-gallery-link > a {
border: 1px solid transparent;
font-weight: 700;
font-family: "Montserrat", sans-serif;
font-style: normal;
text-transform: uppercase;
transition: all 0.3s ease;
vertical-align: middle;
padding: 13px 42px;
font-size: 11px;
line-height: 1.5em;
border-radius: 2px;
color: #fff;
background-color: #9a9da2;
border-color: transparent;
}
.sp-team-gallery-link > a:hover, .sp-team-gallery-link > a:focus, .sp-team-gallery-link > a.focus {
color: #fff;
}
.sp-team-gallery-link > a:active, .sp-team-gallery-link > a.active {
box-shadow: none;
}
.sp-team-gallery-link > a:focus, .sp-team-gallery-link > a.focus {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
.sp-team-gallery-link > a:hover {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
.sp-team-gallery-link > a:active, .sp-team-gallery-link > a.active, .open > .sp-team-gallery-link > a.dropdown-toggle {
color: #fff;
background-color: #868a91;
border-color: rgba(0, 0, 0, 0);
}
.sp-team-gallery-link > a:active:hover, .sp-team-gallery-link > a:active:focus, .sp-team-gallery-link > a:active.focus, .sp-team-gallery-link > a.active:hover, .sp-team-gallery-link > a.active:focus, .sp-team-gallery-link > a.active.focus, .open > .sp-team-gallery-link > a.dropdown-toggle:hover, .open > .sp-team-gallery-link > a.dropdown-toggle:focus, .open > .sp-team-gallery-link > a.dropdown-toggle.focus {
color: #fff;
background-color: #6e7177;
border-color: rgba(0, 0, 0, 0);
}
.sp-team-gallery-link > a:active, .sp-team-gallery-link > a.active, .open > .sp-team-gallery-link > a.dropdown-toggle {
background-image: none;
}
.sp-team-gallery-link > a.disabled, .sp-team-gallery-link > a[disabled] {
background-color: #676a6f;
border-color: rgba(0, 0, 0, 0);
}
.sp-team-gallery-link > a.disabled:hover, .sp-team-gallery-link > a.disabled:focus, .sp-team-gallery-link > a.disabled.focus, .sp-team-gallery-link > a[disabled]:hover, .sp-team-gallery-link > a[disabled]:focus, .sp-team-gallery-link > a[disabled].focus, fieldset[disabled] .sp-team-gallery-link > a:hover, fieldset[disabled] .sp-team-gallery-link > a:focus, fieldset[disabled] .sp-team-gallery-link > a.focus {
background-color: #676a6f;
border-color: rgba(0, 0, 0, 0);
}
.sp-team-gallery-link > a:not(:disabled):not(.disabled):active, .sp-team-gallery-link > a:not(:disabled):not(.disabled).active, .show > .sp-team-gallery-link > a.dropdown-toggle {
color: #fff;
background-color: #868a91;
border-color: transparent;
}
.sp-team-gallery-link > a .badge {
color: #9a9da2;
background-color: #fff;
}  .team-roster--grid {
display: flex;
flex-wrap: wrap;
margin-left: -8px;
margin-right: -8px;
}
.team-roster--grid .team-roster__item {
margin-bottom: 15px;
position: relative;
padding-left: 8px;
padding-right: 8px;
float: left;
}
@media (max-width: 479px) {
.team-roster--grid .team-roster__item {
flex-basis: 100%;
max-width: 100%;
}
}
@media (min-width: 375px) and (max-width: 479px) {
.team-roster--grid .team-roster__item {
flex-basis: 50%;
max-width: 50%;
}
}
.team-roster--grid .team-roster__holder {
position: relative;
}
.team-roster--grid .team-roster__holder:hover .team-roster__member-number {
background-color: #38a9ff;
}
.team-roster--grid .team-roster__img {
position: relative;
border-radius: 4px;
overflow: hidden;
border: 1px solid #e4e7ed;
}
.team-roster--grid .team-roster__img::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 50%;
background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
pointer-events: none;
}
.team-roster--grid .team-roster__content {
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 24px 24px;
pointer-events: none;
}
@media (min-width: 375px) and (max-width: 479px) {
.team-roster--grid .team-roster__content {
padding: 12px 12px;
}
}
.team-roster--grid .team-roster__content-inner {
display: table;
width: 100%;
}
.team-roster--grid .team-roster__member-number {
display: table-cell;
width: 1%;
vertical-align: middle;
background-color: #bfc2c4;
border-radius: 4px;
font-size: 24px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #fff;
text-align: center;
transition: background-color 0.3s ease;
width: 60px;
height: 60px;
line-height: 60px;
font-size: 32px;
}
@media (min-width: 768px) {
.team-roster--grid .team-roster__member-number {
width: 40px;
height: 40px;
line-height: 40px;
font-size: 24px;
}
}
@media (min-width: 992px) {
.team-roster--grid .team-roster__member-number {
width: 60px;
height: 60px;
line-height: 60px;
font-size: 32px;
}
}
@media (min-width: 1200px) {
.team-roster--grid .team-roster__member-number {
width: 90px;
height: 90px;
line-height: 90px;
font-size: 48px;
}
}
@media (min-width: 375px) and (max-width: 479px) {
.team-roster--grid .team-roster__member-number {
width: 40px;
height: 40px;
line-height: 40px;
font-size: 24px;
}
}
.team-roster--grid .team-roster__member-info {
display: table-cell;
vertical-align: middle;
padding-left: 10px;
}
@media (min-width: 992px) {
.team-roster--grid .team-roster__member-info {
padding-left: 10px;
}
}
@media (min-width: 1200px) {
.team-roster--grid .team-roster__member-info {
padding-left: 14px;
}
}
.team-roster--grid .team-roster__member-name {
color: #fff;
margin-bottom: 0.15em;
line-height: 1em;
font-size: 24px;
}
@media (min-width: 768px) {
.team-roster--grid .team-roster__member-name {
font-size: 18px;
}
}
@media (min-width: 992px) {
.team-roster--grid .team-roster__member-name {
font-size: 24px;
}
}
@media (min-width: 1200px) {
.team-roster--grid .team-roster__member-name {
font-size: 30px;
line-height: 28px;
}
}
@media (min-width: 375px) and (max-width: 479px) {
.team-roster--grid .team-roster__member-name {
font-size: 14px;
}
}
.team-roster--grid .team-roster__member-name > a {
color: #fff;
}
.team-roster--grid .team-roster__member-first-name {
display: block;
}
.team-roster--grid .team-roster__member-last-name {
display: block;
color: #38a9ff;
}
.team-roster--grid .team-roster__member-position {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
display: block;
font-weight: 400;
}
@media (min-width: 1200px) {
.team-roster--grid .team-roster__member-position {
font-size: 11px;
}
}
@media (min-width: 375px) and (max-width: 479px) {
.team-roster--grid .team-roster__member-position {
font-size: 8px;
}
}
.team-roster--grid .btn-fab {
right: 20px;
top: 20px;
}
.team-roster--grid-col-2 .team-roster__item {
flex-basis: 50%;
max-width: 50%;
}
@media (max-width: 479px) {
.team-roster--grid-col-2 .team-roster__item {
flex-basis: 100%;
max-width: 100%;
}
}
@media (min-width: 768px) {
.team-roster--grid-col-2 .team-roster__item {
flex-basis: 50%;
max-width: 50%;
}
}
.team-roster--grid-col-0 .team-roster__item,
.team-roster--grid-col-3 .team-roster__item {
flex-basis: 100%;
max-width: 100%;
}
@media (min-width: 768px) {
.team-roster--grid-col-0 .team-roster__item,
.team-roster--grid-col-3 .team-roster__item {
flex-basis: 50%;
max-width: 50%;
}
}
@media (min-width: 992px) {
.team-roster--grid-col-0 .team-roster__item,
.team-roster--grid-col-3 .team-roster__item {
flex-basis: 50%;
max-width: 50%;
}
}
@media (min-width: 1200px) {
.team-roster--grid-col-0 .team-roster__item,
.team-roster--grid-col-3 .team-roster__item {
flex-basis: 33.33333333%;
max-width: 33.33333333%;
}
} .team-roster--grid-sm {
display: flex;
flex-wrap: wrap;
margin-left: -8px;
margin-right: -8px;
}
.team-roster--grid-sm.d-block .team-roster__item {
flex-basis: auto !important;
}
.team-roster--grid-sm .team-roster__item {
display: flex;
position: relative;
padding-left: 8px;
padding-right: 8px;
margin-bottom: 20px;
}
@media (max-width: 479px) {
.team-roster--grid-sm .team-roster__item {
width: 100%;
}
}
@media (min-width: 375px) and (max-width: 479px) {
.team-roster--grid-sm .team-roster__item {
width: 100%;
}
}
.team-roster--grid-sm .team-roster__holder {
border: 1px solid #e4e7ed;
border-radius: 4px;
background-color: #fff;
overflow: hidden;
display: flex;
flex-basis: 100%;
}
.team-roster--grid-sm .team-roster__img {
position: relative;
overflow: hidden;
flex-shrink: 0;
display: flex;
}
@media (max-width: 479px) {
.team-roster--grid-sm .team-roster__img {
width: 36%;
padding-top: 12px;
padding-bottom: 12px;
padding-left: 12px;
}
}
.team-roster--grid-sm .team-roster__img img {
object-fit: cover;
}
.team-roster--grid-sm .team-roster__img > a {
display: flex;
position: relative;
}
.team-roster--grid-sm .team-roster__img > a::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
opacity: 0;
transition: opacity 0.3s ease;
background-color: #171d21;
}
.team-roster--grid-sm .team-roster__img > a:hover::before {
opacity: 0.8;
}
.team-roster--grid-sm .team-roster__img > a:hover .btn-fab {
transform: scale(1, 1);
}
.team-roster--grid-sm .btn-fab {
left: 50%;
top: 50%;
margin: -25px 0 0 -25px;
z-index: 2;
transform: scale(0, 0);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.team-roster--grid-sm .team-roster__content {
padding: 24px 24px;
min-width: 0;
}
.team-roster--grid-sm .team-roster__member-header {
display: flex;
align-items: center;
}
.team-roster--grid-sm .team-roster__member-number {
font-size: 40px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #38a9ff;
line-height: 1em;
padding-right: 0.12em;
}
.team-roster--grid-sm .team-roster__member-name {
font-size: 12px;
margin-bottom: 0;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.team-roster--grid-sm .team-roster__member-first-name {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.team-roster--grid-sm .team-roster__member-last-name {
font-size: 20px;
display: block;
letter-spacing: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.team-roster--grid-sm .team-roster__member-subheader {
padding-top: 3px;
}
.team-roster--grid-sm .team-roster__member-position {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
display: block;
font-weight: 400;
}
.team-roster--grid-sm .team-roster__member-details {
padding: 20px 0 0 0;
margin: 0;
}
.team-roster--grid-sm .team-roster__member-details-item {
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
text-transform: none;
color: #31404b;
display: inline-block;
padding: 0 13px 0 0;
}
.team-roster--grid-sm .team-roster__member-details-item .item-title {
font-weight: 400;
color: #9a9da2;
text-transform: uppercase;
}
.team-roster--grid-sm .team-roster__member-details-item .item-title-flag {
display: inline-block;
}
@media (max-width: 991px) {
.team-roster--grid-sm .sp-template-player-gallery {
margin-left: 8px;
margin-right: 8px;
}
} .team-roster-table thead > tr > th,
.team-roster-table tbody > tr > td {
vertical-align: middle;
text-align: center;
}
@media (min-width: 992px) {
.team-roster-table thead > tr > th:first-child,
.team-roster-table tbody > tr > td:first-child {
padding-left: 23px;
}
}
.team-roster-table .data-name {
color: #31404b;
}
.team-roster-table .data-name a {
color: #31404b;
}
.team-roster-table .data-position {
color: #31404b;
text-align: left;
}
.team-roster-table .data-height {
text-align: center;
}
.team-roster-table .data-weight {
text-align: center;
}
.team-roster-table__age {
text-align: center;
}
.team-roster-table__status {
text-align: center;
}
.team-roster-table__foot,
.team-roster-table__goals,
.team-roster-table__assists,
.team-roster-table__fouls,
.team-roster-table__card-y,
.team-roster-table__card-r {
text-align: center;
vertical-align: middle;
}
.team-roster-table__header {
text-transform: uppercase;
background-color: #f5f7f9;
}
@media (min-width: 992px) {
.team-roster-table__header {
padding-left: 23px !important;
}
} .team-roster--slider,
.team-roster--slider-wrapper {
background: #151719 url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/team-roster-slider-bg.jpg) 50% 50% no-repeat;
background-size: cover;
border: 1px solid #e4e7ed;
border-radius: 4px;
margin-bottom: 15px;
padding-top: 40px;
padding-bottom: 10px;
}
@media (min-width: 768px) {
.team-roster--slider,
.team-roster--slider-wrapper {
padding: 54px 0 20px 0;
}
}
@media (min-width: 992px) {
.team-roster--slider,
.team-roster--slider-wrapper {
padding: 70px 0 20px 0;
}
}
@media (min-width: 1200px) {
.team-roster--slider,
.team-roster--slider-wrapper {
height: 720px;
padding: 98px 0 0 0;
}
}
.team-roster--slider .team-roster__item,
.team-roster--slider-wrapper .team-roster__item {
outline: none;
position: relative;
}
@media (min-width: 1200px) {
.team-roster--slider .team-roster__item,
.team-roster--slider-wrapper .team-roster__item {
padding: 0 10px;
}
}
.team-roster--slider .team-roster__item a,
.team-roster--slider-wrapper .team-roster__item a {
outline: none;
}
.team-roster--slider .team-roster__img,
.team-roster--slider-wrapper .team-roster__img {
transition: all 0.3s ease;
text-align: center;
position: relative;
}
.team-roster--slider .team-roster__img img,
.team-roster--slider-wrapper .team-roster__img img {
margin: 0 auto;
position: relative;
z-index: 2;
}
.team-roster--slider .team-roster__img-ring-top,
.team-roster--slider .team-roster__img-ring-bottom,
.team-roster--slider-wrapper .team-roster__img-ring-top,
.team-roster--slider-wrapper .team-roster__img-ring-bottom {
position: absolute;
left: 0;
right: 0;
height: 26px;
overflow: hidden;
}
.team-roster--slider .team-roster__img-ring-top::before,
.team-roster--slider .team-roster__img-ring-bottom::before,
.team-roster--slider-wrapper .team-roster__img-ring-top::before,
.team-roster--slider-wrapper .team-roster__img-ring-bottom::before {
content: "";
display: block;
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 52px;
border-style: solid;
border-color: #38a9ff;
border-width: 7px 32px;
border-radius: 50%;
}
.team-roster--slider .team-roster__img-ring-top,
.team-roster--slider-wrapper .team-roster__img-ring-top {
bottom: 23px;
transform: scale(-1, -1);
z-index: 1;
}
.team-roster--slider .team-roster__img-ring-bottom,
.team-roster--slider-wrapper .team-roster__img-ring-bottom {
bottom: -3px;
z-index: 3;
}
.team-roster--slider .team-roster__player-details,
.team-roster--slider-wrapper .team-roster__player-details {
transition: all 0.3s ease;
display: table;
width: 100%;
padding: 24px 0;
}
@media (min-width: 768px) {
.team-roster--slider .team-roster__player-details,
.team-roster--slider-wrapper .team-roster__player-details {
padding: 24px 0;
}
}
@media (min-width: 992px) {
.team-roster--slider .team-roster__player-details,
.team-roster--slider-wrapper .team-roster__player-details {
padding: 40px 0;
}
}
@media (min-width: 1200px) {
.team-roster--slider .team-roster__player-details,
.team-roster--slider-wrapper .team-roster__player-details {
padding: 50px 0;
}
}
.team-roster--slider .team-roster__player-number,
.team-roster--slider-wrapper .team-roster__player-number {
display: table-cell;
width: 40%;
text-align: right;
vertical-align: top;
font-size: 24px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1em;
color: #fff;
letter-spacing: -0.03em;
font-size: 32px;
}
@media (min-width: 768px) {
.team-roster--slider .team-roster__player-number,
.team-roster--slider-wrapper .team-roster__player-number {
font-size: 40px;
}
}
@media (min-width: 992px) {
.team-roster--slider .team-roster__player-number,
.team-roster--slider-wrapper .team-roster__player-number {
font-size: 54px;
}
}
@media (min-width: 1200px) {
.team-roster--slider .team-roster__player-number,
.team-roster--slider-wrapper .team-roster__player-number {
font-size: 70px;
line-height: 54px;
}
}
.team-roster--slider .team-roster__player-info,
.team-roster--slider-wrapper .team-roster__player-info {
display: table-cell;
width: 57%;
padding-left: 3%;
vertical-align: top;
text-align: left;
}
.team-roster--slider .team-roster__player-name,
.team-roster--slider-wrapper .team-roster__player-name {
color: #fff;
margin-bottom: 0.2em;
font-size: 18px;
}
@media (min-width: 768px) {
.team-roster--slider .team-roster__player-name,
.team-roster--slider-wrapper .team-roster__player-name {
font-size: 20px;
}
}
@media (min-width: 992px) {
.team-roster--slider .team-roster__player-name,
.team-roster--slider-wrapper .team-roster__player-name {
font-size: 24px;
}
}
@media (min-width: 1200px) {
.team-roster--slider .team-roster__player-name,
.team-roster--slider-wrapper .team-roster__player-name {
font-size: 30px;
line-height: 28px;
}
}
.team-roster--slider .team-roster__player-name > a,
.team-roster--slider-wrapper .team-roster__player-name > a {
color: #fff;
}
.team-roster--slider .team-roster__player-last-name,
.team-roster--slider-wrapper .team-roster__player-last-name {
display: block;
color: #38a9ff;
}
.team-roster--slider .team-roster__player-position,
.team-roster--slider-wrapper .team-roster__player-position {
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
display: block;
}
@media (min-width: 1200px) {
.team-roster--slider .team-roster__player-position,
.team-roster--slider-wrapper .team-roster__player-position {
font-size: 11px;
}
}
.team-roster--slider .team-roster__item:not(.slick-current) .team-roster__img,
.team-roster--slider-wrapper .team-roster__item:not(.slick-current) .team-roster__img {
filter: grayscale(1);
opacity: 0.4;
transform: scale(0.825);
}
.team-roster--slider .team-roster__item:not(.slick-current) .team-roster__player-details,
.team-roster--slider-wrapper .team-roster__item:not(.slick-current) .team-roster__player-details {
opacity: 0;
visibility: hidden;
}
.team-roster--slider .team-roster__item:not(.slick-current) .team-roster__player-fab,
.team-roster--slider-wrapper .team-roster__item:not(.slick-current) .team-roster__player-fab {
opacity: 0;
visibility: hidden;
}
.team-roster--slider .team-roster__player-fab,
.team-roster--slider-wrapper .team-roster__player-fab {
position: absolute;
top: 14%;
right: 25%;
z-index: 3;
transition: all 0.3s ease-out;
}
@media (max-width: 767px) {
.team-roster--slider .team-roster__player-fab,
.team-roster--slider-wrapper .team-roster__player-fab {
display: none;
}
}
.team-roster--slider .team-roster__player-fab .btn-fab,
.team-roster--slider-wrapper .team-roster__player-fab .btn-fab {
position: absolute;
left: 0;
top: 0;
}
.team-roster--slider .team-roster__player-fab:hover .team-roster__player-fab-txt,
.team-roster--slider-wrapper .team-roster__player-fab:hover .team-roster__player-fab-txt {
opacity: 1;
transform: translateX(0);
}
.team-roster--slider .team-roster__player-fab-txt,
.team-roster--slider-wrapper .team-roster__player-fab-txt {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #fff;
display: block;
position: absolute;
left: 30px;
padding-left: 10px;
top: 4px;
white-space: nowrap;
overflow: hidden;
opacity: 0;
transform: translateX(-25%);
transition: all 0.3s ease-out;
}
.team-roster--slider .team-roster__player-fab-txt::first-line,
.team-roster--slider-wrapper .team-roster__player-fab-txt::first-line {
color: #9a9da2;
}
.team-roster--slider .slick-prev,
.team-roster--slider .slick-next,
.team-roster--slider-wrapper .slick-prev,
.team-roster--slider-wrapper .slick-next {
top: auto;
margin-top: 0;
bottom: 11%;
}
@media (min-width: 992px) {
.team-roster--slider .slick-prev,
.team-roster--slider .slick-next,
.team-roster--slider-wrapper .slick-prev,
.team-roster--slider-wrapper .slick-next {
bottom: 11%;
}
}
@media (min-width: 1200px) {
.team-roster--slider .slick-prev,
.team-roster--slider .slick-next,
.team-roster--slider-wrapper .slick-prev,
.team-roster--slider-wrapper .slick-next {
bottom: 15%;
}
}
.team-roster--slider .alert,
.team-roster--slider-wrapper .alert {
margin: 0 30px;
}
.team-roster--slider-wrapper .team-roster--slider {
background: none !important;
border: none !important;
border-radius: 0 !important;
margin: 0 !important;
padding: 0 !important;
position: static !important;
} .team-roster--card .team-roster__content-wrapper {
display: flex;
position: relative;
transform: translate3d(0, 0, 0);
overflow: hidden;
}
@media (max-width: 991px) {
.team-roster--card .team-roster__content-wrapper {
flex-wrap: wrap;
}
}
.team-roster--card .team-roster__player-img {
flex-grow: 1;
flex-shrink: 0;
position: relative;
overflow: hidden;
border-radius: 4px 0 0 4px;
text-align: center;
}
@media (max-width: 991px) {
.team-roster--card .team-roster__player-img {
flex-basis: 100%;
}
.team-roster--card .team-roster__player-img img {
margin: 0 auto;
}
}
@media (max-width: 479px) {
.team-roster--card .team-roster__player-img {
display: none;
}
}
.team-roster--card .team-roster__player-shape {
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: #6bbfff;
z-index: -1;
}
.team-roster--card .team-roster__player-shape::after {
content: "";
display: block;
position: absolute;
right: 0;
top: -180px;
width: 0;
height: 0;
border-bottom: 800px solid #fff;
border-left: 420px solid transparent;
}
@media (max-width: 991px) {
.team-roster--card .team-roster__player-shape::after {
display: none !important;
}
}
.team-roster--card .team-roster__player-shape-inner {
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-position: 0 0;
background-repeat: no-repeat;
background-size: cover;
opacity: 0.12;
}
.team-roster--card .team-roster__content {
padding: 20px;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__content {
padding: 20px 40px 20px 0;
}
}
@media (min-width: 1200px) {
.team-roster--card .team-roster__content {
padding: 25px 90px 20px 0;
}
}
.team-roster--card .team-roster__player-details {
position: relative;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__player-details {
padding: 30px 0 0 0;
}
}
@media (min-width: 1200px) {
.team-roster--card .team-roster__player-details {
padding: 50px 0 0 0;
}
}
.team-roster--card .team-roster__player-number {
font-size: 42px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1em;
opacity: 0.2;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__player-number {
display: block;
position: absolute;
top: 0;
margin-left: -0.8em;
opacity: 0.08;
font-size: 110px;
}
}
@media (min-width: 1200px) {
.team-roster--card .team-roster__player-number {
font-size: 138px;
}
}
.team-roster--card .team-roster__player-name {
margin-bottom: 0.75em;
font-size: 24px;
line-height: 1em;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__player-name {
margin-bottom: 1.2em;
}
}
@media (min-width: 1200px) {
.team-roster--card .team-roster__player-name {
font-size: 40px;
}
}
.team-roster--card .team-roster__player-name > a {
color: #31404b;
}
.team-roster--card .team-roster__player-last-name {
display: block;
font-size: 40px;
line-height: 1em;
color: #38a9ff;
}
@media (min-width: 1200px) {
.team-roster--card .team-roster__player-last-name {
font-size: 78px;
}
}
.team-roster--card .team-roster__player-excerpt {
margin-bottom: 30px;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__player-excerpt {
margin-bottom: 35px;
}
}
@media (min-width: 1200px) {
.team-roster--card .team-roster__player-excerpt {
margin-bottom: 47px;
}
}
.team-roster--card .team-roster__player-stats {
margin-bottom: 30px;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__player-stats {
margin-bottom: 35px;
}
}
@media (min-width: 1200px) {
.team-roster--card .team-roster__player-stats {
margin-bottom: 47px;
}
}
.team-roster--card .team-roster__player-stats .progress__label {
width: 100px;
}
.team-roster--card .team-roster__player-footer .btn + .btn {
margin-left: 7px;
}
@media (max-width: 991px) {
.team-roster--card .team-roster__player-footer .btn:first-child {
padding-left: 30px;
padding-right: 30px;
}
}
.team-roster--card .team-roster__meta {
border-left: 1px solid #e4e7ed;
display: flex;
justify-content: center;
flex-grow: 1;
width: 116px;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__meta {
flex-direction: column;
}
}
.team-roster--card .team-roster__meta-item {
text-align: center;
padding: 20px 15px;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__meta-item {
text-align: center;
padding: 30px 10px;
min-width: 115px;
}
}
.team-roster--card .team-roster__meta-value {
display: block;
font-size: 20px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
line-height: 1.2em;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__meta-value {
font-size: 24px;
}
}
@media (min-width: 1200px) {
.team-roster--card .team-roster__meta-value {
font-size: 27px;
}
}
.team-roster--card .team-roster__meta-label {
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__meta-label {
font-size: 12px;
}
}
.team-roster--card .team-roster__meta-item--lg .team-roster__meta-value {
font-size: 24px;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__meta-item--lg .team-roster__meta-value {
font-size: 32px;
}
}
@media (min-width: 1200px) {
.team-roster--card .team-roster__meta-item--lg .team-roster__meta-value {
font-size: 36px;
}
}
.team-roster--card .team-roster__meta-item--lg .team-roster__meta-label {
font-size: 12px;
}
@media (min-width: 992px) {
.team-roster--card .team-roster__meta-item--lg .team-roster__meta-label {
font-size: 13px;
}
} .team-roster--card-compact .team-roster__item {
min-height: 1px;
padding-left: 8px;
padding-right: 8px;
float: left;
}
.team-roster--card-compact .team-roster__item-holder {
overflow: hidden;
}
.team-roster--card-compact .team-roster__item-holder .card__content {
padding: 20px;
position: relative;
}
.team-roster--card-compact .team-roster__item-holder .card__content::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 24px;
background-color: #fff;
z-index: 3;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper {
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
position: relative;
height: 375px;
}
@media (min-width: 480px) {
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper {
height: 480px;
}
}
@media (min-width: 768px) {
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper {
height: 448px;
}
}
@media (min-width: 992px) {
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper {
height: 490px;
}
}
@media (min-width: 1200px) {
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper {
height: 490px;
}
}
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background-image: linear-gradient(135deg, transparent, transparent 57%, #e2ff2f 57%, #e2ff2f 78%, transparent 78%, transparent), linear-gradient(135deg, transparent, transparent 33%, rgba(255, 255, 255, 0.15) 33%, rgba(255, 255, 255, 0.15) 57%, transparent 57%, transparent), linear-gradient(135deg, rgba(24, 146, 237, 0.82), rgba(24, 146, 237, 0.82) 47%, #c2ff1f 47%, #c2ff1f);
z-index: 1;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper:hover .team-roster__player-img img {
transform: translateX(-24px);
opacity: 0;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper:hover .team-roster__player-img::before {
opacity: 0.4;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper:hover .team-roster__player-img::after {
opacity: 1;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__content-wrapper:hover .team-roster__player-details {
visibility: visible;
opacity: 1;
transition-delay: 0.12s;
transform: translateX(0);
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-img {
position: absolute;
z-index: 2;
margin: 0;
text-align: center;
width: 100%;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-img img {
margin: -20px auto 0 auto;
opacity: 1;
transform: translateX(0);
transition: all 0.4s ease;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-img::before, .team-roster--card-compact .team-roster__item-holder .team-roster__player-img:after {
content: "";
display: block;
position: absolute;
top: 18px;
width: 8px;
height: 8px;
border-radius: 4px;
background-color: #fff;
transition: opacity 0.3s ease;
opacity: 1;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-img::before {
right: 38px;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-img::after {
right: 18px;
opacity: 0.4;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-info {
position: absolute;
z-index: 3;
left: 0;
right: 80px;
bottom: 50px;
background-color: #fff;
padding: 12px 0 10px 24px;
height: 68px;
display: flex;
align-items: center;
}
@media (min-width: 992px) {
.team-roster--card-compact .team-roster__item-holder .team-roster__player-info {
right: 110px;
}
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-info::before {
content: "";
display: block;
position: absolute;
right: -68px;
top: 0;
width: 0;
height: 0;
border-bottom: 68px solid transparent;
border-left: 68px solid #fff;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-name {
font-size: 14px;
line-height: 1em;
margin: 0;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
@media (min-width: 992px) {
.team-roster--card-compact .team-roster__item-holder .team-roster__player-name {
font-size: 16px;
}
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-first-name {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-last-name {
display: block;
font-size: 22px;
line-height: 1em;
color: #38a9ff;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
@media (min-width: 992px) {
.team-roster--card-compact .team-roster__item-holder .team-roster__player-last-name {
font-size: 30px;
}
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-number {
position: absolute;
z-index: 3;
right: 0;
bottom: 0;
color: rgba(154, 157, 162, 0.4);
font-size: 32px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
padding-bottom: 0.3em;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-number::before {
content: "";
display: block;
position: absolute;
right: 0;
bottom: 0;
width: 0;
height: 0;
border-top: 92px solid transparent;
border-right: 92px solid #fff;
z-index: -1;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-details {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
position: absolute;
top: 20px;
left: 20px;
right: 20px;
padding: 12px 12px;
z-index: 3;
opacity: 0;
visibility: hidden;
transform: translateX(24px);
transition: all 0.4s ease;
}
@media (min-width: 1200px) {
.team-roster--card-compact .team-roster__item-holder .team-roster__player-details {
top: 56px;
left: 36px;
right: 36px;
padding: 24px 24px;
}
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-details-body {
flex-grow: 1;
padding: 0 20px 0 6px;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-details-excerpt {
font-size: 14px;
line-height: 20px;
margin-bottom: 20px;
}
@media (max-width: 479px) {
.team-roster--card-compact .team-roster__item-holder .team-roster__player-details-excerpt {
overflow: hidden;
height: 40px;
}
}
.team-roster--card-compact .team-roster__item-holder .progress-stats {
margin-bottom: 7px;
}
.team-roster--card-compact .team-roster__item-holder .progress-stats .progress__label {
font-size: 9px;
color: #9a9da2;
}
.team-roster--card-compact .team-roster__item-holder .progress-stats .progress__number {
font-size: 9px;
color: #31404b;
}
.team-roster--card-compact .team-roster__item-holder .progress-stats .progress {
margin-top: 7px;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-details-footer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-top: 10px;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-details-footer .btn-block {
width: 100%;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-details-footer .btn-single-icon {
margin-top: 10px;
flex: 1 0;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__player-details-footer .btn-single-icon + .btn-single-icon {
margin-left: 10px;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__meta {
flex-shrink: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__meta-item {
text-align: center;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__meta-item--lg .team-roster__meta-value {
font-size: 26px;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__meta-value {
font-size: 20px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #31404b;
}
.team-roster--card-compact .team-roster__item-holder .team-roster__meta-label {
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
} .team-roster--case {
margin-left: -8px;
margin-right: -8px;
}
.team-roster--case .team-roster__item {
margin: 0 8px;
}
.team-roster--case .team-roster__player-img {
border-radius: 4px 4px 0 0;
overflow: hidden;
}
.team-roster--case .team-roster__player-img img {
width: 100%;
height: auto;
transition: transform 0.5s ease;
backface-visibility: hidden;
}
.team-roster--case .team-roster__player-img:hover img {
transform: scale(1.1);
}
.team-roster--case .team-roster__player-img + .card__header {
border-radius: 0;
}
.team-roster--case .team-roster__player-img + .card__header::before {
border-radius: 0;
}
.team-roster--case .team-roster__player-name {
font-size: 16px;
margin: 0;
font-style: normal;
}
.team-roster--case .team-roster__player-name .team-roster__player-last-name {
margin-left: 0.3em;
}
.team-roster--case .team-roster__player-position {
font-size: 11px;
line-height: 1.2em;
padding-top: 0.25em;
font-weight: normal;
margin: 0;
color: #9a9da2;
}
.team-roster--case .team-roster__meta {
display: flex;
}
.team-roster--case .team-roster__meta-item {
flex-grow: 1;
flex-basis: 0;
text-align: center;
border-left: 1px solid #e4e7ed;
padding: 26px 0;
}
.team-roster--case .team-roster__meta-item:first-child {
border-left: none;
}
.team-roster--case .team-roster__meta-value {
font-size: 28px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #fff;
margin-bottom: 0.1em;
}
.team-roster--case .team-roster__meta-value--accent {
color: #c2ff1f;
}
.team-roster--case .team-roster__meta-label {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
font-weight: 400;
} .team-roster--carousel .slick-prev,
.team-roster--carousel .slick-next {
top: -62px;
}
.team-roster--carousel .slick-next {
right: 28px;
}
.team-roster--carousel .slick-prev {
right: 58px;
} .team-roster--boxed .team-roster__content {
min-width: 0;
}
.team-roster--boxed .team-roster__player-realname {
text-transform: uppercase;
font-style: italic;
color: #9a9da2;
line-height: 1em;
margin-bottom: 0.1em;
}
.team-roster--boxed .team-roster__player-nickname {
display: block;
font-size: 40px;
line-height: 1em;
margin-bottom: 0.22em;
letter-spacing: -0.03em;
}
@media (min-width: 768px) {
.team-roster--boxed .team-roster__player-nickname {
font-size: 54px;
}
}
@media (min-width: 992px) {
.team-roster--boxed .team-roster__player-nickname {
font-size: 60px;
}
}
@media (min-width: 1200px) {
.team-roster--boxed .team-roster__player-nickname {
font-size: 90px;
}
}
.team-roster--boxed .team-roster__player-nickname .highlight {
color: #38a9ff;
}
.team-roster--boxed .team-roster__content {
padding: 20px;
}
@media (min-width: 992px) {
.team-roster--boxed .team-roster__content {
padding: 20px;
width: 100%;
}
}
@media (min-width: 1200px) {
.team-roster--boxed .team-roster__content {
padding: 25px 60px 20px 30px;
}
}
@media (min-width: 1200px) {
.team-roster--boxed .team-roster__player-excerpt {
margin-bottom: 42px;
}
}
.team-roster--boxed .team-roster__meta {
border-left: none;
display: flex;
justify-content: flex-start;
flex-grow: 1;
padding-top: 15px;
padding-bottom: 15px;
}
.team-roster--boxed .team-roster__meta-item {
text-align: center;
padding: 10px 15px;
}
@media (min-width: 992px) {
.team-roster--boxed .team-roster__meta-item {
padding: 15px 30px 15px 5px;
}
}
.team-roster--boxed .team-roster__meta-icon {
width: 40px;
height: 40px;
border-radius: 50%;
border: 4px solid #31404b;
background-color: #edeff4;
margin: 0 auto 10px auto;
position: relative;
}
.team-roster--boxed .team-roster__meta-icon .df-icon,
.team-roster--boxed .team-roster__meta-icon .fa {
display: block;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.team-roster--boxed .team-roster__meta-icon--more {
border: none;
transition: background-color 0.2s ease;
background-color: #9a9da2;
}
.team-roster--boxed .team-roster__meta-icon--more .fa {
color: #fff;
}
.team-roster--boxed .team-roster__meta-icon--more:hover {
background-color: #868a91;
}
.team-roster--boxed .team-roster__meta-label {
font-size: 10px;
font-style: italic;
color: #31404b;
white-space: nowrap;
}
@media (min-width: 992px) {
.team-roster--boxed .team-roster__player-img {
display: flex;
align-items: flex-end;
}
.team-roster--boxed .team-roster__player-img img {
width: auto !important;
height: 580px;
}
}
.team-roster--boxed .team-roster__player-shape {
background-color: transparent;
}
.team-roster--boxed .team-roster__player-shape .team-roster__player-shape-inner {
opacity: 1;
}
.team-roster--boxed .team-roster__player-shape::after {
content: "";
display: block;
position: absolute;
right: 0;
top: -180px;
width: 0;
height: 0;
border-bottom: 900px solid #fff;
border-left: 320px solid transparent;
z-index: 3;
}
.team-roster--boxed .team-roster__player-shape--default .team-roster__player-shape-inner {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/esports/samples/team-player2-bg.jpg);
}
.team-roster--boxed .team-roster__player-details-common {
display: flex;
flex-wrap: wrap;
padding-bottom: 20px;
align-items: center;
}
@media (min-width: 992px) {
.team-roster--boxed .team-roster__player-details-common {
padding: 0 0 55px 0;
}
}
.team-roster--boxed .team-roster__player-metrics {
display: flex;
}
@media (max-width: 767px) {
.team-roster--boxed .team-roster__player-metrics {
width: 100%;
}
}
.team-roster--boxed .team-roster__player-metrics-item {
font-size: 12px;
line-height: 1.2em;
padding-right: 16px;
}
@media (min-width: 992px) {
.team-roster--boxed .team-roster__player-metrics-item {
padding-right: 16px;
}
}
@media (min-width: 1200px) {
.team-roster--boxed .team-roster__player-metrics-item {
padding-right: 50px;
}
}
.team-roster--boxed .team-roster__player-metrics-item-label {
text-transform: uppercase;
margin-bottom: 0.3em;
}
@media (max-width: 767px) {
.team-roster--boxed .team-roster__player-social {
padding: 15px 0;
}
}
.team-roster--boxed .team-roster__player-stats {
display: flex;
margin-bottom: 0;
align-items: center;
flex-wrap: wrap;
row-gap: 20px;
}
@media (min-width: 992px) {
.team-roster--boxed .team-roster__player-stats {
margin-bottom: 0;
}
}
@media (min-width: 1200px) {
.team-roster--boxed .team-roster__player-stats {
margin-bottom: 0;
padding-right: 20px;
}
}
.team-roster--boxed .team-roster__player-stats .progress-table__progress-label {
padding-right: 0;
}
.team-roster--boxed .team-roster__player-stats-circular-bars {
display: flex;
flex-wrap: wrap;
}
.team-roster--boxed .team-roster__player-stats-circular-bar {
margin-right: 10px;
}
@media (min-width: 768px) {
.team-roster--boxed .team-roster__player-stats-circular-bar {
margin-right: 15px;
}
}
@media (min-width: 992px) {
.team-roster--boxed .team-roster__player-stats-circular-bar {
margin-right: 20px;
}
}
@media (min-width: 1200px) {
.team-roster--boxed .team-roster__player-stats-circular-bar {
margin-right: 38px;
}
}
.team-roster--boxed .team-roster__player-stats-circular-bar .circular--size-80 .circular__bar {
width: 72px;
height: 72px;
}
@media (min-width: 992px) {
.team-roster--boxed .team-roster__player-stats-circular-bar .circular--size-80 .circular__bar {
width: 80px;
height: 80px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.team-roster--boxed .team-roster__player-stats-circular-bar .circular--size-80 .circular__bar {
width: 65px;
height: 65px;
}
}
.team-roster--boxed .team-roster__player-stats-progress-bars {
flex: 1;
}
.team-roster--boxed .team-roster__player-stats-progress-bars .progress-table__title {
text-transform: uppercase;
}
.team-roster--boxed .team-roster__player-stats-progress-bars .progress-table__progress-label {
padding-left: 20px;
}
.team-roster-nav {
display: flex;
padding: 0 24px;
margin-bottom: 30px;
}
@media (min-width: 992px) {
.team-roster-nav {
padding-top: 10px;
margin-bottom: 60px;
}
}
.team-roster-nav .slick-prev,
.team-roster-nav .slick-next {
top: 50%;
transform: translateY(-50%);
border-radius: 0;
margin: 0;
width: 24px;
height: 24px;
background-color: transparent;
}
@media (min-width: 480px) {
.team-roster-nav .slick-prev,
.team-roster-nav .slick-next {
transform: translateY(calc(-50% - 14px));
}
}
.team-roster-nav .slick-prev::before,
.team-roster-nav .slick-next::before {
color: #31404b;
}
.team-roster-nav .slick-prev:hover:not(.slick-disabled),
.team-roster-nav .slick-next:hover:not(.slick-disabled) {
background-color: transparent;
}
.team-roster-nav .slick-prev:hover:not(.slick-disabled)::before,
.team-roster-nav .slick-next:hover:not(.slick-disabled)::before {
color: #38a9ff;
}
.team-roster-nav .slick-prev.slick-disabled,
.team-roster-nav .slick-next.slick-disabled {
cursor: default;
}
.team-roster-nav .slick-prev {
left: 0;
}
.team-roster-nav .slick-prev::before {
content: "\f104";
}
.team-roster-nav .slick-next {
right: 0;
left: auto;
}
.team-roster-nav .slick-next::before {
content: "\f105";
}
.team-roster-nav__item {
margin: 0 auto;
padding: 17px 0 0 0;
}
@media (min-width: 480px) {
.team-roster-nav__item {
margin-left: 15px;
margin-right: 15px;
}
}
@media (min-width: 768px) {
.team-roster-nav__item {
margin-left: 20px;
margin-right: 20px;
}
}
@media (min-width: 992px) {
.team-roster-nav__item {
margin-left: 0;
margin-right: 0;
}
}
.team-roster-nav__item:hover, .team-roster-nav__item.slick-current {
cursor: pointer;
}
.team-roster-nav__item:hover .team-roster-nav__hexagon, .team-roster-nav__item.slick-current .team-roster-nav__hexagon {
border-left-color: #31404b;
border-right-color: #31404b;
}
.team-roster-nav__item:hover .team-roster-nav__hexagon::before, .team-roster-nav__item.slick-current .team-roster-nav__hexagon::before {
border-top-color: #31404b;
border-right-color: #31404b;
}
.team-roster-nav__item:hover .team-roster-nav__hexagon::after, .team-roster-nav__item.slick-current .team-roster-nav__hexagon::after {
border-bottom-color: #31404b;
border-left-color: #31404b;
}
.team-roster-nav__item:hover .team-roster-nav__triangle::before, .team-roster-nav__item:hover .team-roster-nav__triangle::after, .team-roster-nav__item.slick-current .team-roster-nav__triangle::before, .team-roster-nav__item.slick-current .team-roster-nav__triangle::after {
border-bottom-color: #31404b;
}
.team-roster-nav__item:hover .team-roster-nav__icon, .team-roster-nav__item.slick-current .team-roster-nav__icon {
border-color: #31404b;
}
.team-roster-nav__item:hover .team-roster-nav__firstname, .team-roster-nav__item.slick-current .team-roster-nav__firstname {
color: #31404b;
}
.team-roster-nav__item:hover .team-roster-nav__nickname, .team-roster-nav__item.slick-current .team-roster-nav__nickname {
color: #38a9ff;
}
.team-roster-nav__meta {
text-align: center;
padding: 15px 0 0 0;
}
@media (max-width: 479px) {
.team-roster-nav__meta {
display: none;
}
}
.team-roster-nav__firstname {
font-size: 14px;
line-height: 1.2em;
text-transform: uppercase;
margin-bottom: 0;
font-style: italic;
color: #9a9da2;
transition: color 0.3s ease;
}
.team-roster-nav__nickname {
font-size: 20px;
line-height: 1.2em;
margin-bottom: 0;
transition: color 0.3s ease;
}
.team-roster-nav__hexagon {
position: relative;
width: 116px;
height: 66.97px;
background-color: #fff;
margin: 33.49px auto;
border-left: solid 4px #e4e7ed;
border-right: solid 4px #e4e7ed;
transition: border-color 0.3s ease;
}
.team-roster-nav__hexagon::before, .team-roster-nav__hexagon::after {
content: "";
position: absolute;
z-index: 1;
width: 82.02px;
height: 82.02px;
transform: scaleY(0.5774) rotate(-45deg);
background-color: inherit;
left: 12.9878px;
transition: border-color 0.3s ease;
}
.team-roster-nav__hexagon::before {
top: -41.0122px;
border-top: solid 5.6569px #e4e7ed;
border-right: solid 5.6569px #e4e7ed;
}
.team-roster-nav__hexagon::after {
bottom: -41.0122px;
border-bottom: solid 5.6569px #e4e7ed;
border-left: solid 5.6569px #e4e7ed;
}
.team-roster-nav__img {
display: block;
position: absolute;
z-index: 2;
left: 0;
top: -41px;
}
.team-roster-nav__img img {
width: 108px;
height: 152px;
object-fit: cover;
object-position: 50% 0;
}
.team-roster-nav__triangle {
display: block;
position: absolute;
left: 0;
width: 100%;
bottom: 0;
z-index: 3;
}
.team-roster-nav__triangle::before, .team-roster-nav__triangle::after {
content: "";
display: block;
position: absolute;
z-index: 3;
width: 0;
height: 0;
bottom: 4px;
border-bottom: 41px solid #e4e7ed;
font-size: 0;
line-height: 0;
transition: border-color 0.3s ease;
}
.team-roster-nav__triangle::before {
left: 0;
border-right: 68.4px solid transparent;
}
.team-roster-nav__triangle::after {
right: 0;
border-left: 68.4px solid transparent;
}
.team-roster-nav__triangle-border {
display: block;
position: absolute;
left: 0;
width: 100%;
bottom: 0;
z-index: 4;
}
.team-roster-nav__triangle-border::before, .team-roster-nav__triangle-border::after {
content: "";
display: block;
position: absolute;
z-index: 3;
width: 0;
height: 0;
bottom: 0;
border-bottom: 41px solid #edeff4;
font-size: 0;
line-height: 0;
}
.team-roster-nav__triangle-border::before {
left: 0;
border-right: 68.4px solid transparent;
}
.team-roster-nav__triangle-border::after {
right: 0;
border-left: 68.4px solid transparent;
}
.team-roster-nav__icon {
display: block;
position: absolute;
right: -19px;
bottom: 95px;
width: 34px;
height: 34px;
border-radius: 50%;
border: 4px solid #e4e7ed;
background-color: #edeff4;
transition: border-color 0.3s ease;
margin: 0 auto;
}
.team-roster-nav__icon .df-icon,
.team-roster-nav__icon .fa {
display: block;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.team-roster-nav__icon .df-icon {
transform: translate(-50%, -50%) scale(0.75);
stroke: #c2ff1f;
fill: #c2ff1f;
} .table-standings {
border: none;
margin-bottom: 0;
}
.table-standings > thead > tr > th,
.table-standings > tbody > tr > td {
text-align: center;
vertical-align: middle;
}
@media (min-width: 992px) {
.table-standings .data-rank {
padding-left: 24px;
width: 50px;
}
}
@media (min-width: 1200px) {
.table-standings .data-name {
width: 170px;
}
}
.table-standings td.data-name {
color: #31404b;
font-size: 1.09em;
line-height: 1.2em;
font-weight: 400;
}
.table-standings td.data-name a {
color: #31404b;
}
.table-standings .data-w,
.table-standings .data-l,
.table-standings .data-gb {
color: #31404b;
}
.table-standings .data-d,
.table-standings .data-pts {
color: #31404b;
}
@media (min-width: 1200px) {
.table-standings .data-home,
.table-standings .data-road,
.table-standings .team-standings__div {
padding-left: 15px;
padding-right: 15px;
}
}
@media (min-width: 1200px) {
.table-standings thead > tr > th:last-child,
.table-standings tbody > tr > td:last-child {
padding-right: 30px;
}
} .table-standings--full-soccer .team-standings__played,
.table-standings--full-soccer .team-standings__drawn,
.table-standings--full-soccer .team-standings__goals-for,
.table-standings--full-soccer .team-standings__goals-against,
.table-standings--full-soccer .team-standings__goals-diff,
.table-standings--full-soccer .team-standings__total-points,
.table-standings--full-soccer .team-standings__points-diff {
text-align: center;
vertical-align: middle;
}
.table-standings--full-soccer .team-standings__drawn,
.table-standings--full-soccer .team-standings__total-points {
color: #31404b;
}
@media (min-width: 1200px) {
.table-standings--full-soccer .team-standings__points-diff {
padding-right: 30px;
}
} .glossary {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.glossary__item {
flex-basis: 25%;
font-family: "Montserrat", sans-serif;
font-size: 11px;
line-height: 1.2em;
padding: 8px 0;
}
.glossary__abbr {
font-weight: 700;
color: #31404b;
text-transform: uppercase;
} @media (min-width: 1200px) {
.team-result .team-result__date {
padding-left: 23px;
}
}
.team-result .team-result__score,
.team-result .team-result__status,
.team-result .team-result__points,
.team-result .team-result__rebounds,
.team-result .team-result__assists,
.team-result .team-result__steals {
text-align: center;
}
.team-result tbody .team-result__date,
.team-result tbody .team-result__vs,
.team-result tbody .team-result__score,
.team-result tbody .team-result__status,
.team-result tbody .team-result__points,
.team-result tbody .team-result__rebounds,
.team-result tbody .team-result__assists,
.team-result tbody .team-result__steals {
vertical-align: middle;
color: #9a9da2;
}
.team-result__game {
color: #31404b;
} .team-result-filter {
list-style: none;
padding: 0;
margin: 0;
}
@media (min-width: 1200px) {
.team-result-filter {
float: right;
}
}
.team-result-filter__item {
padding-left: 14px;
float: left;
}
@media (max-width: 479px) {
.team-result-filter__item {
padding: 5px 0 5px 0;
}
}
.team-result-filter__item select.form-control {
border: none;
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
height: 24px;
padding: 4px 24px 4px 10px;
display: inline-block;
vertical-align: top;
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath transform='translate(-586.156 -1047.28)' fill='%2331404b' d='M586.171,1048l0.708-.71,2.828,2.83-0.707.71Zm4.95-.71,0.707,0.71L589,1050.83l-0.707-.71Z'/%3E%3C/svg%3E");
background-size: 6px 4px;
color: #31404b;
}
@media (max-width: 479px) {
.team-result-filter__item:last-child {
float: none;
clear: both;
}
}
.team-result { }
@media (min-width: 1200px) {
.team-result .team-result__game-overview {
padding-right: 23px;
}
}
.team-result .team-result__ball-posession,
.team-result .team-result__shots,
.team-result .team-result__fouls,
.team-result .team-result__game-overview {
text-align: center;
vertical-align: middle;
} .team-schedule .data-time,
.team-schedule .data-results,
.team-schedule .data-season {
text-align: center;
}
.team-schedule .data-home,
.team-schedule .data-away {
color: #31404b;
}
@media (min-width: 1200px) {
.team-schedule .data-date {
padding-left: 23px;
}
}
.team-schedule .data-date a {
color: #9a9da2;
}
@media (min-width: 1200px) {
.team-schedule .team-schedule__tickets {
padding-right: 25px;
}
}
@media (min-width: 1200px) {
.team-schedule.team-schedule--full .team-schedule__tickets {
padding-right: 70px;
}
}
.team-schedule .data-time {
text-transform: uppercase;
}
@media (min-width: 1200px) {
.team-schedule .data-league {
padding-left: 20px;
padding-right: 20px;
}
}
@media (min-width: 1200px) {
.team-schedule .data-venue {
padding-left: 20px;
padding-right: 20px;
}
}
.team-schedule .data-article .fa,
.team-schedule .data-article .fas,
.team-schedule .data-article .fab {
margin-right: 0.5em;
font-size: 12px;
line-height: 1.2em;
vertical-align: top;
}
.team-schedule tbody .data-date,
.team-schedule tbody .data-event,
.team-schedule tbody .data-time,
.team-schedule tbody .data-results,
.team-schedule tbody .data-league,
.team-schedule tbody .data-season,
.team-schedule tbody .data-venue,
.team-schedule tbody .team-schedule__tickets {
vertical-align: middle;
}
.team-schedule a:not(.btn) {
color: #31404b;
} .player-heading {
background-color: #1e2024;
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/soccer/page-heading.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
position: relative;
}
.player-heading::before {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 24px;
background-image: linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(236, 240, 246, 0.15) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.1) 4px, transparent 4px), linear-gradient(to right, rgba(0, 0, 0, 0.11) 4px, transparent 4px);
background-repeat: repeat-x;
background-size: 36px 12px, 36px 15px, 36px 17px, 36px 20px, 36px 18px, 36px 15px, 72px 15px, 108px 18px;
background-position: 0 100%, 6px 100%, 12px 100%, 18px 100%, 24px 100%, 30px 100%, 6px 100%, 24px 100%;
}
.player-heading::after {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 1;
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/page-heading-pattern.png);
background-size: auto;
background-position: 100% 0;
background-repeat: no-repeat;
opacity: 0.4;
}
.player-heading .container {
position: relative;
z-index: 2;
}
.player-heading--no-bg::after {
background-image: none;
background-color: transparent;
}
.player-info__team-logo {
position: absolute;
left: -45%;
top: 50%;
transform: translateY(-50%);
opacity: 0.1;
overflow: hidden;
}
@media (min-width: 992px) {
.player-info__team-logo {
left: -10%;
}
}
@media (max-width: 991px) {
.player-info__team-logo {
display: none;
}
}
.player-info__team-logo img {
width: 390px;
height: auto;
}
.player-info {
color: #fff;
position: relative;
width: 100%;
}
@media (min-width: 992px) {
.player-info {
display: flex;
}
}
@media (max-width: 991px) {
.player-info__item--photo img {
margin: 0 auto;
}
}
@media (min-width: 992px) {
.player-info__item--photo {
width: 312px;
margin: 0;
}
}
@media (min-width: 1200px) {
.player-info__item--photo {
width: 370px;
}
}
.player-info__item--photo .player-info__photo {
overflow: hidden;
}
.player-info__item--details {
width: 400px;
}
@media (min-width: 992px) {
.player-info__item--details {
padding: 48px 0;
width: 352px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-info__item--details {
padding: 25px 0;
}
}
@media (min-width: 1200px) {
.player-info__item--details {
width: 460px;
}
}
.player-info__title {
margin-bottom: 17px;
position: relative;
}
.player-info__title--mobile {
padding: 35px 0 0 0;
text-align: center;
display: none;
}
@media (max-width: 991px) {
.player-info__title--mobile {
display: block;
}
}
.player-info__title--mobile .player-info__first-name {
text-align: left;
}
.player-info__title--mobile .player-info__number {
display: inline-block;
vertical-align: middle;
position: static;
transform: none;
}
.player-info__title--desktop {
display: none;
}
@media (min-width: 992px) {
.player-info__title--desktop {
display: block;
}
}
.player-info__number {
font-size: 54px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #fff;
line-height: 1em;
display: block;
position: absolute;
left: 0;
padding-right: 0.1em;
bottom: -0.11em;
transform: translateX(-100%);
}
@media (min-width: 992px) {
.player-info__number {
font-size: 64px;
}
}
@media (min-width: 1200px) {
.player-info__number {
font-size: 92px;
}
}
.player-info__name {
display: inline-block;
vertical-align: middle;
color: #fff;
margin: 0;
font-size: 16px;
line-height: 1em;
text-align: left;
}
@media (min-width: 992px) {
.player-info__name {
font-size: 18px;
}
}
@media (min-width: 1200px) {
.player-info__name {
font-size: 26px;
}
}
.player-info__last-name {
display: block;
color: #c2ff1f;
font-size: 32px;
line-height: 1em;
}
@media (min-width: 992px) {
.player-info__last-name {
font-size: 32px;
}
}
@media (min-width: 1200px) {
.player-info__last-name {
font-size: 54px;
line-height: 46px;
}
}
.player-info-details {
display: flex;
flex-wrap: wrap;
}
@media (max-width: 991px) {
.player-info-details {
padding: 0 17px;
}
}
@media (min-width: 480px) and (max-width: 991px) {
.player-info-details {
width: 80%;
margin: 0 auto;
}
}
.player-info-details__item {
padding: 10px 40px 10px 0;
}
@media (min-width: 480px) and (max-width: 991px) {
.player-info-details__item {
flex-basis: 50%;
min-width: 50%;
}
}
@media (min-width: 992px) {
.player-info-details__item {
padding-right: 50px;
}
}
.player-info-details__item--position {
flex-basis: 33%;
padding: 10px 0;
}
@media (min-width: 480px) and (max-width: 991px) {
.player-info-details__item--position {
flex-basis: 33%;
min-width: 33%;
}
}
@media (min-width: 992px) {
.player-info-details__item--position {
flex-basis: 22%;
padding-right: 0;
}
}
.player-info-details__item--foot {
flex-basis: 50%;
padding: 10px 0;
}
@media (min-width: 480px) and (max-width: 991px) {
.player-info-details__item--foot {
flex-basis: 50%;
min-width: 50%;
}
}
@media (min-width: 992px) {
.player-info-details__item--foot {
flex-basis: 20%;
padding-right: 0;
}
}
.player-info-details__item--goals {
flex-basis: 50%;
padding: 10px 0;
}
@media (min-width: 480px) and (max-width: 991px) {
.player-info-details__item--goals {
flex-basis: 50%;
min-width: 50%;
}
}
@media (min-width: 992px) {
.player-info-details__item--goals {
flex-basis: 50%;
padding-right: 0;
}
}
.player-info-details__item--assists {
flex-basis: 50%;
padding: 10px 0;
}
@media (min-width: 480px) and (max-width: 991px) {
.player-info-details__item--assists {
flex-basis: 50%;
min-width: 50%;
}
}
@media (min-width: 992px) {
.player-info-details__item--assists {
flex-basis: 50%;
padding-right: 0;
}
}
.player-info-details__item--games {
flex-basis: 100%;
padding: 10px 0;
}
@media (min-width: 480px) and (max-width: 991px) {
.player-info-details__item--games {
flex-basis: 100%;
min-width: 100%;
}
}
@media (min-width: 992px) {
.player-info-details__item--games {
flex-basis: 100%;
padding-right: 0;
}
}
.player-info-details__title {
font-size: 10px;
color: #9ed5ff;
line-height: 1.2em;
margin-bottom: 0.1em;
font-weight: 400;
}
.player-info-details__value {
font-family: "Montserrat", sans-serif;
font-size: 15px;
line-height: 1.2em;
font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-info-details__value {
font-size: 12px;
}
}
.player-info-details__value > a {
color: #fff;
}
.player-info-details__flag {
display: inline-block !important;
margin-right: 4px;
}
.player-info-stats {
overflow: hidden;
}
@media (min-width: 992px) {
.player-info-stats {
padding: 25px 0 0 0;
}
}
.player-info-stats__item {
float: left;
width: 33.3%;
}
.player-info-stats__item .circular {
display: flex;
align-items: center;
}
.player-info-stats__item .circular .circular__bar {
width: 62px;
height: 62px;
min-width: 62px;
}
@media (min-width: 992px) {
.player-info-stats__item .circular .circular__bar {
margin: 0 9px 0 0;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-info-stats__item .circular .circular__bar {
width: 44px;
height: 44px;
min-width: 44px;
}
}
.player-info-stats__item .circular .circular__bar .circular__percents {
color: #fff;
font-size: 15px;
}
.player-info-stats__item .circular .circular__bar .circular__percents small {
display: block;
font-size: 8px;
line-height: 1.2em;
color: #9ed5ff;
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-info-stats__item .circular .circular__bar .circular__percents {
font-size: 12px;
}
}
.player-info-stats__item .circular .circular__label {
color: #9ed5ff;
}
@media (min-width: 992px) {
.player-info-stats__item .circular .circular__label {
display: inline-block;
vertical-align: middle;
text-align: left;
margin: 0;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-info-stats__item .circular .circular__label {
font-size: 9px;
}
}
.player-info-stats__item .circular .circular__label-first {
color: #fff;
display: block;
}
@media (min-width: 992px) {
.player-info-stats__item--top-padding {
padding: 25px 0 0 0;
}
}
.player-info__item--details-vertical .player-info-details {
display: block;
}
@media (min-width: 480px) {
.player-info__item--details-vertical .player-info-details {
width: 80%;
margin: 0 auto;
}
}
@media (min-width: 992px) {
.player-info__item--details-vertical .player-info-details {
width: 260px;
float: left;
margin: 0;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-info__item--details-vertical .player-info-details {
float: none;
}
}
@media (min-width: 992px) {
.player-info__item--details-vertical .player-info-details--extra-stats {
width: 80%;
float: none;
}
}
.player-info__item--details-vertical .player-info-details__item {
display: flex;
align-items: baseline;
padding: 8px 0 7px 0;
}
.player-info__item--details-vertical .player-info-details__value {
margin-left: auto;
font-size: 12px;
padding-left: 20px;
text-align: right;
}
.player-info__item--details-vertical .player-info-stats {
padding: 20px 0 0 0;
display: flex;
justify-content: space-between;
width: 100%;
}
@media (min-width: 992px) {
.player-info__item--details-vertical .player-info-stats {
flex-direction: row;
}
}
@media (min-width: 1199px) {
.player-info__item--details-vertical .player-info-stats {
float: left;
width: 140px;
margin-left: 50px;
flex-direction: column;
padding-top: 0;
}
}
.player-info__item--details-vertical .player-info-stats .player-info-stats__item {
float: none;
min-width: 33.3%;
flex-basis: 33.3%;
}
@media (min-width: 1199px) {
.player-info__item--details-vertical .player-info-stats .player-info-stats__item {
min-width: 100%;
}
}
.player-info__item--details-vertical .player-info-stats .player-info-stats__item .circular .circular__bar {
width: 52px;
height: 52px;
min-width: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-info__item--details-vertical .player-info-stats .player-info-stats__item .circular .circular__bar {
width: 44px;
height: 44px;
}
}
.player-info__item--details-vertical .player-info-stats .player-info-stats__item .circular .circular__bar .circular__percents {
font-size: 12px;
}
.player-info__item--details-vertical .player-info-stats .player-info-stats__item .circular .circular__bar .circular__percents small {
font-size: 8px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-info__item--details-vertical .player-info-stats .player-info-stats__item .circular .circular__bar .circular__percents {
font-size: 12px;
}
}
@media (min-width: 992px) {
.player-info__item--stats {
width: 297px;
}
}
@media (min-width: 1200px) {
.player-info__item--stats {
width: 340px;
padding-left: 30px;
}
}
@media (max-width: 991px) {
.player-info__item--stats {
height: 200px !important;
}
.player-info__item--stats .player-info-chart {
width: 100%;
height: auto;
}
}
.player-info__item--stats .progress-stats {
margin-bottom: 20px;
}
.player-info__item--stats .progress__label {
color: #fff;
}
.player-info__item--stats .progress:not(.progress--battery) {
background-color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 992px) {
.player-info__item--stats-inner {
max-width: 90%;
}
}
@media (min-width: 1200px) {
.player-info__item--stats-inner {
max-width: 100%;
}
}
@media (min-width: 1200px) {
.player-info-chart {
width: 310px;
}
}
.player-info .slick-track {
display: table;
height: 100%;
table-layout: fixed;
}
.player-info .slick-track .player-info__item {
display: table-cell;
vertical-align: middle;
float: none;
height: 1px;
}
.player-info .slick-track .player-info__item--photo {
vertical-align: bottom;
}
.player-info .slick-track .player-info-chart {
margin: 0 !important;
vertical-align: bottom;
} .game-player-result thead > tr > th,
.game-player-result tbody > tr > td {
vertical-align: middle;
text-align: center;
}
.game-player-result thead > tr > th.game-player-result__vs,
.game-player-result tbody > tr > td.game-player-result__vs {
text-align: left;
}
.game-player-result .game-player-result__date,
.game-player-result .game-player-result__team {
text-align: left;
}
@media (min-width: 1200px) {
.game-player-result .game-player-result__date,
.game-player-result .game-player-result__team {
padding-left: 23px;
}
}
.game-player-result .game-player-result__team {
font-weight: bold;
}
.game-player-result .game-player-result__team-inner {
display: flex;
align-items: center;
}
.game-player-result .game-player-result__team-logo {
margin-right: 8px;
width: 20px;
}
@media (min-width: 1200px) {
.game-player-result thead > tr > th:last-child,
.game-player-result tbody > tr > td:last-child {
padding-right: 23px;
}
}
.game-player-result .game-player-result__game {
color: #31404b;
}
.game-player-result .game-player-result__game--win {
color: #24d9b0;
}
.game-player-result .game-player-result__game--lose {
color: #f34141;
}
.game-player-result .game-player-result__score a {
color: #9a9da2;
} .player-season-avg thead > tr > th,
.player-season-avg tbody > tr > td {
text-align: center;
vertical-align: middle;
}
.player-season-avg thead > tr > th.player-season-avg__season,
.player-season-avg tbody > tr > td.player-season-avg__season {
text-align: left;
}
@media (min-width: 1200px) {
.player-season-avg thead > tr > th:first-child,
.player-season-avg tbody > tr > td:first-child {
padding-left: 23px;
}
}
@media (min-width: 1200px) {
.player-season-avg thead > tr > th:last-child,
.player-season-avg tbody > tr > td:last-child {
padding-right: 23px;
}
} .player-league thead > tr > th,
.player-league tbody > tr > td {
vertical-align: middle;
text-align: center;
padding-left: 8px;
padding-right: 8px;
}
.player-league thead > tr > th.player-league__vs,
.player-league tbody > tr > td.player-league__vs {
text-align: left;
}
.player-league .data-name {
text-align: left;
}
@media (min-width: 1200px) {
.player-league .data-name {
padding-left: 23px;
}
}
.player-league .data-team {
text-align: left;
color: #31404b;
}
@media (min-width: 1200px) {
.player-league thead > tr > th:last-child,
.player-league tbody > tr > td:last-child {
padding-right: 23px;
}
}
.player-league .player-league__game {
color: #31404b;
}
.player-league .sp-highlight {
color: #31404b;
}
.team-meta {
text-align: left;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.team-meta__logo {
width: 35px;
height: 30px;
text-align: center;
display: inline-block;
vertical-align: middle;
margin-right: 5px;
}
.team-meta__logo img {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.team-meta__info {
display: inline-block;
vertical-align: middle;
}
.team-meta__name {
font-size: 12px;
line-height: 1.2em;
font-weight: 400;
margin-bottom: 0;
text-transform: none;
}
.team-meta__place {
display: block;
font-size: 9px;
line-height: 1.2em;
font-family: "Montserrat", sans-serif;
color: #9a9da2;
} .player-general-stats__card-content {
display: flex;
align-items: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-general-stats__card-content {
padding: 16px 16px;
}
}
.player-general-stats__icon {
margin-right: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-general-stats__icon {
margin-right: 10px;
}
}
.player-general-stats__body {
flex: 1;
display: flex;
align-items: center;
}
.player-general-stats__value {
font-size: 36px;
line-height: 1.2em;
font-style: normal;
margin-bottom: 0;
margin-right: 0.45em;
}
@media (min-width: 576px) and (max-width: 767px) {
.player-general-stats__value {
font-size: 26px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-general-stats__value {
font-size: 24px;
}
}
.player-general-stats__meta {
flex: 1;
}
.player-general-stats__label {
margin-bottom: 0;
font-size: 12px;
line-height: 1.2em;
}
.player-general-stats__sublabel {
font-size: 9px;
line-height: 1.2em;
} .card.widget_league_table,
.card.widget_sp_event_list,
.card.widget_player_list,
.card.widget_sp_event_blocks,
.card.widget-results,
.card.widget-game-result,
.card.widget-player-featured {
border: none;
border-radius: 0;
background-color: transparent;
margin-bottom: 0 !important;
}
.card.widget_league_table > .card__content,
.card.widget_sp_event_list > .card__content,
.card.widget_player_list > .card__content,
.card.widget_sp_event_blocks > .card__content,
.card.widget-results > .card__content,
.card.widget-game-result > .card__content,
.card.widget-player-featured > .card__content {
padding: 0;
}
.card.widget_league_table .widget__title,
.card.widget_sp_event_list .widget__title,
.card.widget_player_list .widget__title,
.card.widget_sp_event_blocks .widget__title,
.card.widget-results .widget__title,
.card.widget-game-result .widget__title,
.card.widget-player-featured .widget__title {
display: none;
}
.widget_sp_event_blocks .sp-data-table {
table-layout: fixed;
}
.widget_league_table .sp-template-league-table {
margin-bottom: 0;
}
.widget_player_gallery .team-roster--grid .btn-fab {
display: none;
}
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__content {
padding: 12px 12px;
}
@media (min-width: 375px) and (max-width: 479px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__content {
padding: 12px 12px;
}
}
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-number {
width: 30px;
height: 30px;
line-height: 30px;
font-size: 18px;
}
@media (min-width: 768px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-number {
width: 40px;
height: 40px;
line-height: 40px;
font-size: 24px;
}
}
@media (min-width: 992px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-number {
width: 40px;
height: 40px;
line-height: 40px;
font-size: 18px;
}
}
@media (min-width: 1200px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-number {
width: 40px;
height: 40px;
line-height: 40px;
font-size: 24px;
}
}
@media (min-width: 375px) and (max-width: 479px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-number {
width: 40px;
height: 40px;
line-height: 40px;
font-size: 24px;
}
}
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-name {
line-height: 1em;
font-size: 12px;
}
@media (min-width: 768px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-name {
font-size: 14px;
}
}
@media (min-width: 992px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-name {
font-size: 12px;
}
}
@media (min-width: 1200px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-name {
font-size: 14px;
line-height: 1em;
}
}
@media (min-width: 375px) and (max-width: 479px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-name {
font-size: 14px;
}
}
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-position {
line-height: 1em;
font-size: 8px;
}
@media (min-width: 1200px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-position {
font-size: 8px;
}
}
@media (min-width: 375px) and (max-width: 479px) {
.widget_player_gallery .team-roster--grid.team-roster--grid-col-2 .team-roster__member-position {
font-size: 8px;
}
}
.widget_birthdays .card__content {
padding: 0;
}
.alc-birthdays {
margin-bottom: 0;
}
.alc-birthdays thead > tr > th,
.alc-birthdays tbody > tr > td {
vertical-align: middle;
}
.alc-birthdays tbody > tr:first-child > td {
border-top: 0 !important;
}
.alc-birthdays th {
text-transform: uppercase;
}
.alc-birthdays .alc-birthdays__item,
.alc-birthdays .alc-birthdays__item-container {
padding-left: 15px;
vertical-align: middle;
}
@media (min-width: 1200px) {
.alc-birthdays .alc-birthdays__item,
.alc-birthdays .alc-birthdays__item-container {
padding-left: 24px;
}
}
.alc-birthdays .alc-birthdays__item--date {
text-align: right;
}
@media (min-width: 1200px) {
.alc-birthdays .alc-birthdays__item--date {
padding-right: 24px;
}
}
.alc-birthdays .alc-birthdays__item-img {
display: inline-block;
vertical-align: middle;
overflow: hidden;
margin-right: 10px;
width: 40px;
height: 40px;
border-radius: 50%;
}
.alc-birthdays .alc-birthdays__item-img--sm {
width: 30px;
height: 30px;
}
.alc-birthdays .alc-birthdays__item-inner {
display: inline-block;
vertical-align: middle;
}
.alc-birthdays .alc-birthdays__item-name {
text-transform: none;
font-size: 12px;
line-height: 1.2em;
font-weight: 400;
margin-bottom: 0;
font-style: normal;
}
.alc-birthdays .alc-birthdays__item-name > a {
color: #31404b;
}
.alc-birthdays .alc-birthdays__item-position {
display: block;
font-family: "Montserrat", sans-serif;
font-size: 9px;
line-height: 1.2em;
}
.widget_staff .sp-table-caption {
font-size: 16px;
font-style: normal;
text-transform: uppercase;
}
.widget_staff .widget__content {
overflow: hidden;
}
.widget_staff .sp-staff-details {
margin-bottom: 0;
}
.widget_staff .sp-staff-details dt {
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
}
.widget_staff .sp-staff-details dd {
margin-bottom: 0.75em;
}
.widget_staff .sp-staff-details dd:last-child {
margin-bottom: 0;
}
.widget_staff .sp-staff-photo {
margin-bottom: 0;
}
.widget_sp_event_calendar .sp-template-event-calendar {
border: none;
border-radius: 0;
background-color: transparent;
margin-bottom: 0 !important;
}
.widget_countdown .card {
border: none;
border-radius: 0;
background-color: transparent;
margin-bottom: 0 !important;
}
.widget_countdown .card > .card__content {
padding: 0;
} .widget-standings .widget__content {
padding: 0;
} .widget-player .widget-player__inner {
background-color: #27313b;
color: #fff;
height: 158px;
overflow: hidden;
position: relative;
padding: 0 20px 0 140px;
background-image: radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.3), transparent);
border-radius: 4px;
}
@media (min-width: 375px) {
.widget-player .widget-player__inner {
padding-left: 158px;
}
}
@media (min-width: 992px) {
.widget-player .widget-player__inner {
height: 156px;
padding-left: 50%;
}
}
@media (min-width: 1199px) {
.widget-player .widget-player__inner {
height: 198px;
}
}
.widget-player .card__header + .widget-player__inner {
border-radius: 0;
border-top: none;
}
.widget-player__link-layer {
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 5;
}
.widget-player__team-logo {
display: block;
position: absolute;
left: -25%;
top: -25%;
width: 80%;
height: auto;
opacity: 0.1;
filter: grayscale(1);
z-index: 1;
}
.widget-player__team-logo img {
width: 100%;
height: auto;
}
.widget-player__photo {
position: absolute;
left: 0;
top: 0;
max-width: 50%;
z-index: 4;
}
.widget-player__header {
padding-top: 20px;
margin-bottom: 8px;
position: relative;
z-index: 4;
}
@media (min-width: 992px) {
.widget-player__header {
padding-top: 14px;
margin-bottom: 0;
}
}
@media (min-width: 1199px) {
.widget-player__header {
padding-top: 16px;
margin-bottom: 10px;
}
}
.widget-player__number {
font-size: 36px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1em;
float: left;
margin-right: 0.1em;
margin-left: -0.5em;
}
@media (min-width: 992px) {
.widget-player__number {
font-size: 42px;
margin-left: -0.8em;
}
}
@media (min-width: 1199px) {
.widget-player__number {
font-size: 56px;
}
}
.widget-player__name {
font-size: 14px;
line-height: 1em;
margin-bottom: 0;
color: #fff;
text-transform: uppercase;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
position: relative;
top: 4px;
z-index: 1;
}
@media (min-width: 992px) {
.widget-player__name {
font-size: 18px;
}
}
@media (min-width: 1199px) {
.widget-player__name {
font-size: 24px;
top: 6px;
}
}
.widget-player__first-name {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.widget-player__last-name {
display: block;
color: #38a9ff;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.widget-player__content {
overflow: hidden;
position: absolute;
z-index: 1;
left: 0;
right: 0;
padding: 12px 0;
}
.widget-player__content-inner {
width: 100%;
padding-left: 140px;
padding-right: 24px;
}
@media (min-width: 375px) {
.widget-player__content-inner {
padding-left: 160px;
}
}
@media (min-width: 992px) {
.widget-player__content-inner {
padding-left: 50%;
}
}
.widget-player__stat {
float: left;
width: 33.3%;
text-align: center;
}
@media (min-width: 376px) and (max-width: 991px) {
.widget-player__stat {
width: 60px;
}
}
.widget-player__stat-label {
font-size: 8px;
margin-bottom: 0.5em;
line-height: 1.2em;
color: #fff;
font-weight: 400;
}
@media (min-width: 992px) {
.widget-player__stat-label {
font-size: 8px;
margin-bottom: 1em;
}
}
@media (min-width: 1199px) {
.widget-player__stat-label {
font-weight: 700;
font-size: 10px;
}
}
.widget-player__stat-number {
font-size: 12px;
line-height: 1.2em;
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
}
@media (min-width: 992px) {
.widget-player__stat-number {
font-size: 18px;
}
}
.widget-player__stat-legend {
font-size: 7px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #9a9da2;
line-height: 1.2em;
}
@media (min-width: 992px) {
.widget-player__stat-legend {
font-size: 8px;
}
}
.widget-player__footer {
position: absolute;
left: 0;
right: 0;
bottom: 0;
background-color: #38a9ff;
z-index: 1;
text-align: right;
line-height: 10px;
}
.widget-player__footer-txt {
display: inline-block;
position: relative;
background-color: #182027;
color: #fff;
padding: 0 24px;
line-height: 20px;
font-size: 8px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
}
@media (min-width: 992px) {
.widget-player__footer-txt {
font-size: 9px;
padding-left: 26px;
}
}
@media (min-width: 1199px) {
.widget-player__footer-txt {
font-size: 10px;
line-height: 30px;
}
}
.widget-player__footer-txt .fa {
font-size: 12px;
margin-right: 0.5em;
color: #38a9ff;
}
.widget-player__footer-txt::before {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
width: 20px;
background-color: #38a9ff;
}
.widget-player__footer-txt::before {
left: -10px;
transform: skew(-30deg);
}
.widget-player__details {
display: flex;
flex-wrap: wrap;
border-style: solid;
border-width: 1px 0 0 1px;
border-color: #e4e7ed;
margin: -1px;
}
.widget-player__details__item {
flex: 0 1 50%;
max-width: 50%;
border-style: solid;
border-width: 0 1px 1px 0;
border-color: #e4e7ed;
padding: 8px 12px;
}
@media (min-width: 992px) {
.widget-player__details__item {
padding: 6px 12px;
}
}
@media (min-width: 1199px) {
.widget-player__details__item {
padding: 12px 24px;
}
}
.widget-player__details__item:first-child {
border-left: none;
}
.widget-player__details__item:last-child {
border-right: none;
}
.widget-player__details-desc-wrapper {
display: table;
width: 100%;
}
.widget-player__details-holder {
display: table-cell;
vertical-align: middle;
width: 70%;
}
.widget-player__details-label {
display: block;
font-family: "Montserrat", sans-serif;
color: #31404b;
font-size: 10px;
line-height: 1.2em;
}
@media (min-width: 992px) {
.widget-player__details-label {
font-size: 12px;
}
}
.widget-player__details-desc {
display: block;
font-family: "Montserrat", sans-serif;
font-size: 8px;
line-height: 1.2em;
}
@media (min-width: 992px) {
.widget-player__details-desc {
font-size: 9px;
}
}
.widget-player__details-value {
display: table-cell;
vertical-align: middle;
text-align: right;
width: 30%;
font-family: "Montserrat", sans-serif;
color: #31404b;
font-size: 10px;
line-height: 1.2em;
}
@media (min-width: 992px) {
.widget-player__details-value {
font-size: 11px;
}
} .widget-player--alt .widget-player__photo {
filter: grayscale(1);
} .widget-player--soccer {
position: relative;
}
.widget-player--soccer .widget-player__ribbon {
content: "\f005";
display: block;
position: absolute;
width: 26px;
height: 28px;
background-color: #ffcf11;
top: 0;
right: 20px;
font-family: "Font Awesome 5 Free";
font-weight: 400;
font-size: 14px;
line-height: 28px;
text-align: center;
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.widget-player--soccer .widget-player__ribbon::before {
content: "";
display: block;
position: absolute;
bottom: -6px;
left: 0;
border-top: 6px solid #ffcf11;
border-right: 13px solid transparent;
}
.widget-player--soccer .widget-player__ribbon::after {
content: "";
display: block;
position: absolute;
bottom: -6px;
right: 0;
border-top: 6px solid #ffcf11;
border-left: 13px solid transparent;
}
.widget-player--soccer .widget-player__inner {
background-color: #fff;
background-image: none;
color: #9a9da2;
height: 168px;
}
@media (min-width: 992px) {
.widget-player--soccer .widget-player__inner {
height: 160px;
}
}
@media (min-width: 1199px) {
.widget-player--soccer .widget-player__inner {
height: 198px;
}
}
.widget-player--soccer .widget-player__header {
position: static;
}
.widget-player--soccer .widget-player__number {
display: block;
position: absolute;
left: 0;
top: 0;
bottom: 0;
margin-left: 0;
margin-top: -0.2em;
text-indent: -0.15em;
width: 144px;
background-color: #38a9ff;
color: rgba(255, 255, 255, 0.1);
font-size: 150px;
line-height: 1em;
overflow: hidden;
}
.widget-player--soccer .widget-player__number::before {
content: "";
display: block;
position: absolute;
right: 0;
top: 0;
width: 0;
height: 0;
border-bottom: 230px solid #fff;
border-left: 30px solid transparent;
}
.widget-player--soccer .widget-player__name {
color: #31404b;
}
@media (min-width: 1200px) {
.widget-player--soccer .widget-player__name {
margin-left: -35px;
}
}
.widget-player--soccer .widget-player__first-name {
font-size: 14px;
line-height: 1em;
}
@media (min-width: 1200px) {
.widget-player--soccer .widget-player__first-name {
font-size: 18px;
}
}
.widget-player--soccer .widget-player__last-name {
font-size: 24px;
line-height: 1em;
}
@media (min-width: 1200px) {
.widget-player--soccer .widget-player__last-name {
font-size: 36px;
}
}
.widget-player--soccer .widget-player__content-inner {
overflow: hidden;
margin-bottom: 15px;
}
.widget-player--soccer .widget-player__stat {
width: 25%;
}
.widget-player--soccer .widget-player__stat-number {
font-size: 18px;
color: #31404b;
}
.widget-player--soccer .widget-player__stat-label {
color: #9a9da2;
font-size: 8px;
}
.widget-player--soccer .widget-player__content-alt {
padding: 0 24px 0 50%;
}
@media (min-width: 375px) {
.widget-player--soccer .widget-player__content-alt {
padding-left: 160px;
}
}
@media (min-width: 992px) {
.widget-player--soccer .widget-player__content-alt {
padding-left: 50%;
}
}
.widget-player--soccer .widget-player__content-alt .progress__label {
font-size: 8px;
color: #9a9da2;
}
.widget-player--soccer .widget-player__content-alt .progress__number {
font-size: 8px;
font-weight: 700;
color: #31404b;
}
.widget-player__stat-item {
text-align: center;
}
.widget-player__stat--value {
font-size: 28px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
margin-bottom: 0.25em;
color: #31404b;
}
.widget-player__stat--value-primary {
color: #38a9ff;
}
.widget-player__stat--label {
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
text-transform: uppercase;
line-height: 1.2em;
color: #31404b;
margin-bottom: 0.1em;
}
.widget-player__stat--desc {
font-size: 9px;
line-height: 1.2em;
} .widget-player--sm .widget__content {
background-color: transparent;
background-image: none;
height: 106px;
padding: 0 20px 0 120px;
display: flex;
align-items: center;
overflow: hidden;
}
@media (min-width: 375px) {
.widget-player--sm .widget__content {
padding-left: 120px;
}
}
@media (min-width: 992px) {
.widget-player--sm .widget__content {
height: 106px;
padding-left: 120px;
}
}
@media (min-width: 1200px) {
.widget-player--sm .widget__content {
height: 106px;
}
}
.widget-player--sm .widget-player__overlay {
display: block;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 1px;
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 0;
}
.widget-player--sm .widget-player__header {
padding-top: 0;
margin-bottom: 0;
}
@media (min-width: 992px) {
.widget-player--sm .widget-player__header {
padding-top: 0;
}
}
@media (min-width: 1200px) {
.widget-player--sm .widget-player__header {
padding-top: 0;
margin-bottom: 0;
}
}
.widget-player--sm .widget-player__photo {
max-width: 120px;
}
.widget-player--sm .widget-player__photo img {
max-width: 100%;
height: auto;
}
.widget-player--sm .widget-player__name {
font-size: 14px;
line-height: 1em;
margin-bottom: 0;
position: static;
text-transform: uppercase;
flex: 1;
}
@media (min-width: 992px) {
.widget-player--sm .widget-player__name {
font-size: 18px;
}
}
@media (min-width: 1200px) {
.widget-player--sm .widget-player__name {
font-size: 26px;
}
}
.widget-player--sm .widget-player__first-name {
display: inline-block;
overflow: visible;
}
.widget-player--sm .widget-player__last-name {
display: inline-block;
overflow: visible;
}
.widget-player--sm .widget-player__content {
position: static;
padding: 0;
}
.widget-player--sm .widget-player__content-inner {
padding-left: 0;
padding-right: 0;
}
@media (min-width: 375px) {
.widget-player--sm .widget-player__content-inner {
padding-left: 0;
}
}
@media (min-width: 992px) {
.widget-player--sm .widget-player__content-inner {
padding-left: 0;
}
}
.widget-player--sm .widget-player__info {
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
font-size: 11px;
line-height: 1.2em;
font-style: italic;
font-weight: 700;
color: #9a9da2;
}
.widget-player--sm .widget-player__info + .widget-player__rating {
margin-left: 0.3em;
}
.widget-player--sm .widget-player__rating {
display: inline-block;
font-size: 9px;
line-height: 1.2em;
vertical-align: middle;
}
.widget-player--sm .widget__content-tertiary .widget__content-inner {
padding-top: 32px;
padding-bottom: 32px;
} .widget-game-result .widget__content {
padding: 0;
}
.widget-game-result__section-inner {
padding: 24px 24px;
}
.widget-game-result__section-inner-alt {
padding: 0;
}
.widget-game-result__section-inner-alt .table-responsive {
margin-bottom: 0;
}
.widget-game-result__extra-stats {
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
}
.widget-game-result__extra-stats.active {
max-height: 400px;
}
.widget-game-result__item {
display: block;
}
.widget-game-result__item + .widget-game-result__item {
margin-top: 48px;
}
.sp-row + .sp-row .widget-game-result__item {
margin-top: 48px;
}
.widget-game-result__header {
text-align: center;
margin-bottom: 15px;
}
.widget-game-result__header + .widget-game-result__header {
margin-top: 1.5rem;
}
.widget-game-result__title {
font-size: 12px;
line-height: 1.2em;
margin-bottom: 0.25em;
text-transform: uppercase;
}
@media (min-width: 992px) {
.widget-game-result__title {
font-size: 14px;
}
}
.widget-game-result__date {
display: block;
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
color: #9a9da2;
}
@media (min-width: 992px) {
.widget-game-result__date {
font-size: 10px;
}
}
.widget-game-result__header--alt {
display: flex;
text-align: left;
margin-left: -24px;
margin-right: -24px;
margin-top: -24px;
margin-bottom: 0;
border-bottom: 1px solid #e4e7ed;
padding: 10px 24px;
}
.widget-game-result__header--alt .widget-game-result__title {
font-size: 9px;
font-style: normal;
margin-bottom: 0;
font-weight: 400;
}
@media (min-width: 992px) {
.widget-game-result__header--alt .widget-game-result__title {
font-size: 9px;
}
}
.widget-game-result__header--alt .widget-game-result__date {
font-size: 9px;
flex-grow: 1;
text-align: right;
font-weight: 400;
}
@media (min-width: 992px) {
.widget-game-result__header--alt .widget-game-result__date {
font-size: 9px;
}
}
.widget-game-result__main {
margin-bottom: 6px;
display: flex;
align-items: center;
}
.widget-game-result__team {
text-align: center;
width: 26%;
}
.widget-game-result__team--odd {
order: 0;
}
.widget-game-result__team--even {
order: 2;
}
.widget-game-result__team-logo {
height: 70px;
display: block;
position: relative;
}
.widget-game-result__team-logo img {
display: block;
margin: 0 auto;
}
.widget-game-result__team-info {
padding: 6px 0 0 0;
}
.widget-game-result__team-name {
display: block;
font-size: 11px;
line-height: 1.2em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin: 0 auto 0.1em auto;
}
@media (max-width: 479px) {
.widget-game-result__team-name {
max-width: 80px;
}
}
@media (min-width: 992px) {
.widget-game-result__team-name {
font-size: 13px;
}
}
.widget-game-result__team-desc {
color: #9a9da2;
display: block;
font-size: 7px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
}
.widget-game-result__score-wrap {
width: 46%;
order: 1;
text-align: center;
}
.widget-game-result__score {
font-size: 18px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
letter-spacing: -0.04em;
margin-bottom: 10px;
}
.widget-game-result__score:hover {
color: #31404b;
}
@media (min-width: 768px) {
.widget-game-result__score {
font-size: 20px;
}
}
@media (min-width: 992px) {
.widget-game-result__score {
font-size: 22px;
line-height: 1.2em;
margin-bottom: 10px;
}
}
@media (min-width: 1199px) {
.widget-game-result__score {
font-size: 26px;
}
}
.widget-game-result__score-result {
position: relative;
}
.widget-game-result__score-result--winner::before {
content: "";
display: block;
position: absolute;
left: -15px;
top: 50%;
width: 0;
height: 0;
border-left: 8px solid #38a9ff;
border-right: none;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
transform: translateY(-50%);
}
@media (min-width: 992px) {
.widget-game-result__score-result--winner::before {
left: -10px;
}
}
@media (min-width: 1199px) {
.widget-game-result__score-result--winner::before {
left: -16px;
}
}
.widget-game-result__score-dash + .widget-game-result__score-result--winner::before {
transform: translateY(-50%) rotate(180deg);
left: auto;
right: -15px;
}
@media (min-width: 992px) {
.widget-game-result__score-dash + .widget-game-result__score-result--winner::before {
left: auto;
right: -10px;
}
}
@media (min-width: 1199px) {
.widget-game-result__score-dash + .widget-game-result__score-result--winner::before {
left: auto;
right: -16px;
}
}
.widget-game-result__score-result--loser {
color: #9a9da2;
}
.widget-game-result__score-label {
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
line-height: 1.2em;
}
.widget-game-result__venue {
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
}
.widget-game-result__matchday {
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2em;
padding-top: 0.2em;
padding-bottom: 0.2em;
}
.widget-game-result__tickets {
margin-top: 0.75em;
}
.widget-game-result__main--vertical {
flex-wrap: wrap;
margin-left: -24px;
margin-right: -24px;
}
.widget-game-result__main--vertical .widget-game-result__team {
display: flex;
text-align: left;
align-items: center;
flex-basis: 100%;
padding: 20px 12px;
}
.widget-game-result__main--vertical .widget-game-result__team + .widget-game-result__team {
border-top: 1px solid #e4e7ed;
}
.widget-game-result__main--vertical .widget-game-result__team:last-child {
padding-bottom: 0;
}
.widget-game-result__main--vertical .widget-game-result__team .widget-game-result__team-score {
font-size: 24px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
font-style: normal;
line-height: 1em;
position: relative;
}
@media (min-width: 1200px) {
.widget-game-result__main--vertical .widget-game-result__team .widget-game-result__team-score {
font-size: 48px;
}
}
.widget-game-result__main--vertical .widget-game-result__team .widget-game-result__score-result--winner {
color: #31404b;
}
.widget-game-result__main--vertical .widget-game-result__team .widget-game-result__score-result--winner::before {
content: "";
display: inline-block;
position: relative;
width: 0;
height: 0;
top: 0.2em;
border-top: 8px solid transparent;
border-bottom: 8px solid transparent;
border-left: 8px solid #38a9ff;
border-right: none;
}
@media (min-width: 1200px) {
.widget-game-result__main--vertical .widget-game-result__team .widget-game-result__score-result--winner::before {
top: 0;
}
}
@media (min-width: 480px) {
.widget-game-result__main--vertical .widget-game-result__team {
padding: 20px 24px;
}
}
.widget-game-result__main--vertical .widget-game-result__team-logo {
width: 80px;
margin-right: 10px;
}
.widget-game-result__main--vertical .widget-game-result__team-info {
flex-grow: 1;
padding-top: 0;
}
.widget-game-result__main--vertical .widget-game-result__team-name {
font-size: 12px;
text-transform: uppercase;
margin-left: 0;
margin-right: 0;
max-width: none;
}
@media (min-width: 992px) {
.widget-game-result__main--vertical .widget-game-result__team-name {
font-size: 14px;
max-width: none;
}
}
.widget-game-result__main--vertical .widget-game-result__team-desc {
font-size: 10px;
font-style: normal;
}
.widget-game-result__table-stats .table {
margin-bottom: 0;
}
.widget-game-result__section-inner .widget-game-result__table-stats .table {
border-left: none;
border-right: none;
}
@media (min-width: 992px) {
.widget-game-result__table-stats .table > tbody > tr > td:first-child {
font-size: 12px;
}
}
.widget-game-result__table-stats .table > thead > tr > th:first-child,
.widget-game-result__table-stats .table > tbody > tr > td:first-child,
.widget-game-result__table-stats .table > tbody > tr > th:first-child {
padding-left: 12px;
}
@media (min-width: 992px) {
.widget-game-result__table-stats .table > thead > tr > th:first-child,
.widget-game-result__table-stats .table > tbody > tr > td:first-child,
.widget-game-result__table-stats .table > tbody > tr > th:first-child {
padding-left: 24px;
}
}
@media (min-width: 1199px) {
.widget-game-result__table-stats .table > thead > tr > th:first-child,
.widget-game-result__table-stats .table > tbody > tr > td:first-child,
.widget-game-result__table-stats .table > tbody > tr > th:first-child {
padding-left: 40px;
}
}
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > thead > tr > th:first-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > td:first-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > th:first-child {
padding-left: 5px;
}
@media (min-width: 992px) {
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > thead > tr > th:first-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > td:first-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > th:first-child {
padding-left: 18px;
}
}
@media (min-width: 1199px) {
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > thead > tr > th:first-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > td:first-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > th:first-child {
padding-left: 24px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > thead > tr > th,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > td,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > th {
padding-left: 5px;
padding-right: 5px;
}
}
.widget-game-result__table-stats .table > thead > tr > th:last-child,
.widget-game-result__table-stats .table > tbody > tr > td:last-child,
.widget-game-result__table-stats .table > tbody > tr > th:last-child {
padding-right: 12px;
color: #31404b;
}
@media (min-width: 992px) {
.widget-game-result__table-stats .table > thead > tr > th:last-child,
.widget-game-result__table-stats .table > tbody > tr > td:last-child,
.widget-game-result__table-stats .table > tbody > tr > th:last-child {
padding-right: 24px;
}
}
@media (min-width: 1199px) {
.widget-game-result__table-stats .table > thead > tr > th:last-child,
.widget-game-result__table-stats .table > tbody > tr > td:last-child,
.widget-game-result__table-stats .table > tbody > tr > th:last-child {
padding-right: 40px;
}
}
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > thead > tr > th:last-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > td:last-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > th:last-child {
padding-right: 5px;
color: #31404b;
}
@media (min-width: 992px) {
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > thead > tr > th:last-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > td:last-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > th:last-child {
padding-right: 18px;
}
}
@media (min-width: 1199px) {
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > thead > tr > th:last-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > td:last-child,
.widget-game-result__section-inner-alt .widget-game-result__table-stats .table > tbody > tr > th:last-child {
padding-right: 24px;
}
}
.widget-game-result__subheader {
margin-top: -1px;
}
.player-details {
display: table;
width: 100%;
height: 100%;
}
.player-details__info {
display: table-cell;
width: 50%;
vertical-align: middle;
}
.player-details__photo {
display: inline-block;
width: 30px;
height: 30px;
margin-right: 9px;
overflow: hidden;
border-radius: 50%;
vertical-align: middle;
}
@media (min-width: 375px) {
.player-details__photo {
width: 40px;
height: 40px;
}
}
.player-details__info-holder {
display: inline-block;
vertical-align: middle;
}
.player-details__name {
font-size: 10px;
line-height: 1.2em;
text-transform: none;
margin-bottom: 0;
font-weight: 400;
}
@media (min-width: 992px) {
.player-details__name {
font-size: 12px;
}
}
.player-details__name > a {
color: #31404b;
transition: color 0.2s ease;
}
.player-details__name > a:hover {
color: #1892ed;
}
.player-details__position {
font-family: "Montserrat", sans-serif;
font-size: 8px;
display: block;
line-height: 1em;
}
@media (min-width: 992px) {
.player-details__position {
font-size: 9px;
}
}
.player-details__stats {
display: table-cell;
width: 50%;
}
.player-details__circular {
float: left;
width: 33.3%;
padding: 0 2px;
vertical-align: top;
margin: 0;
}
@media (min-width: 768px) {
.player-details__circular {
padding: 0 6px;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.player-details__circular {
padding: 0 1px;
}
}
.player-details__circular .circular__bar {
width: 100%;
height: 100%;
}
.player-details__circular .circular__percents {
line-height: 1em;
font-size: 12px;
font-weight: 400;
}
.player-details__circular .circular__percents small {
display: block;
text-transform: none;
font-size: 8px;
line-height: 1em;
color: #9a9da2;
}
.widget-game-result .progress-double-wrapper + .progress-double-wrapper {
margin-top: 24px;
}
.widget-game-result__extra-stats .progress-double-wrapper {
margin-top: 24px;
} .widget-results .card__content {
padding: 0;
}
.widget-results__list {
list-style: none;
padding: 0;
margin: 0;
}
.widget-results__item {
border-top: 1px solid #e4e7ed;
}
.widget-results__item:first-child {
border-top: none;
}
.widget-results__title {
font-size: 9px;
line-height: 1.2em;
text-align: center;
font-weight: 400;
font-style: normal;
color: #9a9da2;
border-bottom: 1px solid #e4e7ed;
padding: 10px;
margin-bottom: 0;
}
.widget-results__content {
display: flex;
align-items: center;
padding: 12px 12px;
}
@media (min-width: 1200px) {
.widget-results__content {
padding: 16px 24px;
}
}
.widget-results__team {
flex-grow: 1;
order: 0;
flex-basis: 35%;
min-width: 35%;
display: flex;
align-items: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
.widget-results__team {
flex-basis: 25%;
min-width: 25%;
}
}
.widget-results__team-logo {
display: inline-block;
vertical-align: middle;
margin-right: 5px;
width: 20px;
min-width: 20px;
text-align: center;
}
@media (min-width: 992px) {
.widget-results__team-logo {
margin-right: 8px;
width: 26px;
min-width: 26px;
}
}
.widget-results__team--even .widget-results__team-logo {
order: 2;
margin-right: 0;
margin-left: 5px;
}
@media (min-width: 992px) {
.widget-results__team--even .widget-results__team-logo {
margin-right: 0;
margin-left: 8px;
}
}
.widget-results__team-details {
display: inline-block;
vertical-align: middle;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.widget-results__team-name {
text-transform: none;
font-size: 11px;
font-weight: 400;
line-height: 1.2em;
font-style: normal;
margin: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
@media (min-width: 1200px) {
.widget-results__team-name {
font-size: 12px;
}
}
.widget-results__team-info {
font-family: "Montserrat", sans-serif;
font-size: 8px;
display: block;
line-height: 1.2em;
}
@media (min-width: 992px) {
.widget-results__team-info {
font-size: 9px;
}
}
.widget-results__team--even {
order: 2;
}
.widget-results__team--even .widget-results__team-details {
flex: 1;
text-align: right;
}
.widget-results__result {
order: 1;
flex-basis: 30%;
min-width: 30%;
text-align: center;
}
.widget-results__score {
font-family: "Montserrat", sans-serif;
color: #31404b;
font-size: 10px;
line-height: 1.2em;
margin-bottom: 0;
}
@media (min-width: 992px) {
.widget-results__score {
font-size: 12px;
}
}
.widget-results__score-winner:before {
content: "";
display: inline-block;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
border-left: 4px solid #38a9ff;
border-left: 4px solid #38a9ff;
width: 0;
height: 0;
margin-right: 0.5em;
}
.widget-results__score-loser ~ .widget-results__score-winner::before {
display: none;
}
.widget-results__score-loser ~ .widget-results__score-winner::after {
content: "";
display: inline-block;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
border-right: 4px solid #38a9ff;
border-right: 4px solid #38a9ff;
width: 0;
height: 0;
margin-left: 0.5em;
}
.widget-results__status {
display: block;
font-size: 8px;
font-family: "Montserrat", sans-serif;
line-height: 1.2em;
color: #9a9da2;
text-align: center;
padding-bottom: 16px;
margin: -10px auto 0 auto;
}
@media (min-width: 992px) {
.widget-results__status {
font-size: 9px;
width: 50%;
margin-top: -18px;
}
} .chart-legend ul {
list-style: none;
padding: 0;
margin: 0;
font-size: 9px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
}
.chart-legend ul > li {
display: inline-block;
padding-left: 20px;
}
.chart-legend ul > li:first-child {
padding-left: 0;
}
.chart-legend ul > li > span {
display: inline-block;
width: 8px;
height: 8px;
border-radius: 2px;
margin-right: 10px;
}
.chart-legend--center {
padding-top: 32px;
}
.chart-legend--center ul {
display: flex;
font-size: 12px;
text-transform: none;
}
.chart-legend--center ul > li {
flex-basis: 0;
flex-grow: 1;
max-width: 100%;
padding: 0;
text-align: center;
}
.chart-legend--center ul > li > span {
display: block;
margin: 0 auto 10px auto;
} .team-leader {
border-top: 1px solid #e4e7ed;
}
.table-responsive:first-child .team-leader {
border-top: none;
}
.team-leader .team-leader__type,
.team-leader .team-leader__player {
padding-left: 15px;
vertical-align: middle;
}
@media (min-width: 1200px) {
.team-leader .team-leader__type,
.team-leader .team-leader__player {
padding-left: 24px;
}
}
@media (min-width: 1200px) {
.team-leader .team-leader__avg {
padding-right: 24px;
}
}
.team-leader tbody > tr > td {
vertical-align: middle;
}
th {
text-transform: uppercase;
}
th.team-leader__total,
th.team-leader__gp,
th.team-leader__avg,
td.team-leader__total,
td.team-leader__gp,
td.team-leader__avg {
text-align: center;
}
th.team-leader__goals,
td.team-leader__goals {
text-align: center;
}
.team-leader__avg .circular {
margin: 0;
}
.team-leader__avg .circular .circular__bar {
width: 40px;
height: 40px;
}
.team-leader__avg .circular .circular__percents {
font-size: 11px;
}
.team-leader__player-img {
display: inline-block;
vertical-align: middle;
overflow: hidden;
margin-right: 10px;
width: 40px;
height: 40px;
border-radius: 50%;
}
.team-leader__player-img--sm {
width: 30px;
height: 30px;
}
.team-leader__player-inner {
display: inline-block;
vertical-align: middle;
}
.team-leader__player-name {
text-transform: none;
font-size: 12px;
line-height: 1.2em;
font-weight: 400;
margin-bottom: 0;
font-style: normal;
}
.team-leader__player-name > a {
color: #31404b;
}
.team-leader__player-position {
display: block;
font-family: "Montserrat", sans-serif;
font-size: 9px;
line-height: 1.2em;
}
.nav-tabs--clean {
width: auto;
border-bottom: none !important;
}
.nav-tabs--clean > li > a {
border: none;
border-radius: 0;
font-size: 11px;
line-height: 1.5em;
font-family: "Montserrat", sans-serif;
text-transform: uppercase;
padding: 12px 16px;
color: rgba(49, 64, 75, 0.4);
font-weight: bold;
letter-spacing: -0.02em;
transition: color 0.2s ease-in-out;
}
.nav-tabs--clean > li > a:hover {
color: #31404b;
background-color: transparent;
border: none;
}
.nav-tabs--clean > li.active > a {
color: #31404b;
border: none;
padding: 12px 16px;
} .widget-team-stats {
overflow: hidden;
}
.team-stats-box {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
border-style: solid;
border-color: #e4e7ed;
border-width: 1px 0 0 1px;
margin: -1px;
}
.team-stats__item {
flex: 0 1 50%;
max-width: 50%;
border-style: solid;
border-color: #e4e7ed;
border-width: 0 1px 1px 0;
text-align: center;
padding: 24px 0 60px 0;
background-image: linear-gradient(to right, rgba(228, 231, 237, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 4px, transparent 4px), linear-gradient(to right, rgba(228, 231, 237, 0.5) 4px, transparent 4px), linear-gradient(to right, whitesmoke 4px, transparent 4px), linear-gradient(to right, #ebebeb 4px, transparent 4px);
background-repeat: repeat-x;
background-size: 36px 24px, 36px 30px, 36px 34px, 36px 40px, 36px 37px, 36px 29px, 72px 30px, 108px 37px;
background-position: 0 100%, 6px 100%, 12px 100%, 18px 100%, 24px 100%, 30px 100%, 6px 100%, 24px 100%;
}
@media (min-width: 992px) {
.team-stats__item {
padding: 34px 0 80px 0;
}
}
.team-stats__item--clean {
background: none;
padding: 24px 0 20px 0;
}
@media (min-width: 992px) {
.team-stats__item--clean {
padding: 26px 0 28px 0;
}
}
.team-stats__icon--default {
height: 37px;
}
.team-stats__icon--img {
height: 37px;
}
.team-stats__icon--icon-font {
height: 37px;
display: flex;
justify-content: center;
align-items: center;
font-weight: 400;
color: #38a9ff;
}
.team-stats__icon--icon-font i {
font-size: 30px;
line-height: 1em;
font-style: normal;
}
.team-stats__icon--circle-outline {
position: relative;
border-radius: 50%;
margin: 0 auto;
border: 4px solid #38a9ff;
}
.team-stats__icon--size-sm {
width: 40px;
height: 40px;
margin-bottom: 16px;
}
.team-stats__icon--centered .df-icon,
.team-stats__icon--centered i {
position: relative;
top: 50%;
transform: translateY(-50%);
text-align: center;
vertical-align: top;
}
.team-stats__icon--centered i {
display: block;
margin-left: auto;
margin-right: auto;
font-size: 18px;
line-height: 20px;
color: #31404b;
}
.team-stats__icon--circle {
position: relative;
width: 90px;
height: 90px;
border-radius: 50%;
margin: 0 auto 16px auto;
background-color: #38a9ff;
overflow: hidden;
}
.team-stats__icon--circle i {
color: #fff;
}
.team-stats__icon--circle .team-stats__icon-img {
display: block;
position: relative;
width: 50px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.team-stats__icon--circle.team-stats__icon--icon-font i {
font-size: 40px;
line-height: 1em;
}
.team-stats__indicator {
display: block;
position: absolute;
right: -6px;
top: -6px;
border: 2px solid #38a9ff;
width: 16px;
height: 16px;
border-radius: 50%;
font-size: 12px;
line-height: 12px;
font-family: "Montserrat", sans-serif;
font-weight: bold;
color: #fff;
background-color: #fff;
}
.team-stats__icon--shots-ot {
background-color: #a4ec32;
}
.team-stats__icon--shots-ot .team-stats__icon-primary {
transform: translate(-50%, -50%) translate(-5px, -2px);
z-index: 1;
}
.team-stats__icon--shots-ot .team-stats__icon-secondary {
display: block;
position: absolute;
left: 0;
top: 0;
transform: translate(32px, 37px);
}
.team-stats__icon--shots {
background-color: #f5d109;
}
.team-stats__icon--shots .team-stats__icon-primary {
width: 44px;
height: 44px;
transform: translate(-50%, -50%) translate(-5px, 2px);
}
.team-stats__icon--shots .team-stats__icon-secondary {
display: block;
position: absolute;
left: 0;
top: 0;
transform: translate(58px, 21px);
}
.team-stats__icon--assists {
background-color: #3adfc2;
}
.team-stats__icon--assists .team-stats__icon-secondary {
display: block;
position: absolute;
left: 0;
top: 0;
width: 16px;
height: 16px;
border-radius: 50%;
background-color: #31404b;
font-family: "Montserrat", sans-serif;
font-size: 10px;
line-height: 16px;
font-weight: 700;
text-align: center;
color: #fff;
text-transform: uppercase;
transform: translate(52px, 54px);
}
.team-stats__icon-primary {
display: block;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50px;
height: auto;
}
.team-stats__icon-img {
width: 30px;
height: auto;
}
.team-stats__value {
font-size: 24px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
line-height: 1.2em;
margin-bottom: 0.2em;
}
@media (min-width: 1200px) {
.team-stats__value {
font-size: 36px;
}
}
.team-stats__label {
font-size: 8px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
font-weight: 400;
line-height: 1.2em;
}
@media (min-width: 768px) {
.team-stats__label {
font-size: 10px;
}
}
.team-stats__label + .team-stats__circular {
margin-top: 20px;
}
.team-stats__sublabel {
font-size: 9px;
line-height: 1.2em;
}
.team-stats__circular .circular__bar {
width: 20px;
height: 20px;
margin-bottom: 5px;
}
.team-stats__circular .circular__bar + .circular__label {
margin-top: 0;
}
.team-stats__circular .circular__percents {
font-size: 10px;
line-height: 1em;
}
.team-stats__circular--minus {
color: #f34141;
}
.team-stats__circular--minus .circular__percents {
color: #f34141;
}
.team-stats__circular--plus {
color: #24d9b0;
}
.team-stats__circular--plus .circular__percents {
color: #24d9b0;
}
.team-stats-box--cell-bg {
background-image: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/football/graph-bg.png), linear-gradient(to right, rgba(228, 231, 237, 0.4) 1px, transparent 1px), linear-gradient(to bottom, rgba(228, 231, 237, 0.4) 1px, transparent 1px);
background-repeat: no-repeat, repeat-x, repeat-y;
background-size: auto auto, 15px 100%, 100% 15px;
background-position: 50% 100%, -7px 0, 0 5px;
} .widget-lineup .widget__content {
text-align: center;
}
.soccer-lineup {
background: url(//fpfpuertorico.com/wp-content/themes/alchemists/assets/images/soccer/lineup-bg.png) 0 0 no-repeat;
background-size: cover;
max-width: 100%;
} .commentary {
list-style: none;
padding: 0;
margin: 0;
}
.commentary__item {
font-size: 11px;
line-height: 17px;
font-family: "Montserrat", sans-serif;
padding: 20px 24px 20px 80px;
position: relative;
letter-spacing: -0.02em;
}
.commentary__item + .commentary__item {
border-top: 1px solid #e4e7ed;
}
.commentary__item > strong {
color: #31404b;
font-weight: 400;
}
.commentary__item::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
}
.commentry__time {
color: #31404b;
display: block;
position: absolute;
left: 23px;
top: 50%;
width: 24px;
transform: translateY(-50%);
}
.commentry__icon {
display: block;
position: absolute;
left: 49px;
top: 50%;
transform: translateY(-50%);
max-width: 20px;
}
.commentry__icon--soccer-ball {
width: 16px;
} .lineup-table {
table-layout: fixed;
}
.lineup-table > thead > tr > th,
.lineup-table > tbody > tr > td {
padding-top: 16px;
padding-bottom: 16px;
}
@media (min-width: 1200px) {
.lineup-table > thead > tr > th:first-child,
.lineup-table > tbody > tr > td:first-child {
padding-left: 23px;
}
}
@media (min-width: 1200px) {
.lineup-table > thead > tr > th:last-child,
.lineup-table > tbody > tr > td:last-child {
padding-right: 23px;
}
}
.lineup-table .lineup__num {
width: 15%;
}
.lineup-table .lineup__pos {
width: 13%;
}
.lineup-table .lineup__name {
width: 57%;
color: #31404b;
}
.lineup-table .lineup__info {
text-align: right;
}
.lineup-table .lineup__subheader {
text-transform: uppercase;
font-weight: bold;
}
@media (min-width: 1200px) {
.lineup-table .lineup__subheader {
padding-left: 23px;
}
} @media (min-width: 992px) {
.alc-staff-inner {
padding: 0 0 0 18px;
}
}
.alc-staff__photo {
text-align: center;
}
@media (min-width: 768px) {
.alc-staff__photo {
text-align: left;
}
}
.alc-staff__header {
margin-bottom: 24px;
padding: 25px 0 0 0;
}
.alc-staff__header-name {
font-size: 26px;
line-height: 1em;
margin-bottom: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
@media (max-width: 479px) {
.alc-staff__header-name {
font-size: 14px;
}
}
.alc-staff__header-last-name {
display: block;
font-size: 46px;
line-height: 1em;
color: #38a9ff;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
@media (max-width: 479px) {
.alc-staff__header-last-name {
font-size: 1.5em;
}
}
.alc-staff__header-role {
font-size: 11px;
font-size: 11px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
font-weight: 400;
}
.alc-staff__header-role-item:not(:last-child)::after {
content: ",";
display: inline-block;
margin-right: 0.3em;
}
.alc-staff-excerpt {
margin-bottom: 46px;
}
.alc-staff-details {
display: flex;
flex-wrap: wrap;
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
}
.alc-staff-details__label {
min-width: 40%;
flex-basis: 40%;
text-align: left;
font-weight: 400;
margin-bottom: 20px;
font-size: 10px;
font-weight: bold;
}
.alc-staff-details__value {
min-width: 60%;
flex-basis: 60%;
text-align: right;
font-size: 11px;
color: #31404b;
text-transform: none;
margin-bottom: 20px;
margin-left: auto;
}
.alc-staff-details__value img {
margin-right: 0.5em;
} @media (min-width: 1200px) {
table.sp-event-officials > thead > tr > th:first-child,
table.sp-event-officials > tbody > tr > td:first-child {
padding-left: 24px;
}
}
.officials-list__item {
display: flex;
flex-wrap: wrap;
}
@media (min-width: 992px) {
.officials-list__item {
flex-wrap: nowrap;
}
}
.officials-list__item + .officials-list__item {
padding-top: 1em;
}
.officials-list__duty {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #9a9da2;
font-weight: normal;
text-transform: uppercase;
line-height: 1.5em;
flex-basis: 40%;
}
@media (min-width: 992px) {
.officials-list__duty {
flex-basis: 20%;
}
}
.officials-list__name {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
color: #31404b;
text-transform: none;
line-height: 1.5em;
margin-bottom: 0.2em;
} @media (max-width: 991px) {
.sp-header {
display: none;
}
}
.sp-header-sponsors {
background-color: #1e2024;
margin: 0 !important;
padding-top: 10px;
padding-bottom: 10px;
}
.sp-header-sponsors .sp-sponsors .sponsor {
vertical-align: middle;
}
.sp-footer-sponsors .sp-sponsors {
padding: 2em 0;
}
@media (min-width: 992px) {
.sp-footer-sponsors .sp-sponsors {
padding: 4em 0;
}
}
.sp-footer-sponsors .sp-sponsors .sponsor {
vertical-align: middle;
}
@media only screen and (min-width: 40.063em) {
.sp-header-sponsors {
float: none;
}
.sp-header-sponsors .sp-sponsors {
text-align: center;
}
}  .sp-staff-directory .data-name > a,
.sp-staff-directory .data-phone > a,
.sp-staff-directory .data-email > a {
color: #31404b;
}
.sp-staff-directory .data-name > a:hover,
.sp-staff-directory .data-phone > a:hover,
.sp-staff-directory .data-email > a:hover {
color: #38a9ff;
}
.sp-staff-directory > thead > tr > th:first-child,
.sp-staff-directory > tbody > tr > td:first-child {
padding-left: 24px;
}  .sp-template-event-statistics .sp-event-statistics tbody > tr > td {
border: none;
}
.sp-template-event-statistics .sp-event-statistics + .sp-statistic-label {
margin-top: 1.5em;
}
.sp-template-event-statistics .sp-statistic-label {
font-size: 12px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
}
.sp-template-event-statistics .sp-statistic-value {
padding-top: 0;
padding-bottom: 0;
color: #31404b;
}
.sp-template-event-statistics .sp-statistic-bar {
height: 9px;
background-color: #edeff3;
border-radius: 4.5px;
}
.sp-template-event-statistics .sp-statistic-bar-fill {
border-top-left-radius: 4.5px;
border-bottom-left-radius: 4.5px;
background-color: #38a9ff;
}
@media screen and (min-width: 801px) {
.sp-inline-statistics.sp-performance-sections--1 .sp-event-performance-tables .sp-template-event-performance {
width: 100%;
}
.sp-inline-statistics.sp-performance-sections--1 .sp-event-performance-tables .sp-template-event-performance-combined {
width: 100%;
}
.sp-inline-statistics.sp-performance-sections--1 .sp-event-performance-tables .sp-template-event-statistics {
width: 100%;
}
} .sp-section-content-user_results,
.sp-section-content-user_scores {
margin-bottom: 15px;
}
.sp-event-user-results th,
.sp-event-user-scores th {
text-align: center;
}
.sp-event-user-results th.data-name,
.sp-event-user-scores th.data-name {
text-align: left;
}
.sp-event-user-results tbody > tr > td,
.sp-event-user-scores tbody > tr > td {
vertical-align: middle;
min-width: 52px;
}
.sp-event-user-results tbody > tr > td.data-name,
.sp-event-user-scores tbody > tr > td.data-name {
color: #31404b;
}
.sp-event-user-results thead > tr > th:first-child,
.sp-event-user-results tbody > tr > td:first-child,
.sp-event-user-scores thead > tr > th:first-child,
.sp-event-user-scores tbody > tr > td:first-child {
padding-left: 24px;
}
.sp-event-user-results .form-control,
.sp-event-user-scores .form-control {
height: 34px;
padding: 8px 10px;
}
.sp-event-user-scores .form-control {
padding-left: 6px;
padding-right: 6px;
} @media (min-width: 992px) {
.sp-league-menu .sp-inner {
max-width: 962px;
}
}
@media (min-width: 1199px) {
.sp-league-menu .sp-inner {
max-width: 1170px;
}
}
.sp-league-menu .sp-league-menu-title {
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
} .alc-scoreboard-wrapper .slick-track {
display: flex;
align-items: stretch;
}
.alc-scoreboard-content {
padding: 0 30px;
overflow: hidden;
background-color: #fff;
border-bottom: 1px solid #e4e7ed;
}
@media (max-width: 767px) {
.alc-scoreboard-content {
padding-left: 0;
padding-right: 0;
}
}
.alc-scoreboard .slick-arrow {
height: 100%;
width: 30px;
top: 0;
bottom: 0;
border-radius: 0;
}
.alc-scoreboard .slick-arrow.slick-disabled {
pointer-events: none;
opacity: 0;
}
.alc-scoreboard .slick-arrow.slick-prev {
left: -30px;
}
.alc-scoreboard .slick-arrow.slick-next {
right: -30px;
}
.alc-scoreboard__event {
display: flex !important;
height: auto;
font-size: 10px;
text-transform: uppercase;
font-family: "Montserrat", sans-serif;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.5em;
font-weight: normal;
border-right: 1px solid #e4e7ed;
}
.alc-scoreboard__event-wrapper {
width: 100%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
padding: 10px 20px;
color: #9a9da2;
text-decoration: none;
}
@media (max-width: 479px) {
.alc-scoreboard__event-wrapper {
padding: 8px 16px;
}
}
.alc-scoreboard__event-wrapper:hover {
color: #9a9da2;
background-color: #f7f7f7;
}
.alc-scoreboard__meta {
display: block;
margin-bottom: 1em;
font-size: 9px;
line-height: 1.5em;
}
@media (max-width: 479px) {
.alc-scoreboard__meta {
margin-bottom: 0.5em;
}
}
.alc-scoreboard__league-season-wrapper {
display: block;
}
.alc-scoreboard__venue {
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.alc-scoreboard__teams {
padding: 0;
margin: 0;
}
.alc-scoreboard__team {
display: flex;
align-items: center;
min-height: 30px;
padding: 2px 0;
}
.alc-scoreboard__team-logo {
width: 22px;
margin-right: 5px;
}
.alc-scoreboard__team-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #31404b;
font-weight: 700;
}
.alc-scoreboard__result {
text-align: right;
flex: 1 0 auto;
color: #9a9da2;
}
.alc-scoreboard-content--alt-color {
background-color: #1e2024;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.alc-scoreboard-content--alt-color .alc-scoreboard__event {
border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.alc-scoreboard-content--alt-color .alc-scoreboard__event-wrapper {
color: #9a9da2;
}
.alc-scoreboard-content--alt-color .alc-scoreboard__event-wrapper:hover {
color: #9a9da2;
background-color: #2a2c32;
}
.alc-scoreboard-content--alt-color .alc-scoreboard__team-name {
color: #fff;
}
.alc-scoreboard-content--alt-color .alc-scoreboard__result {
color: #9a9da2;
} .sp-tournament-bracket .sp-team-name {
background-color: #f5f7f9;
color: #31404b;
}
.sp-tournament-bracket .sp-event {
border-right-color: #f5f7f9 !important;
}
.sp-tournament-bracket .sp-event .sp-event-main {
color: #31404b !important;
}
.sp-tournament-bracket .sp-result-wrapper {
display: inline-block;
}
@media (max-width: 479px) {
.sp-tournament-bracket .sp-result-wrapper {
display: block;
}
}
.sp-tournament-bracket .sp-result {
display: inline-block;
padding: 0.5em 1em;
}
.sp-tournament-bracket .sp-event-title {
color: #9a9da2;
}
.sp-tournament-bracket .sp-event-date {
font-weight: normal;
}
.sp-tournament-bracket .sp-event-flip {
border-left-color: #f5f7f9 !important;
}
.sp-tournament-bracket .sp-team .sp-team-name::before {
border-left-color: #f5f7f9;
}
.sp-tournament-bracket .sp-team-flip .sp-team-name::before {
border-right-color: #f5f7f9;
} @media (min-width: 992px) {
.sp-event-matrix thead > tr > td:first-child,
.sp-event-matrix thead > tr > th:first-child,
.sp-event-matrix tbody > tr > td:first-child,
.sp-event-matrix tbody > tr > th:first-child {
padding-left: 24px;
}
}
@media (min-width: 992px) {
.sp-event-matrix thead > tr > td:last-child,
.sp-event-matrix thead > tr > th:last-child,
.sp-event-matrix tbody > tr > td:last-child,
.sp-event-matrix tbody > tr > th:last-child {
padding-right: 24px;
}
}
.sp-event-matrix tbody .sp-event-matrix-empty-cell {
background-color: #fff;
}
.sp-event-matrix-cell {
text-align: center;
}
.sp-event-matrix-home-label {
font-weight: bold;
color: #31404b;
}