<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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; }
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
transform: translateY(0); }
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px); }
60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px); } }
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
40% {
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px); }
60% {
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px); } }
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce; }
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1; }
25%, 75% {
opacity: 0; } }
@keyframes flash {
0%, 50%, 100% {
opacity: 1; }
25%, 75% {
opacity: 0; } }
.flash {
-webkit-animation-name: flash;
animation-name: flash; } @-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1); }
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1); }
100% {
-webkit-transform: scale(1);
transform: scale(1); } }
@keyframes pulse {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
50% {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); } }
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse; }
@-webkit-keyframes rubberBand {
0% {
-webkit-transform: scale(1);
transform: scale(1); }
30% {
-webkit-transform: scaleX(1.25) scaleY(0.75);
transform: scaleX(1.25) scaleY(0.75); }
40% {
-webkit-transform: scaleX(0.75) scaleY(1.25);
transform: scaleX(0.75) scaleY(1.25); }
60% {
-webkit-transform: scaleX(1.15) scaleY(0.85);
transform: scaleX(1.15) scaleY(0.85); }
100% {
-webkit-transform: scale(1);
transform: scale(1); } }
@keyframes rubberBand {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
30% {
-webkit-transform: scaleX(1.25) scaleY(0.75);
-ms-transform: scaleX(1.25) scaleY(0.75);
transform: scaleX(1.25) scaleY(0.75); }
40% {
-webkit-transform: scaleX(0.75) scaleY(1.25);
-ms-transform: scaleX(0.75) scaleY(1.25);
transform: scaleX(0.75) scaleY(1.25); }
60% {
-webkit-transform: scaleX(1.15) scaleY(0.85);
-ms-transform: scaleX(1.15) scaleY(0.85);
transform: scaleX(1.15) scaleY(0.85); }
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); } }
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand; }
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
transform: translateX(0); }
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px); }
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
transform: translateX(10px); } }
@keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px); }
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px); } }
.shake {
-webkit-animation-name: shake;
animation-name: shake; }
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate(15deg);
transform: rotate(15deg); }
40% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg); }
60% {
-webkit-transform: rotate(5deg);
transform: rotate(5deg); }
80% {
-webkit-transform: rotate(-5deg);
transform: rotate(-5deg); }
100% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); } }
@keyframes swing {
20% {
-webkit-transform: rotate(15deg);
-ms-transform: rotate(15deg);
transform: rotate(15deg); }
40% {
-webkit-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg); }
60% {
-webkit-transform: rotate(5deg);
-ms-transform: rotate(5deg);
transform: rotate(5deg); }
80% {
-webkit-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
transform: rotate(-5deg); }
100% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg); } }
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing; }
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
transform: scale(1); }
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg); }
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg); }
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg); }
100% {
-webkit-transform: scale(1) rotate(0);
transform: scale(1) rotate(0); } }
@keyframes tada {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
-ms-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg); }
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
-ms-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg); }
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
-ms-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg); }
100% {
-webkit-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
transform: scale(1) rotate(0); } }
.tada {
-webkit-animation-name: tada;
animation-name: tada; } @-webkit-keyframes wobble {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%); }
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg); }
30% {
-webkit-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg); }
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg); }
60% {
-webkit-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg); }
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg); }
100% {
-webkit-transform: translateX(0%);
transform: translateX(0%); } }
@keyframes wobble {
0% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%); }
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
-ms-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg); }
30% {
-webkit-transform: translateX(20%) rotate(3deg);
-ms-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg); }
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
-ms-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg); }
60% {
-webkit-transform: translateX(10%) rotate(2deg);
-ms-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg); }
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
-ms-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg); }
100% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%); } }
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble; }
@-webkit-keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(0.3);
transform: scale(0.3); }
50% {
opacity: 1;
-webkit-transform: scale(1.05);
transform: scale(1.05); }
70% {
-webkit-transform: scale(0.9);
transform: scale(0.9); }
100% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); } }
@keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(0.3);
-ms-transform: scale(0.3);
transform: scale(0.3); }
50% {
opacity: 1;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05); }
70% {
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9); }
100% {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); } }
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn; }
@-webkit-keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px); }
60% {
opacity: 1;
-webkit-transform: translateY(30px);
transform: translateY(30px); }
80% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px); }
100% {
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px); }
60% {
opacity: 1;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px); }
80% {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px); }
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown; }
@-webkit-keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px); }
60% {
opacity: 1;
-webkit-transform: translateX(30px);
transform: translateX(30px); }
80% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px); }
100% {
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px); }
60% {
opacity: 1;
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px); }
80% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px); }
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft; }
@-webkit-keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px); }
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
transform: translateX(-30px); }
80% {
-webkit-transform: translateX(10px);
transform: translateX(10px); }
100% {
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px); }
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
-ms-transform: translateX(-30px);
transform: translateX(-30px); }
80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px); }
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight; }
@-webkit-keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px); }
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
transform: translateY(-30px); }
80% {
-webkit-transform: translateY(10px);
transform: translateY(10px); }
100% {
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px); }
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px); }
80% {
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px); }
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp; }
@-webkit-keyframes bounceOut {
0% {
-webkit-transform: scale(1);
transform: scale(1); }
25% {
-webkit-transform: scale(0.95);
transform: scale(0.95); }
50% {
opacity: 1;
-webkit-transform: scale(1.1);
transform: scale(1.1); }
100% {
opacity: 0;
-webkit-transform: scale(0.3);
transform: scale(0.3); } }
@keyframes bounceOut {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
25% {
-webkit-transform: scale(0.95);
-ms-transform: scale(0.95);
transform: scale(0.95); }
50% {
opacity: 1;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1); }
100% {
opacity: 0;
-webkit-transform: scale(0.3);
-ms-transform: scale(0.3);
transform: scale(0.3); } }
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut; }
@-webkit-keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
transform: translateY(-20px); }
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px); } }
@keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px); }
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px); } }
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown; }
@-webkit-keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0); }
20% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px); }
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px); } }
@keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
20% {
opacity: 1;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px); }
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px); } }
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft; }
@-webkit-keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0); }
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px); }
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px); } }
@keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px); }
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px); } }
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight; }
@-webkit-keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
20% {
opacity: 1;
-webkit-transform: translateY(20px);
transform: translateY(20px); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px); } }
@keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
20% {
opacity: 1;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px); } }
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp; }
@-webkit-keyframes fadeIn {
0% {
opacity: 0; }
100% {
opacity: 1; } }
@keyframes fadeIn {
0% {
opacity: 0; }
100% {
opacity: 1; } }
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn; }
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown; }
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig; }
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft; }
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig; }
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight; }
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px); }
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig; }
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp; }
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig; }
@-webkit-keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut; }
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px); } }
@keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px); } }
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown; }
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px); } }
@keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px); } }
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig; }
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px); } }
@keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px); } }
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft; }
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px); } }
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px); } }
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig; }
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px); } }
@keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px); } }
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight; }
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px); } }
@keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px); } }
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig; }
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px); } }
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px); } }
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp; }
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px); } }
@keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px); } }
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig; }
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; }
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; }
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in; }
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in; }
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in; } }
@keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; }
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; }
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in; }
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in; }
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in; } }
.animated.flip {
-webkit-backface-visibility: visible;
-ms-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip; }
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0; }
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg); }
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg); }
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1; } }
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0; }
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
-ms-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg); }
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
-ms-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg); }
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1; } }
.flipInX {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX; }
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0; }
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg); }
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg); }
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1; } }
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0; }
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
-ms-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg); }
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
-ms-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg); }
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1; } }
.flipInY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY; }
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1; }
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0; } }
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1; }
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0; } }
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important; }
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1; }
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0; } }
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1; }
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0; } }
.flipOutY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY; }
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0; }
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1; }
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1; }
100% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1; } }
@keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0; }
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
-ms-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1; }
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
-ms-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1; }
100% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1; } }
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; }
@-webkit-keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1; }
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0; } }
@keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1; }
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) 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 {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0; }
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
@keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
-ms-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0; }
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn; }
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0; }
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0; }
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft; }
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0; }
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0; }
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight; }
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0; }
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0; }
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft; }
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0; }
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0; }
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; } }
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight; }
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0; } }
@keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
-ms-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0; } }
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut; }
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0; } }
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0; } }
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft; }
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0; } }
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0; } }
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight; }
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0; } }
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0; } }
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft; }
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0; } }
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1; }
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0; } }
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight; }
@-webkit-keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px); }
100% {
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px); }
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown; }
@-webkit-keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px); }
100% {
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px); }
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft; }
@-webkit-keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px); }
100% {
-webkit-transform: translateX(0);
transform: translateX(0); } }
@keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px); }
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); } }
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight; }
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px); } }
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px); } }
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft; }
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px); } }
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0); }
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px); } }
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight; }
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px); } }
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px); } }
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp; }
@-webkit-keyframes slideInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); } }
@keyframes slideInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px); }
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); } }
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp; }
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px); } }
@keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0); }
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px); } }
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown; }
@-webkit-keyframes hinge {
0% {
-webkit-transform: rotate(0);
transform: rotate(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: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
40% {
-webkit-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
80% {
-webkit-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1; }
100% {
-webkit-transform: translateY(700px);
transform: translateY(700px);
opacity: 0; } }
@keyframes hinge {
0% {
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
-ms-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: rotate(80deg);
-ms-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
40% {
-webkit-transform: rotate(60deg);
-ms-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
80% {
-webkit-transform: rotate(60deg) translateY(0);
-ms-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1; }
100% {
-webkit-transform: translateY(700px);
-ms-transform: translateY(700px);
transform: translateY(700px);
opacity: 0; } }
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge; } @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg); }
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg); } }
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
-ms-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg); }
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg); } }
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn; } @-webkit-keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg); }
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg); } }
@keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg); }
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
-ms-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg); } }
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut; }
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale(0.3);
transform: scale(0.3); }
50% {
opacity: 1; } }
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale(0.3);
-ms-transform: scale(0.3);
transform: scale(0.3); }
50% {
opacity: 1; } }
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn; }
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale(0.1) translateY(-2000px);
transform: scale(0.1) translateY(-2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
60% {
opacity: 1;
-webkit-transform: scale(0.475) translateY(60px);
transform: scale(0.475) translateY(60px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; } }
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale(0.1) translateY(-2000px);
-ms-transform: scale(0.1) translateY(-2000px);
transform: scale(0.1) translateY(-2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
60% {
opacity: 1;
-webkit-transform: scale(0.475) translateY(60px);
-ms-transform: scale(0.475) translateY(60px);
transform: scale(0.475) translateY(60px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; } }
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown; }
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale(0.1) translateX(-2000px);
transform: scale(0.1) translateX(-2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
60% {
opacity: 1;
-webkit-transform: scale(0.475) translateX(48px);
transform: scale(0.475) translateX(48px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; } }
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale(0.1) translateX(-2000px);
-ms-transform: scale(0.1) translateX(-2000px);
transform: scale(0.1) translateX(-2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
60% {
opacity: 1;
-webkit-transform: scale(0.475) translateX(48px);
-ms-transform: scale(0.475) translateX(48px);
transform: scale(0.475) translateX(48px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; } }
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft; }
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale(0.1) translateX(2000px);
transform: scale(0.1) translateX(2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
60% {
opacity: 1;
-webkit-transform: scale(0.475) translateX(-48px);
transform: scale(0.475) translateX(-48px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; } }
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale(0.1) translateX(2000px);
-ms-transform: scale(0.1) translateX(2000px);
transform: scale(0.1) translateX(2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
60% {
opacity: 1;
-webkit-transform: scale(0.475) translateX(-48px);
-ms-transform: scale(0.475) translateX(-48px);
transform: scale(0.475) translateX(-48px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; } }
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight; }
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale(0.1) translateY(2000px);
transform: scale(0.1) translateY(2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
60% {
opacity: 1;
-webkit-transform: scale(0.475) translateY(-60px);
transform: scale(0.475) translateY(-60px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; } }
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale(0.1) translateY(2000px);
-ms-transform: scale(0.1) translateY(2000px);
transform: scale(0.1) translateY(2000px);
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out; }
60% {
opacity: 1;
-webkit-transform: scale(0.475) translateY(-60px);
-ms-transform: scale(0.475) translateY(-60px);
transform: scale(0.475) translateY(-60px);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out; } }
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp; }
@-webkit-keyframes zoomOut {
0% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); }
50% {
opacity: 0;
-webkit-transform: scale(0.3);
transform: scale(0.3); }
100% {
opacity: 0; } }
@keyframes zoomOut {
0% {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1); }
50% {
opacity: 0;
-webkit-transform: scale(0.3);
-ms-transform: scale(0.3);
transform: scale(0.3); }
100% {
opacity: 0; } }
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut; }
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale(0.475) translateY(-60px);
transform: scale(0.475) translateY(-60px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear; }
100% {
opacity: 0;
-webkit-transform: scale(0.1) translateY(2000px);
transform: scale(0.1) translateY(2000px);
-webkit-transform-origin: center bottom;
transform-origin: center bottom; } }
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale(0.475) translateY(-60px);
-ms-transform: scale(0.475) translateY(-60px);
transform: scale(0.475) translateY(-60px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear; }
100% {
opacity: 0;
-webkit-transform: scale(0.1) translateY(2000px);
-ms-transform: scale(0.1) translateY(2000px);
transform: scale(0.1) translateY(2000px);
-webkit-transform-origin: center bottom;
-ms-transform-origin: center bottom;
transform-origin: center bottom; } }
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown; }
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale(0.475) translateX(42px);
transform: scale(0.475) translateX(42px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear; }
100% {
opacity: 0;
-webkit-transform: scale(0.1) translateX(-2000px);
transform: scale(0.1) translateX(-2000px);
-webkit-transform-origin: left center;
transform-origin: left center; } }
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale(0.475) translateX(42px);
-ms-transform: scale(0.475) translateX(42px);
transform: scale(0.475) translateX(42px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear; }
100% {
opacity: 0;
-webkit-transform: scale(0.1) translateX(-2000px);
-ms-transform: scale(0.1) translateX(-2000px);
transform: scale(0.1) translateX(-2000px);
-webkit-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center; } }
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft; }
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale(0.475) translateX(-42px);
transform: scale(0.475) translateX(-42px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear; }
100% {
opacity: 0;
-webkit-transform: scale(0.1) translateX(2000px);
transform: scale(0.1) translateX(2000px);
-webkit-transform-origin: right center;
transform-origin: right center; } }
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale(0.475) translateX(-42px);
-ms-transform: scale(0.475) translateX(-42px);
transform: scale(0.475) translateX(-42px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear; }
100% {
opacity: 0;
-webkit-transform: scale(0.1) translateX(2000px);
-ms-transform: scale(0.1) translateX(2000px);
transform: scale(0.1) translateX(2000px);
-webkit-transform-origin: right center;
-ms-transform-origin: right center;
transform-origin: right center; } }
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight; }
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale(0.475) translateY(60px);
transform: scale(0.475) translateY(60px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear; }
100% {
opacity: 0;
-webkit-transform: scale(0.1) translateY(-2000px);
transform: scale(0.1) translateY(-2000px);
-webkit-transform-origin: center top;
transform-origin: center top; } }
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale(0.475) translateY(60px);
-ms-transform: scale(0.475) translateY(60px);
transform: scale(0.475) translateY(60px);
-webkit-animation-timing-function: linear;
animation-timing-function: linear; }
100% {
opacity: 0;
-webkit-transform: scale(0.1) translateY(-2000px);
-ms-transform: scale(0.1) translateY(-2000px);
transform: scale(0.1) translateY(-2000px);
-webkit-transform-origin: center top;
-ms-transform-origin: center top;
transform-origin: center top; } }
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp; }
.owl-carousel, .owl-carousel .owl-item {
-webkit-tap-highlight-color: transparent;
position: relative; }
.owl-carousel {
display: none;
width: 100%;
z-index: 1; }
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
-moz-backface-visibility: hidden; }
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; }
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden;
-webkit-transform: translate3d(0, 0, 0); }
.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0); }
.owl-carousel .owl-item {
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-touch-callout: none; }
.owl-carousel .owl-item img {
display: block;
width: 100%; }
.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
display: none; }
.no-js .owl-carousel, .owl-carousel.owl-loaded {
display: block; }
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
cursor: pointer;
cursor: hand;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-loading {
opacity: 0;
display: block; }
.owl-carousel.owl-hidden {
opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-grab {
cursor: move;
cursor: grab; }
.owl-carousel.owl-rtl {
direction: rtl; }
.owl-carousel.owl-rtl .owl-item {
float: right; }
.owl-carousel .animated {
animation-duration: 1s;
animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
z-index: 0; }
.owl-carousel .owl-animated-out {
z-index: 1; }
.owl-carousel .fadeOut {
animation-name: fadeOut; }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
.owl-height {
transition: height .5s ease-in-out; }
.owl-carousel .owl-item .owl-lazy {
opacity: 0;
transition: opacity .4s ease; }
.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d; }
.owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000; }
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/css/owl.video.play.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: transform .1s ease; }
.owl-carousel .owl-video-play-icon:hover {
-ms-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
display: none; }
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
transition: opacity .4s ease; }
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%; } @font-face {
font-family: 'FontAwesome';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/fontAwesome/fontawesome-webfont.eot?v=4.7.0);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/fontAwesome/fontawesome-webfont.eot?#iefix&amp;v=4.7.0) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/fontAwesome/fontawesome-webfont.woff2?v=4.7.0) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/fontAwesome/fontawesome-webfont.woff?v=4.7.0) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/fontAwesome/fontawesome-webfont.ttf?v=4.7.0) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/fontAwesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format("svg");
font-weight: normal;
font-style: normal; }
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.fa-lg {
font-size: 1.33333333em;
line-height: .75em;
vertical-align: -15%; }
.fa-2x {
font-size: 2em; }
.fa-3x {
font-size: 3em; }
.fa-4x {
font-size: 4em; }
.fa-5x {
font-size: 5em; }
.fa-fw {
width: 1.28571429em;
text-align: center; }
.fa-ul {
padding-left: 0;
margin-left: 2.14285714em;
list-style-type: none; }
.fa-ul &gt; li {
position: relative; }
.fa-li {
position: absolute;
left: -2.14285714em;
width: 2.14285714em;
top: .14285714em;
text-align: center; }
.fa-li.fa-lg {
left: -1.85714286em; }
.fa-border {
padding: .2em .25em .15em;
border: solid .08em #eee;
border-radius: .1em; }
.fa-pull-left {
float: left; }
.fa-pull-right {
float: right; }
.fa.fa-pull-left {
margin-right: .3em; }
.fa.fa-pull-right {
margin-left: .3em; }
.pull-right {
float: right; }
.pull-left {
float: left; }
.fa.pull-left {
margin-right: .3em; }
.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(359deg);
transform: rotate(359deg); } }
@keyframes fa-spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg); }
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg); } }
.fa-rotate-90 {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
.fa-rotate-180 {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
.fa-rotate-270 {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
-webkit-transform: rotate(270deg);
-ms-transform: rotate(270deg);
transform: rotate(270deg); }
.fa-flip-horizontal {
-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
-webkit-transform: scale(-1, 1);
-ms-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);
-ms-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 {
filter: none; }
.fa-stack {
position: relative;
display: inline-block;
width: 2em;
height: 2em;
line-height: 2em;
vertical-align: middle; }
.fa-stack-1x, .fa-stack-2x {
position: absolute;
left: 0;
width: 100%;
text-align: center; }
.fa-stack-1x {
line-height: inherit; }
.fa-stack-2x {
font-size: 2em; }
.fa-inverse {
color: #fff; }
.fa-glass:before {
content: "\f000"; }
.fa-music:before {
content: "\f001"; }
.fa-search:before {
content: "\f002"; }
.fa-envelope-o:before {
content: "\f003"; }
.fa-heart:before {
content: "\f004"; }
.fa-star:before {
content: "\f005"; }
.fa-star-o:before {
content: "\f006"; }
.fa-user:before {
content: "\f007"; }
.fa-film:before {
content: "\f008"; }
.fa-th-large:before {
content: "\f009"; }
.fa-th:before {
content: "\f00a"; }
.fa-th-list:before {
content: "\f00b"; }
.fa-check:before {
content: "\f00c"; }
.fa-remove:before, .fa-close:before, .fa-times:before {
content: "\f00d"; }
.fa-search-plus:before {
content: "\f00e"; }
.fa-search-minus:before {
content: "\f010"; }
.fa-power-off:before {
content: "\f011"; }
.fa-signal:before {
content: "\f012"; }
.fa-gear:before, .fa-cog:before {
content: "\f013"; }
.fa-trash-o:before {
content: "\f014"; }
.fa-home:before {
content: "\f015"; }
.fa-file-o:before {
content: "\f016"; }
.fa-clock-o:before {
content: "\f017"; }
.fa-road:before {
content: "\f018"; }
.fa-download:before {
content: "\f019"; }
.fa-arrow-circle-o-down:before {
content: "\f01a"; }
.fa-arrow-circle-o-up:before {
content: "\f01b"; }
.fa-inbox:before {
content: "\f01c"; }
.fa-play-circle-o:before {
content: "\f01d"; }
.fa-rotate-right:before, .fa-repeat:before {
content: "\f01e"; }
.fa-refresh:before {
content: "\f021"; }
.fa-list-alt:before {
content: "\f022"; }
.fa-lock:before {
content: "\f023"; }
.fa-flag:before {
content: "\f024"; }
.fa-headphones:before {
content: "\f025"; }
.fa-volume-off:before {
content: "\f026"; }
.fa-volume-down:before {
content: "\f027"; }
.fa-volume-up:before {
content: "\f028"; }
.fa-qrcode:before {
content: "\f029"; }
.fa-barcode:before {
content: "\f02a"; }
.fa-tag:before {
content: "\f02b"; }
.fa-tags:before {
content: "\f02c"; }
.fa-book:before {
content: "\f02d"; }
.fa-bookmark:before {
content: "\f02e"; }
.fa-print:before {
content: "\f02f"; }
.fa-camera:before {
content: "\f030"; }
.fa-font:before {
content: "\f031"; }
.fa-bold:before {
content: "\f032"; }
.fa-italic:before {
content: "\f033"; }
.fa-text-height:before {
content: "\f034"; }
.fa-text-width:before {
content: "\f035"; }
.fa-align-left:before {
content: "\f036"; }
.fa-align-center:before {
content: "\f037"; }
.fa-align-right:before {
content: "\f038"; }
.fa-align-justify:before {
content: "\f039"; }
.fa-list:before {
content: "\f03a"; }
.fa-dedent:before, .fa-outdent:before {
content: "\f03b"; }
.fa-indent:before {
content: "\f03c"; }
.fa-video-camera:before {
content: "\f03d"; }
.fa-photo:before, .fa-image:before, .fa-picture-o:before {
content: "\f03e"; }
.fa-pencil:before {
content: "\f040"; }
.fa-map-marker:before {
content: "\f041"; }
.fa-adjust:before {
content: "\f042"; }
.fa-tint:before {
content: "\f043"; }
.fa-edit:before, .fa-pencil-square-o:before {
content: "\f044"; }
.fa-share-square-o:before {
content: "\f045"; }
.fa-check-square-o:before {
content: "\f046"; }
.fa-arrows:before {
content: "\f047"; }
.fa-step-backward:before {
content: "\f048"; }
.fa-fast-backward:before {
content: "\f049"; }
.fa-backward:before {
content: "\f04a"; }
.fa-play:before {
content: "\f04b"; }
.fa-pause:before {
content: "\f04c"; }
.fa-stop:before {
content: "\f04d"; }
.fa-forward:before {
content: "\f04e"; }
.fa-fast-forward:before {
content: "\f050"; }
.fa-step-forward:before {
content: "\f051"; }
.fa-eject:before {
content: "\f052"; }
.fa-chevron-left:before {
content: "\f053"; }
.fa-chevron-right:before {
content: "\f054"; }
.fa-plus-circle:before {
content: "\f055"; }
.fa-minus-circle:before {
content: "\f056"; }
.fa-times-circle:before {
content: "\f057"; }
.fa-check-circle:before {
content: "\f058"; }
.fa-question-circle:before {
content: "\f059"; }
.fa-info-circle:before {
content: "\f05a"; }
.fa-crosshairs:before {
content: "\f05b"; }
.fa-times-circle-o:before {
content: "\f05c"; }
.fa-check-circle-o:before {
content: "\f05d"; }
.fa-ban:before {
content: "\f05e"; }
.fa-arrow-left:before {
content: "\f060"; }
.fa-arrow-right:before {
content: "\f061"; }
.fa-arrow-up:before {
content: "\f062"; }
.fa-arrow-down:before {
content: "\f063"; }
.fa-mail-forward:before, .fa-share:before {
content: "\f064"; }
.fa-expand:before {
content: "\f065"; }
.fa-compress:before {
content: "\f066"; }
.fa-plus:before {
content: "\f067"; }
.fa-minus:before {
content: "\f068"; }
.fa-asterisk:before {
content: "\f069"; }
.fa-exclamation-circle:before {
content: "\f06a"; }
.fa-gift:before {
content: "\f06b"; }
.fa-leaf:before {
content: "\f06c"; }
.fa-fire:before {
content: "\f06d"; }
.fa-eye:before {
content: "\f06e"; }
.fa-eye-slash:before {
content: "\f070"; }
.fa-warning:before, .fa-exclamation-triangle:before {
content: "\f071"; }
.fa-plane:before {
content: "\f072"; }
.fa-calendar:before {
content: "\f073"; }
.fa-random:before {
content: "\f074"; }
.fa-comment:before {
content: "\f075"; }
.fa-magnet:before {
content: "\f076"; }
.fa-chevron-up:before {
content: "\f077"; }
.fa-chevron-down:before {
content: "\f078"; }
.fa-retweet:before {
content: "\f079"; }
.fa-shopping-cart:before {
content: "\f07a"; }
.fa-folder:before {
content: "\f07b"; }
.fa-folder-open:before {
content: "\f07c"; }
.fa-arrows-v:before {
content: "\f07d"; }
.fa-arrows-h:before {
content: "\f07e"; }
.fa-bar-chart-o:before, .fa-bar-chart:before {
content: "\f080"; }
.fa-twitter-square:before {
content: "\f081"; }
.fa-facebook-square:before {
content: "\f082"; }
.fa-camera-retro:before {
content: "\f083"; }
.fa-key:before {
content: "\f084"; }
.fa-gears:before, .fa-cogs:before {
content: "\f085"; }
.fa-comments:before {
content: "\f086"; }
.fa-thumbs-o-up:before {
content: "\f087"; }
.fa-thumbs-o-down:before {
content: "\f088"; }
.fa-star-half:before {
content: "\f089"; }
.fa-heart-o:before {
content: "\f08a"; }
.fa-sign-out:before {
content: "\f08b"; }
.fa-linkedin-square:before {
content: "\f08c"; }
.fa-thumb-tack:before {
content: "\f08d"; }
.fa-external-link:before {
content: "\f08e"; }
.fa-sign-in:before {
content: "\f090"; }
.fa-trophy:before {
content: "\f091"; }
.fa-github-square:before {
content: "\f092"; }
.fa-upload:before {
content: "\f093"; }
.fa-lemon-o:before {
content: "\f094"; }
.fa-phone:before {
content: "\f095"; }
.fa-square-o:before {
content: "\f096"; }
.fa-bookmark-o:before {
content: "\f097"; }
.fa-phone-square:before {
content: "\f098"; }
.fa-twitter:before {
content: "\f099"; }
.fa-facebook-f:before, .fa-facebook:before {
content: "\f09a"; }
.fa-github:before {
content: "\f09b"; }
.fa-unlock:before {
content: "\f09c"; }
.fa-credit-card:before {
content: "\f09d"; }
.fa-feed:before, .fa-rss:before {
content: "\f09e"; }
.fa-hdd-o:before {
content: "\f0a0"; }
.fa-bullhorn:before {
content: "\f0a1"; }
.fa-bell:before {
content: "\f0f3"; }
.fa-certificate:before {
content: "\f0a3"; }
.fa-hand-o-right:before {
content: "\f0a4"; }
.fa-hand-o-left:before {
content: "\f0a5"; }
.fa-hand-o-up:before {
content: "\f0a6"; }
.fa-hand-o-down:before {
content: "\f0a7"; }
.fa-arrow-circle-left:before {
content: "\f0a8"; }
.fa-arrow-circle-right:before {
content: "\f0a9"; }
.fa-arrow-circle-up:before {
content: "\f0aa"; }
.fa-arrow-circle-down:before {
content: "\f0ab"; }
.fa-globe:before {
content: "\f0ac"; }
.fa-wrench:before {
content: "\f0ad"; }
.fa-tasks:before {
content: "\f0ae"; }
.fa-filter:before {
content: "\f0b0"; }
.fa-briefcase:before {
content: "\f0b1"; }
.fa-arrows-alt:before {
content: "\f0b2"; }
.fa-group:before, .fa-users:before {
content: "\f0c0"; }
.fa-chain:before, .fa-link:before {
content: "\f0c1"; }
.fa-cloud:before {
content: "\f0c2"; }
.fa-flask:before {
content: "\f0c3"; }
.fa-cut:before, .fa-scissors:before {
content: "\f0c4"; }
.fa-copy:before, .fa-files-o:before {
content: "\f0c5"; }
.fa-paperclip:before {
content: "\f0c6"; }
.fa-save:before, .fa-floppy-o:before {
content: "\f0c7"; }
.fa-square:before {
content: "\f0c8"; }
.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
content: "\f0c9"; }
.fa-list-ul:before {
content: "\f0ca"; }
.fa-list-ol:before {
content: "\f0cb"; }
.fa-strikethrough:before {
content: "\f0cc"; }
.fa-underline:before {
content: "\f0cd"; }
.fa-table:before {
content: "\f0ce"; }
.fa-magic:before {
content: "\f0d0"; }
.fa-truck:before {
content: "\f0d1"; }
.fa-pinterest:before {
content: "\f0d2"; }
.fa-pinterest-square:before {
content: "\f0d3"; }
.fa-google-plus-square:before {
content: "\f0d4"; }
.fa-google-plus:before {
content: "\f0d5"; }
.fa-money:before {
content: "\f0d6"; }
.fa-caret-down:before {
content: "\f0d7"; }
.fa-caret-up:before {
content: "\f0d8"; }
.fa-caret-left:before {
content: "\f0d9"; }
.fa-caret-right:before {
content: "\f0da"; }
.fa-columns:before {
content: "\f0db"; }
.fa-unsorted:before, .fa-sort:before {
content: "\f0dc"; }
.fa-sort-down:before, .fa-sort-desc:before {
content: "\f0dd"; }
.fa-sort-up:before, .fa-sort-asc:before {
content: "\f0de"; }
.fa-envelope:before {
content: "\f0e0"; }
.fa-linkedin:before {
content: "\f0e1"; }
.fa-rotate-left:before, .fa-undo:before {
content: "\f0e2"; }
.fa-legal:before, .fa-gavel:before {
content: "\f0e3"; }
.fa-dashboard:before, .fa-tachometer:before {
content: "\f0e4"; }
.fa-comment-o:before {
content: "\f0e5"; }
.fa-comments-o:before {
content: "\f0e6"; }
.fa-flash:before, .fa-bolt:before {
content: "\f0e7"; }
.fa-sitemap:before {
content: "\f0e8"; }
.fa-umbrella:before {
content: "\f0e9"; }
.fa-paste:before, .fa-clipboard:before {
content: "\f0ea"; }
.fa-lightbulb-o:before {
content: "\f0eb"; }
.fa-exchange:before {
content: "\f0ec"; }
.fa-cloud-download:before {
content: "\f0ed"; }
.fa-cloud-upload:before {
content: "\f0ee"; }
.fa-user-md:before {
content: "\f0f0"; }
.fa-stethoscope:before {
content: "\f0f1"; }
.fa-suitcase:before {
content: "\f0f2"; }
.fa-bell-o:before {
content: "\f0a2"; }
.fa-coffee:before {
content: "\f0f4"; }
.fa-cutlery:before {
content: "\f0f5"; }
.fa-file-text-o:before {
content: "\f0f6"; }
.fa-building-o:before {
content: "\f0f7"; }
.fa-hospital-o:before {
content: "\f0f8"; }
.fa-ambulance:before {
content: "\f0f9"; }
.fa-medkit:before {
content: "\f0fa"; }
.fa-fighter-jet:before {
content: "\f0fb"; }
.fa-beer:before {
content: "\f0fc"; }
.fa-h-square:before {
content: "\f0fd"; }
.fa-plus-square:before {
content: "\f0fe"; }
.fa-angle-double-left:before {
content: "\f100"; }
.fa-angle-double-right:before {
content: "\f101"; }
.fa-angle-double-up:before {
content: "\f102"; }
.fa-angle-double-down:before {
content: "\f103"; }
.fa-angle-left:before {
content: "\f104"; }
.fa-angle-right:before {
content: "\f105"; }
.fa-angle-up:before {
content: "\f106"; }
.fa-angle-down:before {
content: "\f107"; }
.fa-desktop:before {
content: "\f108"; }
.fa-laptop:before {
content: "\f109"; }
.fa-tablet:before {
content: "\f10a"; }
.fa-mobile-phone:before, .fa-mobile:before {
content: "\f10b"; }
.fa-circle-o:before {
content: "\f10c"; }
.fa-quote-left:before {
content: "\f10d"; }
.fa-quote-right:before {
content: "\f10e"; }
.fa-spinner:before {
content: "\f110"; }
.fa-circle:before {
content: "\f111"; }
.fa-mail-reply:before, .fa-reply:before {
content: "\f112"; }
.fa-github-alt:before {
content: "\f113"; }
.fa-folder-o:before {
content: "\f114"; }
.fa-folder-open-o:before {
content: "\f115"; }
.fa-smile-o:before {
content: "\f118"; }
.fa-frown-o:before {
content: "\f119"; }
.fa-meh-o:before {
content: "\f11a"; }
.fa-gamepad:before {
content: "\f11b"; }
.fa-keyboard-o:before {
content: "\f11c"; }
.fa-flag-o:before {
content: "\f11d"; }
.fa-flag-checkered:before {
content: "\f11e"; }
.fa-terminal:before {
content: "\f120"; }
.fa-code:before {
content: "\f121"; }
.fa-mail-reply-all:before, .fa-reply-all:before {
content: "\f122"; }
.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
content: "\f123"; }
.fa-location-arrow:before {
content: "\f124"; }
.fa-crop:before {
content: "\f125"; }
.fa-code-fork:before {
content: "\f126"; }
.fa-unlink:before, .fa-chain-broken:before {
content: "\f127"; }
.fa-question:before {
content: "\f128"; }
.fa-info:before {
content: "\f129"; }
.fa-exclamation:before {
content: "\f12a"; }
.fa-superscript:before {
content: "\f12b"; }
.fa-subscript:before {
content: "\f12c"; }
.fa-eraser:before {
content: "\f12d"; }
.fa-puzzle-piece:before {
content: "\f12e"; }
.fa-microphone:before {
content: "\f130"; }
.fa-microphone-slash:before {
content: "\f131"; }
.fa-shield:before {
content: "\f132"; }
.fa-calendar-o:before {
content: "\f133"; }
.fa-fire-extinguisher:before {
content: "\f134"; }
.fa-rocket:before {
content: "\f135"; }
.fa-maxcdn:before {
content: "\f136"; }
.fa-chevron-circle-left:before {
content: "\f137"; }
.fa-chevron-circle-right:before {
content: "\f138"; }
.fa-chevron-circle-up:before {
content: "\f139"; }
.fa-chevron-circle-down:before {
content: "\f13a"; }
.fa-html5:before {
content: "\f13b"; }
.fa-css3:before {
content: "\f13c"; }
.fa-anchor:before {
content: "\f13d"; }
.fa-unlock-alt:before {
content: "\f13e"; }
.fa-bullseye:before {
content: "\f140"; }
.fa-ellipsis-h:before {
content: "\f141"; }
.fa-ellipsis-v:before {
content: "\f142"; }
.fa-rss-square:before {
content: "\f143"; }
.fa-play-circle:before {
content: "\f144"; }
.fa-ticket:before {
content: "\f145"; }
.fa-minus-square:before {
content: "\f146"; }
.fa-minus-square-o:before {
content: "\f147"; }
.fa-level-up:before {
content: "\f148"; }
.fa-level-down:before {
content: "\f149"; }
.fa-check-square:before {
content: "\f14a"; }
.fa-pencil-square:before {
content: "\f14b"; }
.fa-external-link-square:before {
content: "\f14c"; }
.fa-share-square:before {
content: "\f14d"; }
.fa-compass:before {
content: "\f14e"; }
.fa-toggle-down:before, .fa-caret-square-o-down:before {
content: "\f150"; }
.fa-toggle-up:before, .fa-caret-square-o-up:before {
content: "\f151"; }
.fa-toggle-right:before, .fa-caret-square-o-right:before {
content: "\f152"; }
.fa-euro:before, .fa-eur:before {
content: "\f153"; }
.fa-gbp:before {
content: "\f154"; }
.fa-dollar:before, .fa-usd:before {
content: "\f155"; }
.fa-rupee:before, .fa-inr:before {
content: "\f156"; }
.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
content: "\f157"; }
.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
content: "\f158"; }
.fa-won:before, .fa-krw:before {
content: "\f159"; }
.fa-bitcoin:before, .fa-btc:before {
content: "\f15a"; }
.fa-file:before {
content: "\f15b"; }
.fa-file-text:before {
content: "\f15c"; }
.fa-sort-alpha-asc:before {
content: "\f15d"; }
.fa-sort-alpha-desc:before {
content: "\f15e"; }
.fa-sort-amount-asc:before {
content: "\f160"; }
.fa-sort-amount-desc:before {
content: "\f161"; }
.fa-sort-numeric-asc:before {
content: "\f162"; }
.fa-sort-numeric-desc:before {
content: "\f163"; }
.fa-thumbs-up:before {
content: "\f164"; }
.fa-thumbs-down:before {
content: "\f165"; }
.fa-youtube-square:before {
content: "\f166"; }
.fa-youtube:before {
content: "\f167"; }
.fa-xing:before {
content: "\f168"; }
.fa-xing-square:before {
content: "\f169"; }
.fa-youtube-play:before {
content: "\f16a"; }
.fa-dropbox:before {
content: "\f16b"; }
.fa-stack-overflow:before {
content: "\f16c"; }
.fa-instagram:before {
content: "\f16d"; }
.fa-flickr:before {
content: "\f16e"; }
.fa-adn:before {
content: "\f170"; }
.fa-bitbucket:before {
content: "\f171"; }
.fa-bitbucket-square:before {
content: "\f172"; }
.fa-tumblr:before {
content: "\f173"; }
.fa-tumblr-square:before {
content: "\f174"; }
.fa-long-arrow-down:before {
content: "\f175"; }
.fa-long-arrow-up:before {
content: "\f176"; }
.fa-long-arrow-left:before {
content: "\f177"; }
.fa-long-arrow-right:before {
content: "\f178"; }
.fa-apple:before {
content: "\f179"; }
.fa-windows:before {
content: "\f17a"; }
.fa-android:before {
content: "\f17b"; }
.fa-linux:before {
content: "\f17c"; }
.fa-dribbble:before {
content: "\f17d"; }
.fa-skype:before {
content: "\f17e"; }
.fa-foursquare:before {
content: "\f180"; }
.fa-trello:before {
content: "\f181"; }
.fa-female:before {
content: "\f182"; }
.fa-male:before {
content: "\f183"; }
.fa-gittip:before, .fa-gratipay:before {
content: "\f184"; }
.fa-sun-o:before {
content: "\f185"; }
.fa-moon-o:before {
content: "\f186"; }
.fa-archive:before {
content: "\f187"; }
.fa-bug:before {
content: "\f188"; }
.fa-vk:before {
content: "\f189"; }
.fa-weibo:before {
content: "\f18a"; }
.fa-renren:before {
content: "\f18b"; }
.fa-pagelines:before {
content: "\f18c"; }
.fa-stack-exchange:before {
content: "\f18d"; }
.fa-arrow-circle-o-right:before {
content: "\f18e"; }
.fa-arrow-circle-o-left:before {
content: "\f190"; }
.fa-toggle-left:before, .fa-caret-square-o-left:before {
content: "\f191"; }
.fa-dot-circle-o:before {
content: "\f192"; }
.fa-wheelchair:before {
content: "\f193"; }
.fa-vimeo-square:before {
content: "\f194"; }
.fa-turkish-lira:before, .fa-try:before {
content: "\f195"; }
.fa-plus-square-o:before {
content: "\f196"; }
.fa-space-shuttle:before {
content: "\f197"; }
.fa-slack:before {
content: "\f198"; }
.fa-envelope-square:before {
content: "\f199"; }
.fa-wordpress:before {
content: "\f19a"; }
.fa-openid:before {
content: "\f19b"; }
.fa-institution:before, .fa-bank:before, .fa-university:before {
content: "\f19c"; }
.fa-mortar-board:before, .fa-graduation-cap:before {
content: "\f19d"; }
.fa-yahoo:before {
content: "\f19e"; }
.fa-google:before {
content: "\f1a0"; }
.fa-reddit:before {
content: "\f1a1"; }
.fa-reddit-square:before {
content: "\f1a2"; }
.fa-stumbleupon-circle:before {
content: "\f1a3"; }
.fa-stumbleupon:before {
content: "\f1a4"; }
.fa-delicious:before {
content: "\f1a5"; }
.fa-digg:before {
content: "\f1a6"; }
.fa-pied-piper-pp:before {
content: "\f1a7"; }
.fa-pied-piper-alt:before {
content: "\f1a8"; }
.fa-drupal:before {
content: "\f1a9"; }
.fa-joomla:before {
content: "\f1aa"; }
.fa-language:before {
content: "\f1ab"; }
.fa-fax:before {
content: "\f1ac"; }
.fa-building:before {
content: "\f1ad"; }
.fa-child:before {
content: "\f1ae"; }
.fa-paw:before {
content: "\f1b0"; }
.fa-spoon:before {
content: "\f1b1"; }
.fa-cube:before {
content: "\f1b2"; }
.fa-cubes:before {
content: "\f1b3"; }
.fa-behance:before {
content: "\f1b4"; }
.fa-behance-square:before {
content: "\f1b5"; }
.fa-steam:before {
content: "\f1b6"; }
.fa-steam-square:before {
content: "\f1b7"; }
.fa-recycle:before {
content: "\f1b8"; }
.fa-automobile:before, .fa-car:before {
content: "\f1b9"; }
.fa-cab:before, .fa-taxi:before {
content: "\f1ba"; }
.fa-tree:before {
content: "\f1bb"; }
.fa-spotify:before {
content: "\f1bc"; }
.fa-deviantart:before {
content: "\f1bd"; }
.fa-soundcloud:before {
content: "\f1be"; }
.fa-database:before {
content: "\f1c0"; }
.fa-file-pdf-o:before {
content: "\f1c1"; }
.fa-file-word-o:before {
content: "\f1c2"; }
.fa-file-excel-o:before {
content: "\f1c3"; }
.fa-file-powerpoint-o:before {
content: "\f1c4"; }
.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
content: "\f1c5"; }
.fa-file-zip-o:before, .fa-file-archive-o:before {
content: "\f1c6"; }
.fa-file-sound-o:before, .fa-file-audio-o:before {
content: "\f1c7"; }
.fa-file-movie-o:before, .fa-file-video-o:before {
content: "\f1c8"; }
.fa-file-code-o:before {
content: "\f1c9"; }
.fa-vine:before {
content: "\f1ca"; }
.fa-codepen:before {
content: "\f1cb"; }
.fa-jsfiddle:before {
content: "\f1cc"; }
.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
content: "\f1cd"; }
.fa-circle-o-notch:before {
content: "\f1ce"; }
.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
content: "\f1d0"; }
.fa-ge:before, .fa-empire:before {
content: "\f1d1"; }
.fa-git-square:before {
content: "\f1d2"; }
.fa-git:before {
content: "\f1d3"; }
.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
content: "\f1d4"; }
.fa-tencent-weibo:before {
content: "\f1d5"; }
.fa-qq:before {
content: "\f1d6"; }
.fa-wechat:before, .fa-weixin:before {
content: "\f1d7"; }
.fa-send:before, .fa-paper-plane:before {
content: "\f1d8"; }
.fa-send-o:before, .fa-paper-plane-o:before {
content: "\f1d9"; }
.fa-history:before {
content: "\f1da"; }
.fa-circle-thin:before {
content: "\f1db"; }
.fa-header:before {
content: "\f1dc"; }
.fa-paragraph:before {
content: "\f1dd"; }
.fa-sliders:before {
content: "\f1de"; }
.fa-share-alt:before {
content: "\f1e0"; }
.fa-share-alt-square:before {
content: "\f1e1"; }
.fa-bomb:before {
content: "\f1e2"; }
.fa-soccer-ball-o:before, .fa-futbol-o:before {
content: "\f1e3"; }
.fa-tty:before {
content: "\f1e4"; }
.fa-binoculars:before {
content: "\f1e5"; }
.fa-plug:before {
content: "\f1e6"; }
.fa-slideshare:before {
content: "\f1e7"; }
.fa-twitch:before {
content: "\f1e8"; }
.fa-yelp:before {
content: "\f1e9"; }
.fa-newspaper-o:before {
content: "\f1ea"; }
.fa-wifi:before {
content: "\f1eb"; }
.fa-calculator:before {
content: "\f1ec"; }
.fa-paypal:before {
content: "\f1ed"; }
.fa-google-wallet:before {
content: "\f1ee"; }
.fa-cc-visa:before {
content: "\f1f0"; }
.fa-cc-mastercard:before {
content: "\f1f1"; }
.fa-cc-discover:before {
content: "\f1f2"; }
.fa-cc-amex:before {
content: "\f1f3"; }
.fa-cc-paypal:before {
content: "\f1f4"; }
.fa-cc-stripe:before {
content: "\f1f5"; }
.fa-bell-slash:before {
content: "\f1f6"; }
.fa-bell-slash-o:before {
content: "\f1f7"; }
.fa-trash:before {
content: "\f1f8"; }
.fa-copyright:before {
content: "\f1f9"; }
.fa-at:before {
content: "\f1fa"; }
.fa-eyedropper:before {
content: "\f1fb"; }
.fa-paint-brush:before {
content: "\f1fc"; }
.fa-birthday-cake:before {
content: "\f1fd"; }
.fa-area-chart:before {
content: "\f1fe"; }
.fa-pie-chart:before {
content: "\f200"; }
.fa-line-chart:before {
content: "\f201"; }
.fa-lastfm:before {
content: "\f202"; }
.fa-lastfm-square:before {
content: "\f203"; }
.fa-toggle-off:before {
content: "\f204"; }
.fa-toggle-on:before {
content: "\f205"; }
.fa-bicycle:before {
content: "\f206"; }
.fa-bus:before {
content: "\f207"; }
.fa-ioxhost:before {
content: "\f208"; }
.fa-angellist:before {
content: "\f209"; }
.fa-cc:before {
content: "\f20a"; }
.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
content: "\f20b"; }
.fa-meanpath:before {
content: "\f20c"; }
.fa-buysellads:before {
content: "\f20d"; }
.fa-connectdevelop:before {
content: "\f20e"; }
.fa-dashcube:before {
content: "\f210"; }
.fa-forumbee:before {
content: "\f211"; }
.fa-leanpub:before {
content: "\f212"; }
.fa-sellsy:before {
content: "\f213"; }
.fa-shirtsinbulk:before {
content: "\f214"; }
.fa-simplybuilt:before {
content: "\f215"; }
.fa-skyatlas:before {
content: "\f216"; }
.fa-cart-plus:before {
content: "\f217"; }
.fa-cart-arrow-down:before {
content: "\f218"; }
.fa-diamond:before {
content: "\f219"; }
.fa-ship:before {
content: "\f21a"; }
.fa-user-secret:before {
content: "\f21b"; }
.fa-motorcycle:before {
content: "\f21c"; }
.fa-street-view:before {
content: "\f21d"; }
.fa-heartbeat:before {
content: "\f21e"; }
.fa-venus:before {
content: "\f221"; }
.fa-mars:before {
content: "\f222"; }
.fa-mercury:before {
content: "\f223"; }
.fa-intersex:before, .fa-transgender:before {
content: "\f224"; }
.fa-transgender-alt:before {
content: "\f225"; }
.fa-venus-double:before {
content: "\f226"; }
.fa-mars-double:before {
content: "\f227"; }
.fa-venus-mars:before {
content: "\f228"; }
.fa-mars-stroke:before {
content: "\f229"; }
.fa-mars-stroke-v:before {
content: "\f22a"; }
.fa-mars-stroke-h:before {
content: "\f22b"; }
.fa-neuter:before {
content: "\f22c"; }
.fa-genderless:before {
content: "\f22d"; }
.fa-facebook-official:before {
content: "\f230"; }
.fa-pinterest-p:before {
content: "\f231"; }
.fa-whatsapp:before {
content: "\f232"; }
.fa-server:before {
content: "\f233"; }
.fa-user-plus:before {
content: "\f234"; }
.fa-user-times:before {
content: "\f235"; }
.fa-hotel:before, .fa-bed:before {
content: "\f236"; }
.fa-viacoin:before {
content: "\f237"; }
.fa-train:before {
content: "\f238"; }
.fa-subway:before {
content: "\f239"; }
.fa-medium:before {
content: "\f23a"; }
.fa-yc:before, .fa-y-combinator:before {
content: "\f23b"; }
.fa-optin-monster:before {
content: "\f23c"; }
.fa-opencart:before {
content: "\f23d"; }
.fa-expeditedssl:before {
content: "\f23e"; }
.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
content: "\f240"; }
.fa-battery-3:before, .fa-battery-three-quarters:before {
content: "\f241"; }
.fa-battery-2:before, .fa-battery-half:before {
content: "\f242"; }
.fa-battery-1:before, .fa-battery-quarter:before {
content: "\f243"; }
.fa-battery-0:before, .fa-battery-empty:before {
content: "\f244"; }
.fa-mouse-pointer:before {
content: "\f245"; }
.fa-i-cursor:before {
content: "\f246"; }
.fa-object-group:before {
content: "\f247"; }
.fa-object-ungroup:before {
content: "\f248"; }
.fa-sticky-note:before {
content: "\f249"; }
.fa-sticky-note-o:before {
content: "\f24a"; }
.fa-cc-jcb:before {
content: "\f24b"; }
.fa-cc-diners-club:before {
content: "\f24c"; }
.fa-clone:before {
content: "\f24d"; }
.fa-balance-scale:before {
content: "\f24e"; }
.fa-hourglass-o:before {
content: "\f250"; }
.fa-hourglass-1:before, .fa-hourglass-start:before {
content: "\f251"; }
.fa-hourglass-2:before, .fa-hourglass-half:before {
content: "\f252"; }
.fa-hourglass-3:before, .fa-hourglass-end:before {
content: "\f253"; }
.fa-hourglass:before {
content: "\f254"; }
.fa-hand-grab-o:before, .fa-hand-rock-o:before {
content: "\f255"; }
.fa-hand-stop-o:before, .fa-hand-paper-o:before {
content: "\f256"; }
.fa-hand-scissors-o:before {
content: "\f257"; }
.fa-hand-lizard-o:before {
content: "\f258"; }
.fa-hand-spock-o:before {
content: "\f259"; }
.fa-hand-pointer-o:before {
content: "\f25a"; }
.fa-hand-peace-o:before {
content: "\f25b"; }
.fa-trademark:before {
content: "\f25c"; }
.fa-registered:before {
content: "\f25d"; }
.fa-creative-commons:before {
content: "\f25e"; }
.fa-gg:before {
content: "\f260"; }
.fa-gg-circle:before {
content: "\f261"; }
.fa-tripadvisor:before {
content: "\f262"; }
.fa-odnoklassniki:before {
content: "\f263"; }
.fa-odnoklassniki-square:before {
content: "\f264"; }
.fa-get-pocket:before {
content: "\f265"; }
.fa-wikipedia-w:before {
content: "\f266"; }
.fa-safari:before {
content: "\f267"; }
.fa-chrome:before {
content: "\f268"; }
.fa-firefox:before {
content: "\f269"; }
.fa-opera:before {
content: "\f26a"; }
.fa-internet-explorer:before {
content: "\f26b"; }
.fa-tv:before, .fa-television:before {
content: "\f26c"; }
.fa-contao:before {
content: "\f26d"; }
.fa-500px:before {
content: "\f26e"; }
.fa-amazon:before {
content: "\f270"; }
.fa-calendar-plus-o:before {
content: "\f271"; }
.fa-calendar-minus-o:before {
content: "\f272"; }
.fa-calendar-times-o:before {
content: "\f273"; }
.fa-calendar-check-o:before {
content: "\f274"; }
.fa-industry:before {
content: "\f275"; }
.fa-map-pin:before {
content: "\f276"; }
.fa-map-signs:before {
content: "\f277"; }
.fa-map-o:before {
content: "\f278"; }
.fa-map:before {
content: "\f279"; }
.fa-commenting:before {
content: "\f27a"; }
.fa-commenting-o:before {
content: "\f27b"; }
.fa-houzz:before {
content: "\f27c"; }
.fa-vimeo:before {
content: "\f27d"; }
.fa-black-tie:before {
content: "\f27e"; }
.fa-fonticons:before {
content: "\f280"; }
.fa-reddit-alien:before {
content: "\f281"; }
.fa-edge:before {
content: "\f282"; }
.fa-credit-card-alt:before {
content: "\f283"; }
.fa-codiepie:before {
content: "\f284"; }
.fa-modx:before {
content: "\f285"; }
.fa-fort-awesome:before {
content: "\f286"; }
.fa-usb:before {
content: "\f287"; }
.fa-product-hunt:before {
content: "\f288"; }
.fa-mixcloud:before {
content: "\f289"; }
.fa-scribd:before {
content: "\f28a"; }
.fa-pause-circle:before {
content: "\f28b"; }
.fa-pause-circle-o:before {
content: "\f28c"; }
.fa-stop-circle:before {
content: "\f28d"; }
.fa-stop-circle-o:before {
content: "\f28e"; }
.fa-shopping-bag:before {
content: "\f290"; }
.fa-shopping-basket:before {
content: "\f291"; }
.fa-hashtag:before {
content: "\f292"; }
.fa-bluetooth:before {
content: "\f293"; }
.fa-bluetooth-b:before {
content: "\f294"; }
.fa-percent:before {
content: "\f295"; }
.fa-gitlab:before {
content: "\f296"; }
.fa-wpbeginner:before {
content: "\f297"; }
.fa-wpforms:before {
content: "\f298"; }
.fa-envira:before {
content: "\f299"; }
.fa-universal-access:before {
content: "\f29a"; }
.fa-wheelchair-alt:before {
content: "\f29b"; }
.fa-question-circle-o:before {
content: "\f29c"; }
.fa-blind:before {
content: "\f29d"; }
.fa-audio-description:before {
content: "\f29e"; }
.fa-volume-control-phone:before {
content: "\f2a0"; }
.fa-braille:before {
content: "\f2a1"; }
.fa-assistive-listening-systems:before {
content: "\f2a2"; }
.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
content: "\f2a3"; }
.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
content: "\f2a4"; }
.fa-glide:before {
content: "\f2a5"; }
.fa-glide-g:before {
content: "\f2a6"; }
.fa-signing:before, .fa-sign-language:before {
content: "\f2a7"; }
.fa-low-vision:before {
content: "\f2a8"; }
.fa-viadeo:before {
content: "\f2a9"; }
.fa-viadeo-square:before {
content: "\f2aa"; }
.fa-snapchat:before {
content: "\f2ab"; }
.fa-snapchat-ghost:before {
content: "\f2ac"; }
.fa-snapchat-square:before {
content: "\f2ad"; }
.fa-pied-piper:before {
content: "\f2ae"; }
.fa-first-order:before {
content: "\f2b0"; }
.fa-yoast:before {
content: "\f2b1"; }
.fa-themeisle:before {
content: "\f2b2"; }
.fa-google-plus-circle:before, .fa-google-plus-official:before {
content: "\f2b3"; }
.fa-fa:before, .fa-font-awesome:before {
content: "\f2b4"; }
.fa-handshake-o:before {
content: "\f2b5"; }
.fa-envelope-open:before {
content: "\f2b6"; }
.fa-envelope-open-o:before {
content: "\f2b7"; }
.fa-linode:before {
content: "\f2b8"; }
.fa-address-book:before {
content: "\f2b9"; }
.fa-address-book-o:before {
content: "\f2ba"; }
.fa-vcard:before, .fa-address-card:before {
content: "\f2bb"; }
.fa-vcard-o:before, .fa-address-card-o:before {
content: "\f2bc"; }
.fa-user-circle:before {
content: "\f2bd"; }
.fa-user-circle-o:before {
content: "\f2be"; }
.fa-user-o:before {
content: "\f2c0"; }
.fa-id-badge:before {
content: "\f2c1"; }
.fa-drivers-license:before, .fa-id-card:before {
content: "\f2c2"; }
.fa-drivers-license-o:before, .fa-id-card-o:before {
content: "\f2c3"; }
.fa-quora:before {
content: "\f2c4"; }
.fa-free-code-camp:before {
content: "\f2c5"; }
.fa-telegram:before {
content: "\f2c6"; }
.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
content: "\f2c7"; }
.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
content: "\f2c8"; }
.fa-thermometer-2:before, .fa-thermometer-half:before {
content: "\f2c9"; }
.fa-thermometer-1:before, .fa-thermometer-quarter:before {
content: "\f2ca"; }
.fa-thermometer-0:before, .fa-thermometer-empty:before {
content: "\f2cb"; }
.fa-shower:before {
content: "\f2cc"; }
.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
content: "\f2cd"; }
.fa-podcast:before {
content: "\f2ce"; }
.fa-window-maximize:before {
content: "\f2d0"; }
.fa-window-minimize:before {
content: "\f2d1"; }
.fa-window-restore:before {
content: "\f2d2"; }
.fa-times-rectangle:before, .fa-window-close:before {
content: "\f2d3"; }
.fa-times-rectangle-o:before, .fa-window-close-o:before {
content: "\f2d4"; }
.fa-bandcamp:before {
content: "\f2d5"; }
.fa-grav:before {
content: "\f2d6"; }
.fa-etsy:before {
content: "\f2d7"; }
.fa-imdb:before {
content: "\f2d8"; }
.fa-ravelry:before {
content: "\f2d9"; }
.fa-eercast:before {
content: "\f2da"; }
.fa-microchip:before {
content: "\f2db"; }
.fa-snowflake-o:before {
content: "\f2dc"; }
.fa-superpowers:before {
content: "\f2dd"; }
.fa-wpexplorer:before {
content: "\f2de"; }
.fa-meetup:before {
content: "\f2e0"; }
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0; }
.sr-only-focusable:active, .sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto; }  :root {
--blue: #4ecfcc;
--indigo: #6610f2;
--purple: #6f42c1;
--pink: #e83e8c;
--red: #e02537;
--orange: #fd7e14;
--yellow: #ffc107;
--green: #28a745;
--teal: #20c997;
--cyan: #17a2b8;
--white: #fff;
--gray: #6c757d;
--gray-dark: #343a40;
--primary: #4ecfcc;
--secondary: #6c757d;
--success: #28a745;
--info: #17a2b8;
--warning: #ffc107;
--danger: #e02537;
--light: #f8f9fa;
--dark: #343a40;
--breakpoint-xs: 0;
--breakpoint-sm: 641px;
--breakpoint-md: 991px;
--breakpoint-lg: 1170px;
--breakpoint-xl: 1170px;
--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Roboto", 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 {
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, "Roboto", 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 {
outline: 0 !important; }
hr {
box-sizing: content-box;
height: 0;
overflow: visible; }
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem; }
p {
margin-top: 0;
margin-bottom: 1rem; }
abbr[title],
abbr[data-original-title] {
text-decoration: underline;
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: #4ecfcc;
text-decoration: none;
background-color: transparent; }
a:hover {
color: #2ca4a1;
text-decoration: underline; }
a:not([href]):not([tabindex]) {
color: inherit;
text-decoration: none; }
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
color: inherit;
text-decoration: none; }
a:not([href]):not([tabindex]):focus {
outline: 0; }
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; }
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: 0.75rem;
padding-bottom: 0.75rem;
color: #6c757d;
text-align: left;
caption-side: bottom; }
th {
text-align: inherit; }
label {
display: inline-block;
margin-bottom: 0.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; }
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"] {
box-sizing: border-box;
padding: 0; }
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
-webkit-appearance: listbox; }
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: 0.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: 0.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: 0.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: 0.25rem;
background-color: #fff;
border: 1px solid #dee2e6;
max-width: 100%;
height: auto; }
.figure {
display: inline-block; }
.figure-img {
margin-bottom: 0.5rem;
line-height: 1; }
.figure-caption {
font-size: 90%;
color: #6c757d; }
code {
font-size: 87.5%;
color: #e83e8c;
word-break: break-word; }
a &gt; code {
color: inherit; }
kbd {
padding: 0.2rem 0.4rem;
font-size: 87.5%;
color: #fff;
background-color: #212529; }
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 {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto; }
@media (min-width: 641px) {
.container {
max-width: 641px; } }
@media (min-width: 991px) {
.container {
max-width: 991px; } }
@media (min-width: 1170px) {
.container {
max-width: 1170px; } }
@media (min-width: 1170px) {
.container {
max-width: 1170px; } }
.container-fluid {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto; }
.row {
display: flex;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px; }
.no-gutters {
margin-right: 0;
margin-left: 0; }
.no-gutters &gt; .col,
.no-gutters &gt; [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: 15px;
padding-left: 15px; }
.col {
flex-basis: 0;
flex-grow: 1;
max-width: 100%; }
.col-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%; }
.col-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-3 {
flex: 0 0 25%;
max-width: 25%; }
.col-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-6 {
flex: 0 0 50%;
max-width: 50%; }
.col-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-9 {
flex: 0 0 75%;
max-width: 75%; }
.col-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-12 {
flex: 0 0 100%;
max-width: 100%; }
.order-first {
order: -1; }
.order-last {
order: 13; }
.order-0 {
order: 0; }
.order-1 {
order: 1; }
.order-2 {
order: 2; }
.order-3 {
order: 3; }
.order-4 {
order: 4; }
.order-5 {
order: 5; }
.order-6 {
order: 6; }
.order-7 {
order: 7; }
.order-8 {
order: 8; }
.order-9 {
order: 9; }
.order-10 {
order: 10; }
.order-11 {
order: 11; }
.order-12 {
order: 12; }
.offset-1 {
margin-left: 8.3333333333%; }
.offset-2 {
margin-left: 16.6666666667%; }
.offset-3 {
margin-left: 25%; }
.offset-4 {
margin-left: 33.3333333333%; }
.offset-5 {
margin-left: 41.6666666667%; }
.offset-6 {
margin-left: 50%; }
.offset-7 {
margin-left: 58.3333333333%; }
.offset-8 {
margin-left: 66.6666666667%; }
.offset-9 {
margin-left: 75%; }
.offset-10 {
margin-left: 83.3333333333%; }
.offset-11 {
margin-left: 91.6666666667%; }
@media (min-width: 641px) {
.col-sm {
flex-basis: 0;
flex-grow: 1;
max-width: 100%; }
.col-sm-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%; }
.col-sm-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-sm-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-sm-3 {
flex: 0 0 25%;
max-width: 25%; }
.col-sm-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-sm-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-sm-6 {
flex: 0 0 50%;
max-width: 50%; }
.col-sm-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-sm-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-sm-9 {
flex: 0 0 75%;
max-width: 75%; }
.col-sm-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-sm-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-sm-12 {
flex: 0 0 100%;
max-width: 100%; }
.order-sm-first {
order: -1; }
.order-sm-last {
order: 13; }
.order-sm-0 {
order: 0; }
.order-sm-1 {
order: 1; }
.order-sm-2 {
order: 2; }
.order-sm-3 {
order: 3; }
.order-sm-4 {
order: 4; }
.order-sm-5 {
order: 5; }
.order-sm-6 {
order: 6; }
.order-sm-7 {
order: 7; }
.order-sm-8 {
order: 8; }
.order-sm-9 {
order: 9; }
.order-sm-10 {
order: 10; }
.order-sm-11 {
order: 11; }
.order-sm-12 {
order: 12; }
.offset-sm-0 {
margin-left: 0; }
.offset-sm-1 {
margin-left: 8.3333333333%; }
.offset-sm-2 {
margin-left: 16.6666666667%; }
.offset-sm-3 {
margin-left: 25%; }
.offset-sm-4 {
margin-left: 33.3333333333%; }
.offset-sm-5 {
margin-left: 41.6666666667%; }
.offset-sm-6 {
margin-left: 50%; }
.offset-sm-7 {
margin-left: 58.3333333333%; }
.offset-sm-8 {
margin-left: 66.6666666667%; }
.offset-sm-9 {
margin-left: 75%; }
.offset-sm-10 {
margin-left: 83.3333333333%; }
.offset-sm-11 {
margin-left: 91.6666666667%; } }
@media (min-width: 991px) {
.col-md {
flex-basis: 0;
flex-grow: 1;
max-width: 100%; }
.col-md-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%; }
.col-md-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-md-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-md-3 {
flex: 0 0 25%;
max-width: 25%; }
.col-md-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-md-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-md-6 {
flex: 0 0 50%;
max-width: 50%; }
.col-md-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-md-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-md-9 {
flex: 0 0 75%;
max-width: 75%; }
.col-md-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-md-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-md-12 {
flex: 0 0 100%;
max-width: 100%; }
.order-md-first {
order: -1; }
.order-md-last {
order: 13; }
.order-md-0 {
order: 0; }
.order-md-1 {
order: 1; }
.order-md-2 {
order: 2; }
.order-md-3 {
order: 3; }
.order-md-4 {
order: 4; }
.order-md-5 {
order: 5; }
.order-md-6 {
order: 6; }
.order-md-7 {
order: 7; }
.order-md-8 {
order: 8; }
.order-md-9 {
order: 9; }
.order-md-10 {
order: 10; }
.order-md-11 {
order: 11; }
.order-md-12 {
order: 12; }
.offset-md-0 {
margin-left: 0; }
.offset-md-1 {
margin-left: 8.3333333333%; }
.offset-md-2 {
margin-left: 16.6666666667%; }
.offset-md-3 {
margin-left: 25%; }
.offset-md-4 {
margin-left: 33.3333333333%; }
.offset-md-5 {
margin-left: 41.6666666667%; }
.offset-md-6 {
margin-left: 50%; }
.offset-md-7 {
margin-left: 58.3333333333%; }
.offset-md-8 {
margin-left: 66.6666666667%; }
.offset-md-9 {
margin-left: 75%; }
.offset-md-10 {
margin-left: 83.3333333333%; }
.offset-md-11 {
margin-left: 91.6666666667%; } }
@media (min-width: 1170px) {
.col-lg {
flex-basis: 0;
flex-grow: 1;
max-width: 100%; }
.col-lg-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%; }
.col-lg-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-lg-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-lg-3 {
flex: 0 0 25%;
max-width: 25%; }
.col-lg-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-lg-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-lg-6 {
flex: 0 0 50%;
max-width: 50%; }
.col-lg-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-lg-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-lg-9 {
flex: 0 0 75%;
max-width: 75%; }
.col-lg-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-lg-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-lg-12 {
flex: 0 0 100%;
max-width: 100%; }
.order-lg-first {
order: -1; }
.order-lg-last {
order: 13; }
.order-lg-0 {
order: 0; }
.order-lg-1 {
order: 1; }
.order-lg-2 {
order: 2; }
.order-lg-3 {
order: 3; }
.order-lg-4 {
order: 4; }
.order-lg-5 {
order: 5; }
.order-lg-6 {
order: 6; }
.order-lg-7 {
order: 7; }
.order-lg-8 {
order: 8; }
.order-lg-9 {
order: 9; }
.order-lg-10 {
order: 10; }
.order-lg-11 {
order: 11; }
.order-lg-12 {
order: 12; }
.offset-lg-0 {
margin-left: 0; }
.offset-lg-1 {
margin-left: 8.3333333333%; }
.offset-lg-2 {
margin-left: 16.6666666667%; }
.offset-lg-3 {
margin-left: 25%; }
.offset-lg-4 {
margin-left: 33.3333333333%; }
.offset-lg-5 {
margin-left: 41.6666666667%; }
.offset-lg-6 {
margin-left: 50%; }
.offset-lg-7 {
margin-left: 58.3333333333%; }
.offset-lg-8 {
margin-left: 66.6666666667%; }
.offset-lg-9 {
margin-left: 75%; }
.offset-lg-10 {
margin-left: 83.3333333333%; }
.offset-lg-11 {
margin-left: 91.6666666667%; } }
@media (min-width: 1170px) {
.col-xl {
flex-basis: 0;
flex-grow: 1;
max-width: 100%; }
.col-xl-auto {
flex: 0 0 auto;
width: auto;
max-width: 100%; }
.col-xl-1 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-xl-2 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-xl-3 {
flex: 0 0 25%;
max-width: 25%; }
.col-xl-4 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-xl-5 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-xl-6 {
flex: 0 0 50%;
max-width: 50%; }
.col-xl-7 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-xl-8 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-xl-9 {
flex: 0 0 75%;
max-width: 75%; }
.col-xl-10 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-xl-11 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-xl-12 {
flex: 0 0 100%;
max-width: 100%; }
.order-xl-first {
order: -1; }
.order-xl-last {
order: 13; }
.order-xl-0 {
order: 0; }
.order-xl-1 {
order: 1; }
.order-xl-2 {
order: 2; }
.order-xl-3 {
order: 3; }
.order-xl-4 {
order: 4; }
.order-xl-5 {
order: 5; }
.order-xl-6 {
order: 6; }
.order-xl-7 {
order: 7; }
.order-xl-8 {
order: 8; }
.order-xl-9 {
order: 9; }
.order-xl-10 {
order: 10; }
.order-xl-11 {
order: 11; }
.order-xl-12 {
order: 12; }
.offset-xl-0 {
margin-left: 0; }
.offset-xl-1 {
margin-left: 8.3333333333%; }
.offset-xl-2 {
margin-left: 16.6666666667%; }
.offset-xl-3 {
margin-left: 25%; }
.offset-xl-4 {
margin-left: 33.3333333333%; }
.offset-xl-5 {
margin-left: 41.6666666667%; }
.offset-xl-6 {
margin-left: 50%; }
.offset-xl-7 {
margin-left: 58.3333333333%; }
.offset-xl-8 {
margin-left: 66.6666666667%; }
.offset-xl-9 {
margin-left: 75%; }
.offset-xl-10 {
margin-left: 83.3333333333%; }
.offset-xl-11 {
margin-left: 91.6666666667%; } }
.table {
width: 100%;
margin-bottom: 1rem;
color: #212529; }
.table th,
.table td {
padding: 0.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: 0.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 &gt; th,
.table-primary &gt; td {
background-color: #cdf2f1; }
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
border-color: #a3e6e4; }
.table-hover .table-primary:hover {
background-color: #b9edeb; }
.table-hover .table-primary:hover &gt; td,
.table-hover .table-primary:hover &gt; th {
background-color: #b9edeb; }
.table-secondary,
.table-secondary &gt; th,
.table-secondary &gt; 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 &gt; td,
.table-hover .table-secondary:hover &gt; th {
background-color: #c8cbcf; }
.table-success,
.table-success &gt; th,
.table-success &gt; 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 &gt; td,
.table-hover .table-success:hover &gt; th {
background-color: #b1dfbb; }
.table-info,
.table-info &gt; th,
.table-info &gt; 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 &gt; td,
.table-hover .table-info:hover &gt; th {
background-color: #abdde5; }
.table-warning,
.table-warning &gt; th,
.table-warning &gt; 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 &gt; td,
.table-hover .table-warning:hover &gt; th {
background-color: #ffe8a1; }
.table-danger,
.table-danger &gt; th,
.table-danger &gt; td {
background-color: #f6c2c7; }
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
border-color: #ef8e97; }
.table-hover .table-danger:hover {
background-color: #f3acb3; }
.table-hover .table-danger:hover &gt; td,
.table-hover .table-danger:hover &gt; th {
background-color: #f3acb3; }
.table-light,
.table-light &gt; th,
.table-light &gt; 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 &gt; td,
.table-hover .table-light:hover &gt; th {
background-color: #ececf6; }
.table-dark,
.table-dark &gt; th,
.table-dark &gt; 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 &gt; td,
.table-hover .table-dark:hover &gt; th {
background-color: #b9bbbe; }
.table-active,
.table-active &gt; th,
.table-active &gt; 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 &gt; td,
.table-hover .table-active:hover &gt; 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: 640.98px) {
.table-responsive-sm {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar; }
.table-responsive-sm &gt; .table-bordered {
border: 0; } }
@media (max-width: 990.98px) {
.table-responsive-md {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar; }
.table-responsive-md &gt; .table-bordered {
border: 0; } }
@media (max-width: 1169.98px) {
.table-responsive-lg {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar; }
.table-responsive-lg &gt; .table-bordered {
border: 0; } }
@media (max-width: 1169.98px) {
.table-responsive-xl {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar; }
.table-responsive-xl &gt; .table-bordered {
border: 0; } }
.table-responsive {
display: block;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar; }
.table-responsive &gt; .table-bordered {
border: 0; }
.form-control {
display: block;
width: 100%;
height: calc(2.25rem + 2px);
padding: 0.375rem 0.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: 0;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
@media (prefers-reduced-motion: reduce) {
.form-control {
transition: none; } }
.form-control::-ms-expand {
background-color: transparent;
border: 0; }
.form-control:focus {
color: #495057;
background-color: #fff;
border-color: #b2eae9;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(78, 207, 204, 0.25); }
.form-control::placeholder {
color: #6c757d;
opacity: 1; }
.form-control:disabled, .form-control[readonly] {
background-color: #e9ecef;
opacity: 1; }
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(0.375rem + 1px);
padding-bottom: calc(0.375rem + 1px);
margin-bottom: 0;
font-size: inherit;
line-height: 1.5; }
.col-form-label-lg {
padding-top: calc(0.5rem + 1px);
padding-bottom: calc(0.5rem + 1px);
font-size: 1.25rem;
line-height: 1.5; }
.col-form-label-sm {
padding-top: calc(0.25rem + 1px);
padding-bottom: calc(0.25rem + 1px);
font-size: 0.875rem;
line-height: 1.5; }
.form-control-plaintext {
display: block;
width: 100%;
padding-top: 0.375rem;
padding-bottom: 0.375rem;
margin-bottom: 0;
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.8125rem + 2px);
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5; }
.form-control-lg {
height: calc(2.875rem + 2px);
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5; }
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: 0.25rem; }
.form-row {
display: flex;
flex-wrap: wrap;
margin-right: -5px;
margin-left: -5px; }
.form-row &gt; .col,
.form-row &gt; [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: 0.3rem;
margin-left: -1.25rem; }
.form-check-input:disabled ~ .form-check-label {
color: #6c757d; }
.form-check-label {
margin-bottom: 0; }
.form-check-inline {
display: inline-flex;
align-items: center;
padding-left: 0;
margin-right: 0.75rem; }
.form-check-inline .form-check-input {
position: static;
margin-top: 0;
margin-right: 0.3125rem;
margin-left: 0; }
.valid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 80%;
color: #28a745; }
.valid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
display: none;
max-width: 100%;
padding: 0.25rem 0.5rem;
margin-top: .1rem;
font-size: 0.875rem;
line-height: 1.5;
color: #fff;
background-color: rgba(40, 167, 69, 0.9); }
.was-validated .form-control:valid, .form-control.is-valid {
border-color: #28a745;
padding-right: 2.25rem;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 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: center right calc(2.25rem / 4);
background-size: calc(2.25rem / 2) calc(2.25rem / 2); }
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
border-color: #28a745;
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip {
display: block; }
.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
padding-right: 2.25rem;
background-position: top calc(2.25rem / 4) right calc(2.25rem / 4); }
.was-validated .custom-select:valid, .custom-select.is-valid {
border-color: #28a745;
padding-right: 3.4375rem;
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' 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") no-repeat center right 1.75rem/1.125rem 1.125rem; }
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
border-color: #28a745;
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
display: block; }
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
display: block; }
.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 ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
display: block; }
.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 {
box-shadow: 0 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 ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
display: block; }
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
border-color: #28a745;
box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
.invalid-feedback {
display: none;
width: 100%;
margin-top: 0.25rem;
font-size: 80%;
color: #e02537; }
.invalid-tooltip {
position: absolute;
top: 100%;
z-index: 5;
display: none;
max-width: 100%;
padding: 0.25rem 0.5rem;
margin-top: .1rem;
font-size: 0.875rem;
line-height: 1.5;
color: #fff;
background-color: rgba(224, 37, 55, 0.9); }
.was-validated .form-control:invalid, .form-control.is-invalid {
border-color: #e02537;
padding-right: 2.25rem;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23e02537' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23e02537' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
background-repeat: no-repeat;
background-position: center right calc(2.25rem / 4);
background-size: calc(2.25rem / 2) calc(2.25rem / 2); }
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
border-color: #e02537;
box-shadow: 0 0 0 0.2rem rgba(224, 37, 55, 0.25); }
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
display: block; }
.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
padding-right: 2.25rem;
background-position: top calc(2.25rem / 4) right calc(2.25rem / 4); }
.was-validated .custom-select:invalid, .custom-select.is-invalid {
border-color: #e02537;
padding-right: 3.4375rem;
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23e02537' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23e02537' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") no-repeat center right 1.75rem/1.125rem 1.125rem; }
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
border-color: #e02537;
box-shadow: 0 0 0 0.2rem rgba(224, 37, 55, 0.25); }
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
display: block; }
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
display: block; }
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
color: #e02537; }
.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: #e02537; }
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
border-color: #e02537; }
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
display: block; }
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
border-color: #e65260;
background-color: #e65260; }
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(224, 37, 55, 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: #e02537; }
.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
border-color: #e02537; }
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
display: block; }
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
border-color: #e02537;
box-shadow: 0 0 0 0.2rem rgba(224, 37, 55, 0.25); }
.form-inline {
display: flex;
flex-flow: row wrap;
align-items: center; }
.form-inline .form-check {
width: 100%; }
@media (min-width: 641px) {
.form-inline label {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 0; }
.form-inline .form-group {
display: flex;
flex: 0 0 auto;
flex-flow: row wrap;
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: flex;
align-items: center;
justify-content: center;
width: auto;
padding-left: 0; }
.form-inline .form-check-input {
position: relative;
flex-shrink: 0;
margin-top: 0;
margin-right: 0.25rem;
margin-left: 0; }
.form-inline .custom-control {
align-items: 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;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: 0;
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; }
@media (prefers-reduced-motion: reduce) {
.btn {
transition: none; } }
.btn:hover {
color: #212529;
text-decoration: none; }
.btn:focus, .btn.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(78, 207, 204, 0.25); }
.btn.disabled, .btn:disabled {
opacity: 0.65; }
a.btn.disabled,
fieldset:disabled a.btn {
pointer-events: none; }
.btn-primary {
color: #212529;
background-color: #4ecfcc;
border-color: #4ecfcc; }
.btn-primary:hover {
color: #212529;
background-color: #35c2bf;
border-color: #32b8b5; }
.btn-primary:focus, .btn-primary.focus {
box-shadow: 0 0 0 0.2rem rgba(71, 182, 180, 0.5); }
.btn-primary.disabled, .btn-primary:disabled {
color: #212529;
background-color: #4ecfcc;
border-color: #4ecfcc; }
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show &gt; .btn-primary.dropdown-toggle {
color: #fff;
background-color: #32b8b5;
border-color: #2faeab; }
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show &gt; .btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(71, 182, 180, 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-secondary.dropdown-toggle:focus {
box-shadow: 0 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-success.dropdown-toggle:focus {
box-shadow: 0 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-info.dropdown-toggle:focus {
box-shadow: 0 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
.btn-danger {
color: #fff;
background-color: #e02537;
border-color: #e02537; }
.btn-danger:hover {
color: #fff;
background-color: #c31c2c;
border-color: #b81a29; }
.btn-danger:focus, .btn-danger.focus {
box-shadow: 0 0 0 0.2rem rgba(229, 70, 85, 0.5); }
.btn-danger.disabled, .btn-danger:disabled {
color: #fff;
background-color: #e02537;
border-color: #e02537; }
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show &gt; .btn-danger.dropdown-toggle {
color: #fff;
background-color: #b81a29;
border-color: #ad1927; }
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show &gt; .btn-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(229, 70, 85, 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-light.dropdown-toggle:focus {
box-shadow: 0 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
.btn-outline-primary {
color: #4ecfcc;
border-color: #4ecfcc; }
.btn-outline-primary:hover {
color: #212529;
background-color: #4ecfcc;
border-color: #4ecfcc; }
.btn-outline-primary:focus, .btn-outline-primary.focus {
box-shadow: 0 0 0 0.2rem rgba(78, 207, 204, 0.5); }
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
color: #4ecfcc;
background-color: transparent; }
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show &gt; .btn-outline-primary.dropdown-toggle {
color: #212529;
background-color: #4ecfcc;
border-color: #4ecfcc; }
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show &gt; .btn-outline-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(78, 207, 204, 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-outline-secondary.dropdown-toggle:focus {
box-shadow: 0 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-outline-success.dropdown-toggle:focus {
box-shadow: 0 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-outline-info.dropdown-toggle:focus {
box-shadow: 0 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-outline-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
.btn-outline-danger {
color: #e02537;
border-color: #e02537; }
.btn-outline-danger:hover {
color: #fff;
background-color: #e02537;
border-color: #e02537; }
.btn-outline-danger:focus, .btn-outline-danger.focus {
box-shadow: 0 0 0 0.2rem rgba(224, 37, 55, 0.5); }
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
color: #e02537;
background-color: transparent; }
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show &gt; .btn-outline-danger.dropdown-toggle {
color: #fff;
background-color: #e02537;
border-color: #e02537; }
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show &gt; .btn-outline-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(224, 37, 55, 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-outline-light.dropdown-toggle:focus {
box-shadow: 0 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 {
box-shadow: 0 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 &gt; .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 &gt; .btn-outline-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
.btn-link {
font-weight: 400;
color: #4ecfcc; }
.btn-link:hover {
color: #2ca4a1;
text-decoration: underline; }
.btn-link:focus, .btn-link.focus {
text-decoration: underline;
box-shadow: none; }
.btn-link:disabled, .btn-link.disabled {
color: #6c757d;
pointer-events: none; }
.btn-lg, .btn-group-lg &gt; .btn {
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5;
border-radius: 0; }
.btn-sm, .btn-group-sm &gt; .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
border-radius: 0; }
.btn-block {
display: block;
width: 100%; }
.btn-block + .btn-block {
margin-top: 0.5rem; }
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
width: 100%; }
.fade {
transition: opacity 0.15s linear; }
@media (prefers-reduced-motion: reduce) {
.fade {
transition: none; } }
.fade:not(.show) {
opacity: 0; }
.collapse:not(.show) {
display: none; }
.collapsing {
position: relative;
height: 0;
overflow: hidden;
transition: height 0.35s ease; }
@media (prefers-reduced-motion: reduce) {
.collapsing {
transition: none; } }
.dropup,
.dropright,
.dropdown,
.dropleft {
position: relative; }
.dropdown-toggle {
white-space: nowrap; }
.dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid;
border-right: 0.3em solid transparent;
border-bottom: 0;
border-left: 0.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: 0.5rem 0;
margin: 0.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); }
.dropdown-menu-left {
right: auto;
left: 0; }
.dropdown-menu-right {
right: 0;
left: auto; }
@media (min-width: 641px) {
.dropdown-menu-sm-left {
right: auto;
left: 0; }
.dropdown-menu-sm-right {
right: 0;
left: auto; } }
@media (min-width: 991px) {
.dropdown-menu-md-left {
right: auto;
left: 0; }
.dropdown-menu-md-right {
right: 0;
left: auto; } }
@media (min-width: 1170px) {
.dropdown-menu-lg-left {
right: auto;
left: 0; }
.dropdown-menu-lg-right {
right: 0;
left: auto; } }
@media (min-width: 1170px) {
.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: 0.125rem; }
.dropup .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0;
border-right: 0.3em solid transparent;
border-bottom: 0.3em solid;
border-left: 0.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: 0.125rem; }
.dropright .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid transparent;
border-right: 0;
border-bottom: 0.3em solid transparent;
border-left: 0.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: 0.125rem; }
.dropleft .dropdown-toggle::after {
display: inline-block;
margin-left: 0.255em;
vertical-align: 0.255em;
content: ""; }
.dropleft .dropdown-toggle::after {
display: none; }
.dropleft .dropdown-toggle::before {
display: inline-block;
margin-right: 0.255em;
vertical-align: 0.255em;
content: "";
border-top: 0.3em solid transparent;
border-right: 0.3em solid;
border-bottom: 0.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: 0.5rem 0;
overflow: hidden;
border-top: 1px solid #e9ecef; }
.dropdown-item {
display: block;
width: 100%;
padding: 0.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: #4ecfcc; }
.dropdown-item.disabled, .dropdown-item:disabled {
color: #6c757d;
pointer-events: none;
background-color: transparent; }
.dropdown-menu.show {
display: block; }
.dropdown-header {
display: block;
padding: 0.5rem 1.5rem;
margin-bottom: 0;
font-size: 0.875rem;
color: #6c757d;
white-space: nowrap; }
.dropdown-item-text {
display: block;
padding: 0.25rem 1.5rem;
color: #212529; }
.btn-group,
.btn-group-vertical {
position: relative;
display: inline-flex;
vertical-align: middle; }
.btn-group &gt; .btn,
.btn-group-vertical &gt; .btn {
position: relative;
flex: 1 1 auto; }
.btn-group &gt; .btn:hover,
.btn-group-vertical &gt; .btn:hover {
z-index: 1; }
.btn-group &gt; .btn:focus, .btn-group &gt; .btn:active, .btn-group &gt; .btn.active,
.btn-group-vertical &gt; .btn:focus,
.btn-group-vertical &gt; .btn:active,
.btn-group-vertical &gt; .btn.active {
z-index: 1; }
.btn-toolbar {
display: flex;
flex-wrap: wrap;
justify-content: flex-start; }
.btn-toolbar .input-group {
width: auto; }
.btn-group &gt; .btn:not(:first-child),
.btn-group &gt; .btn-group:not(:first-child) {
margin-left: -1px; }
.dropdown-toggle-split {
padding-right: 0.5625rem;
padding-left: 0.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 &gt; .btn + .dropdown-toggle-split {
padding-right: 0.375rem;
padding-left: 0.375rem; }
.btn-lg + .dropdown-toggle-split, .btn-group-lg &gt; .btn + .dropdown-toggle-split {
padding-right: 0.75rem;
padding-left: 0.75rem; }
.btn-group-vertical {
flex-direction: column;
align-items: flex-start;
justify-content: center; }
.btn-group-vertical &gt; .btn,
.btn-group-vertical &gt; .btn-group {
width: 100%; }
.btn-group-vertical &gt; .btn:not(:first-child),
.btn-group-vertical &gt; .btn-group:not(:first-child) {
margin-top: -1px; }
.btn-group-toggle &gt; .btn,
.btn-group-toggle &gt; .btn-group &gt; .btn {
margin-bottom: 0; }
.btn-group-toggle &gt; .btn input[type="radio"],
.btn-group-toggle &gt; .btn input[type="checkbox"],
.btn-group-toggle &gt; .btn-group &gt; .btn input[type="radio"],
.btn-group-toggle &gt; .btn-group &gt; .btn input[type="checkbox"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none; }
.input-group {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: stretch;
width: 100%; }
.input-group &gt; .form-control,
.input-group &gt; .form-control-plaintext,
.input-group &gt; .custom-select,
.input-group &gt; .custom-file {
position: relative;
flex: 1 1 auto;
width: 1%;
margin-bottom: 0; }
.input-group &gt; .form-control + .form-control,
.input-group &gt; .form-control + .custom-select,
.input-group &gt; .form-control + .custom-file,
.input-group &gt; .form-control-plaintext + .form-control,
.input-group &gt; .form-control-plaintext + .custom-select,
.input-group &gt; .form-control-plaintext + .custom-file,
.input-group &gt; .custom-select + .form-control,
.input-group &gt; .custom-select + .custom-select,
.input-group &gt; .custom-select + .custom-file,
.input-group &gt; .custom-file + .form-control,
.input-group &gt; .custom-file + .custom-select,
.input-group &gt; .custom-file + .custom-file {
margin-left: -1px; }
.input-group &gt; .form-control:focus,
.input-group &gt; .custom-select:focus,
.input-group &gt; .custom-file .custom-file-input:focus ~ .custom-file-label {
z-index: 3; }
.input-group &gt; .custom-file .custom-file-input:focus {
z-index: 4; }
.input-group &gt; .custom-file {
display: flex;
align-items: center; }
.input-group-prepend,
.input-group-append {
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: flex;
align-items: center;
padding: 0.375rem 0.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; }
.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
margin-top: 0; }
.input-group-lg &gt; .form-control:not(textarea),
.input-group-lg &gt; .custom-select {
height: calc(2.875rem + 2px); }
.input-group-lg &gt; .form-control,
.input-group-lg &gt; .custom-select,
.input-group-lg &gt; .input-group-prepend &gt; .input-group-text,
.input-group-lg &gt; .input-group-append &gt; .input-group-text,
.input-group-lg &gt; .input-group-prepend &gt; .btn,
.input-group-lg &gt; .input-group-append &gt; .btn {
padding: 0.5rem 1rem;
font-size: 1.25rem;
line-height: 1.5; }
.input-group-sm &gt; .form-control:not(textarea),
.input-group-sm &gt; .custom-select {
height: calc(1.8125rem + 2px); }
.input-group-sm &gt; .form-control,
.input-group-sm &gt; .custom-select,
.input-group-sm &gt; .input-group-prepend &gt; .input-group-text,
.input-group-sm &gt; .input-group-append &gt; .input-group-text,
.input-group-sm &gt; .input-group-prepend &gt; .btn,
.input-group-sm &gt; .input-group-append &gt; .btn {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5; }
.input-group-lg &gt; .custom-select,
.input-group-sm &gt; .custom-select {
padding-right: 1.75rem; }
.custom-control {
position: relative;
display: block;
min-height: 1.5rem;
padding-left: 1.5rem; }
.custom-control-inline {
display: inline-flex;
margin-right: 1rem; }
.custom-control-input {
position: absolute;
z-index: -1;
opacity: 0; }
.custom-control-input:checked ~ .custom-control-label::before {
color: #fff;
border-color: #4ecfcc;
background-color: #4ecfcc; }
.custom-control-input:focus ~ .custom-control-label::before {
box-shadow: 0 0 0 0.2rem rgba(78, 207, 204, 0.25); }
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
border-color: #b2eae9; }
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
color: #fff;
background-color: #daf5f4;
border-color: #daf5f4; }
.custom-control-input:disabled ~ .custom-control-label {
color: #6c757d; }
.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: 0.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: 0.25rem;
left: -1.5rem;
display: block;
width: 1rem;
height: 1rem;
content: "";
background: no-repeat 50% / 50% 50%; }
.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' 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"); }
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
border-color: #4ecfcc;
background-color: #4ecfcc; }
.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' 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(78, 207, 204, 0.5); }
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
background-color: rgba(78, 207, 204, 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' 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(78, 207, 204, 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: 0.5rem; }
.custom-switch .custom-control-label::after {
top: calc(0.25rem + 2px);
left: calc(-2.25rem + 2px);
width: calc(1rem - 4px);
height: calc(1rem - 4px);
background-color: #adb5bd;
border-radius: 0.5rem;
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; }
@media (prefers-reduced-motion: reduce) {
.custom-switch .custom-control-label::after {
transition: none; } }
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
background-color: #fff;
transform: translateX(0.75rem); }
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
background-color: rgba(78, 207, 204, 0.5); }
.custom-select {
display: inline-block;
width: 100%;
height: calc(2.25rem + 2px);
padding: 0.375rem 1.75rem 0.375rem 0.75rem;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
vertical-align: middle;
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
background-color: #fff;
border: 1px solid #ced4da;
border-radius: 0;
appearance: none; }
.custom-select:focus {
border-color: #b2eae9;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(78, 207, 204, 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: 0.75rem;
background-image: none; }
.custom-select:disabled {
color: #6c757d;
background-color: #e9ecef; }
.custom-select::-ms-expand {
opacity: 0; }
.custom-select-sm {
height: calc(1.8125rem + 2px);
padding-top: 0.25rem;
padding-bottom: 0.25rem;
padding-left: 0.5rem;
font-size: 0.875rem; }
.custom-select-lg {
height: calc(2.875rem + 2px);
padding-top: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 1rem;
font-size: 1.25rem; }
.custom-file {
position: relative;
display: inline-block;
width: 100%;
height: calc(2.25rem + 2px);
margin-bottom: 0; }
.custom-file-input {
position: relative;
z-index: 2;
width: 100%;
height: calc(2.25rem + 2px);
margin: 0;
opacity: 0; }
.custom-file-input:focus ~ .custom-file-label {
border-color: #b2eae9;
box-shadow: 0 0 0 0.2rem rgba(78, 207, 204, 0.25); }
.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(2.25rem + 2px);
padding: 0.375rem 0.75rem;
font-weight: 400;
line-height: 1.5;
color: #495057;
background-color: #fff;
border: 1px solid #ced4da; }
.custom-file-label::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
z-index: 3;
display: block;
height: 2.25rem;
padding: 0.375rem 0.75rem;
line-height: 1.5;
color: #495057;
content: "Browse";
background-color: #e9ecef;
border-left: inherit; }
.custom-range {
width: 100%;
height: calc(1rem + 0.4rem);
padding: 0;
background-color: transparent;
appearance: none; }
.custom-range:focus {
outline: none; }
.custom-range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(78, 207, 204, 0.25); }
.custom-range:focus::-moz-range-thumb {
box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(78, 207, 204, 0.25); }
.custom-range:focus::-ms-thumb {
box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(78, 207, 204, 0.25); }
.custom-range::-moz-focus-outer {
border: 0; }
.custom-range::-webkit-slider-thumb {
width: 1rem;
height: 1rem;
margin-top: -0.25rem;
background-color: #4ecfcc;
border: 0;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
appearance: none; }
@media (prefers-reduced-motion: reduce) {
.custom-range::-webkit-slider-thumb {
transition: none; } }
.custom-range::-webkit-slider-thumb:active {
background-color: #daf5f4; }
.custom-range::-webkit-slider-runnable-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: #dee2e6;
border-color: transparent; }
.custom-range::-moz-range-thumb {
width: 1rem;
height: 1rem;
background-color: #4ecfcc;
border: 0;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
appearance: none; }
@media (prefers-reduced-motion: reduce) {
.custom-range::-moz-range-thumb {
transition: none; } }
.custom-range::-moz-range-thumb:active {
background-color: #daf5f4; }
.custom-range::-moz-range-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: #dee2e6;
border-color: transparent; }
.custom-range::-ms-thumb {
width: 1rem;
height: 1rem;
margin-top: 0;
margin-right: 0.2rem;
margin-left: 0.2rem;
background-color: #4ecfcc;
border: 0;
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
appearance: none; }
@media (prefers-reduced-motion: reduce) {
.custom-range::-ms-thumb {
transition: none; } }
.custom-range::-ms-thumb:active {
background-color: #daf5f4; }
.custom-range::-ms-track {
width: 100%;
height: 0.5rem;
color: transparent;
cursor: pointer;
background-color: transparent;
border-color: transparent;
border-width: 0.5rem; }
.custom-range::-ms-fill-lower {
background-color: #dee2e6; }
.custom-range::-ms-fill-upper {
margin-right: 15px;
background-color: #dee2e6; }
.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 {
transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
@media (prefers-reduced-motion: reduce) {
.custom-control-label::before,
.custom-file-label,
.custom-select {
transition: none; } }
.nav {
display: flex;
flex-wrap: wrap;
padding-left: 0;
margin-bottom: 0;
list-style: none; }
.nav-link {
display: block;
padding: 0.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; }
.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; }
.nav-pills .nav-link.active,
.nav-pills .show &gt; .nav-link {
color: #fff;
background-color: #4ecfcc; }
.nav-fill .nav-item {
flex: 1 1 auto;
text-align: center; }
.nav-justified .nav-item {
flex-basis: 0;
flex-grow: 1;
text-align: center; }
.tab-content &gt; .tab-pane {
display: none; }
.tab-content &gt; .active {
display: block; }
.navbar {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
padding: 0.5rem 1rem; }
.navbar &gt; .container,
.navbar &gt; .container-fluid {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between; }
.navbar-brand {
display: inline-block;
padding-top: 0.3125rem;
padding-bottom: 0.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: flex;
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: 0.5rem;
padding-bottom: 0.5rem; }
.navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center; }
.navbar-toggler {
padding: 0.25rem 0.75rem;
font-size: 1.25rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent; }
.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: 640.98px) {
.navbar-expand-sm &gt; .container,
.navbar-expand-sm &gt; .container-fluid {
padding-right: 0;
padding-left: 0; } }
@media (min-width: 641px) {
.navbar-expand-sm {
flex-flow: row nowrap;
justify-content: flex-start; }
.navbar-expand-sm .navbar-nav {
flex-direction: row; }
.navbar-expand-sm .navbar-nav .dropdown-menu {
position: absolute; }
.navbar-expand-sm .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem; }
.navbar-expand-sm &gt; .container,
.navbar-expand-sm &gt; .container-fluid {
flex-wrap: nowrap; }
.navbar-expand-sm .navbar-collapse {
display: flex !important;
flex-basis: auto; }
.navbar-expand-sm .navbar-toggler {
display: none; } }
@media (max-width: 990.98px) {
.navbar-expand-md &gt; .container,
.navbar-expand-md &gt; .container-fluid {
padding-right: 0;
padding-left: 0; } }
@media (min-width: 991px) {
.navbar-expand-md {
flex-flow: row nowrap;
justify-content: flex-start; }
.navbar-expand-md .navbar-nav {
flex-direction: row; }
.navbar-expand-md .navbar-nav .dropdown-menu {
position: absolute; }
.navbar-expand-md .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem; }
.navbar-expand-md &gt; .container,
.navbar-expand-md &gt; .container-fluid {
flex-wrap: nowrap; }
.navbar-expand-md .navbar-collapse {
display: flex !important;
flex-basis: auto; }
.navbar-expand-md .navbar-toggler {
display: none; } }
@media (max-width: 1169.98px) {
.navbar-expand-lg &gt; .container,
.navbar-expand-lg &gt; .container-fluid {
padding-right: 0;
padding-left: 0; } }
@media (min-width: 1170px) {
.navbar-expand-lg {
flex-flow: row nowrap;
justify-content: flex-start; }
.navbar-expand-lg .navbar-nav {
flex-direction: row; }
.navbar-expand-lg .navbar-nav .dropdown-menu {
position: absolute; }
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem; }
.navbar-expand-lg &gt; .container,
.navbar-expand-lg &gt; .container-fluid {
flex-wrap: nowrap; }
.navbar-expand-lg .navbar-collapse {
display: flex !important;
flex-basis: auto; }
.navbar-expand-lg .navbar-toggler {
display: none; } }
@media (max-width: 1169.98px) {
.navbar-expand-xl &gt; .container,
.navbar-expand-xl &gt; .container-fluid {
padding-right: 0;
padding-left: 0; } }
@media (min-width: 1170px) {
.navbar-expand-xl {
flex-flow: row nowrap;
justify-content: flex-start; }
.navbar-expand-xl .navbar-nav {
flex-direction: row; }
.navbar-expand-xl .navbar-nav .dropdown-menu {
position: absolute; }
.navbar-expand-xl .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem; }
.navbar-expand-xl &gt; .container,
.navbar-expand-xl &gt; .container-fluid {
flex-wrap: nowrap; }
.navbar-expand-xl .navbar-collapse {
display: flex !important;
flex-basis: auto; }
.navbar-expand-xl .navbar-toggler {
display: none; } }
.navbar-expand {
flex-flow: row nowrap;
justify-content: flex-start; }
.navbar-expand &gt; .container,
.navbar-expand &gt; .container-fluid {
padding-right: 0;
padding-left: 0; }
.navbar-expand .navbar-nav {
flex-direction: row; }
.navbar-expand .navbar-nav .dropdown-menu {
position: absolute; }
.navbar-expand .navbar-nav .nav-link {
padding-right: 0.5rem;
padding-left: 0.5rem; }
.navbar-expand &gt; .container,
.navbar-expand &gt; .container-fluid {
flex-wrap: nowrap; }
.navbar-expand .navbar-collapse {
display: flex !important;
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 &gt; .nav-link,
.navbar-light .navbar-nav .active &gt; .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 viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' 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 &gt; .nav-link,
.navbar-dark .navbar-nav .active &gt; .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 viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' 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: flex;
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); }
.card &gt; hr {
margin-right: 0;
margin-left: 0; }
.card-body {
flex: 1 1 auto;
padding: 1.25rem; }
.card-title {
margin-bottom: 0.75rem; }
.card-subtitle {
margin-top: -0.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: 0.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 + .list-group .list-group-item:first-child {
border-top: 0; }
.card-footer {
padding: 0.75rem 1.25rem;
background-color: rgba(0, 0, 0, 0.03);
border-top: 1px solid rgba(0, 0, 0, 0.125); }
.card-header-tabs {
margin-right: -0.625rem;
margin-bottom: -0.75rem;
margin-left: -0.625rem;
border-bottom: 0; }
.card-header-pills {
margin-right: -0.625rem;
margin-left: -0.625rem; }
.card-img-overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: 1.25rem; }
.card-img {
width: 100%; }
.card-img-top {
width: 100%; }
.card-img-bottom {
width: 100%; }
.card-deck {
display: flex;
flex-direction: column; }
.card-deck .card {
margin-bottom: 15px; }
@media (min-width: 641px) {
.card-deck {
flex-flow: row wrap;
margin-right: -15px;
margin-left: -15px; }
.card-deck .card {
display: flex;
flex: 1 0 0%;
flex-direction: column;
margin-right: 15px;
margin-bottom: 0;
margin-left: 15px; } }
.card-group {
display: flex;
flex-direction: column; }
.card-group &gt; .card {
margin-bottom: 15px; }
@media (min-width: 641px) {
.card-group {
flex-flow: row wrap; }
.card-group &gt; .card {
flex: 1 0 0%;
margin-bottom: 0; }
.card-group &gt; .card + .card {
margin-left: 0;
border-left: 0; } }
.card-columns .card {
margin-bottom: 0.75rem; }
@media (min-width: 641px) {
.card-columns {
column-count: 3;
column-gap: 1.25rem;
orphans: 1;
widows: 1; }
.card-columns .card {
display: inline-block;
width: 100%; } }
.accordion &gt; .card {
overflow: hidden; }
.accordion &gt; .card:not(:first-of-type):not(:last-of-type) {
border-bottom: 0; }
.accordion &gt; .card:first-of-type {
border-bottom: 0; }
.accordion &gt; .card .card-header {
margin-bottom: -1px; }
.breadcrumb {
display: flex;
flex-wrap: wrap;
padding: 0.75rem 1rem;
margin-bottom: 1rem;
list-style: none;
background-color: #e9ecef; }
.breadcrumb-item + .breadcrumb-item {
padding-left: 0.5rem; }
.breadcrumb-item + .breadcrumb-item::before {
display: inline-block;
padding-right: 0.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: flex;
padding-left: 0;
list-style: none; }
.page-link {
position: relative;
display: block;
padding: 0.5rem 0.75rem;
margin-left: -1px;
line-height: 1.25;
color: #4ecfcc;
background-color: #fff;
border: 1px solid #dee2e6; }
.page-link:hover {
z-index: 2;
color: #2ca4a1;
text-decoration: none;
background-color: #e9ecef;
border-color: #dee2e6; }
.page-link:focus {
z-index: 2;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(78, 207, 204, 0.25); }
.page-item:first-child .page-link {
margin-left: 0; }
.page-item.active .page-link {
z-index: 1;
color: #fff;
background-color: #4ecfcc;
border-color: #4ecfcc; }
.page-item.disabled .page-link {
color: #6c757d;
pointer-events: none;
cursor: auto;
background-color: #fff;
border-color: #dee2e6; }
.pagination-lg .page-link {
padding: 0.75rem 1.5rem;
font-size: 1.25rem;
line-height: 1.5; }
.pagination-sm .page-link {
padding: 0.25rem 0.5rem;
font-size: 0.875rem;
line-height: 1.5; }
.badge {
display: inline-block;
padding: 0.25em 0.4em;
font-size: 75%;
font-weight: 700;
line-height: 1;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
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; }
@media (prefers-reduced-motion: reduce) {
.badge {
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: 0.6em;
padding-left: 0.6em; }
.badge-primary {
color: #212529;
background-color: #4ecfcc; }
a.badge-primary:hover, a.badge-primary:focus {
color: #212529;
background-color: #32b8b5; }
a.badge-primary:focus, a.badge-primary.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(78, 207, 204, 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;
box-shadow: 0 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;
box-shadow: 0 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;
box-shadow: 0 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;
box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
.badge-danger {
color: #fff;
background-color: #e02537; }
a.badge-danger:hover, a.badge-danger:focus {
color: #fff;
background-color: #b81a29; }
a.badge-danger:focus, a.badge-danger.focus {
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(224, 37, 55, 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;
box-shadow: 0 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;
box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
.jumbotron {
padding: 2rem 1rem;
margin-bottom: 2rem;
background-color: #e9ecef; }
@media (min-width: 641px) {
.jumbotron {
padding: 4rem 2rem; } }
.jumbotron-fluid {
padding-right: 0;
padding-left: 0; }
.alert {
position: relative;
padding: 0.75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent; }
.alert-heading {
color: inherit; }
.alert-link {
font-weight: 700; }
.alert-dismissible {
padding-right: 4rem; }
.alert-dismissible .close {
position: absolute;
top: 0;
right: 0;
padding: 0.75rem 1.25rem;
color: inherit; }
.alert-primary {
color: #296c6a;
background-color: #dcf5f5;
border-color: #cdf2f1; }
.alert-primary hr {
border-top-color: #b9edeb; }
.alert-primary .alert-link {
color: #1b4746; }
.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: #74131d;
background-color: #f9d3d7;
border-color: #f6c2c7; }
.alert-danger hr {
border-top-color: #f3acb3; }
.alert-danger .alert-link {
color: #480c12; }
.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; }
@keyframes progress-bar-stripes {
from {
background-position: 1rem 0; }
to {
background-position: 0 0; } }
.progress {
display: flex;
height: 1rem;
overflow: hidden;
font-size: 0.75rem;
background-color: #e9ecef; }
.progress-bar {
display: flex;
flex-direction: column;
justify-content: center;
color: #fff;
text-align: center;
white-space: nowrap;
background-color: #4ecfcc;
transition: width 0.6s ease; }
@media (prefers-reduced-motion: reduce) {
.progress-bar {
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 {
animation: progress-bar-stripes 1s linear infinite; }
@media (prefers-reduced-motion: reduce) {
.progress-bar-animated {
animation: none; } }
.media {
display: flex;
align-items: flex-start; }
.media-body {
flex: 1; }
.list-group {
display: flex;
flex-direction: column;
padding-left: 0;
margin-bottom: 0; }
.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: 0.75rem 1.25rem;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125); }
.list-group-item:last-child {
margin-bottom: 0; }
.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: #4ecfcc;
border-color: #4ecfcc; }
.list-group-horizontal {
flex-direction: row; }
.list-group-horizontal .list-group-item {
margin-right: -1px;
margin-bottom: 0; }
.list-group-horizontal .list-group-item:last-child {
margin-right: 0; }
@media (min-width: 641px) {
.list-group-horizontal-sm {
flex-direction: row; }
.list-group-horizontal-sm .list-group-item {
margin-right: -1px;
margin-bottom: 0; }
.list-group-horizontal-sm .list-group-item:last-child {
margin-right: 0; } }
@media (min-width: 991px) {
.list-group-horizontal-md {
flex-direction: row; }
.list-group-horizontal-md .list-group-item {
margin-right: -1px;
margin-bottom: 0; }
.list-group-horizontal-md .list-group-item:last-child {
margin-right: 0; } }
@media (min-width: 1170px) {
.list-group-horizontal-lg {
flex-direction: row; }
.list-group-horizontal-lg .list-group-item {
margin-right: -1px;
margin-bottom: 0; }
.list-group-horizontal-lg .list-group-item:last-child {
margin-right: 0; } }
@media (min-width: 1170px) {
.list-group-horizontal-xl {
flex-direction: row; }
.list-group-horizontal-xl .list-group-item {
margin-right: -1px;
margin-bottom: 0; }
.list-group-horizontal-xl .list-group-item:last-child {
margin-right: 0; } }
.list-group-flush .list-group-item {
border-right: 0;
border-left: 0; }
.list-group-flush .list-group-item:last-child {
margin-bottom: -1px; }
.list-group-flush:first-child .list-group-item:first-child {
border-top: 0; }
.list-group-flush:last-child .list-group-item:last-child {
margin-bottom: 0;
border-bottom: 0; }
.list-group-item-primary {
color: #296c6a;
background-color: #cdf2f1; }
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
color: #296c6a;
background-color: #b9edeb; }
.list-group-item-primary.list-group-item-action.active {
color: #fff;
background-color: #296c6a;
border-color: #296c6a; }
.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: #74131d;
background-color: #f6c2c7; }
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
color: #74131d;
background-color: #f3acb3; }
.list-group-item-danger.list-group-item-action.active {
color: #fff;
background-color: #74131d;
border-color: #74131d; }
.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;
appearance: none; }
a.close.disabled {
pointer-events: none; }
.toast {
max-width: 350px;
overflow: hidden;
font-size: 0.875rem;
background-color: rgba(255, 255, 255, 0.85);
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
backdrop-filter: blur(10px);
opacity: 0; }
.toast:not(:last-child) {
margin-bottom: 0.75rem; }
.toast.showing {
opacity: 1; }
.toast.show {
display: block;
opacity: 1; }
.toast.hide {
display: none; }
.toast-header {
display: flex;
align-items: center;
padding: 0.25rem 0.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); }
.toast-body {
padding: 0.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: 0.5rem;
pointer-events: none; }
.modal.fade .modal-dialog {
transition: transform 0.3s ease-out;
transform: translate(0, -50px); }
@media (prefers-reduced-motion: reduce) {
.modal.fade .modal-dialog {
transition: none; } }
.modal.show .modal-dialog {
transform: none; }
.modal-dialog-scrollable {
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 {
flex-shrink: 0; }
.modal-dialog-scrollable .modal-body {
overflow-y: auto; }
.modal-dialog-centered {
display: flex;
align-items: center;
min-height: calc(100% - 1rem); }
.modal-dialog-centered::before {
display: block;
height: calc(100vh - 1rem);
content: ""; }
.modal-dialog-centered.modal-dialog-scrollable {
flex-direction: column;
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: flex;
flex-direction: column;
width: 100%;
pointer-events: auto;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2);
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: 0.5; }
.modal-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
padding: 1rem 1rem;
border-bottom: 1px solid #dee2e6; }
.modal-header .close {
padding: 1rem 1rem;
margin: -1rem -1rem -1rem auto; }
.modal-title {
margin-bottom: 0;
line-height: 1.5; }
.modal-body {
position: relative;
flex: 1 1 auto;
padding: 1rem; }
.modal-footer {
display: flex;
align-items: center;
justify-content: flex-end;
padding: 1rem;
border-top: 1px solid #dee2e6; }
.modal-footer &gt; :not(:first-child) {
margin-left: .25rem; }
.modal-footer &gt; :not(:last-child) {
margin-right: .25rem; }
.modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll; }
@media (min-width: 641px) {
.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); }
.modal-sm {
max-width: 300px; } }
@media (min-width: 1170px) {
.modal-lg,
.modal-xl {
max-width: 800px; } }
@media (min-width: 1170px) {
.modal-xl {
max-width: 1140px; } }
.tooltip {
position: absolute;
z-index: 1070;
display: block;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Roboto", 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: 0.875rem;
word-wrap: break-word;
opacity: 0; }
.tooltip.show {
opacity: 0.9; }
.tooltip .arrow {
position: absolute;
display: block;
width: 0.8rem;
height: 0.4rem; }
.tooltip .arrow::before {
position: absolute;
content: "";
border-color: transparent;
border-style: solid; }
.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
padding: 0.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: 0.4rem 0.4rem 0;
border-top-color: #000; }
.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
padding: 0 0.4rem; }
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
left: 0;
width: 0.4rem;
height: 0.8rem; }
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
right: 0;
border-width: 0.4rem 0.4rem 0.4rem 0;
border-right-color: #000; }
.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
padding: 0.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 0.4rem 0.4rem;
border-bottom-color: #000; }
.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
padding: 0 0.4rem; }
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
right: 0;
width: 0.4rem;
height: 0.8rem; }
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
left: 0;
border-width: 0.4rem 0 0.4rem 0.4rem;
border-left-color: #000; }
.tooltip-inner {
max-width: 200px;
padding: 0.25rem 0.5rem;
color: #fff;
text-align: center;
background-color: #000; }
.popover {
position: absolute;
top: 0;
left: 0;
z-index: 1060;
display: block;
max-width: 276px;
font-family: -apple-system, BlinkMacSystemFont, "Roboto", 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: 0.875rem;
word-wrap: break-word;
background-color: #fff;
background-clip: padding-box;
border: 1px solid rgba(0, 0, 0, 0.2); }
.popover .arrow {
position: absolute;
display: block;
width: 1rem;
height: 0.5rem;
margin: 0 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: 0.5rem; }
.bs-popover-top &gt; .arrow, .bs-popover-auto[x-placement^="top"] &gt; .arrow {
bottom: calc((0.5rem + 1px) * -1); }
.bs-popover-top &gt; .arrow::before, .bs-popover-auto[x-placement^="top"] &gt; .arrow::before {
bottom: 0;
border-width: 0.5rem 0.5rem 0;
border-top-color: rgba(0, 0, 0, 0.25); }
.bs-popover-top &gt; .arrow::after, .bs-popover-auto[x-placement^="top"] &gt; .arrow::after {
bottom: 1px;
border-width: 0.5rem 0.5rem 0;
border-top-color: #fff; }
.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
margin-left: 0.5rem; }
.bs-popover-right &gt; .arrow, .bs-popover-auto[x-placement^="right"] &gt; .arrow {
left: calc((0.5rem + 1px) * -1);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0; }
.bs-popover-right &gt; .arrow::before, .bs-popover-auto[x-placement^="right"] &gt; .arrow::before {
left: 0;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: rgba(0, 0, 0, 0.25); }
.bs-popover-right &gt; .arrow::after, .bs-popover-auto[x-placement^="right"] &gt; .arrow::after {
left: 1px;
border-width: 0.5rem 0.5rem 0.5rem 0;
border-right-color: #fff; }
.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
margin-top: 0.5rem; }
.bs-popover-bottom &gt; .arrow, .bs-popover-auto[x-placement^="bottom"] &gt; .arrow {
top: calc((0.5rem + 1px) * -1); }
.bs-popover-bottom &gt; .arrow::before, .bs-popover-auto[x-placement^="bottom"] &gt; .arrow::before {
top: 0;
border-width: 0 0.5rem 0.5rem 0.5rem;
border-bottom-color: rgba(0, 0, 0, 0.25); }
.bs-popover-bottom &gt; .arrow::after, .bs-popover-auto[x-placement^="bottom"] &gt; .arrow::after {
top: 1px;
border-width: 0 0.5rem 0.5rem 0.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: -0.5rem;
content: "";
border-bottom: 1px solid #f7f7f7; }
.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
margin-right: 0.5rem; }
.bs-popover-left &gt; .arrow, .bs-popover-auto[x-placement^="left"] &gt; .arrow {
right: calc((0.5rem + 1px) * -1);
width: 0.5rem;
height: 1rem;
margin: 0.3rem 0; }
.bs-popover-left &gt; .arrow::before, .bs-popover-auto[x-placement^="left"] &gt; .arrow::before {
right: 0;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: rgba(0, 0, 0, 0.25); }
.bs-popover-left &gt; .arrow::after, .bs-popover-auto[x-placement^="left"] &gt; .arrow::after {
right: 1px;
border-width: 0.5rem 0 0.5rem 0.5rem;
border-left-color: #fff; }
.popover-header {
padding: 0.5rem 0.75rem;
margin-bottom: 0;
font-size: 1rem;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb; }
.popover-header:empty {
display: none; }
.popover-body {
padding: 0.5rem 0.75rem;
color: #212529; }
.carousel {
position: relative; }
.carousel.pointer-event {
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%;
backface-visibility: hidden;
transition: transform 0.6s ease-in-out; }
@media (prefers-reduced-motion: reduce) {
.carousel-item {
transition: none; } }
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
display: block; }
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
transform: translateX(100%); }
.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
transform: translateX(-100%); }
.carousel-fade .carousel-item {
opacity: 0;
transition-property: opacity;
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;
transition: 0s 0.6s opacity; }
@media (prefers-reduced-motion: reduce) {
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
transition: none; } }
.carousel-control-prev,
.carousel-control-next {
position: absolute;
top: 0;
bottom: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 15%;
color: #fff;
text-align: center;
opacity: 0.5;
transition: opacity 0.15s ease; }
@media (prefers-reduced-motion: reduce) {
.carousel-control-prev,
.carousel-control-next {
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: 0.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' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%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' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); }
.carousel-indicators {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 15;
display: flex;
justify-content: center;
padding-left: 0;
margin-right: 15%;
margin-left: 15%;
list-style: none; }
.carousel-indicators li {
box-sizing: content-box;
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;
transition: opacity 0.6s ease; }
@media (prefers-reduced-motion: reduce) {
.carousel-indicators li {
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; }
@keyframes spinner-border {
to {
transform: rotate(360deg); } }
.spinner-border {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
border: 0.25em solid currentColor;
border-right-color: transparent;
border-radius: 50%;
animation: spinner-border .75s linear infinite; }
.spinner-border-sm {
width: 1rem;
height: 1rem;
border-width: 0.2em; }
@keyframes spinner-grow {
0% {
transform: scale(0); }
50% {
opacity: 1; } }
.spinner-grow {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: text-bottom;
background-color: currentColor;
border-radius: 50%;
opacity: 0;
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: #4ecfcc !important; }
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
background-color: #32b8b5 !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: #e02537 !important; }
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
background-color: #b81a29 !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: #4ecfcc !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: #e02537 !important; }
.border-light {
border-color: #f8f9fa !important; }
.border-dark {
border-color: #343a40 !important; }
.border-white {
border-color: #fff !important; }
.rounded-sm {
border-radius: 0.2rem !important; }
.rounded {
border-radius: 0.25rem !important; }
.rounded-top {
border-top-left-radius: 0.25rem !important;
border-top-right-radius: 0.25rem !important; }
.rounded-right {
border-top-right-radius: 0.25rem !important;
border-bottom-right-radius: 0.25rem !important; }
.rounded-bottom {
border-bottom-right-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important; }
.rounded-left {
border-top-left-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important; }
.rounded-lg {
border-radius: 0.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: flex !important; }
.d-inline-flex {
display: inline-flex !important; }
@media (min-width: 641px) {
.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: flex !important; }
.d-sm-inline-flex {
display: inline-flex !important; } }
@media (min-width: 991px) {
.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: flex !important; }
.d-md-inline-flex {
display: inline-flex !important; } }
@media (min-width: 1170px) {
.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: flex !important; }
.d-lg-inline-flex {
display: inline-flex !important; } }
@media (min-width: 1170px) {
.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: flex !important; }
.d-xl-inline-flex {
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: flex !important; }
.d-print-inline-flex {
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.8571428571%; }
.embed-responsive-16by9::before {
padding-top: 56.25%; }
.embed-responsive-4by3::before {
padding-top: 75%; }
.embed-responsive-1by1::before {
padding-top: 100%; }
.flex-row {
flex-direction: row !important; }
.flex-column {
flex-direction: column !important; }
.flex-row-reverse {
flex-direction: row-reverse !important; }
.flex-column-reverse {
flex-direction: column-reverse !important; }
.flex-wrap {
flex-wrap: wrap !important; }
.flex-nowrap {
flex-wrap: nowrap !important; }
.flex-wrap-reverse {
flex-wrap: wrap-reverse !important; }
.flex-fill {
flex: 1 1 auto !important; }
.flex-grow-0 {
flex-grow: 0 !important; }
.flex-grow-1 {
flex-grow: 1 !important; }
.flex-shrink-0 {
flex-shrink: 0 !important; }
.flex-shrink-1 {
flex-shrink: 1 !important; }
.justify-content-start {
justify-content: flex-start !important; }
.justify-content-end {
justify-content: flex-end !important; }
.justify-content-center {
justify-content: center !important; }
.justify-content-between {
justify-content: space-between !important; }
.justify-content-around {
justify-content: space-around !important; }
.align-items-start {
align-items: flex-start !important; }
.align-items-end {
align-items: flex-end !important; }
.align-items-center {
align-items: center !important; }
.align-items-baseline {
align-items: baseline !important; }
.align-items-stretch {
align-items: stretch !important; }
.align-content-start {
align-content: flex-start !important; }
.align-content-end {
align-content: flex-end !important; }
.align-content-center {
align-content: center !important; }
.align-content-between {
align-content: space-between !important; }
.align-content-around {
align-content: space-around !important; }
.align-content-stretch {
align-content: stretch !important; }
.align-self-auto {
align-self: auto !important; }
.align-self-start {
align-self: flex-start !important; }
.align-self-end {
align-self: flex-end !important; }
.align-self-center {
align-self: center !important; }
.align-self-baseline {
align-self: baseline !important; }
.align-self-stretch {
align-self: stretch !important; }
@media (min-width: 641px) {
.flex-sm-row {
flex-direction: row !important; }
.flex-sm-column {
flex-direction: column !important; }
.flex-sm-row-reverse {
flex-direction: row-reverse !important; }
.flex-sm-column-reverse {
flex-direction: column-reverse !important; }
.flex-sm-wrap {
flex-wrap: wrap !important; }
.flex-sm-nowrap {
flex-wrap: nowrap !important; }
.flex-sm-wrap-reverse {
flex-wrap: wrap-reverse !important; }
.flex-sm-fill {
flex: 1 1 auto !important; }
.flex-sm-grow-0 {
flex-grow: 0 !important; }
.flex-sm-grow-1 {
flex-grow: 1 !important; }
.flex-sm-shrink-0 {
flex-shrink: 0 !important; }
.flex-sm-shrink-1 {
flex-shrink: 1 !important; }
.justify-content-sm-start {
justify-content: flex-start !important; }
.justify-content-sm-end {
justify-content: flex-end !important; }
.justify-content-sm-center {
justify-content: center !important; }
.justify-content-sm-between {
justify-content: space-between !important; }
.justify-content-sm-around {
justify-content: space-around !important; }
.align-items-sm-start {
align-items: flex-start !important; }
.align-items-sm-end {
align-items: flex-end !important; }
.align-items-sm-center {
align-items: center !important; }
.align-items-sm-baseline {
align-items: baseline !important; }
.align-items-sm-stretch {
align-items: stretch !important; }
.align-content-sm-start {
align-content: flex-start !important; }
.align-content-sm-end {
align-content: flex-end !important; }
.align-content-sm-center {
align-content: center !important; }
.align-content-sm-between {
align-content: space-between !important; }
.align-content-sm-around {
align-content: space-around !important; }
.align-content-sm-stretch {
align-content: stretch !important; }
.align-self-sm-auto {
align-self: auto !important; }
.align-self-sm-start {
align-self: flex-start !important; }
.align-self-sm-end {
align-self: flex-end !important; }
.align-self-sm-center {
align-self: center !important; }
.align-self-sm-baseline {
align-self: baseline !important; }
.align-self-sm-stretch {
align-self: stretch !important; } }
@media (min-width: 991px) {
.flex-md-row {
flex-direction: row !important; }
.flex-md-column {
flex-direction: column !important; }
.flex-md-row-reverse {
flex-direction: row-reverse !important; }
.flex-md-column-reverse {
flex-direction: column-reverse !important; }
.flex-md-wrap {
flex-wrap: wrap !important; }
.flex-md-nowrap {
flex-wrap: nowrap !important; }
.flex-md-wrap-reverse {
flex-wrap: wrap-reverse !important; }
.flex-md-fill {
flex: 1 1 auto !important; }
.flex-md-grow-0 {
flex-grow: 0 !important; }
.flex-md-grow-1 {
flex-grow: 1 !important; }
.flex-md-shrink-0 {
flex-shrink: 0 !important; }
.flex-md-shrink-1 {
flex-shrink: 1 !important; }
.justify-content-md-start {
justify-content: flex-start !important; }
.justify-content-md-end {
justify-content: flex-end !important; }
.justify-content-md-center {
justify-content: center !important; }
.justify-content-md-between {
justify-content: space-between !important; }
.justify-content-md-around {
justify-content: space-around !important; }
.align-items-md-start {
align-items: flex-start !important; }
.align-items-md-end {
align-items: flex-end !important; }
.align-items-md-center {
align-items: center !important; }
.align-items-md-baseline {
align-items: baseline !important; }
.align-items-md-stretch {
align-items: stretch !important; }
.align-content-md-start {
align-content: flex-start !important; }
.align-content-md-end {
align-content: flex-end !important; }
.align-content-md-center {
align-content: center !important; }
.align-content-md-between {
align-content: space-between !important; }
.align-content-md-around {
align-content: space-around !important; }
.align-content-md-stretch {
align-content: stretch !important; }
.align-self-md-auto {
align-self: auto !important; }
.align-self-md-start {
align-self: flex-start !important; }
.align-self-md-end {
align-self: flex-end !important; }
.align-self-md-center {
align-self: center !important; }
.align-self-md-baseline {
align-self: baseline !important; }
.align-self-md-stretch {
align-self: stretch !important; } }
@media (min-width: 1170px) {
.flex-lg-row {
flex-direction: row !important; }
.flex-lg-column {
flex-direction: column !important; }
.flex-lg-row-reverse {
flex-direction: row-reverse !important; }
.flex-lg-column-reverse {
flex-direction: column-reverse !important; }
.flex-lg-wrap {
flex-wrap: wrap !important; }
.flex-lg-nowrap {
flex-wrap: nowrap !important; }
.flex-lg-wrap-reverse {
flex-wrap: wrap-reverse !important; }
.flex-lg-fill {
flex: 1 1 auto !important; }
.flex-lg-grow-0 {
flex-grow: 0 !important; }
.flex-lg-grow-1 {
flex-grow: 1 !important; }
.flex-lg-shrink-0 {
flex-shrink: 0 !important; }
.flex-lg-shrink-1 {
flex-shrink: 1 !important; }
.justify-content-lg-start {
justify-content: flex-start !important; }
.justify-content-lg-end {
justify-content: flex-end !important; }
.justify-content-lg-center {
justify-content: center !important; }
.justify-content-lg-between {
justify-content: space-between !important; }
.justify-content-lg-around {
justify-content: space-around !important; }
.align-items-lg-start {
align-items: flex-start !important; }
.align-items-lg-end {
align-items: flex-end !important; }
.align-items-lg-center {
align-items: center !important; }
.align-items-lg-baseline {
align-items: baseline !important; }
.align-items-lg-stretch {
align-items: stretch !important; }
.align-content-lg-start {
align-content: flex-start !important; }
.align-content-lg-end {
align-content: flex-end !important; }
.align-content-lg-center {
align-content: center !important; }
.align-content-lg-between {
align-content: space-between !important; }
.align-content-lg-around {
align-content: space-around !important; }
.align-content-lg-stretch {
align-content: stretch !important; }
.align-self-lg-auto {
align-self: auto !important; }
.align-self-lg-start {
align-self: flex-start !important; }
.align-self-lg-end {
align-self: flex-end !important; }
.align-self-lg-center {
align-self: center !important; }
.align-self-lg-baseline {
align-self: baseline !important; }
.align-self-lg-stretch {
align-self: stretch !important; } }
@media (min-width: 1170px) {
.flex-xl-row {
flex-direction: row !important; }
.flex-xl-column {
flex-direction: column !important; }
.flex-xl-row-reverse {
flex-direction: row-reverse !important; }
.flex-xl-column-reverse {
flex-direction: column-reverse !important; }
.flex-xl-wrap {
flex-wrap: wrap !important; }
.flex-xl-nowrap {
flex-wrap: nowrap !important; }
.flex-xl-wrap-reverse {
flex-wrap: wrap-reverse !important; }
.flex-xl-fill {
flex: 1 1 auto !important; }
.flex-xl-grow-0 {
flex-grow: 0 !important; }
.flex-xl-grow-1 {
flex-grow: 1 !important; }
.flex-xl-shrink-0 {
flex-shrink: 0 !important; }
.flex-xl-shrink-1 {
flex-shrink: 1 !important; }
.justify-content-xl-start {
justify-content: flex-start !important; }
.justify-content-xl-end {
justify-content: flex-end !important; }
.justify-content-xl-center {
justify-content: center !important; }
.justify-content-xl-between {
justify-content: space-between !important; }
.justify-content-xl-around {
justify-content: space-around !important; }
.align-items-xl-start {
align-items: flex-start !important; }
.align-items-xl-end {
align-items: flex-end !important; }
.align-items-xl-center {
align-items: center !important; }
.align-items-xl-baseline {
align-items: baseline !important; }
.align-items-xl-stretch {
align-items: stretch !important; }
.align-content-xl-start {
align-content: flex-start !important; }
.align-content-xl-end {
align-content: flex-end !important; }
.align-content-xl-center {
align-content: center !important; }
.align-content-xl-between {
align-content: space-between !important; }
.align-content-xl-around {
align-content: space-around !important; }
.align-content-xl-stretch {
align-content: stretch !important; }
.align-self-xl-auto {
align-self: auto !important; }
.align-self-xl-start {
align-self: flex-start !important; }
.align-self-xl-end {
align-self: flex-end !important; }
.align-self-xl-center {
align-self: center !important; }
.align-self-xl-baseline {
align-self: baseline !important; }
.align-self-xl-stretch {
align-self: stretch !important; } }
.float-left {
float: left !important; }
.float-right {
float: right !important; }
.float-none {
float: none !important; }
@media (min-width: 641px) {
.float-sm-left {
float: left !important; }
.float-sm-right {
float: right !important; }
.float-sm-none {
float: none !important; } }
@media (min-width: 991px) {
.float-md-left {
float: left !important; }
.float-md-right {
float: right !important; }
.float-md-none {
float: none !important; } }
@media (min-width: 1170px) {
.float-lg-left {
float: left !important; }
.float-lg-right {
float: right !important; }
.float-lg-none {
float: none !important; } }
@media (min-width: 1170px) {
.float-xl-left {
float: left !important; }
.float-xl-right {
float: right !important; }
.float-xl-none {
float: 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: 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: sticky) {
.sticky-top {
position: sticky;
top: 0;
z-index: 1020; } }
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
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 {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
.shadow {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
.shadow-lg {
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }
.shadow-none {
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; }
.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); }
.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: 0.25rem !important; }
.mt-1,
.my-1 {
margin-top: 0.25rem !important; }
.mr-1,
.mx-1 {
margin-right: 0.25rem !important; }
.mb-1,
.my-1 {
margin-bottom: 0.25rem !important; }
.ml-1,
.mx-1 {
margin-left: 0.25rem !important; }
.m-2 {
margin: 0.5rem !important; }
.mt-2,
.my-2 {
margin-top: 0.5rem !important; }
.mr-2,
.mx-2 {
margin-right: 0.5rem !important; }
.mb-2,
.my-2 {
margin-bottom: 0.5rem !important; }
.ml-2,
.mx-2 {
margin-left: 0.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: 0.25rem !important; }
.pt-1,
.py-1 {
padding-top: 0.25rem !important; }
.pr-1,
.px-1 {
padding-right: 0.25rem !important; }
.pb-1,
.py-1 {
padding-bottom: 0.25rem !important; }
.pl-1,
.px-1 {
padding-left: 0.25rem !important; }
.p-2 {
padding: 0.5rem !important; }
.pt-2,
.py-2 {
padding-top: 0.5rem !important; }
.pr-2,
.px-2 {
padding-right: 0.5rem !important; }
.pb-2,
.py-2 {
padding-bottom: 0.5rem !important; }
.pl-2,
.px-2 {
padding-left: 0.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: -0.25rem !important; }
.mt-n1,
.my-n1 {
margin-top: -0.25rem !important; }
.mr-n1,
.mx-n1 {
margin-right: -0.25rem !important; }
.mb-n1,
.my-n1 {
margin-bottom: -0.25rem !important; }
.ml-n1,
.mx-n1 {
margin-left: -0.25rem !important; }
.m-n2 {
margin: -0.5rem !important; }
.mt-n2,
.my-n2 {
margin-top: -0.5rem !important; }
.mr-n2,
.mx-n2 {
margin-right: -0.5rem !important; }
.mb-n2,
.my-n2 {
margin-bottom: -0.5rem !important; }
.ml-n2,
.mx-n2 {
margin-left: -0.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: 641px) {
.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: 0.25rem !important; }
.mt-sm-1,
.my-sm-1 {
margin-top: 0.25rem !important; }
.mr-sm-1,
.mx-sm-1 {
margin-right: 0.25rem !important; }
.mb-sm-1,
.my-sm-1 {
margin-bottom: 0.25rem !important; }
.ml-sm-1,
.mx-sm-1 {
margin-left: 0.25rem !important; }
.m-sm-2 {
margin: 0.5rem !important; }
.mt-sm-2,
.my-sm-2 {
margin-top: 0.5rem !important; }
.mr-sm-2,
.mx-sm-2 {
margin-right: 0.5rem !important; }
.mb-sm-2,
.my-sm-2 {
margin-bottom: 0.5rem !important; }
.ml-sm-2,
.mx-sm-2 {
margin-left: 0.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: 0.25rem !important; }
.pt-sm-1,
.py-sm-1 {
padding-top: 0.25rem !important; }
.pr-sm-1,
.px-sm-1 {
padding-right: 0.25rem !important; }
.pb-sm-1,
.py-sm-1 {
padding-bottom: 0.25rem !important; }
.pl-sm-1,
.px-sm-1 {
padding-left: 0.25rem !important; }
.p-sm-2 {
padding: 0.5rem !important; }
.pt-sm-2,
.py-sm-2 {
padding-top: 0.5rem !important; }
.pr-sm-2,
.px-sm-2 {
padding-right: 0.5rem !important; }
.pb-sm-2,
.py-sm-2 {
padding-bottom: 0.5rem !important; }
.pl-sm-2,
.px-sm-2 {
padding-left: 0.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: -0.25rem !important; }
.mt-sm-n1,
.my-sm-n1 {
margin-top: -0.25rem !important; }
.mr-sm-n1,
.mx-sm-n1 {
margin-right: -0.25rem !important; }
.mb-sm-n1,
.my-sm-n1 {
margin-bottom: -0.25rem !important; }
.ml-sm-n1,
.mx-sm-n1 {
margin-left: -0.25rem !important; }
.m-sm-n2 {
margin: -0.5rem !important; }
.mt-sm-n2,
.my-sm-n2 {
margin-top: -0.5rem !important; }
.mr-sm-n2,
.mx-sm-n2 {
margin-right: -0.5rem !important; }
.mb-sm-n2,
.my-sm-n2 {
margin-bottom: -0.5rem !important; }
.ml-sm-n2,
.mx-sm-n2 {
margin-left: -0.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: 991px) {
.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: 0.25rem !important; }
.mt-md-1,
.my-md-1 {
margin-top: 0.25rem !important; }
.mr-md-1,
.mx-md-1 {
margin-right: 0.25rem !important; }
.mb-md-1,
.my-md-1 {
margin-bottom: 0.25rem !important; }
.ml-md-1,
.mx-md-1 {
margin-left: 0.25rem !important; }
.m-md-2 {
margin: 0.5rem !important; }
.mt-md-2,
.my-md-2 {
margin-top: 0.5rem !important; }
.mr-md-2,
.mx-md-2 {
margin-right: 0.5rem !important; }
.mb-md-2,
.my-md-2 {
margin-bottom: 0.5rem !important; }
.ml-md-2,
.mx-md-2 {
margin-left: 0.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: 0.25rem !important; }
.pt-md-1,
.py-md-1 {
padding-top: 0.25rem !important; }
.pr-md-1,
.px-md-1 {
padding-right: 0.25rem !important; }
.pb-md-1,
.py-md-1 {
padding-bottom: 0.25rem !important; }
.pl-md-1,
.px-md-1 {
padding-left: 0.25rem !important; }
.p-md-2 {
padding: 0.5rem !important; }
.pt-md-2,
.py-md-2 {
padding-top: 0.5rem !important; }
.pr-md-2,
.px-md-2 {
padding-right: 0.5rem !important; }
.pb-md-2,
.py-md-2 {
padding-bottom: 0.5rem !important; }
.pl-md-2,
.px-md-2 {
padding-left: 0.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: -0.25rem !important; }
.mt-md-n1,
.my-md-n1 {
margin-top: -0.25rem !important; }
.mr-md-n1,
.mx-md-n1 {
margin-right: -0.25rem !important; }
.mb-md-n1,
.my-md-n1 {
margin-bottom: -0.25rem !important; }
.ml-md-n1,
.mx-md-n1 {
margin-left: -0.25rem !important; }
.m-md-n2 {
margin: -0.5rem !important; }
.mt-md-n2,
.my-md-n2 {
margin-top: -0.5rem !important; }
.mr-md-n2,
.mx-md-n2 {
margin-right: -0.5rem !important; }
.mb-md-n2,
.my-md-n2 {
margin-bottom: -0.5rem !important; }
.ml-md-n2,
.mx-md-n2 {
margin-left: -0.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: 1170px) {
.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: 0.25rem !important; }
.mt-lg-1,
.my-lg-1 {
margin-top: 0.25rem !important; }
.mr-lg-1,
.mx-lg-1 {
margin-right: 0.25rem !important; }
.mb-lg-1,
.my-lg-1 {
margin-bottom: 0.25rem !important; }
.ml-lg-1,
.mx-lg-1 {
margin-left: 0.25rem !important; }
.m-lg-2 {
margin: 0.5rem !important; }
.mt-lg-2,
.my-lg-2 {
margin-top: 0.5rem !important; }
.mr-lg-2,
.mx-lg-2 {
margin-right: 0.5rem !important; }
.mb-lg-2,
.my-lg-2 {
margin-bottom: 0.5rem !important; }
.ml-lg-2,
.mx-lg-2 {
margin-left: 0.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: 0.25rem !important; }
.pt-lg-1,
.py-lg-1 {
padding-top: 0.25rem !important; }
.pr-lg-1,
.px-lg-1 {
padding-right: 0.25rem !important; }
.pb-lg-1,
.py-lg-1 {
padding-bottom: 0.25rem !important; }
.pl-lg-1,
.px-lg-1 {
padding-left: 0.25rem !important; }
.p-lg-2 {
padding: 0.5rem !important; }
.pt-lg-2,
.py-lg-2 {
padding-top: 0.5rem !important; }
.pr-lg-2,
.px-lg-2 {
padding-right: 0.5rem !important; }
.pb-lg-2,
.py-lg-2 {
padding-bottom: 0.5rem !important; }
.pl-lg-2,
.px-lg-2 {
padding-left: 0.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: -0.25rem !important; }
.mt-lg-n1,
.my-lg-n1 {
margin-top: -0.25rem !important; }
.mr-lg-n1,
.mx-lg-n1 {
margin-right: -0.25rem !important; }
.mb-lg-n1,
.my-lg-n1 {
margin-bottom: -0.25rem !important; }
.ml-lg-n1,
.mx-lg-n1 {
margin-left: -0.25rem !important; }
.m-lg-n2 {
margin: -0.5rem !important; }
.mt-lg-n2,
.my-lg-n2 {
margin-top: -0.5rem !important; }
.mr-lg-n2,
.mx-lg-n2 {
margin-right: -0.5rem !important; }
.mb-lg-n2,
.my-lg-n2 {
margin-bottom: -0.5rem !important; }
.ml-lg-n2,
.mx-lg-n2 {
margin-left: -0.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: 1170px) {
.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: 0.25rem !important; }
.mt-xl-1,
.my-xl-1 {
margin-top: 0.25rem !important; }
.mr-xl-1,
.mx-xl-1 {
margin-right: 0.25rem !important; }
.mb-xl-1,
.my-xl-1 {
margin-bottom: 0.25rem !important; }
.ml-xl-1,
.mx-xl-1 {
margin-left: 0.25rem !important; }
.m-xl-2 {
margin: 0.5rem !important; }
.mt-xl-2,
.my-xl-2 {
margin-top: 0.5rem !important; }
.mr-xl-2,
.mx-xl-2 {
margin-right: 0.5rem !important; }
.mb-xl-2,
.my-xl-2 {
margin-bottom: 0.5rem !important; }
.ml-xl-2,
.mx-xl-2 {
margin-left: 0.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: 0.25rem !important; }
.pt-xl-1,
.py-xl-1 {
padding-top: 0.25rem !important; }
.pr-xl-1,
.px-xl-1 {
padding-right: 0.25rem !important; }
.pb-xl-1,
.py-xl-1 {
padding-bottom: 0.25rem !important; }
.pl-xl-1,
.px-xl-1 {
padding-left: 0.25rem !important; }
.p-xl-2 {
padding: 0.5rem !important; }
.pt-xl-2,
.py-xl-2 {
padding-top: 0.5rem !important; }
.pr-xl-2,
.px-xl-2 {
padding-right: 0.5rem !important; }
.pb-xl-2,
.py-xl-2 {
padding-bottom: 0.5rem !important; }
.pl-xl-2,
.px-xl-2 {
padding-left: 0.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: -0.25rem !important; }
.mt-xl-n1,
.my-xl-n1 {
margin-top: -0.25rem !important; }
.mr-xl-n1,
.mx-xl-n1 {
margin-right: -0.25rem !important; }
.mb-xl-n1,
.my-xl-n1 {
margin-bottom: -0.25rem !important; }
.ml-xl-n1,
.mx-xl-n1 {
margin-left: -0.25rem !important; }
.m-xl-n2 {
margin: -0.5rem !important; }
.mt-xl-n2,
.my-xl-n2 {
margin-top: -0.5rem !important; }
.mr-xl-n2,
.mx-xl-n2 {
margin-right: -0.5rem !important; }
.mb-xl-n2,
.my-xl-n2 {
margin-bottom: -0.5rem !important; }
.ml-xl-n2,
.mx-xl-n2 {
margin-left: -0.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; } }
.text-monospace {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.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: 641px) {
.text-sm-left {
text-align: left !important; }
.text-sm-right {
text-align: right !important; }
.text-sm-center {
text-align: center !important; } }
@media (min-width: 991px) {
.text-md-left {
text-align: left !important; }
.text-md-right {
text-align: right !important; }
.text-md-center {
text-align: center !important; } }
@media (min-width: 1170px) {
.text-lg-left {
text-align: left !important; }
.text-lg-right {
text-align: right !important; }
.text-lg-center {
text-align: center !important; } }
@media (min-width: 1170px) {
.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: #4ecfcc !important; }
a.text-primary:hover, a.text-primary:focus {
color: #2ca4a1 !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: #e02537 !important; }
a.text-danger:hover, a.text-danger:focus {
color: #a21724 !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; }
.text-reset {
color: inherit !important; }
.visible {
visibility: visible !important; }
.invisible {
visibility: hidden !important; }  img.lazy {
min-width: 90px;
min-height: 90px;
display: block;
margin: auto; background-image: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/loader.gif);
background-repeat: no-repeat;
background-position: 50% 50%;
background-size: 90px;
background-color: transparent;
text-indent: -120000px;
overflow: hidden; } .siteloader {
position: fixed;
top: 0;
z-index: 9999;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.8);
left: 0;
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; }
.siteloader img,
.siteloader svg {
max-width: 110px; }
.siteloader svg path,
.siteloader svg rect {
fill: #4ecfcc; }
@font-face {
font-family: 'Cicle';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFina.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFina.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFina.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFina.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFina.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFina.svg#CicleFina) format("svg");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Calibri';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri.svg#Calibri) format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'Cicle';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFinaItalic.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFinaItalic.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFinaItalic.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFinaItalic.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFinaItalic.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleFinaItalic.svg#CicleFinaItalic) format("svg");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'Calibri';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Light.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Light.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Light.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Light.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Light.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Light.svg#Calibri-Light) format("svg");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: 'Cicle Semi';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemiItalic.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemiItalic.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemiItalic.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemiItalic.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemiItalic.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemiItalic.svg#CicleSemiItalic) format("svg");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'Cicle Gordita';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGordita.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGordita.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGordita.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGordita.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGordita.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGordita.svg#CicleGordita) format("svg");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Calibri';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Italic.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Italic.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Italic.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Italic.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Italic.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Italic.svg#Calibri-Italic) format("svg");
font-weight: normal;
font-style: italic; }
@font-face {
font-family: 'Cicle';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGorditaItalic.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGorditaItalic.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGorditaItalic.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGorditaItalic.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGorditaItalic.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleGorditaItalic.svg#CicleGorditaItalic) format("svg");
font-weight: bold;
font-style: italic; }
@font-face {
font-family: 'Calibri';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Bold.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Bold.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Bold.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Bold.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Bold.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/Calibri-Bold.svg#Calibri-Bold) format("svg");
font-weight: bold;
font-style: normal; }
@font-face {
font-family: 'Cicle Shadow';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleShadow.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleShadow.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleShadow.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleShadow.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleShadow.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleShadow.svg#CicleShadow) format("svg");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'Cicle Semi';
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemi.eot);
src: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemi.eot?#iefix) format("embedded-opentype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemi.woff2) format("woff2"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemi.woff) format("woff"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemi.ttf) format("truetype"), url(//skiffsports.com/wp-content/themes/skiff-sports/assets/fonts/CicleSemi.svg#CicleSemi) format("svg");
font-weight: normal;
font-style: normal; } #container {
margin: 0;
padding: 0; }
.intro .title {
color: #2098f5;
font-family: lato;
font-weight: 700;
font-size: 2em;
text-transform: uppercase;
position: relative;
display: table;
margin: 0 auto; }
.intro .title::before {
background: none repeat scroll 0 0 #ddd;
content: "";
height: 2px;
left: 25%;
position: absolute;
top: -8px;
width: 50%; }
.intro .title::after {
background: none repeat scroll 0 0 #ddd;
content: "";
height: 2px;
left: 25%;
position: absolute;
bottom: -8px;
width: 50%; }
.intro .title-tag {
font-family: open_sanslight;
font-size: 1.1em;
padding: 10px 0 20px 0; }
.padding-2x {
padding: 60px 0; }
.padding-x {
padding: 20px 0; }
.padding-top-2x {
padding-top: 60px; }
.padding-top-x {
padding-top: 20px; }
.padding-btm-2x {
padding-bottom: 60px; }
.padding-btm-x {
padding-bottom: 20px; }
.margin-2x {
margin: 60px 0; }
.margin-x {
margin: 20px 0; }
.margin-top-2x {
margin-top: 60px; }
.margin-top-x {
margin-top: 20px; }
.margin-btm-2x {
margin-bottom: 60px; }
.margin-btm-x {
margin-bottom: 20px; } .intro {
background-size: cover;
background-position: center;
background-color: #2a2e39;
position: fixed;
z-index: 10;
overflow: hidden;
width: 100%;
height: 100%;
color: #fff;
-webkit-transition: -webkit-transform 0.6s;
transition: transform 0.6s;
-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }
.intro:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
z-index: -2; }
.intro .center-content {
display: table;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%; } .intro .intro-content {
display: table-cell;
font-size: 1.15em;
margin: 0;
padding: 0;
min-width: 100%;
min-height: 100%;
vertical-align: middle; } .intro .logo {
width: 100%;
margin: -30px 0 25px; }
.intro .logo img {
width: 200px;
height: auto; }
.intro .text-logo {
color: #2098f5;
font-family: BeonMedium;
font-weight: 700;
font-size: 3em;
margin-top: 15px; } .intro .intro-title {
font-family: lato;
font-size: 3em;
font-weight: normal;
margin: 15px 0;
text-transform: uppercase; }
.intro .obak {
color: #2098f5; } .intro .countdown {
list-style: none;
margin: 20px 0;
padding: 0;
display: block;
text-align: center;
font-family: BeonMedium; }
.intro .countdown li {
display: inline-block;
color: #fff; }
.intro .countdown li span {
font-size: 80px;
font-weight: 300;
line-height: 80px; }
.intro .countdown li.seperator {
font-size: 14px;
margin-top: 12px;
line-height: 30px;
vertical-align: top; }
.intro .countdown li p {
color: #ddd;
font-size: 14px; }
.intro .content-div {
width: 100%; } .intro .intro-subtitle {
display: block;
-webkit-align-items: center;
align-items: center;
text-align: center; }
.intro .intro-subtitle p {
color: #efefef; }
.intro .intro_description {
margin: 0 auto 0 1em;
line-height: 1.2; } .intro .social {
bottom: 0;
left: 0;
margin: 10px;
position: absolute;
z-index: 3; }
.intro .fa-social {
font-size: 14px;
background: #fff;
border: 0px solid #fff;
color: #2098f5;
height: 32px;
line-height: 32px;
text-align: center;
width: 32px;
margin-right: 3px;
border-radius: 100%;
position: relative;
transition: all 0.5s;
-webkit-transition: all 0.5s; }
.intro .fa-social:hover {
color: #fff;
background: #1e87d8;
transition: all 0.5s;
-webkit-transition: all 0.5s; }
.intro .fa-social a {
position: absolute;
top: 0;
width: 100%;
height: 100%;
display: block; } .intro #footer {
background-color: #2098f5;
padding: 20px 0;
overflow: hidden;
position: fixed;
bottom: 0;
max-width: 100%; }
.intro #footer a {
color: #fff; }
.intro .copyright p {
color: #fff;
display: block;
padding-top: 5px;
font-size: 1.1em; }
.intro .container-bottom-content .social-media {
margin-bottom: 10px; }
.hidden {
display: none !important;
visibility: hidden; }
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto; }
.invisible {
visibility: hidden; }
.clearfix:before, .clearfix:after {
content: " ";
display: table; }
.clearfix:after {
clear: both; } @media only screen and (max-width: 1280px) {
.intro .logo {
margin-top: 0; }
.intro .center-content {
display: flex;
align-items: center;
overflow: auto;
position: static; }
.intro .intro-content {
padding: 70px 0 100px;
min-height: inherit; } }
@media only screen and (max-width: 767px) {
.intro:after {
background-color: rgba(0, 0, 0, 0.7); }
.intro .logo img {
max-height: 100px;
width: auto; }
.intro .text-logo,
.intro .intro-title {
font-size: 1.5em; }
.intro .center-content {
align-items: flex-start; } }
@media only screen and (max-width: 639px) {
.intro #footer {
padding-top: 50px; }
.intro .intro-content {
padding-bottom: 120px; }
.intro .social {
text-align: center;
width: 100%;
margin: 0;
bottom: 46px; }
.intro .container-bottom-content .social-media {
padding-left: 0; } } .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; } }      body {
font-family: "Calibri", sans-serif; }
.site-header {
background: #dd042b;
color: #fff;
position: fixed;
width: 100%;
z-index: 200;
top: 0;
min-height: 61px; }
.site-header .top-header {
background: #212529;
color: #fff; }
.site-header .top-header a {
color: #fff;
cursor: pointer; }
.site-header .top-header a:hover {
color: #fff;
text-decoration: none; }
header {
padding: 40px 0 0px;
border-bottom: 2px solid #ebebeb; }
@media (max-width: 991px) {
header {
padding-top: 0; } }
@media (max-width: 640px) {
header {
padding-top: 0 !important; } }
header .header-top {
display: flex;
align-items: center;
margin-bottom: 42px; }
@media (max-width: 991px) {
header .header-top {
margin-bottom: 0 !important;
padding-top: 15px; } }
@media (max-width: 640px) {
header .header-top {
display: inline-block;
text-align: center;
width: 100%; } }
header .header-top .header-logo {
display: inline-block;
width: 338px; }
@media (max-width: 640px) {
header .header-top .header-logo {
margin-bottom: 10px;
width: auto; } }
header .header-top .header-logo a {
display: inline-block; }
@media (max-width: 991px) {
header .header-top .header-logo a {
width: 170px; } }
@media (max-width: 640px) {
header .header-top .header-logo img {
width: 140px; } }
header .header-top .header-search {
display: flex;
justify-content: space-between;
align-items: center;
width: 1090px;
margin-left: 55px;
position: relative; }
@media (max-width: 991px) {
header .header-top .header-search {
margin-left: 35px; } }
@media (max-width: 640px) {
header .header-top .header-search {
margin-left: 0;
width: 100%;
display: inline-block; } }
header .header-top .header-search .header-text {
width: 40%; }
@media (max-width: 1170px) {
header .header-top .header-search .header-text {
width: 48%; } }
@media (max-width: 991px) {
header .header-top .header-search .header-text {
width: 48%; } }
@media (max-width: 640px) {
header .header-top .header-search .header-text {
width: 100%; } }
header .header-top .header-search .header-text p {
color: #000;
font-size: 18px;
font-family: "Cicle", sans-serif;
font-weight: 400;
margin-bottom: 0;
letter-spacing: 0.4px;
line-height: 24px;
text-shadow: 0 0 1px #000; }
header .header-top .header-search .search-rt {
width: 50%;
text-align: right;
order: 2; }
header .header-top .header-search .search-rt form [type="text"] {
padding: 4px 40px 4px 10px;
border: 2px solid #b7b7b7;
border-radius: 8px;
width: 236px;
letter-spacing: 0px;
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400; }
header .header-top .header-search .search-rt form [type="text"]:focus {
outline: 0; }
@media (max-width: 640px) {
header .header-top .header-search .search-rt form [type="text"] {
width: 215px; } }
header .header-top .header-search .search-rt form [type="submit"] {
display: inline-block;
color: #b7b7b7;
position: absolute;
right: 9px;
top: 11px;
font-size: 0;
background-image: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/search-icon.png);
background-repeat: no-repeat;
background-position: center center;
border: none;
width: 25px;
height: 25px;
background-color: transparent; }
header .header-top .header-search .search-rt form [type="submit"]:focus {
outline: none; }
header .header-menu {
display: flex;
align-items: center; }
header .header-menu .header-mega-menu {
width: 100%; }
header .header-menu .header-cart {
text-align: right;
position: relative;
display: flex;
align-items: center;
width: 375px;
margin-bottom: 18px; }
@media (max-width: 1170px) {
header .header-menu .header-cart {
width: 405px; } }
@media (max-width: 991px) {
header .header-menu .header-cart {
display: none; } }
header .header-menu .header-cart span {
display: inline-block;
text-transform: uppercase;
font-family: "Calibri", sans-serif;
font-weight: 700;
font-size: 18px; }
header .header-menu .header-cart span a {
display: inline-block;
font-family: "Calibri", sans-serif;
font-weight: 400;
font-size: 18px;
margin-left: 5px; }
header .header-menu .header-cart span a:hover {
text-shadow: 0px 0px 1px #000;
color: #000; }
header .header-menu .header-cart a img {
margin-left: 42px; }
.search-rt form input::-webkit-input-placeholder {
color: #808080;
opacity: 1;
text-transform: uppercase;
font-family: "Calibri", sans-serif;
font-weight: 600;
padding-top: 2px !important; }
.search-rt form input::-moz-placeholder {
color: #808080;
opacity: 1;
text-transform: uppercase;
font-family: "Calibri", sans-serif;
font-weight: 600;
padding-top: 2px !important; }
.search-rt form input:-ms-input-placeholder {
color: #808080;
opacity: 1;
text-transform: uppercase;
font-family: "Calibri", sans-serif;
font-weight: 600;
padding-top: 2px !important; }
.search-rt form input:-moz-placeholder {
color: #808080;
opacity: 1;
text-transform: uppercase;
font-family: "Calibri", sans-serif;
font-weight: 600;
padding-top: 2px !important; }
@media (max-width: 991px) {
header .container {
max-width: 100%; }
.search-rt {
width: 50%;
text-align: right;
order: 2; }
.search-rt form [type="text"] {
padding: 4px 40px 4px 10px;
border: 2px solid #b7b7b7;
border-radius: 8px;
width: 236px;
letter-spacing: 0px;
font-family: "Calibri", sans-serif;
font-weight: 400; }
.search-rt form [type="text"]:focus {
outline: 0; }
.search-rt form [type="submit"] {
display: inline-block;
color: #b7b7b7;
position: absolute;
right: 9px;
top: 5px;
font-size: 0;
background-image: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/search-icon.png);
background-repeat: no-repeat;
background-position: center center;
border: none;
width: 25px;
height: 25px;
background-color: transparent; }
.search-rt form [type="submit"]:focus {
outline: none; } }
.cart-contents-count {
position: absolute;
right: 14px;
top: -20px; }
@media all and (-ms-high-contrast: none) {
header .header-top .header-search .search-rt form [type="text"] {
padding: 4px 40px 9px 10px; }
header .header-top .header-search .header-text {
width: 35%;
margin-left: 100px; } }
@media (max-width: 640px) {
.siteloader img, .siteloader svg {
max-width: 60px; } }
@media (max-height: 900px) and (min-width: 767px) {
header {
padding: 15px 0 0px; }
header .header-top .header-logo {
width: 160px; }
header .header-top {
margin-bottom: 15px; }
.enumenu_ul li a {
margin-bottom: 10px; }
.siteloader img, .siteloader svg {
max-width: 75px !important; } }
@media all and (max-height: 900px) and (min-width: 767px) and (-ms-high-contrast: none) {
header .header-top .header-logo a {
width: 160px; } }
.home-banner {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
width: 100%;
height: 600px; }
@media (max-width: 1024px) {
.home-banner {
height: 550px; } }
@media (max-width: 767px) {
.home-banner {
height: 400px; } }
@media (max-width: 640px) {
.home-banner {
height: 230px; } }
@media (max-height: 900px) and (min-width: 767px) {
.home-banner {
height: 480px; } }
.inner-banner-sec {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
width: 100%; }
.inner-banner-sec .inner-banner-wrap {
background: #ebebeb;
display: flex;
justify-content: center;
padding-bottom: 60px; }
@media (max-width: 991px) {
.inner-banner-sec .inner-banner-wrap {
width: 100%;
padding: 0 15px 40px; } }
@media (max-width: 767px) {
.inner-banner-sec .inner-banner-wrap {
display: inline-block;
width: 100%;
text-align: center;
padding: 0 15px 40px; } }
.inner-banner-sec .inner-banner-wrap .inner-banner-img {
width: 52%; }
@media (max-width: 1199px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-img {
width: 550px; } }
@media (max-width: 991px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-img {
width: 100%;
margin-bottom: 25px; } }
@media (max-width: 991px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-img img {
width: 450px; } }
@media (max-width: 640px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-img img {
width: 400px; } }
.inner-banner-sec .inner-banner-wrap .inner-banner-text {
max-width: 280px;
margin-left: 115px;
margin-top: 50px;
width: 100%; }
@media (max-width: 1199px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-text {
margin-left: 50px; } }
@media (max-width: 991px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-text {
margin: 0 auto;
margin-top: 40px;
padding-left: 15px;
max-width: 100%; } }
@media (max-width: 767px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-text {
margin: 0 auto;
padding-left: 0; } }
.inner-banner-sec .inner-banner-wrap .inner-banner-text img {
margin-bottom: 17px; }
@media (max-width: 991px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-text img {
display: block;
text-align: center;
margin: 0 auto;
margin-bottom: 17px; } }
.inner-banner-sec .inner-banner-wrap .inner-banner-text span {
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
text-transform: uppercase;
display: inline-block;
width: auto;
margin-bottom: 15px; }
@media (max-width: 767px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-text span {
margin-bottom: 5px; } }
.inner-banner-sec .inner-banner-wrap .inner-banner-text p {
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
line-height: 24px; }
.inner-banner-sec .inner-banner-wrap .inner-banner-text a {
background: #000;
border-radius: 8px;
text-transform: uppercase;
color: #fff;
font-size: 22px;
font-family: "Calibri", sans-serif;
font-weight: 400;
padding: 4px 48px;
margin-left: 5px;
border: 1px solid transparent;
margin-top: 16px;
display: inline-block;
letter-spacing: -1.2px; }
.inner-banner-sec .inner-banner-wrap .inner-banner-text a:hover {
background: #b7b7b7; }
@media (max-width: 767px) {
.inner-banner-sec .inner-banner-wrap .inner-banner-text a {
margin-top: 0; } }
@media (max-width: 767px) {
.inner-banner-sec .container {
max-width: 100%; } }
.page-inner-banner .banner-wrapper {
position: relative; }
.banner-wrapper figure img {
width: 100%;
height: 400px;
object-fit: cover; }
.caption-wrap {
position: absolute;
top: 50px;
left: 50px;
z-index: 9;
max-width: 200px; }
.banner-wrapper .caption-wrap h3 {
color: #fff;
font-size: 22px;
margin-bottom: 20px; }
.banner-wrapper .caption-wrap h3 {
color: #fff; }
.banner-wrapper .caption-wrap .find-out-more a {
color: #fff !important;
background: #000;
display: inline-block;
z-index: 999;
font-size: 18px;
text-transform: uppercase;
padding: 8px 24px;
border-radius: 7px; }
.banner-wrapper .caption-wrap .find-out-more a:hover {
background: #b7b7b7; }
.woocommerce-cart .inner-banner {
margin: 0; }
@media (max-width: 991px) {
.banner-wrapper figure img {
height: 300px; }
.banner-wrapper .caption-wrap h3 {
font-size: 20px;
margin-bottom: 15px; }
.caption-wrap {
top: 30px;
left: 30px; }
.banner-wrapper .caption-wrap .find-out-more a {
font-size: 16px;
padding: 6px 20px; }
.inner-banner-sec .inner-banner-wrap {
max-width: 580px;
margin: 0 auto;
display: block;
text-align: center; } }
@media (max-width: 767px) {
.banner-wrapper figure img {
height: 250px; } }
.skiff-fantastic-boat {
padding: 80px 0 80px; }
@media (max-width: 991px) {
.skiff-fantastic-boat {
padding: 70px 0 70px; } }
@media (max-width: 640px) {
.skiff-fantastic-boat {
padding: 25px 0 25px; } }
.skiff-fantastic-boat .skiff-fantastic-text {
max-width: 835px;
margin: 0 auto;
text-align: center;
width: 100%; }
.skiff-fantastic-boat .skiff-fantastic-text p {
color: #000;
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 400;
line-height: 26px;
margin-bottom: 20px; }
@media (max-width: 640px) {
.skiff-fantastic-boat .skiff-fantastic-text p {
font-size: 18px; } }
.skiff-fantastic-boat .skiff-fantastic-text h2 {
color: #000;
font-size: 22px;
font-family: "Calibri", sans-serif;
font-weight: 700;
text-transform: uppercase; }
.skiff-fantastic-boat .skiff-fantastic-text span {
color: #000;
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
display: inline-block; }
@media (max-height: 900px) and (min-width: 767px) {
.skiff-fantastic-boat {
padding: 40px 0 40px; } }
.open-skiff-sec {
margin-bottom: 70px; }
@media (max-width: 640px) {
.open-skiff-sec {
margin-bottom: 35px; } }
.open-skiff-sec .open-skiff-wrap {
display: flex;
border-top: 4px solid #ebebeb; }
@media (max-width: 640px) {
.open-skiff-sec .open-skiff-wrap {
flex-wrap: wrap;
margin-right: 0;
flex-flow: column; } }
.open-skiff-sec .open-skiff-wrap .open-skiff-img {
margin-right: 40px; }
@media (max-width: 1200px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-img {
margin-bottom: 15px; } }
@media (max-width: 640px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-img {
margin-right: 0;
max-width: 250px;
margin: 0 auto;
width: 100%; } }
.open-skiff-sec .open-skiff-wrap .open-skiff-text {
text-align: center;
color: #000;
font-size: 25px;
font-family: "Calibri", sans-serif;
font-weight: 400;
max-width: 265px;
margin-top: 125px;
width: 100%; }
@media (max-width: 1200px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text {
margin-top: 50px; } }
@media (max-width: 640px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text {
max-width: 177px;
margin: 0 auto;
margin-top: 15px; } }
@media (max-width: 480px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text {
margin-top: 15px; } }
.open-skiff-sec .open-skiff-wrap .open-skiff-text p {
line-height: 24px;
font-size: 20px; }
@media (max-width: 640px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text p {
font-size: 18px; } }
.open-skiff-sec .open-skiff-wrap .open-skiff-text img {
margin-bottom: 35px; }
@media (max-width: 1200px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text img {
margin-bottom: 15px; } }
@media (max-width: 1170px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text img {
width: 150px; } }
@media (max-width: 640px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text img {
margin-bottom: 15px;
width: 140px; } }
.open-skiff-sec .open-skiff-wrap .open-skiff-text a {
background: #000;
border-radius: 8px;
text-transform: uppercase;
color: #fff;
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 400;
padding: 4px 40px;
margin-left: 5px;
border: 1px solid transparent;
margin-top: 15px;
display: inline-block; }
.open-skiff-sec .open-skiff-wrap .open-skiff-text a:hover {
background: #b7b7b7; }
@media (max-width: 1200px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text a {
margin-top: 10px;
padding: 10px 45px; } }
@media (max-width: 1024px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text a {
margin-top: 10px;
padding: 6px 30px; } }
@media (max-width: 640px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text a {
padding: 4px 30px;
margin-top: 5px;
font-size: 18px; } }
@media (max-width: 480px) {
.open-skiff-sec .open-skiff-wrap .open-skiff-text a {
margin-top: 5px; } }
@media (max-height: 900px) and (min-width: 767px) {
.open-skiff-sec {
margin-bottom: 50px; }
.open-skiff-sec .open-skiff-wrap {
display: flex;
border-top: 4px solid #ebebeb;
justify-content: center; }
.open-skiff-sec .open-skiff-wrap .open-skiff-img img {
width: 500px; }
.open-skiff-sec .open-skiff-wrap .open-skiff-text {
width: 300px;
margin-top: 50px; }
.open-skiff-sec .open-skiff-wrap .open-skiff-img {
margin-right: 130px; }
.open-skiff-sec .open-skiff-wrap .open-skiff-text img {
margin-bottom: 15px;
width: 160px; } }
.single-img {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
width: 100%;
height: 650px; }
@media (max-width: 1024px) {
.single-img {
height: 500px; } }
@media (max-width: 767px) {
.single-img {
height: 400px; } }
@media (max-width: 640px) {
.single-img {
height: 230px; } }
.woocommerce .blockUI.blockOverlay:before, .woocommerce .loader:before {
height: 50px;
width: 50px;
position: absolute;
top: 50%;
left: 50%;
margin-left: -.5em;
margin-top: -.5em;
display: block;
content: "";
-webkit-animation: none;
-moz-animation: none;
animation: none;
background: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/skiff-sports-site-loader.gif);
background-size: cover;
line-height: 1;
text-align: center;
font-size: 2em; }
div.wpcf7 .ajax-loader {
background-image: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/skiff-sports-site-loader.gif);
width: 18px;
height: 18px;
margin-left: 10px;
background-repeat: no-repeat; }
.login .button.button-primary.button-large {
border: 1px solid #000 !important;
background: #000 none repeat scroll 0 0 !important; }
.grecaptcha-badge {
display: none; }
.woocommerce-order-received section.about-content.cms-page {
display: none; }
.page-template-tpl-contact-page .contact-form div.wpcf7-mail-sent-ok {
display: none; }
#cookie-law-info-bar span {
font-size: 16px !important;
display: inline-block;
font-family: "Calibri", sans-serif;
font-weight: 400; }
a#cookie_action_close_header {
margin-left: 10px !important;
padding: 4px 15px 5px 15px !important;
margin-bottom: 3px; }
#cookie-law-info-bar span a {
font-size: 16px !important;
text-transform: capitalize;
display: inline-block;
font-family: "Calibri", sans-serif;
font-weight: 400;
border-radius: 4px;
margin-left: 0px;
padding-top: 0px;
padding-bottom: 0px; }
#cookie-law-info-bar {
box-shadow: none !important;
padding: 5px 10px !important; }
@media (max-width: 640px) {
a#cookie_action_close_header {
margin-top: 2px !important; }
#cookie-law-info-bar span {
line-height: 22px !important; } }
@media (max-height: 900px) and (min-width: 767px) {
.single-img {
height: 480px; } }
.rig-accessories {
padding: 55px 0 0px; }
@media (max-width: 1024px) {
.rig-accessories {
padding: 40px 0 0px; } }
@media (max-width: 640px) {
.rig-accessories {
padding: 25px 0 0px; } }
.rig-accessories .rig-accessories-wrap {
display: flex;
align-items: center;
border-bottom: 4px solid #ebebeb;
padding-bottom: 70px; }
@media (max-width: 640px) {
.rig-accessories .rig-accessories-wrap {
flex-wrap: wrap;
padding-bottom: 25px;
flex-flow: column; } }
.rig-accessories .rig-accessories-wrap .rig-accessories-img {
margin-left: 100px; }
@media (max-width: 991px) {
.rig-accessories .rig-accessories-wrap .rig-accessories-img {
margin-left: 40px; } }
@media (max-width: 640px) {
.rig-accessories .rig-accessories-wrap .rig-accessories-img {
max-width: 100%;
margin-left: 0;
order: 1;
max-width: 250px;
margin: 0 auto;
margin-bottom: 15px; } }
.rig-accessories .rig-accessories-wrap .rig-accessories-text {
text-align: center;
max-width: 270px;
margin-top: 35px;
width: 100%; }
@media (max-width: 640px) {
.rig-accessories .rig-accessories-wrap .rig-accessories-text {
max-width: 100%;
order: 2;
max-width: 177px;
margin: 0 auto;
width: 100%; } }
.rig-accessories .rig-accessories-wrap .rig-accessories-text h2 {
font-size: 26px;
font-family: "Calibri", sans-serif;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 20px; }
@media (max-width: 640px) {
.rig-accessories .rig-accessories-wrap .rig-accessories-text h2 {
font-size: 20px;
margin-bottom: 10px; } }
.rig-accessories .rig-accessories-wrap .rig-accessories-text p {
line-height: 26px;
font-size: 22px;
font-family: "Calibri", sans-serif;
font-weight: 400; }
@media (max-width: 640px) {
.rig-accessories .rig-accessories-wrap .rig-accessories-text p {
font-size: 20px;
margin-bottom: 5px; } }
@media (max-width: 480px) {
.rig-accessories .rig-accessories-wrap .rig-accessories-text p {
font-size: 18px;
line-height: 22px; } }
.rig-accessories .rig-accessories-wrap .rig-accessories-text img {
margin-bottom: 35px; }
.rig-accessories .rig-accessories-wrap .rig-accessories-text a {
background: #000;
border-radius: 8px;
text-transform: uppercase;
color: #fff;
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 400;
padding: 4px 40px;
margin-left: 0px;
border: 1px solid transparent;
margin-top: 15px;
display: inline-block; }
.rig-accessories .rig-accessories-wrap .rig-accessories-text a:hover {
background: #b7b7b7; }
@media (max-width: 640px) {
.rig-accessories .rig-accessories-wrap .rig-accessories-text a {
font-size: 18px;
padding: 4px 30px; } }
@media (max-width: 480px) {
.rig-accessories .rig-accessories-wrap .rig-accessories-text a {
margin-top: 13px; } }
@media (max-height: 900px) and (min-width: 767px) {
.rig-accessories {
padding: 35px 0 0px; }
.rig-accessories .rig-accessories-wrap {
padding-bottom: 35px;
justify-content: center; }
.rig-accessories .rig-accessories-wrap .rig-accessories-img {
width: 500px; }
.rig-accessories .rig-accessories-wrap .rig-accessories-text {
top: 0; } }
.approach-racing {
padding: 64px 0 50px; }
@media (max-width: 1024px) {
.approach-racing {
padding: 60px 0 40px; } }
@media (max-width: 640px) {
.approach-racing {
padding: 30px 0 30px; } }
@media (max-width: 480px) {
.approach-racing {
padding: 20px 0 20px; } }
.approach-racing .approach-racing-desc {
max-width: 900px;
margin: 0 auto;
text-align: center;
width: 100%; }
@media (max-width: 640px) {
.approach-racing .approach-racing-desc {
max-width: 410px; } }
.approach-racing .approach-racing-desc h2 {
font-size: 26px;
font-family: "Calibri", sans-serif;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 30px; }
@media (max-width: 991px) {
.approach-racing .approach-racing-desc h2 {
margin-bottom: 15px; } }
@media (max-width: 640px) {
.approach-racing .approach-racing-desc h2 {
font-size: 22px; }
.approach-racing .approach-racing-desc h2 br {
display: none; } }
.approach-racing .approach-racing-desc p {
font-size: 20px;
color: #000;
font-family: "Calibri", sans-serif;
font-weight: 400;
margin-bottom: 20px;
line-height: 24px; }
@media (max-width: 480px) {
.approach-racing .approach-racing-desc p {
font-size: 18px; } }
@media (max-height: 900px) and (min-width: 767px) {
.approach-racing {
padding: 40px 0 25px; } }
.three-block {
padding: 80px 0 150px; }
@media (max-width: 1024px) {
.three-block {
padding: 80px 0 170px; } }
@media (max-width: 640px) {
.three-block {
padding: 30px 0 10px; } }
.three-block .three-block-list .three-block-icon {
text-align: center;
margin-bottom: 25px; }
@media (max-width: 640px) {
.three-block .three-block-list .three-block-icon {
margin: 10px 0 0 0;
width: 90px; } }
.three-block .three-block-list .three-block-desc {
text-align: center;
max-width: 200px;
width: 100%;
margin: 0 auto; }
.three-block .three-block-list .three-block-desc h2 {
font-size: 24px;
font-family: "Calibri", sans-serif;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 20px; }
@media (max-width: 640px) {
.three-block .three-block-list .three-block-desc h2 {
margin-bottom: 13px; }
.three-block .three-block-list .three-block-desc h2 br {
display: none; } }
@media (max-width: 480px) {
.three-block .three-block-list .three-block-desc h2 {
font-size: 22px;
margin-bottom: 8px; } }
.three-block .three-block-list .three-block-desc p {
line-height: 24px;
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 400; }
@media (max-width: 991px) {
.three-block .three-block-list .three-block-desc p {
font-size: 22px;
line-height: 26px; } }
@media (max-width: 640px) {
.three-block .three-block-list .three-block-desc p {
font-size: 20px;
line-height: 24px;
margin-bottom: 18px; } }
@media (max-width: 480px) {
.three-block .three-block-list .three-block-desc p {
font-size: 18px;
line-height: 22px; } }
.three-block .three-block-list .three-block-desc a {
background: #000;
border-radius: 8px;
text-transform: uppercase;
color: #fff;
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 400;
padding: 4px 28px;
margin-left: 5px;
border: 1px solid transparent;
margin-top: 33px;
display: inline-block;
position: absolute;
left: 0;
right: 0;
bottom: -80px;
max-width: 200px;
margin: 0 auto;
width: 100%;
text-align: center; }
.three-block .three-block-list .three-block-desc a:hover {
background: #b7b7b7; }
@media (max-width: 640px) {
.three-block .three-block-list .three-block-desc a {
bottom: 0;
position: relative; } }
@media (max-width: 480px) {
.three-block .three-block-list .three-block-desc a {
max-width: 165px;
padding: 5px 0;
font-size: 18px; } }
@media (max-width: 640px) {
.three-block .three-block-list .three-block-desc {
text-align: left;
max-width: 270px;
width: 100%;
margin-left: 35px;
height: auto !important;
margin-right: 0; } }
@media (max-width: 480px) {
.three-block .three-block-list .three-block-desc {
margin-left: 25px;
font-size: 22px;
line-height: 26px;
max-width: 100%; } }
@media (max-width: 640px) {
.three-block .three-block-list {
display: flex;
max-width: 450px;
margin: 0 auto;
margin-bottom: 30px; } }
@media (max-width: 480px) {
.three-block .three-block-list {
margin-bottom: 40px; } }
@media (max-height: 900px) and (min-width: 767px) {
.three-block {
padding: 50px 0 120px; }
.three-block .three-block-list .three-block-icon img {
width: 100px; } }
.help-desk-page .help-desk-heading {
max-width: 660px;
text-align: center;
width: 100%;
margin: 0 auto;
padding: 75px 0 55px; }
@media (max-width: 1170px) {
.help-desk-page .help-desk-heading {
padding: 25px 0 15px; } }
@media (max-width: 767px) {
.help-desk-page .help-desk-heading {
max-width: 480px; } }
.help-desk-page .help-desk-heading h1 {
font-size: 30px;
font-family: "Calibri", sans-serif;
font-weight: 700;
margin-bottom: 18px;
text-transform: uppercase; }
@media (max-width: 1170px) {
.help-desk-page .help-desk-heading h1 {
margin-bottom: 10px;
font-size: 26px; } }
@media (max-width: 640px) {
.help-desk-page .help-desk-heading h1 {
font-size: 22px; } }
.help-desk-page .help-desk-heading p {
font-size: 25px;
font-family: "Calibri", sans-serif;
font-weight: 400;
line-height: 34px; }
@media (max-width: 1170px) {
.help-desk-page .help-desk-heading p {
line-height: 24px;
font-size: 20px; } }
@media (max-width: 640px) {
.help-desk-page .help-desk-heading p {
line-height: 20px;
font-size: 18px; } }
@media (max-height: 900px) and (min-width: 767px) {
.help-desk-page .help-desk-heading {
padding: 30px 0 15px; }
.help-desk-page .help-desk-heading h1 {
font-size: 28px;
margin-bottom: 10px; }
.help-desk-page .help-desk-heading p {
font-size: 20px;
line-height: 24px; }
.help-desk-page .help-desk-heading {
max-width: 480px; } }
.video-popup-block {
border-bottom: 2px solid #ebebeb;
padding: 72px 0; }
@media (max-width: 1170px) {
.video-popup-block {
padding: 40px 0; } }
.video-popup-block .video-popup-block-heading {
max-width: 530px;
text-align: center;
width: 100%;
margin: 0 auto;
padding: 10px 0 55px; }
@media (max-width: 991px) {
.video-popup-block .video-popup-block-heading {
padding: 0 0 20px 0; } }
@media (max-width: 767px) {
.video-popup-block .video-popup-block-heading {
max-width: 428px; } }
.video-popup-block .video-popup-block-heading h2 {
font-size: 30px;
font-family: "Calibri", sans-serif;
font-weight: 700;
margin-bottom: 18px;
text-transform: uppercase; }
@media (max-width: 1170px) {
.video-popup-block .video-popup-block-heading h2 {
font-size: 26px;
margin-bottom: 10px; } }
@media (max-width: 991px) {
.video-popup-block .video-popup-block-heading h2 {
font-size: 24px; } }
@media (max-width: 767px) {
.video-popup-block .video-popup-block-heading h2 {
font-size: 22px; } }
.video-popup-block .video-popup-block-heading p {
font-size: 25px;
font-family: "Calibri", sans-serif;
font-weight: 400;
line-height: 34px; }
@media (max-width: 1170px) {
.video-popup-block .video-popup-block-heading p {
font-size: 22px;
line-height: 24px; } }
@media (max-width: 991px) {
.video-popup-block .video-popup-block-heading p {
font-size: 20px;
line-height: 22px; } }
@media (max-width: 640px) {
.video-popup-block .video-popup-block-heading p {
font-size: 18px;
line-height: 20px; } }
.video-popup-block .video-popup-block-wrap {
display: flex;
max-width: 1095px;
width: 100%;
justify-content: space-between;
margin: 0 auto;
margin-bottom: 60px; }
@media (max-width: 1170px) {
.video-popup-block .video-popup-block-wrap {
margin-bottom: 40px; } }
@media (max-width: 640px) {
.video-popup-block .video-popup-block-wrap {
display: inline-block; } }
.video-popup-block .video-popup-block-wrap .video-popup-block-text {
margin-top: -8px;
width: 499px;
margin-right: 15px; }
.video-popup-block .video-popup-block-wrap .video-popup-block-text h2 {
font-size: 30px;
font-family: "Calibri", sans-serif;
font-weight: 700;
margin-bottom: 18px; }
@media (max-width: 1170px) {
.video-popup-block .video-popup-block-wrap .video-popup-block-text h2 {
font-size: 26px;
margin-bottom: 10px; } }
@media (max-width: 991px) {
.video-popup-block .video-popup-block-wrap .video-popup-block-text h2 {
font-size: 24px; } }
@media (max-width: 767px) {
.video-popup-block .video-popup-block-wrap .video-popup-block-text h2 {
font-size: 22px; } }
.video-popup-block .video-popup-block-wrap .video-popup-block-text p {
font-size: 25px;
font-family: "Calibri", sans-serif;
font-weight: 400;
line-height: 31px; }
@media (max-width: 1170px) {
.video-popup-block .video-popup-block-wrap .video-popup-block-text p {
font-size: 22px;
line-height: 24px; } }
@media (max-width: 991px) {
.video-popup-block .video-popup-block-wrap .video-popup-block-text p {
font-size: 20px;
line-height: 22px; } }
@media (max-width: 640px) {
.video-popup-block .video-popup-block-wrap .video-popup-block-text p {
font-size: 18px;
line-height: 20px; } }
@media (max-width: 640px) {
.video-popup-block .video-popup-block-wrap .video-popup-block-text {
width: 100%;
margin: 0; } }
.video-popup-block .video-popup-block-wrap .video-popup-block-thumbnail {
width: 470px; }
@media (max-width: 640px) {
.video-popup-block .video-popup-block-wrap .video-popup-block-thumbnail {
width: 100%; } }
.video-popup-block .col-xl-12:last-child .video-popup-block-wrap {
margin-bottom: 0; }
@media (max-height: 900px) and (min-width: 767px) {
.video-popup-block {
padding: 50px 0; }
.video-popup-block .video-popup-block-wrap {
margin-bottom: 40px; }
.video-popup-block .video-popup-block-wrap .video-popup-block-text h2 {
font-size: 24px;
margin-bottom: 10px; }
.video-popup-block .video-popup-block-wrap .video-popup-block-text p {
font-size: 20px;
line-height: 28px; }
.video-popup-block .video-popup-block-heading {
padding-top: 0;
padding-bottom: 30px; }
.video-popup-block .video-popup-block-heading h2 {
margin-bottom: 10px;
font-size: 24px; }
.video-popup-block .video-popup-block-heading p {
font-size: 20px;
line-height: 24px; }
.video-popup-block .video-popup-block-heading {
max-width: 428px; } }
.our-aim .our-aim-desc {
border-bottom: 2px solid #ebebeb;
border-top: 2px solid #ebebeb;
text-align: center;
padding: 84px 0 84px 0; }
@media (max-width: 991px) {
.our-aim .our-aim-desc {
padding: 54px 0 40px 0; } }
@media (max-width: 640px) {
.our-aim .our-aim-desc {
border-bottom: 4px solid #ebebeb;
border-top: 4px solid #ebebeb;
padding: 24px 0 20px 0; } }
.our-aim .our-aim-desc h2 {
font-size: 24px;
font-family: "Calibri", sans-serif;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 15px; }
@media (max-width: 991px) {
.our-aim .our-aim-desc h2 {
font-size: 22px; } }
@media (max-width: 767px) {
.our-aim .our-aim-desc h2 {
font-size: 20px;
margin-bottom: 0px; } }
@media (max-width: 480px) {
.our-aim .our-aim-desc h2 {
font-size: 18px;
margin-bottom: 0px; } }
.our-aim .our-aim-desc p {
line-height: 26px;
font-size: 24px;
font-family: "Calibri", sans-serif;
font-weight: 400;
font-style: italic;
text-transform: uppercase;
margin-bottom: 0; }
@media (max-width: 991px) {
.our-aim .our-aim-desc p {
font-size: 24px; } }
@media (max-width: 767px) {
.our-aim .our-aim-desc p {
font-size: 20px; } }
@media (max-width: 640px) {
.our-aim .our-aim-desc p {
font-size: 18px; } }
@media (max-height: 900px) and (min-width: 767px) {
.our-aim .our-aim-desc {
padding: 35px 0; }
.our-aim .our-aim-desc h2 {
font-size: 22px;
margin-bottom: 8px; }
.our-aim .our-aim-desc p {
line-height: 20px;
font-size: 22px; } }
.product-tab-wrap .resp-tabs-list li {
font-size: 15px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
display: inline-block;
padding: 0;
line-height: 21px;
margin: 0 0 0 0;
list-style: none;
cursor: pointer;
width: auto;
text-align: center;
border-right: 1px solid #e9e9e9;
flex-grow: 1;
flex-basis: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff !important;
text-transform: uppercase; }
.product-tab-wrap .resp-tabs-container {
padding: 0px;
background-color: #fff;
clear: left;
max-width: 858px;
margin: 0 auto;
width: 100%; }
.product-tab-wrap h2.resp-accordion {
cursor: pointer;
padding: 5px;
display: none; }
.product-tab-wrap .resp-tab-content {
display: none;
padding: 15px; }
.product-tab-wrap ul.resp-tabs-list {
display: flex;
justify-content: center;
border: 1px solid #e9e9e9;
margin-bottom: 55px; }
.product-tab-wrap .resp-tabs-list li.resp-tab-active {
border: 1px solid #b7b7b7 !important;
background-color: #ebebeb !important; }
.product-tab-wrap .resp-tab-active {
border-bottom: none;
background-color: #fff; }
.product-tab-wrap .resp-content-active,
.resp-accordion-active {
display: block; }
.product-tab-wrap h2.resp-accordion {
font-size: 13px;
border: 1px solid #c1c1c1;
border-top: 0px solid #c1c1c1;
margin: 0px;
padding: 10px 15px; }
.product-tab-wrap h2.resp-tab-active {
border-bottom: 0px solid #c1c1c1 !important;
margin-bottom: 0px !important;
padding: 10px 15px !important; }
.product-tab-wrap h2.resp-tab-title:last-child {
border-bottom: 12px solid #c1c1c1 !important;
background: blue; } .product-tab-wrap .resp-vtabs ul.resp-tabs-list {
float: left;
width: 30%; }
.product-tab-wrap .resp-vtabs .resp-tabs-list li {
display: block;
padding: 15px 15px !important;
margin: 0 0 4px;
cursor: pointer;
float: none; }
.product-tab-wrap .resp-vtabs .resp-tabs-container {
padding: 0px;
background-color: #fff;
border: 1px solid #c1c1c1;
float: left;
width: 68%;
min-height: 250px;
border-radius: 4px;
clear: none; }
.product-tab-wrap .resp-vtabs .resp-tab-content {
border: none;
word-wrap: break-word; }
.product-tab-wrap .resp-vtabs li.resp-tab-active {
position: relative;
z-index: 1;
margin-right: -1px !important;
padding: 14px 15px 15px 14px !important;
border-top: 1px solid;
border: 1px solid #5AB1D0 !important;
border-left: 4px solid #5AB1D0 !important;
margin-bottom: 4px !important;
border-right: 1px #FFF solid !important; }
.product-tab-wrap .resp-arrow {
width: 0;
height: 0;
float: right;
margin-top: 6px;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 12px solid #000;
transition: all 0.5s ease-in-out; }
.product-tab-wrap h2.resp-tab-active span.resp-arrow {
border: none;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 12px solid #000;
transition: all 0.5s ease-in-out; } .product-tab-wrap h2.resp-tab-active {
background: #DBDBDB; }
.product-tab-wrap .resp-easy-accordion h2.resp-accordion {
display: block; }
.product-tab-wrap .resp-easy-accordion .resp-tab-content {
border: 1px solid #c1c1c1; }
.product-tab-wrap .resp-easy-accordion .resp-tab-content:last-child {
border-bottom: 1px solid #c1c1c1; }
.product-tab-wrap .resp-jfit {
width: 100%;
margin: 0px; }
.product-tab-wrap .resp-tab-content-active {
display: block; }
.product-tab-wrap h2.resp-accordion:first-child {
border-top: 1px solid #c1c1c1; }
.product-listing-wrap ul li a:hover h3 {
color: #000; }
.product-listing-wrap ul li a:hover img {
opacity: 0.6; }
.product-listing-wrap ul li a:hover {
color: #000; }
.product-listing-wrap ul li {
width: 33.33% !important;
padding: 0 15px !important;
box-sizing: border-box;
margin: 0 0 23px 0 !important; }
.product-listing-wrap ul li a {
display: inline-block;
border: 1px solid #c5c5c5;
width: 100%;
padding: 20px 35px 7px 35px;
height: 100%; }
.product-listing-wrap ul {
display: flex !important;
list-style: none !important;
flex-wrap: wrap !important;
margin: 0 -15px !important; }
.product-listing-wrap ul:before
.product-listing-wrap.resp-tab-content {
max-width: 805px;
margin: 0 auto;
width: 100%;
padding: 0;
text-align: center; }
.product-listing-block {
text-align: center; }
.product-tab-wrap {
padding: 46px 0; }
.product-listing-block h3 {
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 2px; }
.product-listing-block span {
display: inline-block;
font-size: 15px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #898989;
text-transform: uppercase; }
.product-listing-wrap ul li a img {
opacity: 1;
transition: all 0.5s ease-in-out; }
a.load-more {
background: #000;
border-radius: 8px;
text-transform: uppercase;
color: #fff;
font-size: 22px;
font-family: "Calibri", sans-serif;
font-weight: 400;
padding: 4px 38px;
margin-left: 5px;
border: 1px solid transparent;
margin-top: 50px;
display: inline-block;
letter-spacing: -1.2px; }
a.load-more:hover {
background: #b7b7b7;
color: #fff; }
.product-tab-wrap .resp-tabs-list li a {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 5px 22px;
border: 1px solid transparent;
text-shadow: 0 0 1px #000; }
.product-tab-wrap .resp-tabs-list li a:hover {
text-shadow: 0 0 1px #000;
color: #000; }
.product-tab-wrap .resp-tabs-list li a:hover {
background: #ebebeb !important;
border: 1px solid #b7b7b7; }
.product-listing-block img {
width: 120px !important;
display: block;
height: 120px !important;
object-fit: cover;
margin: 0 auto !important; }
.product-tab-wrap .resp-tabs-list li.active {
background: #ebebeb !important;
border: 1px solid #b7b7b7; }
.show-mbl-head {
display: none; }
@media only screen and (max-width: 1199px) {
.product-tab-wrap .resp-tabs-list li {
padding: 0px; }
.product-tab-wrap ul.resp-tabs-list {
margin-bottom: 30px; } } @media only screen and (max-width: 991px) {
.product-tab-wrap ul.resp-tabs-list {
display: flex;
width: 100%;
flex-wrap: wrap; }
.product-tab-wrap .resp-tabs-list li {
padding: 0px;
width: 50%;
flex-grow: initial;
flex-basis: auto;
border-bottom: 1px solid #e9e9e9;
display: inline-block; }
.product-tab-wrap .resp-tabs-list li a {
padding: 8px 0; }
.product-tab-wrap h2.resp-accordion {
display: block; }
.product-tab-wrap .resp-vtabs .resp-tab-content {
border: 1px solid #C1C1C1; }
.product-tab-wrap .resp-vtabs .resp-tabs-container {
border: none;
float: none;
width: 100%;
min-height: 100px;
clear: none; }
.product-tab-wrap .resp-accordion-closed {
display: none !important; }
.product-tab-wrap .resp-vtabs .resp-tab-content:last-child {
border-bottom: 1px solid #c1c1c1 !important; }
.product-listing-wrap ul li {
width: 50% !important; }
.product-tab-wrap h2.resp-tab-active {
border-bottom: 1px solid #c1c1c1 !important; }
.product-tab-wrap h2.resp-accordion {
font-size: 18px;
border: 1px solid #000 !important;
border-top: 1px solid #000 !important;
margin: 0 0 15px 0;
padding: 14px 15px;
background-color: transparent !important;
border-radius: 6px; }
.product-tab-wrap h2.resp-accordion:first-child {
border-top: 1px solid #000;
border-color: #000 !important; }
.product-listing-wrap.resp-tab-content {
margin-top: 15px; }
.product-tab-wrap h2.resp-tab-active {
padding: 14px 15px !important; } }
.lmp_load_more_button .lmp_button {
position: relative;
display: inline-block;
font-size: 18px !important;
text-decoration: none;
line-height: 1em;
box-sizing: border-box;
padding: 10px 30px 10px 30px !important;
border-radius: 6px !important;
text-transform: uppercase;
margin-top: 20px; }
.product-tab-wrap .lmp_load_more_button.br_lmp_button_settings .lmp_button:hover {
background-color: #b7b7b7 !important;
color: #fff !important; }
@media only screen and (max-width: 991px) {
.product-listing-wrap ul li {
width: 100% !important;
max-width: 300px;
margin: 0 auto !important;
margin-bottom: 20px !important; } }
@media only screen and (max-width: 767px) {
.product-tab-wrap ul.resp-tabs-list {
display: none; }
.show-mbl-head {
display: block;
margin-bottom: 40px;
position: relative; }
.product-tab-wrap .resp-tabs-list li {
width: 100%; }
.show-mbl-head:after {
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 12px solid #000;
position: absolute;
content: "";
right: 15px;
top: 18px;
transition: all 0.5s ease-in-out;
cursor: pointer; }
.show-mbl-head h4 {
border: 2px solid #000;
padding: 8px 10px 8px 10px;
border-radius: 6px;
font-size: 20px; }
.show-mbl-head.open:after {
transform: rotate(180deg); } }
@media only screen and (max-width: 480px) {
.product-tab-wrap .resp-tabs-list li {
width: 100%; } }
.video-sec .video-wrapper {
position: relative;
width: 100%;
padding-bottom: 41.4%; }
@media (max-width: 640px) {
.video-sec .video-wrapper {
padding-bottom: 50.4%; } }
.video-sec .video-wrapper iframe {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border: none; }
.video-sec .video-wrapper .play-video {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: -1px;
width: calc(100% + 0px);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
cursor: pointer; }
.video-sec .video-wrapper .play-video.video-play-button:after {
content: "";
position: absolute;
top: 35px;
left: 0;
right: 0;
bottom: 0;
background: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/play-video-btn.png);
width: 100%;
height: 100%;
margin: auto;
background-repeat: no-repeat;
background-position: center center;
opacity: 0.9;
transition: all 0.5s ease-in-out; }
@media (max-width: 1170px) {
.video-sec .video-wrapper .play-video.video-play-button:after {
background-size: 25%; } }
@media (max-width: 640px) {
.video-sec .video-wrapper .play-video.video-play-button:after {
background-size: 140px;
top: 15px; } }
@media (max-width: 480px) {
.video-sec .video-wrapper .play-video.video-play-button:after {
background-size: 110px; } }
.video-sec .video-wrapper .play-video.video-play-button:after:hover {
opacity: 1; }
.video-sec .video-wrapper .play-video.overlay-black:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0; background: -moz-linear-gradient(-45deg, black 0%, rgba(0, 0, 0, 0.99) 1%, rgba(255, 255, 255, 0) 100%); background: -webkit-linear-gradient(-45deg, black 0%, rgba(0, 0, 0, 0.99) 1%, rgba(255, 255, 255, 0) 100%); background: linear-gradient(135deg, black 0%, rgba(0, 0, 0, 0.99) 1%, rgba(255, 255, 255, 0) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00ffffff',GradientType=1 ); }
.video-text {
position: absolute;
z-index: 9;
max-width: 450px;
top: 80px; }
@media (max-width: 1170px) {
.video-text {
top: 20px; } }
@media (max-width: 991px) {
.video-text {
top: 20px; } }
.video-text h2 {
color: #fff;
font-size: 30px;
font-family: "Calibri", sans-serif;
font-weight: 700;
margin-bottom: 20px; }
@media (max-width: 1170px) {
.video-text h2 {
margin-bottom: 10px;
font-size: 26px; } }
@media (max-width: 991px) {
.video-text h2 {
margin-bottom: 5px;
font-size: 24px; } }
.video-text p {
color: #fff;
font-size: 25px;
font-family: "Calibri", sans-serif;
font-weight: 400;
line-height: 30px; }
@media (max-width: 1170px) {
.video-text p {
line-height: 24px;
font-size: 22px; } }
@media (max-width: 991px) {
.video-text p {
line-height: 22px;
font-size: 20px; } }
@media (max-width: 640px) {
.video-text p {
line-height: 20px;
font-size: 18px; } }
.video-sec .video-wrapper .play-video.video-play-button:hover:after {
opacity: 1; }
.parallax-img {
background-attachment: fixed; }
@media (max-width: 1024px) {
.parallax-img {
background-attachment: initial; } }
@media (max-height: 900px) and (min-width: 767px) {
.video-sec .video-wrapper {
padding-bottom: 37.4%; }
.video-sec .video-wrapper .play-video.video-play-button:after {
background-size: 15%; } }
.contact-us span.select2.select2-container.select2-container--default {
background-color: #fff;
border: none;
border-radius: 4px;
box-sizing: border-box;
display: block;
position: absolute;
left: 0;
width: 100% !important;
z-index: 1051;
top: 0; }
.contact-us .select2-results__options {
list-style: none;
padding: 0; }
.contact-us span.select2-search.select2-search--dropdown input {
width: 100%;
padding: 0 10px;
max-width: 360px;
margin: 0 auto;
display: inline-block;
border: 1px solid #000; }
.contact-us .select2-dropdown {
border: none;
display: inline-block;
text-align: center;
padding: 0;
border: 2px solid #000; }
.contact-us .select2-container--default .select2-selection--single {
color: #000;
background-color: #fff;
border: 2px solid #000;
padding: 10px 20px;
border-radius: 10px;
height: 44px;
margin-bottom: 0px;
width: 100%;
display: block;
left: 0;
top: 0px;
text-align: left;
height: 47px;
font-size: 18px; }
.contact-us .select2-container--default .select2-selection--single .select2-selection__arrow b {
border-color: #000 transparent transparent;
border-style: solid;
border-width: 15px 8px 0;
margin-left: -24px;
margin-top: 6px;
transition: all .5s ease-in-out;
position: absolute;
right: 12px; }
.contact-us .select2-results__options li {
cursor: pointer;
padding: 4px 21px;
text-align: left;
color: #000; }
.contact-us .select2-results__options li:hover {
background: #0073aa;
color: #fff; }
.contact-us .contact-form .wpcf7-form-control-wrap {
position: relative;
display: inline-block;
width: 100%; }
.contact-us .select2-container--default .select2-selection--single:focus {
border-color: #000 !important;
outline: none; }
.contact-us .select2-container--open .select2-dropdown--below {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0; }
.contact-us .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0; }
.contact-us span.select2.select2-container.select2-container--default.select2-container--below.select2-container--open .select2-selection--single {
background: #d5d5d5 !important; }
.contact-us span.select2.select2-container.select2-container--default.select2-container--below.select2-container--open span.select2-selection.select2-selection--single {
border-bottom: none; }
.contact-us .select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
background-color: #bcbcbc; }
.contact-us .select2-dropdown {
background-color: #d5d5d5 !important; }
.contact-us .select2-results__option {
padding: 5px 25px;
font-size: 18px; }
.contact-us .select2-container--default .select2-search--dropdown .select2-search__field {
display: none;
padding: 0; }
.contact-us .select2-search--dropdown {
padding: 0; }
.contact-us .select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
background-color: transparent;
color: #000; }
.contact-us .select2-container--default .select2-results__option[aria-selected=true]:hover {
background-color: #bcbcbc;
color: #fff; }
.contact .contact-img {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
width: 100%;
height: 100%; }
@media (max-width: 991px) {
.contact .contact-img {
height: 500px; } }
@media (max-width: 767px) {
.contact .contact-img {
height: 350px; } }
@media (max-width: 640px) {
.contact .contact-img {
height: 300px; } }
.contact .contact-form {
max-width: 415px;
margin-left: 165px;
width: 100%;
text-align: center;
padding: 40px 15px 30px 15px; }
@media (max-width: 1170px) {
.contact .contact-form {
margin: 0 auto; } }
@media (max-width: 767px) {
.contact .contact-form {
padding: 25px 15px 20px 15px; } }
.contact .contact-form h2 {
font-size: 30px;
font-family: "Calibri", sans-serif;
font-weight: 700;
color: #000; }
@media (max-width: 767px) {
.contact .contact-form h2 {
font-size: 28px; } }
.contact .contact-form form {
padding: 18px 0 0 0; }
@media (max-width: 767px) {
.contact .contact-form form {
padding: 0; } }
.contact .contact-form form .form-element {
margin-bottom: 12px; }
.contact .contact-form form .form-element .rev-select select {
display: none; }
.contact .contact-form form .form-element .rev-select .select-options li {
background: #f5f5f5;
border: solid 1px #000;
padding: 8px 15px 8px 15px !important;
list-style-type: none;
cursor: pointer;
width: 100% !important;
text-align: left;
border-radius: 0px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
font-size: 18px; }
.contact .contact-form form .form-element .rev-select .select-options li:hover {
background: #acacac;
color: #fff; }
.contact .contact-form form .form-element .rev-select .select-styled {
background: transparent;
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
cursor: pointer;
border: solid 2px #000;
padding: 8px 55px 8px 15px;
height: auto;
line-height: inherit;
position: relative;
overflow: hidden;
border-radius: 10px;
font-size: 18px;
color: #000;
text-align: left; }
.contact .contact-form form .form-element .rev-select .select-styled.active:before {
top: 16px;
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg); }
.contact .contact-form form .form-element .rev-select .select-styled:before {
content: "";
position: absolute;
right: 12px;
top: 18px;
pointer-events: none;
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 11px solid #000;
transition: all 0.5s ease-in-out;
transform: rotate(0deg);
border-bottom: none; }
.contact .contact-form form .form-element .wpcf7-list-item-label {
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000; }
.contact .contact-form form .form-element label {
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 400;
display: inline-block;
color: #000;
margin-bottom: 5px;
width: 100%;
text-align: left; }
@media (max-width: 767px) {
.contact .contact-form form .form-element label {
font-size: 18px; } }
.contact .contact-form form .form-element input[type="text"] {
border: 2px solid #000;
border-radius: 10px;
padding: 8px 20px;
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
width: 100%; }
.contact .contact-form form .form-element input[type="text"]:focus {
outline: none; }
@media (max-width: 767px) {
.contact .contact-form form .form-element input[type="text"] {
padding: 6px 20px; } }
.contact .contact-form form .form-element input[type="email"] {
border: 2px solid #000;
border-radius: 10px;
padding: 8px 20px;
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
width: 100%; }
.contact .contact-form form .form-element input[type="email"]:focus {
outline: none; }
@media (max-width: 767px) {
.contact .contact-form form .form-element input[type="email"] {
padding: 6px 20px; } }
.contact .contact-form form .form-element select {
border: 2px solid #000;
border-radius: 10px;
padding: 8px 20px;
font-size: 20px;
width: 100%;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
background-image: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/down-arrow.png);
background-repeat: no-repeat;
background-position: 96% center; }
.contact .contact-form form .form-element select:focus {
outline: none; }
@media (max-width: 767px) {
.contact .contact-form form .form-element select {
padding: 6px 20px; } }
.contact .contact-form form .form-element input[type="checkbox"] {
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000; }
.contact .contact-form form .form-element input[type="checkbox"]:focus {
outline: none; }
.contact .contact-form form .form-element textarea {
border: 2px solid #000;
border-radius: 10px;
padding: 10px 20px;
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
width: 100%;
resize: none; }
.contact .contact-form form .form-element textarea:focus {
outline: none; }
@media (max-width: 1199px) {
.contact .contact-form form .form-element textarea {
height: 180px; } }
@media (max-width: 767px) {
.contact .contact-form form .form-element textarea {
padding: 6px 20px;
height: 150px; } }
.contact .contact-form form .form-element input[type="submit"] {
border-radius: px;
padding: 6px 60px;
font-size: 22px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #fff;
background: #000;
border: none;
opacity: 1;
border-radius: 6px;
text-transform: uppercase;
transition: all 0.5s ease-in-out; }
.contact .contact-form form .form-element input[type="submit"]:hover {
background: #b7b7b7; }
.contact .contact-form form .form-element input[type="submit"]:focus {
outline: none; }
.contact .contact-form form .form-element p {
text-align: left; }
span.wpcf7-list-item {
margin-left: 0 !important; }
.contact .contact-form form p {
text-align: left;
color: #000;
font-size: 17px; }
.contact-form .ajax-loader {
margin: 14px 0 0 4px !important;
vertical-align: middle;
position: absolute !important;
background-size: 100%; }
.contact-form span.wpcf7-not-valid-tip {
text-align: left; }
.contact-form div.wpcf7-validation-errors {
border: none;
font-size: 18px;
padding: 0;
margin: 0; }
.contact-form div.wpcf7-mail-sent-ok {
border: none;
color: green;
font-size: 20px;
padding: 0;
margin: 0;
display: none !important; }
.contact .contact-form form .form-element label:before {
display: none; }
.contact .contact-form form .form-element label:after {
display: none; }
.contact .contact-form form div.wpcf7-spam-blocked {
border: none;
font-size: 18px;
line-height: 22px;
color: darkred;
margin-top: 0; }
.contact .contact-form input[type="checkbox"] {
padding: 0;
height: initial;
width: initial;
margin-bottom: 0;
display: none;
cursor: pointer; }
.contact .contact-form .wpcf7-list-item-label {
position: relative;
cursor: pointer;
padding-left: 30px; }
.contact .contact-form .wpcf7-list-item-label:before {
content: '';
-webkit-appearance: none;
background-color: transparent;
border: 2px solid #000;
padding: 7px;
display: inline-block;
position: absolute;
vertical-align: middle;
cursor: pointer;
margin-right: 10px;
top: 0px;
left: 0; }
.contact .contact-form form .form-element select {
background-color: #fff;
opacity: 0; }
.contact .contact-form input:checked + .wpcf7-list-item-label:after {
content: '';
display: block;
position: absolute;
top: 3px;
left: 6px;
width: 6px;
height: 12px;
border: solid #000;
border-width: 0 3px 3px 0;
transform: rotate(35deg); }
.contact .contact-form form .form-element .rev-select .select-styled:focus {
outline: none;
box-shadow: none; }
@media (max-width: 991px) {
.contact-us .select2-container--default .select2-selection--single .select2-selection__arrow b {
border-width: 10px 6px 0;
margin-top: 8px; } }
@media (max-width: 767px) {
.contact-us .select2-container--default .select2-selection--single {
height: 43px; }
.contact-us .select2-container--default .select2-selection--single .select2-selection__arrow b {
border-width: 10px 6px 0; } }
@media (max-width: 640px) {
.contact-us .select2-container--default .select2-selection--single .select2-selection__arrow b {
left: auto; } }
.form-row.place-order .checkbox .woocommerce-terms-and-conditions-checkbox-text {
position: relative;
cursor: pointer;
padding-left: 30px; }
.form-row.place-order .checkbox .woocommerce-terms-and-conditions-checkbox-text:before {
content: '';
-webkit-appearance: none;
background-color: transparent;
border: 2px solid #000;
padding: 7px;
display: inline-block;
position: absolute;
vertical-align: middle;
cursor: pointer;
margin-right: 10px;
top: 2px;
left: 0; }
.form-row.place-order .checkbox input:checked + .woocommerce-terms-and-conditions-checkbox-text:after {
content: '';
display: block;
position: absolute;
top: 4px;
left: 6px;
width: 6px;
height: 12px;
border: solid #000;
border-width: 0 3px 3px 0;
transform: rotate(35deg); }
.form-row.place-order .checkbox input[type=checkbox] {
display: none; }
.two-block {
padding: 40px 0; }
@media (max-width: 991px) {
.two-block {
padding: 40px 0; } }
.two-block .two-block-wrap {
max-width: 380px;
margin: 0 auto;
width: 100%; }
.two-block .two-block-wrap img {
display: block;
margin: 0 auto;
margin-bottom: 30px; }
@media (max-width: 991px) {
.two-block .two-block-wrap img {
margin-bottom: 30px; } }
@media (max-width: 767px) {
.two-block .two-block-wrap img {
margin-bottom: 20px; } }
@media (max-width: 640px) {
.two-block .two-block-wrap img {
width: 180px; } }
@media (max-width: 640px) {
.two-block .two-block-wrap {
margin-bottom: 30px; } }
.two-block .two-block-wrap h2 {
font-size: 30px;
font-family: "Calibri", sans-serif;
font-weight: 700;
color: #000;
margin-bottom: 19px; }
@media (max-width: 991px) {
.two-block .two-block-wrap h2 {
font-size: 24px;
margin-bottom: 10px; } }
.two-block .two-block-wrap p {
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
line-height: 22px;
margin-bottom: 18px; }
@media (max-width: 767px) {
.two-block .two-block-wrap p {
margin-bottom: 10px; } }
.two-block .two-block-wrap span {
display: inline-block;
width: 100%;
font-weight: 700; }
.two-block .two-block-wrap span a {
display: inline-block;
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000; }
.two-block .two-block-wrap span a:hover {
color: #000;
text-shadow: 0px 0px 1px #000; }
.two-block .got-a-question {
text-align: center;
margin-top: 30px;
width: 100%; }
@media (max-width: 991px) {
.two-block .got-a-question {
margin-top: 40px; } }
@media (max-width: 767px) {
.two-block .got-a-question {
margin-top: 20px; } }
@media (max-width: 640px) {
.two-block .got-a-question {
margin-top: 0px; } }
.two-block .got-a-question a {
display: inline-block;
background: #000;
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 400;
padding: 6px 37px;
text-transform: uppercase;
color: #fff;
border-radius: 8px; }
.two-block .got-a-question a:hover {
background: #b7b7b7;
color: #fff; }
@media (max-width: 767px) {
.two-block .got-a-question a {
padding: 6px 17px;
font-size: 16px; } }
@media (max-height: 900px) and (min-width: 767px) {
.two-block .got-a-question {
margin-top: 30px; }
.two-block {
padding: 50px 0; }
.two-block .two-block-wrap img {
margin-bottom: 30px; } }
.woocommerce div.product p.price del:after {
content: "";
position: absolute;
top: 14px;
left: 0;
width: 53px;
height: 2px;
background: #000;
opacity: 0.5; }
.woocommerce div.product p.price del {
position: relative; }
.woocommerce div.product p.price ins {
padding-left: 15px; }
.flex-control-thumbs .owl-item {
display: inline-block;
text-align: center;
padding: 0 5px; }
.woocommerce div.product div.images .flex-control-thumbs {
position: initial;
max-width: 420px;
margin: 0 auto;
width: 100%;
padding: 0;
text-align: center; }
.woocommerce div.product div.images img {
max-width: 400px;
height: 400px;
margin: 0 auto;
margin-bottom: 40px;
margin-top: 40px;
object-fit: cover; }
.debitis-quo-nesciunt-aut figure.woocommerce-product-gallery__wrapper {
margin: 50px 0 0 !important; }
.woocommerce div.product div.images .flex-control-thumbs li {
width: 100%;
float: left;
margin: 0;
list-style: none;
height: 130px;
border: 1px solid #000; }
.woocommerce div.product div.images .flex-control-thumbs li img {
cursor: pointer;
max-width: 100% !important;
margin: 0 auto;
display: flex;
align-items: center;
padding: 15px;
height: 100%; }
.woocommerce-product-details__short-description {
margin-top: 15px; }
.single-product .owl-nav .owl-prev,
.single-product .owl-nav .owl-next {
cursor: pointer;
font-size: 0;
position: absolute;
left: 30px;
top: auto;
bottom: 70px; }
.single-product .owl-nav .owl-next {
left: auto;
right: 45px !important;
bottom: 65px;
top: auto !important; }
.single-product .owl-nav .owl-prev {
bottom: 65px;
top: auto !important;
left: 45px !important; }
.single-product .owl-nav .owl-prev:hover:before,
.single-product .owl-nav .owl-next:hover:before {
border-color: #b7b7b7 !important; }
.woocommerce div.product .product_title {
font-size: 20px;
text-transform: uppercase;
color: #000; }
.woocommerce div.product img {
margin-bottom: 15px;
width: 120px; }
.woocommerce-product-details__short-description p {
font-size: 18px;
color: #000;
line-height: 22px; }
.price span {
margin-bottom: 0;
color: #000;
display: inline-block;
padding-bottom: 0; }
.woocommerce div.product p.price {
margin-bottom: 18px;
position: relative; }
.woocommerce div.product div.summary {
margin: 50px 0 50px 0; }
.stock.in-stock {
display: inline-block;
color: #000 !important;
font-size: 18px !important;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 10px; }
.woocommerce div.product form.cart .button {
vertical-align: middle;
float: left;
background: #000;
font-size: 18px;
text-transform: uppercase;
padding: 11px 32px 11px 32px;
border-radius: 6px; }
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
cursor: zoom-in; }
.woocommerce div.product form.cart .button:hover {
background: #b7b7b7; }
.woocommerce .quantity .qty {
text-align: center;
border: 1px solid #000;
width: 50px;
height: 40px;
padding: 3px 0 1px 0;
border-radius: 6px;
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 400; }
.product_meta {
line-height: 18px; }
.product_meta span {
display: inline-block;
font-size: 18px;
color: #000; }
.woocommerce div.product form.cart div.quantity {
margin: 0 15px 0 10px; }
.woocommerce div.product form.cart {
margin-bottom: 22px;
display: flex;
align-items: center; }
.qty {
text-transform: uppercase;
color: #000;
padding-top: 2px; }
.woocommerce-product-gallery .owl-nav .owl-next.disabled {
opacity: 0; }
.woocommerce-product-gallery .owl-nav .owl-prev.disabled {
opacity: 0; }
.single-product .owl-dots {
display: none; }
.PaymentRequestButton--dark {
background: #000 !important;
text-transform: uppercase;
width: auto;
padding: 0 22px; }
a.button.wc-forward {
background: #000;
color: #fff; }
a.button.wc-forward:hover {
background: #b7b7b7;
color: #fff; }
.PaymentRequestButton--dark:hover {
background: #b7b7b7; }
.race-ready-package #wc-stripe-payment-request-wrapper {
display: none !important; }
.race-ready-package #wc-stripe-payment-request-button-separator {
display: none !important; }
@media only screen and (max-width: 1199px) {
.single-product .owl-nav .owl-next {
right: 40px !important; }
.single-product .owl-nav .owl-prev {
left: 40px !important; }
.woocommerce div.product div.images .flex-control-thumbs {
max-width: 320px; }
.woocommerce div.product div.images img {
max-width: 350px;
height: 340px;
object-fit: cover; } }
@media only screen and (max-width: 991px) {
.single-product .owl-nav .owl-next {
right: -20px !important; }
.single-product .owl-nav .owl-prev {
left: -20px !important; }
.woocommerce div.product div.summary {
padding-left: 15px;
margin-bottom: 0; }
.woocommerce div.product .product_title {
font-size: 20px;
margin-bottom: 2px; } }
@media only screen and (max-width: 768px) {
.woocommerce div.product div.images .flex-control-thumbs {
max-width: 400px;
margin-top: 30px; }
.single-product .owl-nav .owl-next {
right: 80px !important; }
.single-product .owl-nav .owl-prev {
left: 80px !important; } }
@media only screen and (max-width: 767px) {
.woocommerce .quantity .qty {
width: 35px;
height: 35px; }
.woocommerce div.product div.images .flex-control-thumbs {
max-width: 400px;
margin-top: 30px; }
.price span {
font-size: 18px; }
.woocommerce div.product div.images img {
display: block;
width: 450px;
margin: 0 auto;
box-shadow: none; }
.woocommerce div.product {
margin-bottom: 0;
position: relative;
max-width: 640px !important;
margin: 0 auto; }
.single-product .owl-nav .owl-next {
right: 80px !important; }
.single-product .owl-nav .owl-prev {
left: 80px !important; }
.woocommerce div.product div.summary {
padding: 0; }
td.product-quantity:before {
position: relative;
top: 6px; } }
@media only screen and (max-width: 640px) {
.single-product .owl-nav .owl-next {
display: none !important; }
.single-product .owl-nav .owl-prev {
display: none !important; }
.single-product .owl-dots {
display: block;
position: absolute;
top: auto;
bottom: -50px;
left: 0;
right: 0; }
.single-product .owl-dots .owl-dot {
width: 15px;
height: 15px;
border-radius: 100%;
display: inline-block;
margin: 0 5px;
border: solid 1px #000;
cursor: pointer; }
.single-product .owl-dots .owl-dot.active {
background: #000; }
.single-product .owl-dots .owl-dot span {
display: none; }
.woocommerce div.product div.images {
margin-bottom: 50px; } }
@media (max-height: 900px) and (min-width: 767px) {
.woocommerce div.product .product_title {
font-size: 20px;
margin-bottom: 10px; } }
.woocommerce a.added_to_cart {
opacity: 0; }
.xoo-cp-container {
border: none;
background: #fff;
width: 93%;
box-shadow: none;
border-radius: 0;
padding: 30px 0 40px; }
.xoo-cp-success {
background-color: transparent;
text-align: center !important;
font-size: 18px;
color: #000;
line-height: 20px; }
a.xcp-btn:hover {
background: #b7b7b7;
border-color: #b7b7b7; }
a.xcp-btn {
font-size: 16px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #fff !important;
width: 30%; }
.xoo-cp-icon-check:before {
display: none; }
.woocommerce button.button.added:after {
display: none; }
@media only screen and (max-width: 640px) {
a.xcp-btn {
width: 180px;
margin-bottom: 10px; }
.xoo-cp-success {
margin-bottom: 0; } }
@media only screen and (max-width: 480px) {
a.xcp-btn {
width: 200px; }
.woocommerce div.product div.images img {
width: 260px;
height: 240px; } }
@media all and (-ms-high-contrast: none) {
.woocommerce div.product div.images img {
object-fit: cover; }
.woocommerce div.product div.images .flex-control-thumbs li {
display: inline-block !important; } }
.race-ready-tabs {
padding: 46px 0;
width: 100%;
display: inline-block; }
.race-ready-tabs .resp-tabs-list li {
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 700;
color: #b7b7b7;
display: inline-block;
padding: 15px 10px;
line-height: 21px;
margin: 0 0 0 0;
list-style: none;
cursor: pointer;
width: auto;
text-align: center;
border-right: 1px solid #e9e9e9;
flex-grow: 1;
flex-basis: 0;
display: flex;
align-items: center;
justify-content: center;
background-color: #fff !important;
text-transform: uppercase; }
.race-ready-tabs .resp-tabs-container {
padding: 0px;
background-color: #fff;
clear: left;
max-width: 100%;
margin: 0 auto;
width: 100%; }
.race-ready-tabs h2.resp-accordion {
cursor: pointer;
padding: 5px;
display: none; }
.race-ready-tabs .resp-tab-content {
display: none;
border: 1px solid #b7b7b7;
padding: 25px 40px 10px 25px; }
.race-ready-tabs ul.resp-tabs-list {
display: flex;
justify-content: center;
border: 1px solid #e9e9e9;
margin-bottom: 0; }
.race-ready-desc p {
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
font-size: 20px;
line-height: 22px; }
.race-ready-tabs .resp-tabs-list li.resp-tab-active {
border: 1px solid #b7b7b7 !important;
background-color: #ebebeb !important;
border-bottom: none !important; }
.race-ready-tabs .resp-tab-active {
border-bottom: none;
background-color: #fff;
color: #000 !important; }
.race-ready-tabs .resp-content-active,
.resp-accordion-active {
display: block; }
.race-ready-tabs h2.resp-accordion {
font-size: 13px;
border: 1px solid #c1c1c1;
border-top: 0px solid #c1c1c1;
margin: 0px;
padding: 10px 15px;
color: #b7b7b7; }
.race-ready-tabs h2.resp-tab-active {
border-bottom: 0px solid #c1c1c1 !important;
margin-bottom: 0px !important;
padding: 10px 15px !important; }
.race-ready-tabs h2.resp-tab-title:last-child {
border-bottom: 12px solid #c1c1c1 !important;
background: blue; } .race-ready-tabs .resp-vtabs ul.resp-tabs-list {
float: left;
width: 30%; }
.race-ready-tabs .resp-vtabs .resp-tabs-list li {
display: block;
padding: 15px 15px !important;
margin: 0 0 4px;
cursor: pointer;
float: none; }
.race-ready-tabs .resp-vtabs .resp-tabs-container {
padding: 0px;
background-color: #fff;
border: 1px solid #c1c1c1;
float: left;
width: 68%;
min-height: 250px;
border-radius: 4px;
clear: none; }
.race-ready-tabs .resp-vtabs .resp-tab-content {
border: none;
word-wrap: break-word; }
.race-ready-tabs .resp-vtabs li.resp-tab-active {
position: relative;
z-index: 1;
margin-right: -1px !important;
padding: 14px 15px 15px 14px !important;
border-top: 1px solid;
border: 1px solid #5AB1D0 !important;
border-left: 4px solid #5AB1D0 !important;
margin-bottom: 4px !important;
border-right: 1px #FFF solid !important; }
.race-ready-tabs .resp-arrow {
float: right;
margin-top: 2px;
content: "";
height: 14px;
width: 14px;
border-right: solid 3px #000;
border-bottom: solid 3px #000;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
display: block;
transition: 0.5s all; }
.race-ready-tabs h2.resp-tab-active span.resp-arrow {
-webkit-transform: rotate(225deg);
-ms-transform: rotate(225deg);
-o-transform: rotate(225deg);
transform: rotate(225deg);
margin-top: 7px; } .race-ready-tabs h2.resp-tab-active {
background: #DBDBDB; }
.race-ready-tabs .resp-easy-accordion h2.resp-accordion {
display: block; }
.race-ready-tabs .resp-easy-accordion .resp-tab-content {
border: 1px solid #c1c1c1; }
.race-ready-tabs .resp-easy-accordion .resp-tab-content:last-child {
border-bottom: 1px solid #c1c1c1; }
.race-ready-tabs .resp-jfit {
width: 100%;
margin: 0px; }
.race-ready-tabs .resp-tab-content-active {
display: block; }
.race-ready-tabs h2.resp-accordion:first-child {
border-top: 1px solid #c1c1c1; }
.product-listing-wrap ul li a:hover h3 {
color: #000; }
.product-listing-wrap ul li a:hover img {
opacity: 0.6; }
.product-listing-wrap ul li a:hover {
color: #000; }
.product-listing-wrap ul li {
width: 33.33% !important;
padding: 0 15px !important;
box-sizing: border-box;
margin: 0 0 23px 0 !important; }
.race-ready-list ul li {
color: #000; }
.product-listing-wrap ul {
display: flex !important;
list-style: none !important;
flex-wrap: wrap !important;
margin: 0 -15px !important; }
.product-listing-wrap ul:before {
display: none !important; }
.product-listing-wrap.resp-tab-content {
max-width: 805px;
margin: 0 auto;
width: 100%;
padding: 0;
text-align: center; }
.product-listing-block {
text-align: center; }
.race-ready-tabs {
padding: 46px 0; }
.product-listing-block h3 {
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 2px; }
.product-listing-block span {
display: inline-block;
font-size: 15px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #898989;
text-transform: uppercase; }
.product-listing-wrap ul li a img {
opacity: 1;
transition: all 0.5s ease-in-out; }
a.load-more {
background: #000;
border-radius: 8px;
text-transform: uppercase;
color: #fff;
font-size: 22px;
font-family: "Calibri", sans-serif;
font-weight: 400;
padding: 4px 38px;
margin-left: 5px;
border: 1px solid transparent;
margin-top: 50px;
display: inline-block;
letter-spacing: -1.2px; }
a.load-more:hover {
background: #b7b7b7;
color: #fff; }
.race-ready-tabs .resp-tabs-list li a {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 0; }
.race-ready-tabs .resp-tabs-list li.active {
background: #ebebeb !important;
border: 1px solid #b7b7b7; }
.race-ready-tabs .got-question {
text-align: center;
margin-top: 30px; }
.race-ready-tabs .got-question a {
display: inline-block;
background: #000;
color: #fff;
font-size: 20px;
text-transform: uppercase;
padding: 7px 40px 7px 40px;
border-radius: 6px; }
.race-ready-tabs .got-question a:hover {
background: #b7b7b7; }
.race-ready-col {
display: flex;
padding: 0 10px 0 10px; }
.race-ready-desc ul {
margin-bottom: 15px;
list-style: none; }
.race-ready-desc ul li {
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
line-height: 24px;
color: #000;
line-height: 20px; }
.race-ready-desc ul li a {
text-decoration: underline; }
.race-ready-desc ul li a:hover {
color: #b7b7b7; }
.quia-consequatur-aut-est-quidem .race-ready-tabs ul.resp-tabs-list {
border: none; }
.race-ready-list {
width: 60%; }
.race-ready-list ul {
list-style: none; }
.race-ready-list ul li {
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
line-height: 22px; }
.race-ready-desc p a {
text-decoration: underline; }
.race-ready-desc p a:hover {
color: #b7b7b7; }
.race-ready-img {
width: 70%;
padding: 0 15px;
margin-bottom: 15px; }
.race-ready-list-desc {
width: 70%;
margin-left: 10px; }
@media only screen and (max-width: 1199px) {
.race-ready-tabs {
padding-bottom: 10px; }
.race-ready-tabs .resp-tab-content {
padding: 20px 10px 10px 10px; } } @media only screen and (max-width: 991px) {
.race-ready-tabs {
padding-top: 15px; }
.race-ready-col {
display: inline-block; }
.race-ready-list {
width: 100%;
margin-bottom: 30px; }
.race-ready-img {
width: 100%;
margin-bottom: 15px; }
.race-ready-list-desc {
width: 100%;
margin-left: 0;
margin-bottom: 30px; }
.race-ready-img img {
width: 350px;
margin: 0 auto;
display: block; }
.race-ready-tabs ul.resp-tabs-list {
display: none; }
.race-ready-tabs h2.resp-accordion {
display: block;
background: #ebebeb !important; }
.race-ready-tabs .resp-vtabs .resp-tab-content {
border: 1px solid #C1C1C1; }
.race-ready-tabs .resp-vtabs .resp-tabs-container {
border: none;
float: none;
width: 100%;
min-height: 100px;
clear: none; }
.race-ready-tabs .resp-accordion-closed {
display: none !important; }
.race-ready-tabs .resp-vtabs .resp-tab-content:last-child {
border-bottom: 1px solid #c1c1c1 !important; }
.race-ready-tabs ul.resp-tabs-list {
display: none; }
.product-listing-wrap ul li {
width: 50% !important; }
.race-ready-tabs h2.resp-tab-active {
border-bottom: 1px solid #c1c1c1 !important; }
.race-ready-tabs .resp-tab-content {
border: none;
padding: 0 0 10px 0;
margin-top: 15px !important; }
.race-ready-tabs h2.resp-accordion {
font-size: 18px;
border: 1px solid #b7b7b7 !important;
border-top: 1px solid #b7b7b7 !important;
margin: 0 0 0 0;
padding: 14px 15px;
background-color: transparent !important;
border-radius: 0px;
color: #000;
text-transform: uppercase;
background: #ebebeb !important;
font-weight: 700; }
.race-ready-tabs h2.resp-accordion:first-child {
border-top: 1px solid #000;
border-color: #b7b7b7 !important; }
.product-listing-wrap.resp-tab-content {
margin-top: 15px; }
.race-ready-tabs h2.resp-tab-active {
padding: 14px 15px !important;
margin-bottom: 0px !important; } }
@media only screen and (max-width: 991px) {
.product-listing-wrap ul li {
width: 100% !important;
max-width: 300px;
margin: 0 auto !important;
margin-bottom: 20px !important; } }
@media only screen and (max-width: 767px) {
.race-ready-desc p {
font-size: 18px;
line-height: 22px; }
.race-ready-list ul li {
font-size: 18px;
line-height: 20px;
margin-bottom: 10px; }
.race-ready-tabs h2.resp-accordion {
font-size: 18px;
padding: 12px 15px;
background: #ebebeb !important; }
.race-ready-tabs h2.resp-tab-active {
padding: 12px 15px !important; }
.race-ready-tabs .resp-arrow {
margin-top: 0; }
.race-ready-tabs .got-question a {
font-size: 16px;
padding: 7px 20px 7px 20px; }
.related-suggestions {
padding: 20px 0 10px 0; }
.related-suggestions h2 {
font-size: 20px;
margin-bottom: 10px; } }
@media only screen and (max-width: 640px) {
.race-ready-tabs .col-xl-12 {
padding: 0; } }
@media (max-height: 900px) and (min-width: 767px) {
.race-ready-tabs {
padding: 25px 0; }
.race-ready-desc p {
font-size: 18px;
margin-bottom: 12px; }
.race-ready-tabs .resp-tabs-list li {
padding: 15px 10px 12px;
font-size: 20px; }
.race-ready-tabs .got-question a {
padding: 6px 20px 6px 20px;
font-size: 18px; } }
.abt-content {
background: #fff;
position: relative;
margin: 0;
border-bottom: 2px solid #ebebeb; }
.abt-content .abt-content-block {
position: relative; }
.abt-content.right .abt-content-block .side_img_div {
right: 0;
left: inherit; }
.abt-content .abt-content-block .side_img_div {
position: absolute;
left: 0;
top: 0;
width: 50%;
height: 100%;
background-repeat: no-repeat;
background-size: cover;
background-position: center center; }
.abt-content.right .abt-content-block .zigzag_content {
float: left; }
.abt-content .abt-content-block .zigzag_content {
float: right;
max-width: 44%;
padding: 60px 10px 60px; }
.abt-content .abt-content-block .zigzag_content h2 {
font-size: 24px;
font-family: "Calibri", sans-serif;
font-weight: 700;
color: #000; }
.abt-content .abt-content-block .zigzag_content p {
font-size: 20px;
font-family: "Calibri", sans-serif;
font-weight: 400;
color: #000;
line-height: 30px; }
.abt-content .abt-content-block .zigzag_content p:last-child {
margin-bottom: 0; }
.abt-content .abt-content-block:nth-child(even) .side_img_div {
right: 0;
left: inherit; }
.abt-content .abt-content-block:nth-child(even) .zigzag_content {
float: left;
padding: 60px 10px 60px;
max-width: 43%; }
.abt-content.right .abt-content-block:nth-child(even) .side_img_div {
left: 0;
right: inherit; }
.abt-content.right .abt-content-block:nth-child(even) .zigzag_content {
float: right; }
@media (max-width: 991px) {
.abt-content .abt-content-block:nth-child(even) .zigzag_content {
padding: 30px 0 30px; }
.abt-content .abt-content-block .zigzag_content h2 {
font-size: 24px; }
.abt-content .abt-content-block .zigzag_content {
padding: 30px 0 30px; }
.abt-content .abt-content-block .container {
max-width: 100%; }
.abt-content .abt-content-block .zigzag_content p {
font-size: 18px;
line-height: 24px; } }
@media (max-width: 767px) {
.abt-content .abt-content-block .side_img_div {
position: relative;
width: 100%;
height: 300px; }
.abt-content .abt-content-block .zigzag_content {
float: none;
max-width: 100%;
padding: 15px 15px; }
.abt-content .abt-content-block:nth-child(even) .zigzag_content {
float: none;
padding: 15px 15px;
max-width: 100%; }
.abt-content .abt-content-block .container {
padding: 0; } }
@media (max-width: 480px) {
.abt-content .abt-content-block .side_img_div {
height: 200px; } }
.menu-icon {
display: none;
cursor: pointer;
color: #fff;
text-transform: uppercase;
text-align: center;
font-weight: 700;
line-height: 33px;
font-size: 22px;
padding: 10px 0; }
.menu-icon .menu-box {
width: 55px;
height: 44px;
padding: 5px;
position: absolute;
right: 22px;
top: 48px;
z-index: 9999; }
.menu-icon .menu-box span {
width: 100%;
height: 7px;
margin-bottom: 6px;
background: #000;
display: block;
border-radius: 50px;
transition: all .5s;
-webkit-transition: all 0.5s; }
.enumenu_ul.desk .sb-menu .two-col .sb-menu {
min-width: 860px;
width: 100%;
padding: 25px 0 0 40px;
height: 100%; }
span.submenuToggle.sb-menu {
padding: 0 !important; }
.enumenu_ul.desk .sb-menu .two-col .sb-menu li {
width: 45%;
display: inline-block;
min-width: auto; }
.enumenu_ul.desk .sb-menu .two-col .sb-menu li:after {
display: none; }
.enumenu_ul.desk li.full-mega-menu:hover:before {
content: "";
position: absolute;
right: 0;
top: 35px;
background: #ebebeb;
width: 3px;
height: 312px; }
.enumenu_ul &gt; li:hover:before {
display: none; }
.enumenu_ul.desk .sb-menu .one-col .sb-menu {
min-width: 860px;
width: 100%;
padding: 25px 0 0 40px;
height: 100%; }
.enumenu_ul.desk .sb-menu .one-col .sb-menu li {
width: 45%;
display: inline-block;
min-width: auto; }
.enumenu_ul.desk .sb-menu .one-col .sb-menu li:after {
display: none; }
.enumenu_ul .caret {
color: #fff;
margin-left: 7px; }
.enumenu_ul {
padding: 0;
list-style: none; }
.enumenu_ul &gt; li {
float: left;
vertical-align: top;
margin-right: 47px;
position: relative;
text-align: left; }
.enumenu_ul &gt; li:last-child {
margin-right: 0; }
.enumenu_ul li a {
font-family: "Calibri", sans-serif;
font-weight: 400;
font-size: 18px;
color: #000;
text-transform: uppercase;
margin-bottom: 16px;
display: inline-block; }
.enumenu_ul li a:hover {
color: #e2441b; }
.enumenu_ul.desk .sb-menu .sb-menu li .col-one ul li {
display: inline-block;
min-width: auto; }
.enumenu_ul.desk .sb-menu .sb-menu li .col-one ul {
display: inline-block;
opacity: 1;
min-width: 320px;
height: auto;
top: 22px;
width: 40%;
margin-top: 0;
padding-top: 0;
padding-left: 0;
left: -10px;
position: relative !important;
background: transparent; }
.enumenu_ul.desk .sb-menu .sb-menu li .col-one ul:before {
display: none; }
.enumenu_ul.desk .sb-menu .sb-menu li .col-one ul li a {
color: #000;
font-size: 18px;
display: inline-block; }
.enumenu_ul.desk .sb-menu .sb-menu li .col-two ul li {
display: inline-block;
min-width: auto; }
.enumenu_ul.desk .sb-menu .sb-menu li .col-two ul {
display: inline-block;
opacity: 1;
min-width: auto;
height: auto;
top: -20px;
width: 40%;
margin-top: 0;
padding-top: 0;
padding-left: 0;
left: -10px;
position: relative !important; }
.enumenu_ul.desk .sb-menu .sb-menu li .col-two ul:before {
display: none; }
.enumenu_ul.desk .sb-menu .sb-menu li .col-two ul li a {
color: #000;
font-size: 18px;
display: inline-block; }
.enumenu_ul li a span {
font-size: 13px;
color: #ababab;
letter-spacing: 1px;
transition: 0.5s ease-in-out; }
.enumenu_ul li a span:hover {
color: #00a6cc; }
.enumenu_ul.gray-menu li:hover a img {
opacity: 1; }
.enumenu_ul li a:hover {
text-shadow: 0px 0px 1px #000;
color: #000; }
.enumenu_ul:hover li.hover a img {
opacity: 1; }
.enumenu_ul.gray-menu li.current-menu-item a img {
opacity: 1; }
.enumenu_ul &gt; li ul {
display: none; }
.enumenu_ul ul li {
width: 100%;
margin: 0;
list-style: none;
margin-bottom: 0px; }
.enumenu_ul.desk ul {
top: 100%;
z-index: 999;
list-style: none;
left: 0;
background: #000;
position: absolute;
min-width: 150px; }
.menu.submenu-ul-level1 li a {
background: rgba(31, 26, 107, 0.8);
color: #fff;
padding-left: 90px; }
.enumenu_ul.desk li:hover &gt; ul {
display: block;
opacity: 1; }
.enumenu_ul.desk .sb-menu .sb-menu {
left: 100%;
top: 2px;
height: auto;
margin: 0;
background: transparent;
padding: 0; }
.enumenu_ul.desk .sb-menu .sb-menu li .col-one ul li:after {
display: none; }
.enumenu_ul.desk .sb-menu .sb-menu:before {
display: none; }
.enumenu_ul.desk ul li a {
padding: 0px;
display: block;
font-family: "Calibri", sans-serif;
font-weight: 400;
font-size: 18px;
color: #000;
text-align: left;
margin-bottom: 0;
padding-bottom: 16px; }
.enumenu_ul .arrow {
cursor: pointer;
z-index: 999;
background-size: 70%;
position: absolute;
content: "";
right: 18px;
font-size: 0;
width: 13px;
height: 13px;
top: 10px;
border-left: 2px solid #000;
border-bottom: 2px solid #000;
-webkit-transform: rotate(-135deg);
transform: rotate(-45deg);
box-sizing: border-box;
transition: all 0.5s ease-in-out; }
.enumenu_ul .arrow.up {
-webkit-transform: rotate(135deg);
transform: rotate(135deg); }
.enumenu_ul.desk ul li:hover &gt; a {
text-shadow: 0px 0px 1px #d1d1d1 !important;
color: #d1d1d1; }
.enumenu_ul.desk li.full-mega-menu ul {
min-width: 280px;
padding: 0;
top: 100%;
text-align: left;
padding: 0;
background: #fff;
height: 420px;
padding: 26px 0 0 30px; }
.enumenu_ul.gray-menu li ul li.current-menu-item &gt; a {
text-shadow: 0px 0px 1px #d1d1d1;
color: #d1d1d1; }
.enumenu_ul.gray-menu li.current-menu-parent a img {
opacity: 1; }
.enumenu_ul:hover li a {
color: #d1d1d1; }
.enumenu_ul.gray-menu li.current-menu-item a {
color: #000; }
.enumenu_ul:hover li.hover a {
color: #000; }
.enumenu_ul:hover li a img {
opacity: 0.18; }
.enumenu_ul li a img:hover {
opacity: 1; }
.enumenu_ul li a img {
transition: all 0.5s ease-in-out; }
.enumenu_ul &gt; li.current-menu-item a {
text-shadow: 0px 0px 1px #000; }
.enumenu_ul.gray-menu li a {
color: #d1d1d1; }
.enumenu_ul.gray-menu li a img {
opacity: 0.18; }
.enumenu_ul.gray-menu li a img:hover {
opacity: 1; }
.enumenu_ul.gray-menu li.hover a img {
opacity: 1; }
.enumenu_ul.desk li.full-mega-menu ul:after {
background: #fff;
content: "";
position: absolute;
width: 1140px;
right: 0;
left: 0;
top: 0;
height: 100%;
border-top: 2px solid #ebebeb;
z-index: -1;
box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1); }
.enumenu_ul.desk li.full-mega-menu ul li ul:after {
display: none; }
.enumenu_ul.desk .sb-menu .sb-menu li {
min-width: 820px;
display: flex;
padding: 0;
position: relative; }
.col-one {
display: inline-block;
width: 60%;
margin-left: 50px; }
.col-two {
width: 33%;
display: inline-block;
vertical-align: top;
margin-left: 50px;
margin-top: 53px; }
.col-two p {
font-family: "Calibri", sans-serif;
font-weight: 400;
font-size: 18px;
color: #000;
line-height: 22px;
margin-bottom: 20px; }
.col-two a {
background: #000;
border-radius: 8px;
text-transform: uppercase !important;
color: #fff !important;
font-size: 22px !important;
font-family: "Calibri", sans-serif !important;
font-weight: 400 !important;
padding: 9px 48px !important;
margin-left: 5px;
border: 1px solid transparent;
margin-top: 5px;
display: inline-block !important;
letter-spacing: -1.2px; }
.col-two a:hover {
background: #b7b7b7 !important; }
.col-two img {
margin-bottom: 15px; }
@media (max-width: 1170px) {
.enumenu_ul.desk .sb-menu .sb-menu li {
min-width: 680px; }
.enumenu_ul.desk li.full-mega-menu ul:after {
width: 961px; }
.col-two {
width: 40%;
display: inline-block;
vertical-align: top;
margin-left: 40px;
margin-top: 40px; }
.col-one {
display: inline-block;
width: 50%;
margin-left: 30px; } }
@media (max-width: 1024px) {
.enumenu_ul.desk li.full-mega-menu ul:after {
width: 946px; }
.col-one {
width: 45%; }
.col-two {
width: 40%;
margin-left: 30px;
margin-top: 40px; } }
@media (max-width: 991px) {
header {
padding-top: 0px; }
.enumenu_ul {
display: none; }
.menu-block {
height: auto; }
.menu-icon {
display: block; }
.services-detail a.pba-detail {
border-bottom: 2px solid #d3d9da; }
.enumenu_ul &gt; li {
width: 100%;
margin: 0 0 30px 0;
padding: 0;
position: relative; }
.enumenu_ul &gt; li &gt; a {
display: inline-block;
text-align: left;
padding: 0 15px;
margin: 0; }
.enumenu_ul {
z-index: 999;
background: #fff;
left: 0;
text-align: center;
position: fixed;
width: 100%;
height: 102vh;
top: 0;
padding: 105px 0 100px 0;
overflow: auto; }
.enumenu_ul &gt; li ul {
background: transparent;
display: none;
margin: 20px 0 0 0; }
.col-one {
width: 100%;
margin-left: 0; }
.col-two {
width: 100%;
margin-left: 0;
margin-top: 40px; }
.enumenu_ul &gt; li ul a {
text-align: left;
display: block;
color: #000;
padding: 0 55px 0 15px;
margin-bottom: 7px; }
body.menuslide_push {
position: relative; }
body.menuslide_push.slidemenuLeft {
left: 0;
transition: left .5s;
-webkit-transition: left .5s;
-moz-transition: left .5s;
-ms-transition: left .5s;
-o-transition: left 0.5s; }
body.menuslide_push.slidemenuRight {
right: 0;
transition: right .5s;
-webkit-transition: right .5s;
-moz-transition: right .5s;
-ms-transition: right .5s;
-o-transition: right 0.5s; }
body.slidemenuRight .enumenu_ul {
right: -300px; }
body.slidemenuRight.menu-open .enumenu_ul {
right: 0; }
body.slidemenuLeft .enumenu_ul {
left: -300px; }
body.slidemenuLeft.menu-open .enumenu_ul {
left: 0; }
body.menuslide_push.slidemenuLeft.menu-open {
left: 300px; }
body.menuslide_push.slidemenuRight.menu-open {
right: 300px; }
body.menuslide_push .enumenu_ul,
body.menuOverlap .enumenu_ul {
background: #000 none repeat scroll 0 0;
display: block;
height: 100%;
max-height: 100%;
width: 100%;
overflow: auto;
position: fixed;
transition: all .5s ease 0;
max-width: 300px;
top: 0; }
.menu-icon .menu-box {
right: 10px; }
li.content {
position: absolute;
top: 50px;
left: 20px;
width: auto; }
.enumenu_ul ul li {
position: relative; }
.enumenu_ul &gt; li ul li .arrow {
top: 3px; }
.menu-icon .menu-box {
position: fixed; }
.submenuToggle.sb-menu.up {
display: none !important; }
.enumenu_ul ul li ul {
margin-left: 20px;
margin-bottom: 20px; }
.enumenu_ul &gt; li ul li .arrow.up {
top: 10px; }
.enumenu_ul.gray-menu li a img {
opacity: 1; }
.enumenu_ul.gray-menu li a {
color: #000; }
.enumenu_ul li ul li .arrow {
border-left: 2px solid #d1d1d1;
border-bottom: 2px solid #d1d1d1; }
.enumenu_ul.gray-menu li ul li.current-menu-item &gt; a {
text-shadow: 0px 0px 1px #d1d1d1; }
.enumenu_ul:hover li a {
color: #000; }
.enumenu_ul:hover li a img {
opacity: 1; } }
@media (max-width: 640px) {
.menu-icon .menu-box {
top: 16px; }
.menu-icon {
padding: 5px; }
li.content {
top: 20px;
left: 15px; } }
@media (max-width: 480px) {
.menu-icon .menu-box {
width: 55px; }
.menu-icon .menu-box span {
height: 7px; } }
@media (max-height: 900px) and (min-width: 767px) {
.enumenu_ul.desk ul li a {
padding-bottom: 8px; }
.enumenu_ul.desk li.full-mega-menu ul {
height: 330px; }
.enumenu_ul.desk li.full-mega-menu:hover:before {
height: 257px; }
.enumenu_ul.desk ul li a {
font-size: 16px; }
.col-one {
width: 50%; }
.col-two {
margin-top: 35px; } }
@media all and (-ms-high-contrast: none) {
.col-one {
width: 32%; }
.col-two {
width: 25%; } }
.product-focus {
padding: 40px 0 60px; }
@media (max-width: 991px) {
.product-focus {
padding: 20px 15px 20px; } }
.product-focus .product-focus-gallery {
max-width: 1110px;
margin: 0 auto;
width: 100%; }
@media (max-width: 767px) {
.product-focus .product-focus-gallery {
padding: 0 15px; } }
.product-focus .product-focus-gallery h2 {
color: #000;
font-size: 25px;
text-transform: uppercase;
font-weight: 700;
font-family: "Calibri", sans-serif;
margin-bottom: 30px;
text-align: center; }
@media (max-width: 767px) {
.product-focus .product-focus-gallery h2 {
font-size: 20px;
margin-bottom: 10px; } }
.product-focus .product-focus-gallery a {
display: block;
width: 100%;
height: 100%; }
.product-focus .product-focus-gallery a img {
width: 100%;
border: 1px solid #000;
height: 280px;
object-fit: cover; }
@media (max-width: 991px) {
.product-focus .product-focus-gallery a img {
height: 200px; } }
@media (max-width: 767px) {
.product-focus .product-focus-gallery a img {
height: 150px; } }
@media (max-width: 640px) {
.product-focus .product-focus-gallery a img {
height: 120px; } }
@media (max-width: 480px) {
.product-focus .product-focus-gallery a img {
height: 90px; } }
.product-focus .product-focus-gallery a:hover {
color: #000; }
@media (max-width: 640px) {
.product-focus .product-focus-gallery a {
height: auto; } }
@media (max-width: 640px) {
.product-focus-gallery .col-xl-6 {
width: 50%; }
.product-focus-gallery .col-xl-4 {
display: inline-block;
width: 33.33%; }
.product-focus {
padding: 20px 0 20px; } }
@media (max-height: 900px) and (min-width: 767px) {
.product-focus {
padding: 10px 0 20px; } }
.thankyou-page-wrapper {
text-align: left; }
.thankyou-page-wrapper .status .top-cont h4 {
margin-bottom: 0; }
.thankyou-page-wrapper .status .top-cont p {
margin-bottom: 0; }
@media (max-width: 767px) {
.thankyou-page-wrapper .status .top-cont p {
line-height: 22px;
font-size: 18px !important; } }
.thankyou .contact .contact-img {
min-height: 600px;
height: auto; }
.thankyou .contact .contact-form {
position: absolute;
left: 0;
right: 0;
top: 50%;
transform: translateY(-50%); }
.thankyou .contact .contact-form p {
font-size: 22px;
line-height: 24px;
color: #000; }
.thankyou-page-wrapper .top-cont.text-center {
text-align: left !important; }
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
margin: 30px 0 0 0;
max-width: 100%;
padding-left: 0;
display: flex;
flex-wrap: wrap;
align-items: center; }
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
width: 100%;
margin: 0 0 20px 0;
padding: 0;
text-align: left;
border-right: none; }
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li strong {
font-size: 20px; }
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
font-size: 20px; }
.woocommerce .thankyou-page-wrapper table.shop_table th {
background: transparent;
border-bottom: none;
padding-left: 15px; }
.woocommerce .thankyou-page-wrapper table.shop_table th.woocommerce-table__product-name.product-name {
border-top: none;
padding-left: 15px; }
.woocommerce .thankyou-page-wrapper table.shop_table th.woocommerce-table__product-table.product-total {
border-top: none;
padding-left: 15px; }
.woocommerce .thankyou-page-wrapper table.shop_table tr td {
padding-left: 15px;
text-align: left; }
a.btn.btn-link {
text-decoration: none;
font-size: 18px;
text-transform: uppercase;
background: #000;
color: #fff !important;
border-radius: 6px;
padding: 5px 20px 5px 20px;
font-weight: 700; }
a.btn.btn-link:hover {
background: #b7b7b7 !important; }
.woocommerce-order-received .about-content .section-title {
margin-bottom: 0; }
@media (max-width: 1170px) {
.thankyou .contact .contact-img {
min-height: 400px; } }
@media (max-width: 991px) {
.woocommerce-order-received .contact .contact-form {
position: relative !important; }
.woocommerce-order-received .contact .contact-img {
min-height: 400px; }
.thankyou .contact .contact-img {
min-height: 400px; }
.thankyou .contact .contact-form {
position: relative;
padding: 20px 15px 20px 15px; }
.thankyou .contact .contact-form p {
margin-bottom: 5px;
font-size: 20px;
line-height: 22px; } }
@media (max-width: 767px) {
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
font-size: 18px;
margin-bottom: 10px; }
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li strong {
font-size: 18px; } }
@media (max-width: 640px) {
.thankyou .contact .contact-img {
min-height: 300px; } }
@media (max-height: 900px) and (min-width: 767px) {
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li strong {
font-size: 18px; }
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details li {
margin-bottom: 10px;
font-size: 18px; }
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
margin: 30px 0 15px 0; } }
.woocommerce-order-received .contact .contact-img {
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
width: 100%;
height: 100%;
min-height: 500px; }
@media (max-width: 991px) {
.woocommerce-order-received .contact .contact-img {
min-height: 400px; } }
@media (max-width: 767px) {
.woocommerce-order-received .contact .contact-img {
min-height: 320px; } }
@media (max-width: 480px) {
.woocommerce-order-received .contact .contact-img {
min-height: 250px; } }
.woocommerce-order-received .contact .contact-form {
max-width: 405px;
width: 100%;
text-align: left;
padding: 40px 15px 30px 15px;
display: inline-block;
top: 50%;
left: 50px;
position: absolute;
transform: translateY(-50%); }
@media (max-width: 767px) {
.woocommerce-order-received .contact .contact-form {
padding: 25px 15px 30px 15px !important;
left: 30px; } }
@media (max-width: 480px) {
.woocommerce-order-received .contact .contact-form {
left: 0; } }
.woocommerce-order-received .contact .contact-form h2 {
font-size: 24px;
margin-bottom: 20px; }
.woocommerce-order-received .contact .contact-form a {
color: #fff;
background: #000;
padding: 5px 20px;
border-radius: 6px;
display: inline-block;
text-transform: uppercase;
font-size: 16px; }
.woocommerce-order-received .contact .contact-form a:hover {
background: #b7b7b7; }
.woocommerce-order-received .contact .contact-form p {
font-size: 20px;
color: #000;
line-height: 20px;
margin-bottom: 20px; }
@media (max-width: 767px) {
.woocommerce-order-received .contact .contact-form p {
margin-bottom: 15px; } }
.woocommerce-order-received .contact .contact-form .got-question {
margin-top: 20px;
display: inline-block; }
.woocommerce-message {
display: none; }
.cart-empty.woocommerce-info {
background: transparent;
border: none;
text-align: center; }
.cart-empty.woocommerce-info:before {
display: none; }
.cart-empty.woocommerce-info::after {
content: '';
display: block;
width: 80px;
height: 80px;
background: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/empty-cart.svg) no-repeat center;
margin: 30px auto;
background-size: contain; }
@media only screen and (max-width: 640px) {
.cart-empty.woocommerce-info::after {
margin: 10px auto; } }
.cart-empty.woocommerce-info {
background: transparent;
border: none;
text-align: center;
padding: 0; }
@media only screen and (max-width: 640px) {
.cart-empty.woocommerce-info {
margin-bottom: 20px; } }
.cms-page .return-to-shop a {
display: inline-block;
background: #000 !important;
color: #fff !important;
font-size: 18px !important;
text-align: center; }
.cms-page .return-to-shop a:hover {
background: #b7b7b7 !important; }
.return-to-shop {
text-align: center; }
@media only screen and (max-width: 767px) {
.woocommerce-order-received .about-content {
margin-bottom: 0; } }
@media (max-height: 900px) and (min-width: 767px) {
.woocommerce-order-received .contact .contact-img {
min-height: 550px;
margin-top: 0px; }
.woocommerce-order-received .about-content {
margin-bottom: 15px; } }
footer {
padding: 56px 0 0;
border-top: 2px solid #ebebeb; }
@media (max-width: 991px) {
footer {
padding: 15px 0 0; } }
footer .footer-logo {
text-align: center;
max-width: 274px;
width: 100%; }
@media (max-width: 991px) {
footer .footer-logo {
max-width: 195px; } }
@media (max-width: 640px) {
footer .footer-logo {
max-width: 320px;
display: block;
margin: 0 auto;
margin-bottom: 0px; } }
footer .footer-logo p {
color: #000;
font-size: 20px;
font-family: "Cicle", sans-serif;
font-weight: 400;
margin-bottom: 0;
letter-spacing: 0.4px;
line-height: 24px;
text-shadow: 0 0 1px #000; }
@media (max-width: 640px) {
footer .footer-logo p {
font-size: 18px; } }
footer .footer-logo img {
margin-bottom: 37px; }
@media (max-width: 991px) {
footer .footer-logo img {
margin-bottom: 25px; } }
@media (max-width: 640px) {
footer .footer-logo img {
width: 150px;
margin-bottom: 15px; } }
footer .footer-listing {
text-align: center; }
footer .footer-listing ul {
list-style: none; }
footer .footer-listing ul li {
line-height: 22px; }
@media (max-width: 640px) {
footer .footer-listing ul li {
display: inline-block;
margin-right: 16px; } }
footer .footer-listing ul li a {
color: #000;
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
margin-bottom: 0;
letter-spacing: 0px;
display: inline-block;
line-height: 17px;
position: relative; }
@media (max-width: 640px) {
footer .footer-listing ul li a:after {
width: 3px;
height: 3px;
background: #000;
border-radius: 50%;
position: absolute;
right: -10px;
content: "";
bottom: 3px; } }
footer .footer-listing ul li a:hover {
text-shadow: 0px 0px 1px #000;
color: #000; }
footer .footer-listing ul li:last-child {
margin-right: 0; }
@media (max-width: 640px) {
footer .footer-listing {
margin: 35px 0 35px; }
footer .footer-listing:before {
width: 240px;
height: 4px;
background: #e1e1e1;
position: absolute;
right: 0;
top: 18px;
content: "";
left: 0;
margin: 0 auto; }
footer .footer-listing:after {
width: 240px;
height: 4px;
background: #e1e1e1;
position: absolute;
right: 0;
bottom: 18px;
content: "";
left: 0;
margin: 0 auto; } }
footer .footer-add {
text-align: center;
max-width: 232px;
margin: 0 auto; }
@media (max-width: 640px) {
footer .footer-add {
margin-bottom: 15px; } }
footer .footer-add span {
display: inline-block;
font-family: "Calibri", sans-serif;
font-weight: 700;
font-size: 18px;
color: #000;
width: 100%;
text-transform: uppercase; }
@media (max-width: 640px) {
footer .footer-add span {
display: none; } }
footer .footer-add p {
color: #000;
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
margin-bottom: 17px;
letter-spacing: 0px;
display: inline-block;
line-height: 23px; }
@media (max-width: 640px) {
footer .footer-add p br {
display: none; } }
footer .footer-add a {
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
display: inline-block; }
footer .footer-add a:hover {
text-shadow: 0px 0px 1px #000;
color: #000; }
footer .col-xl-4 {
position: relative;
display: flex;
align-items: center;
justify-content: center; }
footer .col-xl-4:after {
width: 3px;
height: 100%;
background: #e1e1e1;
position: absolute;
right: 0;
top: 0;
content: ""; }
@media (max-width: 640px) {
footer .col-xl-4:after {
display: none; } }
footer .col-xl-4:last-child:after {
display: none; }
footer .subscribe-wrap {
background: #ebebeb;
padding: 90px 15px;
margin-top: 50px; }
@media (max-width: 991px) {
footer .subscribe-wrap {
padding: 40px 15px; } }
@media (max-width: 767px) {
footer .subscribe-wrap {
padding: 50px 15px;
margin-top: 25px; } }
@media (max-width: 640px) {
footer .subscribe-wrap {
padding: 25px 15px;
margin-top: 0px; } }
footer .subscribe-wrap .subscribe-newsletter {
display: flex;
justify-content: center; }
@media (max-width: 640px) {
footer .subscribe-wrap .subscribe-newsletter {
display: inline-block;
width: 100%; } }
footer .subscribe-wrap .subscribe-newsletter .subscribe-text h3 {
text-transform: uppercase;
font-size: 21px;
font-weight: 400;
color: #000;
margin-bottom: 0;
margin-top: 6px; }
@media (max-width: 767px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-text h3 {
font-size: 18px;
margin-top: 0; } }
@media (max-width: 767px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-text {
width: 200px; } }
@media (max-width: 640px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-text {
width: 100%;
text-align: center;
margin-bottom: 20px; } }
footer .subscribe-wrap .subscribe-newsletter .subscribe-input {
margin-left: 35px;
position: relative;
width: 360px; }
@media (max-width: 480px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-input {
width: auto; } }
@media (max-width: 375px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-input {
width: 280px; } }
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form input[type="email"] {
background: transparent;
padding: 4px 40px 3px 10px;
border: 2px solid #000;
border-radius: 8px;
width: 218px;
letter-spacing: 0px;
font-family: "Calibri", sans-serif;
font-weight: 400;
font-size: 16px; }
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form input[type="email"]:focus {
outline: 0; }
@media (max-width: 480px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form input[type="email"] {
width: 200px; } }
@media (max-width: 375px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form input[type="email"] {
width: 70%;
margin-bottom: 15px; } }
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form [type="submit"] {
background: #000;
border-radius: 8px;
text-transform: uppercase;
color: #fff;
font-size: 18px;
font-family: "Calibri", sans-serif;
font-weight: 400;
display: inline-block;
padding: 4px 37px 3px;
margin-left: 8px;
border: 1px solid transparent; }
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form [type="submit"]:hover {
background: #b7b7b7;
color: #fff; }
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form [type="submit"]:focus {
outline: none; }
@media (max-width: 375px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form [type="submit"] {
margin-left: 0; } }
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form p {
display: flex;
margin-bottom: 0;
align-items: center;
justify-content: center; }
@media (max-width: 375px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form p {
display: inline-block; } }
@media (max-width: 640px) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-input {
margin-left: 0;
text-align: center;
width: 100%;
max-width: 250px;
margin: 0 auto; } }
footer .subscribe-wrap .subscribe-newsletter .subscribe-input .wpcf7-validation-errors {
display: none !important; }
footer .copy-right {
text-align: center;
padding: 56px 0; }
@media (max-width: 991px) {
footer .copy-right {
padding: 20px 0; } }
@media (max-width: 640px) {
footer .copy-right {
padding: 12px 0; } }
footer .copy-right p {
font-size: 21px;
text-transform: uppercase;
font-family: "Calibri", sans-serif;
font-weight: 400;
margin-bottom: 0; }
@media (max-width: 991px) {
footer .copy-right p {
font-size: 18px; } }
@media (max-width: 640px) {
footer .copy-right p {
font-size: 18px; } }
.subscribe-input input::-webkit-input-placeholder {
color: #000;
opacity: 1;
text-transform: uppercase; }
.subscribe-input input::-moz-placeholder {
color: #000;
opacity: 1;
text-transform: uppercase; }
.subscribe-input input:-ms-input-placeholder {
color: #000;
opacity: 1;
text-transform: uppercase; }
.subscribe-input input:-moz-placeholder {
color: #000;
opacity: 1;
text-transform: uppercase; }
.subscribe-input span.wpcf7-not-valid-tip {
color: #f00;
font-size: 1em;
font-weight: normal;
display: block;
position: absolute;
line-height: 16px !important;
margin-top: 2px !important; }
.subscribe-input .wpcf7 .ajax-loader {
position: absolute !important;
right: -25px !important;
top: 8px !important;
background-size: 100%; }
.subscribe-input .wpcf7-mail-sent-ok {
border: none;
position: absolute;
margin: 10px 0 0 0;
padding: 0;
font-size: 19px;
color: green;
font-family: "Calibri", sans-serif;
font-weight: 400; }
.subscribe-input div.wpcf7-spam-blocked {
border: none;
font-size: 18px !important;
line-height: 20px;
margin: 5px 0 0 0;
color: darkred;
padding: 0; }
@media (max-width: 640px) {
.subscribe-input .wpcf7-mail-sent-ok {
position: relative; } }
@media (max-width: 480px) {
.subscribe-input .wpcf7-mail-sent-ok {
right: 20px !important; }
.subscribe-input span.wpcf7-not-valid-tip {
position: absolute; } }
@media (max-width: 375px) {
.subscribe-input span.wpcf7-not-valid-tip {
position: relative; } }
@media all and (-ms-high-contrast: none) {
footer .subscribe-wrap .subscribe-newsletter .subscribe-input form input[type="email"] {
padding: 4px 40px 9px 10px !important; } }
.insta-feed .insta-feed-head {
text-align: center;
padding: 36px 0;
display: flex;
align-items: center;
justify-content: center; }
@media (max-width: 1024px) {
.insta-feed .insta-feed-head {
padding: 20px 0; } }
@media (max-width: 640px) {
.insta-feed .insta-feed-head {
padding: 15px 0; } }
.insta-feed .insta-feed-head h2 {
font-size: 28px;
font-family: "Calibri", sans-serif;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 0px;
display: inline-block; }
@media (max-width: 640px) {
.insta-feed .insta-feed-head h2 {
font-size: 20px; } }
@media (max-width: 480px) {
.insta-feed .insta-feed-head h2 {
font-size: 18px; } }
.insta-feed .insta-feed-head ul {
display: inline-block;
margin-left: 50px; }
@media (max-width: 640px) {
.insta-feed .insta-feed-head ul {
margin-left: 15px; } }
@media (max-width: 480px) {
.insta-feed .insta-feed-head ul {
margin-left: 18px; } }
.insta-feed .insta-feed-head ul li {
display: inline-block;
margin-right: 22px;
position: relative;
vertical-align: top;
line-height: 20px; }
.insta-feed .insta-feed-head ul li a {
color: #000;
font-size: 49px;
display: inline-block;
vertical-align: top;
line-height: 20px; }
@media (max-width: 640px) {
.insta-feed .insta-feed-head ul li a {
font-size: 35px; } }
@media (max-width: 480px) {
.insta-feed .insta-feed-head ul li a {
font-size: 28px; } }
.insta-feed .insta-feed-head ul li a img {
display: inline-block;
vertical-align: initial;
margin: 2px 0 0 0;
width: 46px;
transition: all 0.5s ease-in-out; }
@media (max-width: 640px) {
.insta-feed .insta-feed-head ul li a img {
width: 33px; } }
@media (max-width: 480px) {
.insta-feed .insta-feed-head ul li a img {
margin: 2px 0 0 0;
width: 25px; } }
.insta-feed .insta-feed-head ul li a img:hover {
opacity: 0.3; }
.insta-feed .insta-feed-head ul li a:hover {
color: #b7b7b7; }
.insta-feed .insta-feed-head ul li:last-child {
margin-right: 0; }
@media (max-width: 640px) {
.insta-feed .insta-feed-head ul li {
margin-right: 10px; } }
@media (max-width: 480px) {
.insta-feed .insta-feed-head ul li {
margin-right: 10px; } }
.insta-feed .insta-feed-bg {
width: 100%;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
margin-bottom: 65px; }
.insta-feed .insta-feed-bg .social-feed-img {
margin-bottom: 30px; }
.insta-feed-bg .col-xl-3.col-lg-3.col-md-3.col-sm-4 {
padding-left: 8px;
padding-right: 8px; }
.tiktok-feed-feed .tiktok-feed-list .tiktok-feed-item:hover .tiktok-feed-icon.tiktok-feed-video-play-count {
right: 0;
left: auto; }
.tiktok-feed-feed .tiktok-feed-list .tiktok-feed-item .tiktok-feed-icon.tiktok-feed-video-play-count {
left: auto !important;
right: 0 !important; }
#insta-gallery-feed-1 .insta-gallery-list .insta-gallery-item {
padding: 0 7px !important; }
#insta-gallery-feed-1 .insta-gallery-list .insta-gallery-item:last-child {
display: none; }
#tiktok-feed-feed-1 {
clear: both; }
.social-feed-main-container {
margin: 0 auto;
width: 100% !important;
display: inline-block;
margin-top: 5px !important;
margin-bottom: 7px !important; }
.grid-item.social-feed-element .uniqcontent {
display: none; }
.insta-feed .insta-feed-bg .social-feed-img {
margin-bottom: 16px; }
.social-feed-container {
margin: 0;
float: none;
width: 100% !important;
margin: 0 !important;
display: flex !important;
align-items: center !important;
justify-content: space-between;
column-gap: initial !important; }
.social-feed-container {
width: 100%;
-moz-column-count: inherit !important;
-webkit-column-count: inherit !important;
column-count: inherit !important;
width: 100% !important;
height: auto !important; }
.social-feed-container #wpsfp-item {
box-shadow: none !important;
border: none !important;
margin: 0 !important;
padding: 0 7px !important;
position: initial !important;
width: 25% !important;
top: auto !important;
left: 0 !important;
float: left;
min-width: 25.2% !important; }
.social-feed-main-container {
margin: 0 -5px !important;
margin-bottom: 7px !important; }
#tiktok-feed-feed-1 .tiktok-feed-list .tiktok-feed-item {
padding: 0 7px !important; }
.social-feed-element img {
height: 277px !important; }
.insta-feed .insta-feed-bg .social-feed-img img {
width: 100%; }
.insta-feed .insta-feed-head ul li a img:hover.icon-hover {
opacity: 1; }
#tiktok-feed-feed-1 .tiktok-feed-list {
margin: 0 -5px !important;
margin-top: 14px !important; }
img.icon-hover {
opacity: 0;
position: absolute;
left: 0; }
footer .footer-add p:first-child {
margin-bottom: 0; }
footer .footer-listing ul li.current-menu-item a {
text-shadow: 0px 0px 1px #000; }
.responsive-div {
display: none; }
#cookie-law-info-again {
box-shadow: none !important;
background: #000 !important;
color: #fff !important; }
@media only screen and (min-width: 1100px) {
.social-feed-container {
column-count: inherit !important; } }
@media only screen and (min-width: 900px) {
.social-feed-container {
column-count: inherit !important; } }
@media only screen and (min-width: 700px) {
.social-feed-container {
column-count: inherit !important; } }
@media only screen and (min-width: 400px) {
.social-feed-container {
column-count: inherit !important; } }
@media (max-width: 1170px) {
.social-feed-element img {
height: 232px !important; } }
@media (max-width: 767px) {
.responsive-div {
display: block; } }
@media (max-width: 640px) {
.footer-add p:first-child {
display: none; }
.footer-add p {
margin-bottom: 0; } }
@media (max-height: 900px) and (min-width: 767px) {
footer {
padding: 30px 0 0; }
footer .subscribe-wrap {
padding: 50px 15px;
margin-top: 30px; }
footer .copy-right {
padding: 25px 0; }
.insta-feed .insta-feed-head ul li a {
font-size: 40px; }
.insta-feed .insta-feed-head ul li a img {
width: 36px; }
.insta-feed .insta-feed-head h2 {
font-size: 22px; }
.insta-feed .insta-feed-head ul {
margin-left: 30px; }
.insta-feed .insta-feed-head {
padding: 20px 0; }
.insta-feed .insta-feed-head ul li {
margin-right: 12px; }
.subscribe-input span.wpcf7-not-valid-tip {
line-height: 16px !important;
margin-top: 2px !important; } }
.product_meta span.posted_in {
display: none; }
footer .footer-listing ul li:last-child a:after {
background: transparent; }
#social-feed {
position: relative; }
#social-feed li {
margin: 0;
padding: 0;
list-style: none;
position: absolute;
top: -20px; }
#social-feed li a {
content: "";
background: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/social-feed-icon.png);
background-repeat: no-repeat;
position: relative;
z-index: 2; }
#social-feed li,
#social-feed a {
height: 44px;
display: block;
transition: all 0.5s ease-in-out; }
#social-feed li a#facebook {
left: 0px;
width: 46px;
background-position: 0 0;
background-repeat: no-repeat; }
#social-feed li a#insta {
left: 63px;
width: 43px;
background-position: -63px 0;
background-repeat: no-repeat; }
#social-feed li a#tiktok {
left: 129px;
width: 43px;
background-position: -129px 0;
background-repeat: no-repeat; }
#social-feed li a#snapchat {
left: 195px;
width: 43px;
background-position: -195px 0;
background-repeat: no-repeat; }
.tiktok-feed-feed.tiktok-feed-square .tiktok-feed-list .tiktok-feed-item .tiktok-feed-video-wrap {
height: 100%; }
#tiktok-feed-feed-1 .tiktok-feed-list .tiktok-feed-item {
height: 400px; }
#social-feed li a:hover {
opacity: 0.3; }
@media screen and (max-width: 1023px) and (min-width: 991px) {
.insta-gallery-feed[data-feed_layout=gallery] .insta-gallery-list .insta-gallery-item {
min-width: 25% !important; }
.tiktok-feed-feed[data-feed_layout=gallery] .tiktok-feed-list .tiktok-feed-item {
min-width: 25% !important; } }
@media (max-width: 991px) {
.insta-gallery-feed .insta-gallery-list .insta-gallery-item.insta-gallery-cols-4 {
width: 33.33%; }
.insta-feed-bg .col-xl-3:nth-child(4n) {
display: none; }
#insta-gallery-item-17884762789069234 {
display: none; }
#tiktok-feed-item-6841429583980416261 {
display: none; }
.social-feed-container #wpsfp-item:last-child {
display: none; }
.social-feed-container #wpsfp-item {
width: 100% !important;
min-width: 33.83% !important; }
.social-feed-element img {
height: 192px !important; } }
@media (max-width: 767px) {
#social-feed li,
#social-feed a {
height: 36px; }
#social-feed li a#facebook {
width: 36px; }
#social-feed li a#insta {
width: 36px;
background-position: -50px 0; }
#social-feed li a#tiktok {
width: 36px;
background-position: -105px 0; }
#social-feed li a#snapchat {
width: 36px;
background-position: right; }
#social-feed li a {
background-size: 196px; }
#social-feed li a {
background: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/social-feed-icon-res.png); }
.insta-feed-bg .col-xl-3.col-lg-3.col-md-3.col-sm-4 {
width: 33.33%;
padding-left: 5px;
padding-right: 5px; }
.insta-feed-bg {
padding: 0 15px; }
.insta-feed .insta-feed-bg .social-feed-img {
margin-bottom: 10px; }
#tiktok-feed-feed-1 .tiktok-feed-list .tiktok-feed-item {
height: 300px; } }
@media (max-width: 640px) {
.social-feed-element img {
height: 100% !important;
object-fit: cover; }
.social-feed-container #wpsfp-item {
padding: 0 4px !important; }
.social-feed-main-container {
margin-bottom: 1px !important; }
#insta-gallery-feed-1 .insta-gallery-list .insta-gallery-item {
padding: 0 4px !important; }
#tiktok-feed-feed-1 .tiktok-feed-list {
margin-top: 8px !important; }
#tiktok-feed-feed-1 .tiktok-feed-list .tiktok-feed-item {
padding: 0 4px !important; } }
@media (max-width: 480px) {
.insta-feed-bg .col-xl-3.col-lg-3.col-md-3.col-sm-4 {
padding-left: 3px;
padding-right: 3px; }
.insta-feed .insta-feed-bg .social-feed-img {
margin-bottom: 5px; }
.insta-gallery-feed[data-feed_layout=gallery] .insta-gallery-list .insta-gallery-item {
min-width: 33.33% !important; }
.tiktok-feed-feed[data-feed_layout=gallery] .tiktok-feed-list .tiktok-feed-item {
min-width: 33.33% !important; }
#tiktok-feed-feed-1 .tiktok-feed-list .tiktok-feed-item {
height: 180px; }
.social-feed-container #wpsfp-item {
min-width: 34.23% !important; } }
@media (max-width: 380px) {
.social-feed-container #wpsfp-item {
min-width: 34.43% !important; } }
@media all and (-ms-high-contrast: none) {
.social-feed-container #wpsfp-item {
box-shadow: none !important;
border: none !important;
margin: 0 !important;
padding: 0 7px !important;
position: relative !important;
width: 25% !important;
top: auto !important;
left: 0 !important;
float: left;
min-width: 25.2% !important; } }
.related-suggestions {
padding: 20px 0 50px 0;
clear: both; }
@media only screen and (max-width: 767px) {
.related-suggestions {
padding: 20px 0 30px 0; } }
.related-suggestions h2 {
color: #000;
font-size: 25px;
text-transform: uppercase;
font-weight: 700;
font-family: "Calibri", sans-serif;
margin-bottom: 30px;
text-align: center; }
@media only screen and (max-width: 767px) {
.related-suggestions h2 {
margin-bottom: 20px;
font-size: 20px; } }
.related-suggestions ul {
padding: 0px 0 100px;
max-width: 807px;
margin: 0 auto !important;
width: 100%;
display: flex !important;
list-style: none !important;
flex-wrap: wrap !important; }
@media only screen and (max-width: 767px) {
.related-suggestions ul {
max-width: 500px; } }
@media only screen and (max-width: 640px) {
.related-suggestions ul {
max-width: 300px; } }
@media only screen and (max-width: 480px) {
.related-suggestions ul {
max-width: 250px; } }
.related-suggestions ul li {
width: 33.33% !important;
padding: 0 15px !important;
box-sizing: border-box;
margin: 0 0 20px 0 !important; }
@media only screen and (max-width: 767px) {
.related-suggestions ul li {
width: 100% !important; } }
@media only screen and (max-width: 991px) {
.related-suggestions ul li {
padding: 0 5px !important; } }
.related-suggestions ul li a {
text-align: center;
border: 1px solid #b7b7b7;
display: inline-block;
width: 100%;
height: 100%;
padding: 20px 30px 12px 30px; }
.related-suggestions ul li a h3 {
font-weight: 700;
font-family: "Calibri", sans-serif;
font-size: 20px;
text-transform: uppercase;
margin-bottom: 5px; }
.related-suggestions ul li a span {
font-weight: 400;
font-family: "Calibri", sans-serif;
font-size: 15px;
text-transform: uppercase;
display: inline-block;
color: #898989; }
.related-suggestions ul li a img {
margin-bottom: 35px; }
.related-suggestions ul li a:hover {
color: #000; }
.related-suggestions ul:before {
display: none !important; }
.single-product .related-suggestions .owl-nav .owl-prev {
display: inline-block !important;
font-size: 50px !important;
position: absolute;
left: -20px !important;
top: 70px !important; }
.single-product .related-suggestions .owl-nav .owl-next {
display: inline-block !important;
font-size: 50px !important;
position: absolute;
right: -20px !important;
top: 70px !important; }
.product-listing-wrap ul:before {
display: none !important; }
.single-product .related-suggestions .owl-nav .owl-next i {
color: #000; }
.single-product .related-suggestions .owl-nav .owl-next i:hover {
color: #b7b7b7; }
.single-product .related-suggestions .owl-nav .owl-prev i {
color: #000; }
.single-product .related-suggestions .owl-nav .owl-prev i:hover {
color: #b7b7b7; }
@media only screen and (max-width: 767px) {
.columns-4 .owl-item {
text-align: center;
align-items: center;
justify-content: center;
display: flex; } }
@media only screen and (max-width: 640px) {
.single-product .related-suggestions .owl-nav .owl-prev {
left: -25px !important; }
.single-product .related-suggestions .owl-nav .owl-next {
right: -25px !important; } }
@media (max-height: 900px) and (min-width: 767px) {
.related-suggestions {
padding: 20px 0 30px 0; } }
.search-content {
padding: 30px 0; }
.search-content .search-result {
margin-bottom: 60px;
position: relative; }
@media (max-width: 767px) {
.search-content .search-result {
margin-bottom: 40px; } }
.search-content .search-result a h2 {
display: inline-block;
color: #000;
font-size: 24px;
font-weight: 700; }
@media (max-width: 991px) {
.search-content .search-result a h2 {
font-size: 22px; } }
@media (max-width: 640px) {
.search-content .search-result a h2 {
font-size: 20px; } }
.search-content .search-result a:hover {
color: #000;
text-shadow: 0px 0px 1px #000; }
.search-content .search-result p {
font-size: 20px;
line-height: 24px;
color: #000; }
@media (max-width: 640px) {
.search-content .search-result p {
font-size: 18px;
line-height: 22px; } }
.search-content .search-result:after {
content: "";
position: absolute;
width: 100%;
height: 2px;
background: #ebebeb;
bottom: -33px;
left: 0; }
@media (max-width: 767px) {
.search-content .search-result:after {
bottom: -23px; } }
.search-content .search-pagination {
margin-top: 0;
width: 100%;
display: flex;
justify-content: space-between; }
.search-content .search-pagination a {
display: inline-block;
font-size: 18px;
min-width: auto;
width: 100%; }
.search-content .search-pagination a:hover {
text-shadow: 0px 0px 1px #000;
color: #000; }
.search-content .search-box-wrapper {
border-bottom: 2px solid #ebebeb;
margin-bottom: 25px;
text-align: center; }
.search-content .search-box-wrapper h2 {
text-align: center;
font-weight: 700;
text-transform: uppercase;
color: #000;
margin-bottom: 5px; }
@media (max-width: 767px) {
.search-content .search-box-wrapper h2 {
font-size: 24px;
margin-bottom: 0; } }
.search-content .search-box-wrapper p {
text-align: center;
color: #000;
font-size: 20px; }
.search-content .search-pagination a:last-child {
text-align: right; }
.search-box-wrapper blockquote {
text-align: center;
display: inline-block;
position: relative;
margin: 0 auto;
color: #000;
font-size: 18px;
text-transform: capitalize; }
.search-box-wrapper blockquote:after {
position: absolute;
content: '"'; }
.search-box-wrapper blockquote:before {
position: absolute;
content: '"';
left: -8px; }
.woocommerce-cart .cart_item td.product-remove {
width: 5%; }
.woocommerce-cart .cart_item td.product-thumbnail {
width: 19%; }
.woocommerce-cart .cart_item td.product-name {
width: 31%; }
.woocommerce-cart .cart_item td.product-price {
width: 11%; }
.woocommerce-cart .cart_item td.product-quantity {
width: 17%; }
.woocommerce-cart .cart_item td.product-subtotal {
width: 17%; }
.cart .woocommerce-notices-wrapper .woocommerce-message::before {
top: 19px; }
.woocommerce-cart .cart_totals h2 {
display: none; }
.woocommerce-cart .cart_totals .order-total {
display: none; }
.woocommerce-notices-wrapper .woocommerce-message::before {
top: 26px; }
.woocommerce-notices-wrapper .woocommerce-message {
display: flex !important;
align-items: center;
justify-content: space-between; }
.woocommerce-notices-wrapper a.button.wc-forward {
order: 2;
text-transform: uppercase; }
.woocommerce table.shop_table {
border: 1px solid #e9e9e9;
margin: 0;
text-align: left;
width: 100%;
border-collapse: separate;
border-radius: 0; }
.woocommerce table.shop_table th {
font-weight: 700;
padding: 10px 0 10px 0;
background: #ebebeb;
line-height: 1.5em;
font-size: 20px;
text-transform: uppercase;
border-top: 1px solid #b7b7b7;
border-bottom: 1px solid #b7b7b7; }
.woocommerce table.shop_table.woocommerce-checkout-review-order-table th.product-name {
border-top: none; }
.woocommerce table.shop_table.woocommerce-checkout-review-order-table th.product-total {
border-top: none; }
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
text-align: right; }
.woocommerce table.shop_table.woocommerce-checkout-review-order-table th.product-total {
text-align: right; }
#wc-stripe-payment-request-wrapper {
display: none !important; }
#wc-stripe-payment-request-button-separator {
display: none !important; }
.woocommerce a.remove {
font-size: 32px !important;
height: auto;
width: auto;
border-radius: 100%;
color: #c8c8c8 !important; }
.woocommerce-cart table.cart td a {
display: inline-block;
color: #000;
text-decoration: none;
font-size: 16px; }
.woocommerce-cart table.cart img {
width: 140px;
height: 90px;
object-fit: cover; }
.woocommerce button.button {
color: #fff !important;
background-color: #000;
transition: all 0.5s ease-in-out;
margin-right: 10px;
padding: 3px 0 1px 0;
text-transform: uppercase;
padding: 12px 17px 11px !important;
height: 43px;
line-height: 13px; }
.woocommerce button.button.added {
padding: 9px 17px 11px !important;
height: 41px;
line-height: 10px; }
.woocommerce button.button:hover {
color: #fff; }
.woocommerce a.remove:hover {
color: #000 !important;
background: transparent; }
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
width: 100%; }
.cart_totals tr th {
background-color: transparent !important;
padding: 10px 20px 7px 20px !important; }
.cart-collaterals {
margin: 50px 0 0 0; }
.woocommerce a.button.alt {
background-color: #000 !important;
color: #fff !important;
-webkit-font-smoothing: antialiased;
padding: 12px 0 10px 0 !important;
max-width: 235px;
text-transform: uppercase;
margin: 0 auto;
font-size: 18px; }
a.restore-item:hover {
color: #b7b7b7 !important; }
.woocommerce a.button.alt:hover {
background: #b7b7b7 !important; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals h2 {
text-align: center; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
width: 235px;
display: inline-block;
float: right; }
td.product-price {
text-align: center;
border-right: 1px solid #b7b7b7;
border-left: 1px solid #b7b7b7; }
td.product-quantity {
text-align: center;
border-right: 1px solid #b7b7b7; }
form.woocommerce-cart-form {
max-width: 1000px;
margin: 0 auto;
width: 100%; }
th.product-remove {
border-left: 1px solid #b7b7b7; }
th.product-subtotal {
border-right: 1px solid #b7b7b7; }
th.product-price {
border-right: 1px solid #b7b7b7;
border-left: 1px solid #b7b7b7;
text-align: center; }
th.product-quantity {
border-right: 1px solid #b7b7b7;
text-align: center; }
th.product-subtotal {
border-right: 1px solid #b7b7b7;
text-align: center; }
.woocommerce table.shop_table td {
border-top: 1px solid #dadada;
text-align: left;
padding-left: 0;
padding-right: 0;
text-align: center; }
td.product-remove {
padding-left: 10px !important; }
td.product-name {
text-align: left !important; }
.woocommerce table.shop_table tbody tr th {
border-bottom: none !important; }
.woocommerce table.shop_table tbody tr th {
border-right: 1px solid #b7b7b7 !important;
border-bottom: none !important; }
.woocommerce-cart .cart-collaterals .cart_totals table td {
text-align: right;
border-right: none;
padding-right: 0;
padding-left: 0; }
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
width: 100%;
max-width: 1000px;
margin: 0 auto;
margin-top: 40px; }
.woocommerce-message {
border-top: 3px solid #000 !important;
font-size: 18px;
color: #000;
display: block !important; }
p.cart-empty.woocommerce-info {
margin-bottom: 0; }
.cms-page .return-to-shop a {
text-transform: uppercase; }
.cms-page a {
color: #000 !important; }
.woocommerce div.product .out-of-stock {
color: #000 !important;
font-weight: 700;
font-size: 18px !important; }
.woocommerce-cart .cart-collaterals .cart_totals table {
border: none; }
.woocommerce-cart .cart-collaterals .cart_totals table tr th {
border-right: none !important;
width: 130px !important;
padding: 8px 0 0 0px !important;
text-align: left; }
.woocommerce-cart .cart-collaterals .cart_totals th {
text-align: center; }
.woocommerce-cart .cart-collaterals .cart_totals tr td {
border-top: 2px solid #ebe9eb; }
.woocommerce-info {
font-size: 18px !important;
color: #000; }
.woocommerce-checkout-review-order #payment .payment_method_paypal .about_paypal {
margin-left: 20px;
font-size: 20px;
color: #000; }
@media (max-width: 991px) {
.woocommerce button.button {
padding: 14px 8px 11px !important; }
.woocommerce table.shop_table th {
font-size: 18px; }
.woocommerce-cart table.cart img {
width: 80px;
height: 60px;
object-fit: cover;
padding: 0 10px !important; }
.woocommerce-notices-wrapper .woocommerce-message {
display: inline-block !important;
width: 100%; }
.woocommerce-notices-wrapper a.button.wc-forward {
margin-left: 10px; } }
@media (max-width: 768px) {
.woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
padding: 8px 15px !important; }
td.product-price {
border-left: none;
border-right: none; }
.woocommerce table.shop_table td {
border-right: none; }
.woocommerce button.button {
display: inline-block !important;
margin-right: 0;
width: auto !important; }
.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
background-color: transparent; }
.woocommerce a.button.alt {
max-width: 210px;
margin: 0 auto;
font-size: 18px; }
.woocommerce a.remove {
line-height: 16px; }
.woocommerce-notices-wrapper .woocommerce-message {
padding-left: 40px;
padding-right: 15px;
line-height: 20px; }
.woocommerce-notices-wrapper .woocommerce-message::before {
left: 15px; }
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
margin-bottom: 10px; }
.woocommerce-cart .cart_item td.product-remove {
width: 100%; }
.woocommerce-cart .cart_item td.product-thumbnail {
width: 100%; }
.woocommerce-cart .cart_item td.product-name {
width: 100%; }
.woocommerce-cart .cart_item td.product-price {
width: 100%; }
.woocommerce-cart .cart_item td.product-quantity {
width: 100%; }
.woocommerce-cart .cart_item td.product-subtotal {
width: 100%; } }
@media (max-width: 640px) {
.woocommerce table.shop_table th {
padding: 5px 0 5px 0;
font-size: 16px; }
.woocommerce table.shop_table td {
padding: 5px 12px; }
.woocommerce .woocommerce-order-details {
margin-bottom: 18px; }
.woocommerce-notices-wrapper .woocommerce-message {
display: inline-block !important; }
.woocommerce a.added_to_cart {
display: none; } }
@media (max-width: 480px) {
.woocommerce-checkout-review-order #payment .payment_method_paypal .about_paypal {
width: 100%; } }
@media (max-height: 900px) and (min-width: 767px) {
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
width: 235px; }
.woocommerce table.shop_table th {
font-size: 18px;
padding: 6px 0 6px 0; }
.woocommerce .cart-collaterals, .woocommerce-page .cart-collaterals {
margin-bottom: 20px; } }
_::-webkit-full-page-media .woocommerce a.button.alt, _:future .woocommerce a.button.alt, :root .safari_only .woocommerce a.button.alt {
padding: 10px 0 10px 0 !important; }
.checkout span.select2.select2-container.select2-container--default.select2-container--below.select2-container--open .select2-selection--single {
background: #d5d5d5 !important; }
.checkout span.select2.select2-container.select2-container--default.select2-container--below.select2-container--open span.select2-selection.select2-selection--single {
border-bottom: none; }
.checkout .select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
background-color: #bcbcbc; }
.checkout .select2-dropdown {
background-color: #d5d5d5 !important; }
.checkout .select2-results__option {
padding: 5px 25px;
font-size: 20px; }
.checkout .select2-container--default .select2-search--dropdown .select2-search__field {
display: none;
padding: 0; }
.checkout .select2-search--dropdown {
padding: 0; }
.checkout .select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[data-selected=true] {
background-color: transparent;
color: #000; }
.checkout .select2-container--default .select2-results__option[aria-selected=true]:hover {
background-color: #bcbcbc;
color: #fff; }
.checkout .woocommerce-NoticeGroup-checkout ul.woocommerce-error {
display: block; }
.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated {
display: flex;
align-items: center; }
.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated label {
width: 80%;
margin-bottom: 0px;
margin-left: 10px; }
.form-row.woocommerce-SavedPaymentMethods-saveNew.woocommerce-validated {
padding-bottom: 150px; }
.checkout.woocommerce-checkout .top-side-checkout-form {
max-width: 895px;
margin: 0 auto;
width: 100%; }
.woocommerce form .form-row label {
line-height: initial;
width: 100%;
color: #000;
font-size: 18px; }
.woocommerce-input-wrapper {
width: 100%; }
.woocommerce form .form-row input.input-text {
border: 2px solid #000;
padding: 8px 15px 8px 15px;
border-radius: 6px; }
.woocommerce form .form-row input.input-text:focus {
border-color: #b7b7b7; }
.select2-container--default .select2-selection--single {
background-color: #fff;
border: 2px solid #000;
padding: 8px 15px 8px 15px;
border-radius: 6px;
height: 44px;
margin-bottom: 0px; }
.select2-container--default .select2-selection--single:focus {
border-color: #b7b7b7 !important;
outline: none; }
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
width: 49%; }
.woocommerce form .form-row {
margin: 0 0 20px; }
.select2-container--default .select2-selection--single .select2-selection__rendered {
line-height: initial; }
.woocommerce form .form-row .required {
color: #000; }
.select2-container--default .select2-selection--single .select2-selection__arrow b {
border-color: #000 transparent transparent transparent;
border-style: solid;
border-width: 15px 8px 0 8px;
margin-left: -24px;
margin-top: 3px;
transition: all 0.5s ease-in-out; }
.select2-container--default .select2-selection--single .select2-selection__placeholder {
color: #000; }
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
border-color: transparent transparent #000 transparent;
border-width: 0 8px 15px 8px;
transition: all 0.5s ease-in-out; }
.select2-dropdown {
background-color: #e1e1e1;
border: 2px solid #000; }
.bottom-side-order-review {
max-width: 890px;
margin: 0 auto;
width: 100%;
margin-top: 0px;
text-align: center;
padding: 0; }
.payment_box payment_method_stripe {
padding: 0; }
h3.payment-info-text {
padding: 20px 0;
margin-bottom: 0 !important; }
.woocommerce .bottom-side-order-review table.shop_table th {
background: transparent;
border-bottom: none; }
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
background: transparent; }
.woocommerce-checkout #payment ul.payment_methods {
margin: 0px 0 0 0;
padding: 0 15px;
border-bottom: none; }
table.shop_table.woocommerce-checkout-review-order-table {
width: 500px;
float: right;
margin-bottom: 10px;
margin-top: 20px;
border: none;
order: 1; }
.woocommerce-checkout.checkout .woocommerce form .form-row.woocommerce-validated .select2-container, .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select {
border-color: #000; }
.woocommerce-invalid #terms {
outline: 0;
outline-offset: 0; }
.woocommerce-checkout-payment {
clear: both; }
a.woocommerce-terms-and-conditions-link:hover {
color: #b7b7b7 !important; }
a.woocommerce-terms-and-conditions-link {
color: #000; }
span.woocommerce-terms-and-conditions-checkbox-text {
color: #000 !important; }
#order_review_heading {
max-width: 300px;
margin-left: auto; }
.woocommerce-info {
border-top-color: #000; }
.woocommerce-info::before {
color: #000; }
.form-row.place-order {
text-align: left;
padding-top: 0 !important; }
.woocommerce #payment #place_order:hover {
background-color: #b7b7b7; }
.woocommerce #payment #place_order {
float: right;
background-color: #000;
order: 3;
margin-left: auto;
text-transform: uppercase; }
.woocommerce-NoticeGroup-checkout ul.woocommerce-error {
padding-left: 60px; }
.woocommerce-NoticeGroup-checkout ul.woocommerce-error li {
font-size: 20px !important; }
.woocommerce form .form-row.woocommerce-invalid input.input-text {
border-color: red; }
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: pointer; }
.woocommerce-checkout #payment div.payment_box {
background-color: transparent; }
.woocommerce-checkout #payment div.payment_box::before {
border: 1em solid #ebebeb;
border-right-color: transparent;
border-left-color: transparent;
border-top-color: transparent;
opacity: 0; }
.woocommerce-checkout #payment ul.payment_methods .stripe-card-group {
width: 100%; }
.section-content .wc-stripe-elements-field {
width: 100%;
padding: 10px;
border: 2px solid #000;
border-radius: 6px; }
.woocommerce-checkout #payment div.payment_box .form-row {
margin: 0 0 15px 0;
padding: 0; }
.ElementsApp .InputElement {
color: #000 !important; }
.woocommerce-checkout #payment ul.payment_methods li input {
margin: 0 5px 0 0; }
.woocommerce-checkout #payment div.payment_box {
padding: 0;
margin: 0 0 0 0; }
ul.woocommerce_error.woocommerce-error.wc-stripe-error {
margin-bottom: 0;
padding: 0 0 0 70px; }
ul.woocommerce_error.woocommerce-error.wc-stripe-error::before {
top: 50%;
transform: translateY(-50%); }
.payment-info-text {
text-transform: uppercase;
font-size: 24px; }
.wc_payment_method payment_method_stripe label {
display: flex !important;
align-items: center;
width: 100% !important; }
li.wc_payment_method.payment_method_stripe label {
width: 100%; }
li.wc_payment_method.payment_method_stripe label img {
margin-right: 20px !important; }
.woocommerce-checkout #payment ul.payment_methods li img.stripe-icon {
max-width: 50px; }
.woocommerce-terms-and-conditions-wrapper {
clear: both;
width: 100%;
order: 2; }
.form-row.place-order {
display: flex;
width: 100%;
justify-content: space-between; }
.woocommerce form .form-row label.checkbox, .woocommerce-page form .form-row label.checkbox {
display: inline-block;
text-align: right; }
ul.woocommerce_error.woocommerce-error.wc-stripe-error li {
line-height: 18px !important;
padding: 10px 0; }
@media (max-width: 991px) {
.woocommerce form .form-row {
margin: 0 0 10px; }
.woocommerce form .form-row input.input-text {
padding: 6px 15px 6px 15px; }
.select2-container--default .select2-selection--single {
padding: 6px 15px 6px 15px;
height: 40px; }
.select2-container--default .select2-selection--single .select2-selection__arrow b {
border-width: 10px 6px 0 6px;
margin-left: -24px;
margin-top: 2px; }
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
border-width: 0 6px 10px 6px; }
table.shop_table.woocommerce-checkout-review-order-table td {
padding: 5px 0; }
.woocommerce .col2-set, .woocommerce-page .col2-set {
width: initial; }
.select2-container {
margin: 0 0 5px 0; } }
@media (max-width: 640px) {
.woocommerce form .form-row {
width: 100%;
margin-bottom: 5px; }
.woocommerce-checkout #payment div.payment_box .form-row {
margin: 0 0 8px 0; }
li.wc_payment_method.payment_method_stripe label {
margin-bottom: 3px; }
.woocommerce-checkout #payment div.payment_box {
margin: 10px 0 10px 0; }
.form-row.place-order {
margin-bottom: 0 !important;
padding-bottom: 0 !important;
padding: 0 !important; }
.woocommerce form .form-row label {
margin-bottom: 2px; }
.select2-container--default .select2-selection--single {
padding: 5px 10px 5px 10px;
height: 38px; }
.wc-stripe-elements-field {
padding: 8px 10px; }
.select2-container--default .select2-selection--single .select2-selection__arrow b {
left: 15px; }
.select2-container .select2-selection--single .select2-selection__rendered {
padding-left: 0; }
.woocommerce-terms-and-conditions-wrapper {
padding: 0 15px; }
table.shop_table.woocommerce-checkout-review-order-table {
padding: 0 15px; }
.woocommerce #payment #place_order {
margin: 0 15px;
margin-left: auto; }
.checkout .select2-results__option {
padding: 0px 10px;
font-size: 18px; } }
@media (max-width: 480px) {
table.shop_table.woocommerce-checkout-review-order-table {
width: 100%; }
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
font-size: 15px; }
.woocommerce-checkout .woocommerce table.shop_table.woocommerce-checkout-review-order-table td {
width: 60%;
line-height: 20px; } }
@media (max-height: 900px) and (min-width: 767px) {
.woocommerce form .form-row {
margin: 0 0 10px; }
.cms-page .section-content h3 {
font-size: 22px !important; } }
.widget-area .widget {
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
margin-bottom: 48px;
word-wrap: break-word; }
.widget-area .widget h3 {
margin-bottom: 10px; }
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
font-size: 13px;
line-height: 1.846153846; }
.widget-area .textwidget ul,
.widget-area .textwidget ol {
list-style: disc outside;
margin: 0 0 24px; }
.widget-area .textwidget li &gt; ul,
.widget-area .textwidget li &gt; ol {
margin-bottom: 0; }
.widget-area .textwidget ol {
list-style: decimal; }
.widget-area .textwidget li {
margin-left: 36px; }
.widget-area .widget ul ul {
margin-left: 12px; }
.widget-area .widget a {
color: #757575; }
.widget-area .widget a:hover {
color: #21759b; } .widget_recent_entries .post-date, .widget_rss .rss-date {
color: #aaa;
font-size: 11px;
margin-left: 12px; }
#wp-calendar {
margin: 0;
width: 100%;
font-size: 13px;
line-height: 1.846153846;
color: #686868; }
#wp-calendar th, #wp-calendar td, #wp-calendar caption {
text-align: left; }
#wp-calendar #next {
padding-right: 24px;
text-align: right; }
.widget_twitter li {
list-style-type: none; }
.widget_twitter .timesince {
display: block;
text-align: right; }
.widget_search label {
display: block;
font-size: 13px;
line-height: 1.846153846; }
.widget_search input[type="text"], .widget_search input[type="search"] {
width: 70%; }
.widget-area .search-form form {
position: relative; }
.widget-area .search-form input {
width: 100%;
padding-right: 33px; }
.widget-area .search-form input.search-button {
width: 35px;
height: 30px;
padding: 5px;
display: inline-block;
vertical-align: middle;
position: absolute;
right: 0;
top: 4px;
border-left: 1px solid rgba(0, 0, 0, 0.2);
cursor: pointer; } .entry-content .item {
margin-bottom: 50px; }
.entry-content .item .title {
font-size: 30px;
margin-bottom: 5px; }
.entry-content .item .meta-box {
margin-bottom: 25px; }
.entry-content .item .meta-box &gt; div {
display: inline-block;
vertical-align: middle;
margin-right: 15px;
color: #999;
font-size: 14px; }
.entry-content .item .meta-box .post-category a {
display: inline-block;
vertical-align: middle; }
.entry-content .item .img-blk {
margin-bottom: 20px; }
.page-numbers {
padding-left: 0; } .page-numbers .page-numbers,
.page-numbers .page-numbers.next:hover, .page-numbers .page-numbers.prev:hover,
.page-numbers .page-numbers.next, .page-numbers .page-numbers.prev {
color: #999;
border-color: #999; }
.page-numbers li {
list-style: none;
display: inline-flex;
display: -webkit-inline-flex;
align-items: center;
justify-content: center; }
.page-numbers .page-numbers {
border: 1px solid;
width: auto;
padding: 3px 15px;
display: block; } .page-numbers .page-numbers:hover,
.page-numbers .page-numbers.current {
background: #4ecfcc;
color: #fff;
border-color: #4ecfcc; }
.page-numbers .page-numbers.next:hover, .page-numbers .page-numbers.prev:hover,
.page-numbers .page-numbers.next, .page-numbers .page-numbers.prev {
border: 0;
background: none; }
.page-numbers .page-numbers.prev {
padding-left: 0; } .article.attachment {
overflow: hidden; }
.image-attachment div.attachment {
text-align: center; }
.image-attachment div.attachment p {
text-align: center; }
.image-attachment div.attachment img {
display: block;
height: auto;
margin: 0 auto;
max-width: 100%; }
.image-attachment .entry-caption {
margin-top: 8px; }         .full-width-banner {
position: relative;
z-index: 1;  }
.full-width-banner .single-image {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
position: relative;
padding: 50px 0; }
.full-width-banner .single-image figure {
min-height: 100vh;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0; }
.full-width-banner .single-image figure img {
object-fit: cover;
max-width: 100%;
max-height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.full-width-banner .single-image .caption {
font-size: 22px;
color: #fff;
font-family: Arial;
line-height: 1.5em;
letter-spacing: 1px;
text-transform: uppercase;
position: relative;
max-width: 600px;
text-align: center;
z-index: 3; }
.full-width-banner .full-slider {
min-height: 100vh;  }
.full-width-banner .full-slider .owl-item {
min-height: 100vh; }
.full-width-banner .full-slider .item {
min-height: 100vh;
position: relative;
display: flex;
justify-content: center;
align-items: center;
position: relative;
padding: 50px 0; }
.full-width-banner .full-slider .item picture,
.full-width-banner .full-slider .item figure {
min-height: 100vh;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -4; }
.full-width-banner .full-slider .item picture img,
.full-width-banner .full-slider .item figure img {
object-fit: cover;
max-width: 100%;
max-height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.full-width-banner .full-slider .item .video {
padding-bottom: 100vh;
width: 100%;
position: absolute;
background: black;
top: 0;
left: 0;
z-index: -10; }
.full-width-banner .full-slider .item .video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none; }
.full-width-banner .full-slider .item .caption {
font-size: 22px;
color: #fff;
font-family: Arial;
line-height: 1.5em;
letter-spacing: 1px;
text-transform: uppercase;
position: relative;
max-width: 600px;
text-align: center;
z-index: 3; }
.full-width-banner .full-slider .owl-nav {
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
color: #fff;
pointer-events: none; }
.full-width-banner .full-slider .owl-nav .owl-prev, .full-width-banner .full-slider .owl-nav .owl-next {
pointer-events: all;
cursor: pointer;
width: 70px;
height: 70px;
border: 1px solid #fff;
display: block;
overflow: hidden;
text-indent: -1000px;
position: relative;
background-color: transparent; }
.full-width-banner .full-slider .owl-nav .owl-prev {
float: left;
margin-left: 10px;
background: none; }
.full-width-banner .full-slider .owl-nav .owl-prev::before {
content: '&lt;';
text-indent: 0;
color: #fff;
position: absolute;
top: 50%;
left: 50%;
font-size: 15px;
transform: translate(-50%, -50%);
display: block; }
.full-width-banner .full-slider .owl-nav .owl-prev:hover {
background: none;
background-color: #fff;
color: #333;
border-color: #fff; }
.full-width-banner .full-slider .owl-nav .owl-prev:hover::before {
color: #333; }
.full-width-banner .full-slider .owl-nav .owl-next {
float: right;
margin-right: 10px;
background: none; }
.full-width-banner .full-slider .owl-nav .owl-next::before {
content: '&gt;';
text-indent: 0;
color: #fff;
position: absolute;
top: 50%;
left: 50%;
font-size: 15px;
transform: translate(-50%, -50%);
display: block; }
.full-width-banner .full-slider .owl-nav .owl-next:hover {
background: none;
background-color: #fff;
color: #333;
border-color: #fff; }
.full-width-banner .full-slider .owl-nav .owl-next:hover::before {
color: #333; }
.full-width-banner .full-slider .owl-dots {
position: absolute;
display: block;
text-align: center;
width: 100%;
bottom: 20px; }
.full-width-banner .full-slider .owl-dots .owl-dot {
width: 15px;
height: 15px;
border-radius: 100%;
border: 1px solid #fff;
display: inline-block;
margin: 0 5px;
cursor: pointer;
background: transparent; }
.full-width-banner .full-slider .owl-dots .owl-dot.active {
background: #fff; }
.full-width-banner .full-slider .owl-dots .owl-dot:hover {
background: #fff; } .overlay {
position: relative;
z-index: 0; }
.overlay::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 2; }
.homebanner {
margin: -24px 0 0 0; }
@media (max-width: 1280px) {
.homebanner {
margin: -27px 0 0 0; } }
.inner-banner {
display: block; }
@media (min-width: 1025px) {
.inner-banner .item figure {
overflow: hidden;
height: 510px; }
.inner-banner .item figure img {
height: 120%;
object-fit: cover; } }
@media (max-width: 991px) {
.inner-banner .item figure {
min-height: 400px; }
.inner-banner .item figure img {
position: absolute;
height: 100%;
object-fit: cover; } }
@media (max-width: 767px) {
.inner-banner .item figure {
min-height: 300px; } }
@media (max-width: 991px) {
.inner-banner {
margin-top: -27px; }
.inner-banner .owl-dots {
transform: none;
top: auto;
left: 0;
right: 0;
bottom: 5px;
width: 100%;
text-align: center; }
.inner-banner .owl-dots .owl-dot {
display: inline-block; } }
@media (max-width: 767px) {
.inner-banner {
margin-top: -27px; } } @font-face {
font-family: "lg";
src: url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/fonts/lg.eot?n1z373);
src: url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/fonts/lg.eot?#iefixn1z373) format("embedded-opentype"), url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/fonts/lg.woff?n1z373) format("woff"), url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/fonts/lg.ttf?n1z373) format("truetype"), url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/fonts/lg.svg?n1z373#lg) format("svg");
font-weight: normal;
font-style: normal; }
.lg-icon {
font-family: "lg";
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; }
.lg-actions .lg-next,
.lg-actions .lg-prev {
background-color: rgba(0, 0, 0, 0.45);
border-radius: 2px;
color: #999;
cursor: pointer;
display: block;
font-size: 22px;
margin-top: -10px;
padding: 8px 10px 9px;
position: absolute;
top: 50%;
z-index: 1080; }
.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
pointer-events: none;
opacity: 0.5; }
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
color: #fff; }
.lg-actions .lg-next {
right: 20px; }
.lg-actions .lg-next:before {
content: ""; }
.lg-actions .lg-prev {
left: 20px; }
.lg-actions .lg-prev:after {
content: ""; }
@-webkit-keyframes lg-right-end {
0% {
left: 0; }
50% {
left: -30px; }
100% {
left: 0; } }
@keyframes lg-right-end {
0% {
left: 0; }
50% {
left: -30px; }
100% {
left: 0; } }
@-webkit-keyframes lg-left-end {
0% {
left: 0; }
50% {
left: 30px; }
100% {
left: 0; } }
@keyframes lg-left-end {
0% {
left: 0; }
50% {
left: 30px; }
100% {
left: 0; } }
.lg-outer.lg-right-end .lg-object {
-webkit-animation: lg-right-end .3s;
animation: lg-right-end .3s;
position: relative; }
.lg-outer.lg-left-end .lg-object {
-webkit-animation: lg-left-end .3s;
animation: lg-left-end .3s;
position: relative; }
.lg-toolbar {
z-index: 1082;
left: 0;
position: absolute;
top: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0); }
.lg-toolbar .lg-icon {
color: #999;
cursor: pointer;
float: right;
font-size: 24px;
height: 47px;
line-height: 27px;
padding: 10px 0;
text-align: center;
width: 50px;
text-decoration: none !important;
outline: medium none;
transition: color 0.2s linear; }
.lg-toolbar .lg-icon:hover {
color: #fff; }
.lg-toolbar .lg-close:after {
content: ""; }
.lg-toolbar .lg-download:after {
content: ""; }
.lg-sub-html {
background-color: rgba(0, 0, 0, 0.45);
bottom: 0;
color: #eee;
font-size: 16px;
left: 0;
padding: 10px 40px;
position: fixed;
right: 0;
text-align: center;
z-index: 1080; }
.lg-sub-html h4 {
margin: 0;
font-size: 13px;
font-weight: bold; }
.lg-sub-html p {
font-size: 12px;
margin: 5px 0 0; }
#lg-counter {
color: #999;
display: inline-block;
font-size: 16px;
padding-left: 20px;
padding-top: 12px;
vertical-align: middle; }
.lg-toolbar,
.lg-prev,
.lg-next {
opacity: 1;
transition: opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear, -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s; }
.lg-hide-items .lg-prev {
opacity: 0;
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0); }
.lg-hide-items .lg-next {
opacity: 0;
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0); }
.lg-hide-items .lg-toolbar {
opacity: 0;
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0); }
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
-webkit-transform: scale3d(0.5, 0.5, 0.5);
transform: scale3d(0.5, 0.5, 0.5);
opacity: 0;
transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%; }
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
opacity: 1; }
.lg-outer .lg-thumb-outer {
background-color: #0d0a0a;
bottom: 0;
position: absolute;
width: 100%;
z-index: 1080;
max-height: 350px;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
cursor: -webkit-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab; }
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
cursor: move;
cursor: -webkit-grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: grabbing; }
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
transition-duration: 0s !important; }
.lg-outer.lg-thumb-open .lg-thumb-outer {
-webkit-transform: translate3d(0, 0%, 0);
transform: translate3d(0, 0%, 0); }
.lg-outer .lg-thumb {
padding: 10px 0;
height: 100%;
margin-bottom: -5px; }
.lg-outer .lg-thumb-item {
border-radius: 5px;
cursor: pointer;
float: left;
overflow: hidden;
height: 100%;
border: 2px solid #fff;
border-radius: 4px;
margin-bottom: 5px; }
@media (min-width: 1025px) {
.lg-outer .lg-thumb-item {
transition: border-color 0.25s ease; } }
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
border-color: #a90707; }
.lg-outer .lg-thumb-item img {
width: 100%;
height: 100%;
object-fit: cover; }
.lg-outer.lg-has-thumb .lg-item {
padding-bottom: 120px; }
.lg-outer.lg-can-toggle .lg-item {
padding-bottom: 0; }
.lg-outer.lg-pull-caption-up .lg-sub-html {
transition: bottom 0.25s ease; }
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
bottom: 100px; }
.lg-outer .lg-toogle-thumb {
background-color: #0d0a0a;
border-radius: 2px 2px 0 0;
color: #999;
cursor: pointer;
font-size: 24px;
height: 39px;
line-height: 27px;
padding: 5px 0;
position: absolute;
right: 20px;
text-align: center;
top: -39px;
width: 50px; }
.lg-outer .lg-toogle-thumb:after {
content: ""; }
.lg-outer .lg-toogle-thumb:hover {
color: #fff; }
.lg-outer .lg-video-cont {
display: inline-block;
vertical-align: middle;
max-width: 1140px;
max-height: 100%;
width: 100%;
padding: 0 5px; }
.lg-outer .lg-video {
width: 100%;
height: 0;
padding-bottom: 56.25%;
overflow: hidden;
position: relative; }
.lg-outer .lg-video .lg-object {
display: inline-block;
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important; }
.lg-outer .lg-video .lg-video-play {
width: 84px;
height: 59px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -42px;
margin-top: -30px;
z-index: 1080;
cursor: pointer; }
.lg-outer .lg-has-vimeo .lg-video-play {
background: url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/img/vimeo-play.png) no-repeat scroll 0 0 transparent; }
.lg-outer .lg-has-vimeo:hover .lg-video-play {
background: url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/img/vimeo-play.png) no-repeat scroll 0 -58px transparent; }
.lg-outer .lg-has-html5 .lg-video-play {
background: transparent url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/img/video-play.png) no-repeat scroll 0 0;
height: 64px;
margin-left: -32px;
margin-top: -32px;
width: 64px;
opacity: 0.8; }
.lg-outer .lg-has-html5:hover .lg-video-play {
opacity: 1; }
.lg-outer .lg-has-youtube .lg-video-play {
background: url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/img/youtube-play.png) no-repeat scroll 0 0 transparent; }
.lg-outer .lg-has-youtube:hover .lg-video-play {
background: url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/img/youtube-play.png) no-repeat scroll 0 -60px transparent; }
.lg-outer .lg-video-object {
width: 100% !important;
height: 100% !important;
position: absolute;
top: 0;
left: 0; }
.lg-outer .lg-has-video .lg-video-object {
visibility: hidden; }
.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
display: none; }
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
visibility: visible; }
.lg-progress-bar {
background-color: #333;
height: 5px;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1083;
opacity: 0;
transition: opacity 0.08s ease 0s; }
.lg-progress-bar .lg-progress {
background-color: #a90707;
height: 5px;
width: 0; }
.lg-progress-bar.lg-start .lg-progress {
width: 100%; }
.lg-show-autoplay .lg-progress-bar {
opacity: 1; }
.lg-autoplay-button:after {
content: ""; }
.lg-show-autoplay .lg-autoplay-button:after {
content: ""; }
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
transition-duration: 0s; }
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
transition: opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s, -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s !important;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
#lg-zoom-in:after {
content: ""; }
#lg-actual-size {
font-size: 20px; }
#lg-actual-size:after {
content: ""; }
#lg-zoom-out {
opacity: .5;
pointer-events: none; }
#lg-zoom-out:after {
content: ""; }
.lg-zoomed #lg-zoom-out {
opacity: 1;
pointer-events: auto; }
.lg-outer .lg-pager-outer {
bottom: 60px;
left: 0;
position: absolute;
right: 0;
text-align: center;
z-index: 1080;
height: 10px; }
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
overflow: visible; }
.lg-outer .lg-pager-cont {
cursor: pointer;
display: inline-block;
overflow: hidden;
position: relative;
vertical-align: top;
margin: 0 5px; }
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
box-shadow: 0 0 0 2px #fff inset; }
.lg-outer .lg-pager-thumb-cont {
background-color: #fff;
color: #fff;
bottom: 100%;
height: 83px;
left: 0;
margin-bottom: 20px;
margin-left: -60px;
opacity: 0;
padding: 5px;
position: absolute;
width: 120px;
border-radius: 3px;
transition: opacity .15s ease 0s, -webkit-transform .15s ease 0s;
transition: opacity .15s ease 0s, transform .15s ease 0s;
transition: opacity .15s ease 0s, transform .15s ease 0s, -webkit-transform .15s ease 0s;
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0); }
.lg-outer .lg-pager-thumb-cont img {
width: 100%;
height: 100%; }
.lg-outer .lg-pager {
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%;
box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
display: block;
height: 12px;
transition: box-shadow .3s ease 0s;
width: 12px; }
.lg-outer .lg-pager:hover,
.lg-outer .lg-pager:focus {
box-shadow: 0 0 0 8px #fff inset; }
.lg-outer .lg-caret {
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px dashed;
bottom: -10px;
display: inline-block;
height: 0;
left: 50%;
margin-left: -5px;
position: absolute;
vertical-align: middle;
width: 0; }
.lg-fullscreen:after {
content: ""; }
.lg-fullscreen-on .lg-fullscreen:after {
content: ""; }
.group {
*zoom: 1; }
.group:before,
.group:after {
display: table;
content: "";
line-height: 0; }
.group:after {
clear: both; }
.lg-outer {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 1050;
opacity: 0;
transition: opacity 0.15s ease 0s; }
.lg-outer * {
box-sizing: border-box; }
.lg-outer.lg-visible {
opacity: 1; }
.lg-outer.lg-css3 .lg-item.lg-prev-slide,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-current {
transition-duration: inherit !important;
transition-timing-function: inherit !important; }
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
transition-duration: 0s !important;
opacity: 1; }
.lg-outer.lg-grab img.lg-object {
cursor: -webkit-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab; }
.lg-outer.lg-grabbing img.lg-object {
cursor: move;
cursor: -webkit-grabbing;
cursor: -o-grabbing;
cursor: -ms-grabbing;
cursor: grabbing; }
.lg-outer .lg {
height: 100%;
width: 100%;
position: relative;
overflow: hidden;
margin-left: auto;
margin-right: auto;
max-width: 100%;
max-height: 100%; }
.lg-outer .lg-inner {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
white-space: nowrap; }
.lg-outer .lg-item {
background: url(https://skiffsports.com/wp-content/themes/skiff-sports/assets/css/img/loading.gif) no-repeat scroll center center transparent;
display: none !important; }
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
display: inline-block !important; }
.lg-outer.lg-css .lg-current {
display: inline-block !important; }
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
display: inline-block;
text-align: center;
position: absolute;
width: 100%;
height: 100%; }
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
content: "";
display: inline-block;
height: 50%;
width: 1px;
margin-right: -1px; }
.lg-outer .lg-img-wrap {
position: absolute;
padding: 0 5px;
left: 0;
right: 0;
top: 0;
bottom: 0; }
.lg-outer .lg-item.lg-complete {
background-image: none; }
.lg-outer .lg-item.lg-current {
z-index: 1060; }
.lg-outer .lg-image {
display: inline-block;
vertical-align: middle;
max-width: 100%;
max-height: 100%;
width: auto !important;
height: auto !important; }
.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
opacity: 0;
transition: opacity 0.15s ease 0s; }
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
opacity: 1; }
.lg-outer .lg-empty-html {
display: none; }
.lg-outer.lg-hide-download #lg-download {
display: none; }
.lg-backdrop {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1040;
background-color: #000;
opacity: 0;
transition: opacity 0.15s ease 0s; }
.lg-backdrop.in {
opacity: 1; }
.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
transition: none 0s ease 0s !important; }
.lg-css3.lg-use-css3 .lg-item {
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.lg-css3.lg-use-left .lg-item {
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.lg-css3.lg-fade .lg-item {
opacity: 0; }
.lg-css3.lg-fade .lg-item.lg-current {
opacity: 1; }
.lg-css3.lg-fade .lg-item.lg-prev-slide,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-current {
transition: opacity 0.1s ease 0s; }
.lg-css3.lg-slide.lg-use-css3 .lg-item {
opacity: 0; }
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0); }
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0); }
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1; }
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s; }
.lg-css3.lg-slide.lg-use-left .lg-item {
opacity: 0;
position: absolute;
left: 0; }
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
left: -100%; }
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
left: 100%; }
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
left: 0;
opacity: 1; }
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
.swiper-container {
margin: 0 auto;
position: relative;
overflow: hidden;
z-index: 1; }
.swiper-container-no-flexbox .swiper-slide {
float: left; }
.swiper-container-vertical &gt; .swiper-wrapper {
-ms-flex-direction: column;
-webkit-flex-direction: column;
flex-direction: column; }
.swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
box-sizing: content-box; }
.swiper-container-android .swiper-slide,
.swiper-wrapper {
-webkit-transform: translate3d(0px, 0, 0);
transform: translate3d(0px, 0, 0); }
.swiper-container-multirow &gt; .swiper-wrapper {
-webkit-box-lines: multiple;
-moz-box-lines: multiple;
-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap; }
.swiper-container-free-mode &gt; .swiper-wrapper {
transition-timing-function: ease-out;
margin: 0 auto; }
.swiper-slide {
-webkit-flex-shrink: 0;
-ms-flex: 0 0 auto;
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
height: 100%;
position: relative; }
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
height: auto; }
.swiper-container-autoheight .swiper-wrapper {
-ms-flex-align: start;
-webkit-align-items: flex-start;
align-items: flex-start;
transition-property: height, -webkit-transform;
transition-property: transform, height;
transition-property: transform, height, -webkit-transform; }
.swiper-container .swiper-notification {
position: absolute;
left: 0;
top: 0;
pointer-events: none;
opacity: 0;
z-index: -1000; }
.swiper-wp8-horizontal {
-ms-touch-action: pan-y;
touch-action: pan-y; }
.swiper-wp8-vertical {
-ms-touch-action: pan-x;
touch-action: pan-x; }
.swiper-button-prev,
.swiper-button-next {
position: absolute;
top: 50%;
width: 27px;
height: 44px;
margin-top: -22px;
z-index: 10;
cursor: pointer;
background-size: 27px 44px;
background-position: center;
background-repeat: no-repeat; }
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
opacity: .35;
cursor: auto;
pointer-events: none; }
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
left: 10px;
right: auto; }
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
right: 10px;
left: auto; }
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }
.swiper-pagination,
.vgg .hero-slider-v2__pagination {
position: absolute;
text-align: center;
transition: 300ms;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
z-index: 10; }
.swiper-pagination.swiper-pagination-hidden,
.vgg .swiper-pagination-hidden.hero-slider-v2__pagination {
opacity: 0; }
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal &gt; .swiper-pagination-bullets {
bottom: 10px;
left: 0;
width: 100%; }
.swiper-pagination-bullet {
width: 8px;
height: 8px;
display: inline-block;
border-radius: 100%;
background: #000;
opacity: 0.2; }
button.swiper-pagination-bullet {
border: none;
margin: 0;
padding: 0;
box-shadow: none;
-moz-appearance: none;
-ms-appearance: none;
-webkit-appearance: none;
appearance: none; }
.swiper-pagination-clickable .swiper-pagination-bullet {
cursor: pointer; }
.swiper-pagination-white .swiper-pagination-bullet {
background: #fff; }
.swiper-pagination-bullet-active {
opacity: 1;
background: #007aff; }
.swiper-pagination-white .swiper-pagination-bullet-active {
background: #fff; }
.swiper-pagination-black .swiper-pagination-bullet-active {
background: #000; }
.swiper-container-vertical &gt; .swiper-pagination-bullets {
right: 10px;
top: 50%;
-webkit-transform: translate3d(0px, -50%, 0);
transform: translate3d(0px, -50%, 0); }
.swiper-container-vertical &gt; .swiper-pagination-bullets .swiper-pagination-bullet {
margin: 5px 0;
display: block; }
.swiper-container-horizontal &gt; .swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 5px; }
.swiper-pagination-progress {
background: rgba(0, 0, 0, 0.25);
position: absolute; }
.swiper-pagination-progress .swiper-pagination-progressbar {
background: #007aff;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
-webkit-transform: scale(0);
transform: scale(0);
-webkit-transform-origin: left top;
transform-origin: left top; }
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
-webkit-transform-origin: right top;
transform-origin: right top; }
.swiper-container-horizontal &gt; .swiper-pagination-progress {
width: 100%;
height: 4px;
left: 0;
top: 0; }
.swiper-container-vertical &gt; .swiper-pagination-progress {
width: 4px;
height: 100%;
left: 0;
top: 0; }
.swiper-pagination-progress.swiper-pagination-white {
background: rgba(255, 255, 255, 0.5); }
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
background: #fff; }
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
background: #000; }
.swiper-container-3d {
-webkit-perspective: 1200px;
-o-perspective: 1200px;
perspective: 1200px; }
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d; }
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10; }
.swiper-container-3d .swiper-slide-shadow-left {
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
.swiper-container-3d .swiper-slide-shadow-right {
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
.swiper-container-3d .swiper-slide-shadow-top {
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
.swiper-container-3d .swiper-slide-shadow-bottom {
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
-ms-perspective: 1200px; }
.swiper-container-cube,
.swiper-container-flip {
overflow: visible; }
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
pointer-events: none;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
z-index: 1; }
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
pointer-events: none; }
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
pointer-events: auto; }
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
z-index: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.swiper-container-cube .swiper-slide {
visibility: hidden;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
width: 100%;
height: 100%; }
.swiper-container-cube.swiper-container-rtl .swiper-slide {
-webkit-transform-origin: 100% 0;
transform-origin: 100% 0; }
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
pointer-events: auto;
visibility: visible; }
.swiper-container-cube .swiper-cube-shadow {
position: absolute;
left: 0;
bottom: 0px;
width: 100%;
height: 100%;
background: #000;
opacity: .6;
-webkit-filter: blur(50px);
filter: blur(50px);
z-index: 0; }
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
transition-timing-function: ease-out; }
.swiper-container-fade .swiper-slide {
pointer-events: none;
transition-property: opacity; }
.swiper-container-fade .swiper-slide .swiper-slide {
pointer-events: none; }
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
pointer-events: auto; }
.swiper-scrollbar {
border-radius: 10px;
position: relative;
-ms-touch-action: none;
background: rgba(0, 0, 0, 0.1); }
.swiper-container-horizontal &gt; .swiper-scrollbar {
position: absolute;
left: 1%;
bottom: 3px;
z-index: 50;
height: 5px;
width: 98%; }
.swiper-container-vertical &gt; .swiper-scrollbar {
position: absolute;
right: 3px;
top: 1%;
z-index: 50;
width: 5px;
height: 98%; }
.swiper-scrollbar-drag {
height: 100%;
width: 100%;
position: relative;
background: rgba(0, 0, 0, 0.5);
border-radius: 10px;
left: 0;
top: 0; }
.swiper-scrollbar-cursor-drag {
cursor: move; }
.swiper-lazy-preloader {
width: 42px;
height: 42px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -21px;
margin-top: -21px;
z-index: 10;
-webkit-transform-origin: 50%;
transform-origin: 50%;
-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
animation: swiper-preloader-spin 1s steps(12, end) infinite; }
.swiper-lazy-preloader:after {
display: block;
content: "";
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
background-position: 50%;
background-size: 100%;
background-repeat: no-repeat; }
.swiper-lazy-preloader-white:after {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }
@-webkit-keyframes swiper-preloader-spin {
100% {
-webkit-transform: rotate(360deg); } }
@keyframes swiper-preloader-spin {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg); } }
.vgg .c-brand-primary {
color: #dd052b; }
@-webkit-keyframes swiperButtonHover {
0% {
-webkit-transform: rotate(45deg) translate3d(0, 0, 0);
transform: rotate(45deg) translate3d(0, 0, 0); }
49% {
-webkit-transform: rotate(45deg) translate3d(100%, -100%, 0);
transform: rotate(45deg) translate3d(100%, -100%, 0);
opacity: 0.7; }
50% {
opacity: 0;
-webkit-transform: rotate(45deg) translate3d(100%, -100%, 0);
transform: rotate(45deg) translate3d(100%, -100%, 0); }
51% {
opacity: 0;
-webkit-transform: rotate(45deg) translate3d(-100%, 100%, 0);
transform: rotate(45deg) translate3d(-100%, 100%, 0); }
52% {
opacity: .7;
-webkit-transform: rotate(45deg) translate3d(-100%, 100%, 0);
transform: rotate(45deg) translate3d(-100%, 100%, 0); }
100% {
opacity: 1;
-webkit-transform: rotate(45deg) translate3d(0, 0, 0);
transform: rotate(45deg) translate3d(0, 0, 0); } }
@keyframes swiperButtonHover {
0% {
-webkit-transform: rotate(45deg) translate3d(0, 0, 0);
transform: rotate(45deg) translate3d(0, 0, 0); }
49% {
-webkit-transform: rotate(45deg) translate3d(100%, -100%, 0);
transform: rotate(45deg) translate3d(100%, -100%, 0);
opacity: 0.7; }
50% {
opacity: 0;
-webkit-transform: rotate(45deg) translate3d(100%, -100%, 0);
transform: rotate(45deg) translate3d(100%, -100%, 0); }
51% {
opacity: 0;
-webkit-transform: rotate(45deg) translate3d(-100%, 100%, 0);
transform: rotate(45deg) translate3d(-100%, 100%, 0); }
52% {
opacity: .7;
-webkit-transform: rotate(45deg) translate3d(-100%, 100%, 0);
transform: rotate(45deg) translate3d(-100%, 100%, 0); }
100% {
opacity: 1;
-webkit-transform: rotate(45deg) translate3d(0, 0, 0);
transform: rotate(45deg) translate3d(0, 0, 0); } }
.aui a,
.aui a:active,
.aui a:visited,
.aui a:focus,
.aui a:hover {
text-decoration: none;
color: inherit; }
.aui body {
font-family: "Trebuchet MS", "Helvetica", "Arial", Tahoma, sans-serif;
font-size: 15px;
background-image: repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px;
line-height: 1.428571429; }
.aui ul,
.aui ol {
padding: 0;
margin: 0; }
.aui li {
line-height: 1.428571429; }
.aui h1,
.aui h2,
.aui h3,
.aui h4,
.aui h5,
.aui h6 {
font-size: 1em;
font-weight: 400;
margin: 0;
line-height: 1em; }
.aui * {
margin: 0; }
.aui p {
margin: 0; }
.aui .breadcrumb {
border: 0;
padding: 0;
margin: 0; }
.aui .row-fluid[class*=span] {
min-height: 0; }
.aui .row-fluid .span12,
.aui .row-fluid .span6 {
margin-left: 0 !important; }
.aui form {
margin: 0; }
.aui textarea,
.aui input[type=text],
.aui input[type=password],
.aui input[type=datetime],
.aui input[type=datetime-local],
.aui input[type=date],
.aui input[type=month],
.aui input[type=time],
.aui input[type=week],
.aui input[type=number],
.aui input[type=email],
.aui input[type=url],
.aui input[type=search],
.aui input[type=tel],
.aui input[type=color],
.aui .uneditable-input {
border: none;
box-shadow: none;
transition: none; }
.aui select,
.aui textarea,
.aui input[type=text],
.aui input[type=password],
.aui input[type=datetime],
.aui input[type=datetime-local],
.aui input[type=date],
.aui input[type=month],
.aui input[type=time],
.aui input[type=week],
.aui input[type=number],
.aui input[type=email],
.aui input[type=url],
.aui input[type=search],
.aui input[type=tel],
.aui input[type=color],
.aui .uneditable-input {
display: inline-block;
height: auto;
padding: 0;
margin-bottom: 0;
font-size: 1em;
line-height: 1em;
color: #333;
border-radius: 0;
vertical-align: middle; }
.aui label,
.aui input,
.aui button,
.aui select,
.aui textarea {
font-size: 1em;
line-height: 1em; }
@media (max-width: 979px) {
.aui fieldset {
width: auto; } }
.aui label {
display: inline-block; }
.portlet-borderless-container {
min-height: 0; }
.portlet-column-content.empty {
padding: 0; }
.search-query {
height: 20px !important;
color: #000 !important;
border: 1px solid #ccc !important;
font-size: 14px !important;
padding: 1em !important; }
@media screen and (min-width: 768px) {
.aui .row-fluid .span4 {
width: 33.33333%;
margin: 0; }
.aui .row-fluid .span6 {
width: 50%;
margin: 0; } }
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px; }
.hide {
display: none; }
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto; }
.svg-defs {
position: absolute;
width: 0;
height: 0; }
.text-center {
text-align: center !important; }
.vgg .title-a {
font-size: 27px;
font-weight: bold;
line-height: 1;
text-transform: uppercase;
margin-bottom: 30px;
margin-top: 30px;
letter-spacing: 0.05em; }
@media (min-width: 768px) {
.vgg .title-a {
font-size: 34px; } }
@media (min-width: 1366px) {
.vgg .title-a {
font-size: 40px; } }
.vgg .title-b {
font-size: 18px;
line-height: 1;
text-transform: uppercase;
margin-bottom: 20px;
margin-top: 20px;
letter-spacing: 0.1em; }
@media (min-width: 768px) {
.vgg .title-b {
font-size: 20px; } }
@media (min-width: 1366px) {
.vgg .title-b {
font-size: 20px; } }
.vgg .title-c {
font-size: 14px;
font-weight: normal;
line-height: 1.428571429;
margin-bottom: 30px; }
@media (min-width: 768px) {
.vgg .title-c {
font-size: 15px; } }
@media (min-width: 1366px) {
.vgg .title-c {
font-size: 16px; } }
.vgg .editorial-text {
line-height: 2.3em;
font-size: 12px;
padding-bottom: 0.1px; }
.vgg .editorial-text h2,
.vgg .editorial-text h3 {
margin-bottom: .8em;
font-size: 20px;
letter-spacing: .05em;
line-height: 1.2; }
.vgg .editorial-text h2 ~ h3 {
font-size: 14px; }
.vgg .editorial-text h2 ~ h3,
.vgg .editorial-text h3 ~ h3 {
margin-top: 1.2em; }
.vgg .editorial-text h2 ~ h2 {
margin-top: 1.2em; }
.vgg .editorial-text p,
.vgg .editorial-text li {
margin: 0.8em 0; }
.vgg .editorial-text ul,
.vgg .editorial-text ol {
margin: 1.8em 0; }
.vgg .editorial-text ul {
padding-left: 2em; }
.vgg .editorial-text ul &gt; li {
position: relative; }
.vgg .editorial-text ul &gt; li:before {
content: "";
height: 5px;
width: 5px;
background-color: #dd052b;
border-radius: 50%;
position: absolute;
display: inline-block;
left: -1.5em;
top: 0.5em; }
.vgg .editorial-text ol {
list-style: initial;
list-style-type: decimal;
padding-left: 2em; }
.vgg .editorial-text a {
text-decoration: underline; }
.vgg .editorial-text a:link,
.vgg .editorial-text a:visited {
transition: color .4s;
color: #dd052b; }
.vgg .editorial-text a:hover {
color: #dd052b; }
.vgg .editorial-text a:active {
color: #dd052b;
transition: color 0.2s; }
.vgg .editorial-text strong,
.vgg .editorial-text bold {
font-weight: 700; }
.vgg .editorial-text em,
.vgg .editorial-text i {
font-style: italic; }
@media screen and (min-width: 1024px) {
.vgg .editorial-text h2,
.vgg .editorial-text h3 {
font-size: 22px; }
.vgg .editorial-text h2 ~ h3 {
font-size: 15px; }
.vgg .editorial-text p,
.vgg .editorial-text ul,
.vgg .editorial-text ol {
font-size: 14px; } }
@media screen and (min-width: 1440px) {
.vgg .editorial-text h2,
.vgg .editorial-text h3 {
font-size: 24px; }
.vgg .editorial-text h2 ~ h3 {
font-size: 18px; }
.vgg .editorial-text p,
.vgg .editorial-text ul,
.vgg .editorial-text ol {
font-size: 15px; } }
.vgg .heading-arrow-link {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
color: #dd052b !important;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-size: 14px;
position: relative;
text-transform: uppercase;
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1); }
@media (max-width: 767px) {
.vgg .heading-arrow-link {
margin-bottom: 25px; } }
.vgg .heading-arrow-link:hover {
color: #333 !important;
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0); }
.vgg .heading-arrow-link:hover button {
background-color: #333; }
@media (max-width: 1023px) {
.vgg .heading-arrow-link span {
display: none; } }
.vgg .heading-arrow-link button {
background-color: #dd052b;
border-radius: 50%;
color: #fff;
height: 36px;
margin-left: 15px;
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1);
width: 36px; }
@media (min-width: 1024px) {
.vgg .heading-arrow-link button {
right: 0; } }
.svg-icons-container {
display: none; }
.Icon {
width: 0.7em;
height: 0.7em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden; }
@-webkit-keyframes videoButtonHover {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
49% {
-webkit-transform: translate3d(300%, 0, 0);
transform: translate3d(300%, 0, 0);
opacity: 0.7; }
50% {
opacity: 0;
-webkit-transform: translate3d(300%, 0, 0);
transform: translate3d(300%, 0, 0); }
51% {
opacity: 0;
-webkit-transform: translate3d(-300%, 0, 0);
transform: translate3d(-300%, 0, 0); }
52% {
opacity: .7;
-webkit-transform: translate3d(-300%, 0, 0);
transform: translate3d(-300%, 0, 0); }
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); } }
@keyframes videoButtonHover {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
49% {
-webkit-transform: translate3d(300%, 0, 0);
transform: translate3d(300%, 0, 0);
opacity: 0.7; }
50% {
opacity: 0;
-webkit-transform: translate3d(300%, 0, 0);
transform: translate3d(300%, 0, 0); }
51% {
opacity: 0;
-webkit-transform: translate3d(-300%, 0, 0);
transform: translate3d(-300%, 0, 0); }
52% {
opacity: .7;
-webkit-transform: translate3d(-300%, 0, 0);
transform: translate3d(-300%, 0, 0); }
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); } }
.vgg button {
background: none;
border: 0;
color: inherit;
cursor: pointer;
font: inherit;
line-height: 1.428571429;
font-family: "Trebuchet MS", "Helvetica", "Arial", Tahoma, sans-serif;
overflow: visible;
padding: 0;
-webkit-appearance: button;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none; }
.vgg button:focus {
outline: none; }
.vgg .button--primary:link,
.vgg .button--primary:visited {
transition: color .4s;
color: #fff; }
.vgg .button--primary:hover {
color: #fff; }
.vgg .button--primary:active {
color: #fff;
transition: color 0.2s; }
.vgg .button--primary .button__wrapper {
overflow: hidden;
position: relative;
display: inline-block; }
.vgg .button--primary .button__inner {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 50px;
padding: 4px 24px 4px 24px;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
z-index: 1;
opacity: 1;
position: relative;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .button--primary .button__inner--clone {
position: absolute;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
top: 0;
left: 0;
width: 100%;
opacity: 0; }
.vgg .button--primary span {
display: inline-block;
text-align: left;
transition: all 0.2s linear; }
.vgg .button--primary span,
.vgg .button--primary svg {
position: relative;
z-index: 2; }
.vgg .button--primary svg {
margin-left: 8px;
font-size: 22px;
min-width: 22px; }
.vgg .button--primary:hover .button__inner {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
opacity: 0; }
.vgg .button--primary:hover .button__inner--clone {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1; }
.vgg .button--primary-border {
color: #dd052b;
font-size: 12px;
font-weight: bold;
padding: 0 6px;
position: relative;
text-transform: uppercase;
letter-spacing: .05em;
cursor: pointer;
display: inline-block;
height: 50px; }
.vgg .button--primary-border:link,
.vgg .button--primary-border:visited {
transition: color .4s;
color: #dd052b; }
.vgg .button--primary-border:hover {
color: #dd052b; }
.vgg .button--primary-border:active {
color: #dd052b;
transition: color 0.2s; }
.vgg .button--primary-border .button__wrapper {
overflow: hidden;
position: relative;
display: inline-block; }
.vgg .button--primary-border .button__inner {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 50px;
padding: 4px 24px 4px 24px;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
z-index: 1;
opacity: 1;
position: relative;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .button--primary-border .button__inner--clone {
position: absolute;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
top: 0;
left: 0;
width: 100%;
opacity: 0; }
.vgg .button--primary-border::before {
background-color: transparent;
border-radius: 7px;
border: 2px solid #dd052b;
bottom: 0;
content: "";
left: 6px;
position: absolute;
right: 6px;
top: 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
z-index: 1; }
.vgg .button--primary-border span {
display: inline-block;
text-align: left;
transition: all 0.2s linear; }
.vgg .button--primary-border span,
.vgg .button--primary-border svg {
position: relative;
z-index: 2; }
.vgg .button--primary-border svg {
margin-left: 8px;
font-size: 22px;
min-width: 22px; }
.vgg .button--primary-border:hover .button__inner {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
opacity: 0; }
.vgg .button--primary-border:hover .button__inner--clone {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1; }
.vgg .button--black {
color: #fff;
font-size: 12px;
font-weight: bold;
padding: 0 6px;
position: relative;
text-transform: uppercase;
letter-spacing: .05em;
cursor: pointer;
display: inline-block;
height: 50px; }
.vgg .button--black:link,
.vgg .button--black:visited {
transition: color .4s;
color: #fff; }
.vgg .button--black:hover {
color: #fff; }
.vgg .button--black:active {
color: #fff;
transition: color 0.2s; }
.vgg .button--black .button__wrapper {
overflow: hidden;
position: relative;
display: inline-block; }
.vgg .button--black .button__inner {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 50px;
padding: 4px 24px 4px 24px;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
z-index: 1;
opacity: 1;
position: relative;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .button--black .button__inner--clone {
position: absolute;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
top: 0;
left: 0;
width: 100%;
opacity: 0; }
.vgg .button--black::before {
background-color: #808083;
border-radius: 7px;
border: 2px solid #808083;
bottom: 0;
content: "";
left: 6px;
position: absolute;
right: 6px;
top: 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
z-index: 1; }
.vgg .button--black span {
display: inline-block;
text-align: left;
transition: all 0.2s linear; }
.vgg .button--black span,
.vgg .button--black svg {
position: relative;
z-index: 2; }
.vgg .button--black svg {
margin-left: 8px;
font-size: 22px;
min-width: 22px; }
.vgg .button--black:hover .button__inner {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
opacity: 0; }
.vgg .button--black:hover .button__inner--clone {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1; }
.vgg .button--white {
color: #e02537;
font-size: 12px;
font-weight: bold;
padding: 0 6px;
position: relative;
text-transform: uppercase;
letter-spacing: .05em;
cursor: pointer;
display: inline-block;
height: 50px; }
.vgg .button--white:link,
.vgg .button--white:visited {
transition: color .4s;
color: #e02537; }
.vgg .button--white:hover {
color: #e02537; }
.vgg .button--white:active {
color: #e02537;
transition: color 0.2s; }
.vgg .button--white .button__wrapper {
overflow: hidden;
position: relative;
display: inline-block; }
.vgg .button--white .button__inner {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 50px;
padding: 4px 24px 4px 24px;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
z-index: 1;
opacity: 1;
position: relative;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .button--white .button__inner--clone {
position: absolute;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
top: 0;
left: 0;
width: 100%;
opacity: 0; }
.vgg .button--white::before {
background-color: #fff;
border-radius: 7px;
border: 2px solid #fff;
bottom: 0;
content: "";
left: 6px;
position: absolute;
right: 6px;
top: 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
z-index: 1; }
.vgg .button--white span {
display: inline-block;
text-align: left;
transition: all 0.2s linear; }
.vgg .button--white span,
.vgg .button--white svg {
position: relative;
z-index: 2; }
.vgg .button--white svg {
margin-left: 8px;
font-size: 22px;
min-width: 22px; }
.vgg .button--white:hover .button__inner {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
opacity: 0; }
.vgg .button--white:hover .button__inner--clone {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1; }
.vgg .button--tag {
color: #73797c;
font-size: 12px;
font-weight: bold;
padding: 0 6px;
position: relative;
text-transform: uppercase;
letter-spacing: .05em;
cursor: pointer;
display: inline-block;
height: 50px;
box-sizing: border-box;
font-size: 14px;
height: 30px;
margin: 5px 0; }
.vgg .button--tag:link,
.vgg .button--tag:visited {
transition: color .4s;
color: #73797c; }
.vgg .button--tag:hover {
color: #73797c; }
.vgg .button--tag:active {
color: #73797c;
transition: color 0.2s; }
.vgg .button--tag .button__wrapper {
overflow: hidden;
position: relative;
display: inline-block; }
.vgg .button--tag .button__inner {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 50px;
padding: 4px 24px 4px 24px;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
z-index: 1;
opacity: 1;
position: relative;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .button--tag .button__inner--clone {
position: absolute;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
top: 0;
left: 0;
width: 100%;
opacity: 0; }
.vgg .button--tag::before {
background-color: #e0e0e0;
border-radius: 7px;
border: 2px solid #e0e0e0;
bottom: 0;
content: "";
left: 6px;
position: absolute;
right: 6px;
top: 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
z-index: 1; }
.vgg .button--tag span {
display: inline-block;
text-align: left;
transition: all 0.2s linear; }
.vgg .button--tag span,
.vgg .button--tag svg {
position: relative;
z-index: 2; }
.vgg .button--tag svg {
margin-left: 8px;
font-size: 22px;
min-width: 22px; }
.vgg .button--tag:hover .button__inner {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
opacity: 0; }
.vgg .button--tag:hover .button__inner--clone {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1; }
.vgg .button--tag .button__inner {
height: 30px; }
.vgg .button--tag span {
white-space: nowrap; }
.vgg .button--tag.active {
color: #fff; }
.vgg .button--tag.active:link,
.vgg .button--tag.active:visited {
transition: color .4s;
color: #fff; }
.vgg .button--tag.active:hover {
color: #fff; }
.vgg .button--tag.active:active {
color: #fff;
transition: color 0.2s; }
.vgg .button--tag.active::before {
background-color: #dd052b;
border: 2px solid #dd052b; }
.vgg .button--tag--outline {
color: #73797c;
font-size: 12px;
font-weight: bold;
padding: 0 6px;
position: relative;
text-transform: uppercase;
letter-spacing: .05em;
cursor: pointer;
display: inline-block;
height: 50px;
font-size: 14px;
margin: 5px 0;
height: 30px; }
.vgg .button--tag--outline:link,
.vgg .button--tag--outline:visited {
transition: color .4s;
color: #73797c; }
.vgg .button--tag--outline:hover {
color: #73797c; }
.vgg .button--tag--outline:active {
color: #73797c;
transition: color 0.2s; }
.vgg .button--tag--outline .button__wrapper {
overflow: hidden;
position: relative;
display: inline-block; }
.vgg .button--tag--outline .button__inner {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 50px;
padding: 4px 24px 4px 24px;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
z-index: 1;
opacity: 1;
position: relative;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .button--tag--outline .button__inner--clone {
position: absolute;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
top: 0;
left: 0;
width: 100%;
opacity: 0; }
.vgg .button--tag--outline::before {
background-color: transparent;
border-radius: 7px;
border: 2px solid #73797c;
bottom: 0;
content: "";
left: 6px;
position: absolute;
right: 6px;
top: 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
z-index: 1; }
.vgg .button--tag--outline span {
display: inline-block;
text-align: left;
transition: all 0.2s linear; }
.vgg .button--tag--outline span,
.vgg .button--tag--outline svg {
position: relative;
z-index: 2; }
.vgg .button--tag--outline svg {
margin-left: 8px;
font-size: 22px;
min-width: 22px; }
.vgg .button--tag--outline:hover .button__inner {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
opacity: 0; }
.vgg .button--tag--outline:hover .button__inner--clone {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1; }
.vgg .button--tag--outline .button__inner {
height: 30px; }
.vgg .button--block {
display: block; }
.vgg .button--block .button__wrapper {
display: block; }
.vgg .button--block .button__inner {
width: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
.vgg .breadcrumb {
display: none; }
@media (min-width: 1024px) {
.vgg .breadcrumb {
display: block;
color: #333;
text-transform: uppercase;
background-color: #fff;
font-size: 11px;
padding: 6px 40px;
letter-spacing: 0.05em; }
.vgg .breadcrumb li {
display: inline-block; }
.vgg .breadcrumb li + li::before {
content: "/";
color: #333;
padding: 0 0.5rem; }
.vgg .breadcrumb a {
text-decoration: none; }
.vgg .breadcrumb:not(.touch) a:hover {
color: #dd052b; } }
.vgg .breadcrumb .is-active {
color: #dd052b; }
.vgg .form-heading-block {
background-color: #fff; }
.vgg .form-wrapper {
max-width: 1024px;
margin: 25px auto 50px;
padding: 25px; }
@media screen and (min-width: 375px) {
.vgg .form-wrapper {
width: 84%; } }
@media screen and (min-width: 1024px) {
.vgg .form-wrapper {
padding-top: 50px;
padding-bottom: 50px;
margin-bottom: 80px; } }
.vgg .form-wrapper--white {
background-color: #fff;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06); }
.vgg .form-container {
max-width: 500px;
margin-left: auto;
margin-right: auto; }
.vgg .form .is-hidden {
opacity: 0;
height: 0;
padding-bottom: 0;
overflow: hidden; }
.vgg .form__group {
position: relative;
padding-bottom: 15px;
transition: opacity 0.5s ease-in-out; }
.vgg .form__group[data-img-trigger] {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-align-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start; }
.vgg .form__group.has-required .form__label::after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); }
.vgg .form__group--warning {
background-color: #fff2f2;
border-radius: 8px;
padding: 1em 17px; }
.vgg .form__group-abstract {
margin-bottom: 7.5px;
font-size: 10px; }
.vgg .form__group-abstract a {
text-decoration: underline; }
.vgg .form__group-abstract a:link,
.vgg .form__group-abstract a:visited {
transition: color .4s;
color: #dd052b; }
.vgg .form__group-abstract a:hover {
color: #333; }
.vgg .form__group-abstract a:active {
color: #dd052b;
transition: color 0.2s; }
.vgg .form__group-heading {
font-size: 12px;
font-weight: 700;
margin-top: 2em;
margin-bottom: 1em; }
.vgg .form__label {
color: #808083;
padding-left: 16px;
padding-right: 16px;
margin-bottom: 10px; }
.vgg .form__label::after {
content: "*";
color: #dd052b;
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
transition: all 0.333s ease-in-out; }
.vgg .form__field.form__field,
.vgg .form__textarea.form__textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 1px solid #ebebeb;
border-radius: 7px;
color: #333;
font-size: 14px;
background-color: #ebebeb;
display: block;
width: 100%;
max-width: none !important;
transition: padding 0.333 ease-out; }
.vgg .form__field.form__field::-webkit-input-placeholder,
.vgg .form__textarea.form__textarea::-webkit-input-placeholder {
color: #bfbfbf;
text-transform: uppercase; }
.vgg .form__field.form__field:-moz-placeholder,
.vgg .form__textarea.form__textarea:-moz-placeholder {
color: #bfbfbf;
text-transform: uppercase; }
.vgg .form__field.form__field::-moz-placeholder,
.vgg .form__textarea.form__textarea::-moz-placeholder {
color: #bfbfbf;
text-transform: uppercase; }
.vgg .form__field.form__field:-ms-input-placeholder,
.vgg .form__textarea.form__textarea:-ms-input-placeholder {
color: #bfbfbf;
text-transform: uppercase; }
.vgg .form__field.form__field:focus:focus,
.vgg .form__textarea.form__textarea:focus:focus {
background-color: transparent;
border: 1px solid #333;
box-shadow: none;
color: #333; }
.vgg .form__field.form__field.is-valid,
.vgg .form__textarea.form__textarea.is-valid {
border: 1px solid #333; }
.vgg .form__field.form__field.is-invalid,
.vgg .form__textarea.form__textarea.is-invalid {
color: #dd052b;
border: 1px solid #dd052b; }
.vgg .form__field.form__field {
height: 60px;
padding: 15px; }
.vgg .form__textarea.form__textarea {
padding: 21px 15px; }
.vgg .float-label__label {
position: absolute;
top: 22px;
left: 0;
transition: all .333s ease-in-out;
-webkit-transform-origin: 0 0;
transform-origin: 0 0; }
.vgg .float-label__label.is-float {
-webkit-transform: scale(0.8) translate(4px, -14px);
transform: scale(0.8) translate(4px, -14px); }
.vgg .float-label__label.is-float + .form__field.form__field {
padding-top: 23px;
padding-bottom: 7px; }
.vgg .float-label__label.is-float + .form__textarea.form__textarea {
padding-top: 29px; }
.vgg .float-label__field {
transition: all 0.333s ease-in-out; }
.vgg .form__submit {
height: 60px;
width: 100%;
background-color: #dd052b;
border-radius: 7px;
color: #fff;
font-size: 20px; }
.vgg .form__checkbox-label {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start; }
.vgg .form__checkbox-wrapper {
position: relative;
display: inline-block; }
.vgg .form__checkbox-wrapper input[type=checkbox] {
height: 22px;
left: 0;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 22px;
z-index: 10; }
.vgg .form__checkbox-wrapper input[type=checkbox]:checked + .form__custom-checkbox .Icon {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); }
.vgg .form__custom-checkbox {
cursor: pointer;
width: 22px;
height: 22px;
display: block;
font-size: 13px; }
.vgg .form__custom-checkbox::before {
content: "";
position: absolute;
left: 0;
border-radius: 5px;
width: 100%;
height: 100%;
border: 2px solid currentColor; }
.vgg .form__custom-checkbox .Icon {
margin-top: 5px;
margin-left: 4px;
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
transition: all 0.333s ease-in-out; }
.vgg .form__checkbox-label-text {
display: inline-block;
margin-left: 10px;
margin-top: 3px;
font-size: 11px; }
.vgg .is-disabled &gt; .form__checkbox-wrapper .form__custom-checkbox {
cursor: not-allowed; }
.vgg .form__radio-label {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
margin-right: 10px; }
.vgg .form__radio-wrapper {
position: relative;
display: inline-block; }
.vgg .form__radio-wrapper input[type=radio] {
height: 22px;
left: 0;
margin: 0;
opacity: 0;
padding: 0;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 22px;
z-index: 10; }
.vgg .form__radio-wrapper input[type=radio]:checked + .form__custom-radio::after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); }
.vgg .form__custom-radio {
cursor: pointer;
width: 22px;
height: 22px;
display: block;
font-size: 13px; }
.vgg .form__custom-radio::before {
content: "";
position: absolute;
left: 0;
border-radius: 50%;
width: 100%;
height: 100%;
border: 2px solid currentColor; }
.vgg .form__custom-radio::after {
content: "";
position: absolute;
left: 4px;
top: 4px;
border-radius: 50%;
width: 64%;
height: 64%;
background-color: currentColor;
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
transition: all 0.333s ease-in-out; }
.vgg .form__radio-label-text {
display: inline-block;
margin-left: 10px;
margin-top: 3px;
font-size: 11px;
text-transform: uppercase; }
.vgg .is-disabled &gt; .form__radio-wrapper .form__custom-radio {
cursor: not-allowed; }
.vgg .form__error-block {
color: #dd052b;
transition: all .5s ease-in-out;
max-height: 36px; }
.vgg .form__error-block.is-hidden {
opacity: 0;
max-height: 0; }
.vgg .form__error-block span {
display: inline-block;
padding: 7.5px 15px; }
@media (min-width: 768px) {
.vgg .form--inline .form__group {
display: inline-block;
vertical-align: middle;
margin: 10px; } }
.vgg .form--inline .form-field {
width: auto; }
.vgg .form--inline .form__error-block {
position: absolute;
top: 100%;
right: 0; }
.vgg .form--libretti {
min-height: 100px;
position: relative; }
.vgg .form--libretti.is-loading:after {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(255, 255, 255, 0.8);
background-image: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/css/img/loader.gif);
background-size: 80px 80px;
background-repeat: no-repeat;
background-position: center;
z-index: 10; }
.vgg .findcodeWrapper {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; }
.vgg .findcodeWrapper p {
padding-top: 80px;
width: 100%; }
.vgg .search-result-libretti {
background-color: #dd052b;
margin: 0 -25px;
padding: 25px; }
.vgg .search-result-libretti .is-hidden,
.vgg .search-result-libretti.is-hidden {
opacity: 0;
height: 0;
padding: 0;
pointer-events: none; }
.vgg .search-result-libretti table {
margin-top: 1em;
width: 100%;
text-align: center;
font-size: 10px; }
@media (min-width: 768px) {
.vgg .search-result-libretti table {
font-size: 16px; } }
.vgg .search-result-libretti .intestazione {
text-transform: uppercase;
line-height: 3em; }
.vgg .search-result-libretti .risultati {
color: #fff;
line-height: 2em; }
.vgg .search-result-libretti .risultati .cell_download {
font-size: 1.5em; }
.vgg .search-result-libretti .risultati .cell_download .Icon {
cursor: pointer; }
.vgg .info-results,
.vgg .info-noresults {
color: #fff;
text-transform: uppercase;
text-align: center; }
.vgg .info-results a,
.vgg .info-noresults a {
text-decoration: underline; }
.vgg .info-results {
font-size: 20px; }
@media (min-width: 768px) {
.vgg .info-results {
font-size: 32px; } }
.vgg .info-noresults {
font-size: 14px; }
@media (min-width: 768px) {
.vgg .info-noresults {
font-size: 16px; } }
.vgg .findcodeImage,
.vgg .findcodeLabel {
width: 80%;
-webkit-flex-basis: 80%;
-ms-flex-preferred-size: 80%;
flex-basis: 80%;
margin: 10%; }
@media (min-width: 768px) {
.vgg .findcodeImage, .vgg .findcodeLabel {
width: 40%;
-webkit-flex-basis: 40%;
-ms-flex-preferred-size: 40%;
flex-basis: 40%;
margin: 5%; } }
.vgg .info-selezione {
padding-bottom: 2em; }
.vgg .info-selezione a {
text-decoration: underline; }
.vgg .info-selezione a:link,
.vgg .info-selezione a:visited {
transition: color .4s;
color: #dd052b; }
.vgg .info-selezione a:hover {
color: #dd052b; }
.vgg .info-selezione a:active {
color: #dd052b;
transition: color 0.2s; }
.vgg .autocomplete-suggestions {
background-color: #fff;
margin-top: -6px;
overflow: auto;
border: 1px solid #ebebeb;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px; }
.vgg .autocomplete-suggestion {
padding: 1em;
border-bottom: 1px solid #ebebeb; }
.vgg .custom-select-container {
position: relative; }
.vgg .custom-select-container.is-invalid .custom-select-opener {
border: 1px solid #dd052b;
color: #dd052b; }
.vgg .custom-select-container.is-invalid .custom-select-opener::after {
border-right-color: #dd052b;
border-bottom-color: #dd052b; }
.vgg .custom-select-field {
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
top: 0;
left: 0; }
.vgg .custom-select-opener {
border: 1px solid #333;
border-radius: 7px;
color: #333;
font-size: 14px;
height: 60px;
line-height: 26px;
padding: 15px 45px 15px 15px;
background-color: transparent;
display: block;
width: 100%;
transition: all 0.1s cubic-bezier(0.77, 0, 0.175, 1) 0.25s;
cursor: pointer;
white-space: nowrap; }
@media screen and (max-width: 374px) {
.vgg .custom-select-opener {
font-size: 13px;
padding-right: 34px;
letter-spacing: -0.02em; } }
.vgg .custom-select-opener:focus {
outline: none; }
.vgg .custom-select-opener.is-active {
transition: all 0.1s cubic-bezier(0.77, 0, 0.175, 1);
background-color: #fff; }
.vgg .custom-select-opener.is-active::after {
-webkit-transform: rotateX(180deg) rotateZ(45deg);
transform: rotateX(180deg) rotateZ(45deg); }
.vgg .custom-select-opener::after {
content: "";
width: 8px;
height: 8px;
border-right: 1px solid #333;
border-bottom: 1px solid #333;
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
top: 24px;
right: 20px;
position: absolute;
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .custom-select-opener span {
display: block;
overflow: hidden;
text-overflow: ellipsis; }
html:not(.touch) .vgg .custom-select-field {
visibility: hidden; }
html:not(.touch) .vgg .custom-select-opener.is-active {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0; }
html:not(.touch) .vgg .custom-select-panel {
position: absolute;
top: 100%;
border-radius: 0 0 7px 7px;
width: 100%;
background-color: #fff;
max-height: 0;
transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1);
overflow-y: auto;
z-index: 1;
border-left: 1px solid #333;
border-right: 1px solid #333;
scrollbar-track-color: #808083;
scrollbar-face-color: #808083;
scrollbar-highlight-color: #808083;
scrollbar-3dlight-color: #808083;
scrollbar-shadow-color: #808083;
scrollbar-darkshadow-color: #808083; }
html:not(.touch) .vgg .custom-select-panel.is-open {
max-height: 300px;
border-bottom: 1px solid #333;
transition: all 0.25s cubic-bezier(0.77, 0, 0.175, 1) 0.1s; }
html:not(.touch) .vgg .custom-select-panel::-webkit-scrollbar {
width: 5px; }
html:not(.touch) .vgg .custom-select-panel::-webkit-scrollbar-button {
width: 0;
height: 0; }
html:not(.touch) .vgg .custom-select-panel::-webkit-scrollbar-track {
background-color: #bfbfbf;
border-radius: 0 0 7px 0; }
html:not(.touch) .vgg .custom-select-panel::-webkit-scrollbar-thumb {
background-color: #808083;
cursor: pointer; }
html:not(.touch) .vgg .custom-select-option {
padding: 8px 15px;
position: relative;
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1);
cursor: pointer; }
html:not(.touch) .vgg .custom-select-option.has-focus,
html:not(.touch) .vgg .custom-select-option.is-selected {
background-color: #ebebeb; }
html:not(.touch) .vgg .custom-select-optgroup {
padding: 25px 15px 8px;
text-transform: uppercase;
font-weight: bold;
font-size: 17px; }
html.touch .vgg .custom-select-panel {
display: none; }
.vgg .pagination {
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
.vgg .pagination__link {
padding: 4px 8px;
border-radius: 7px; }
.vgg .pagination__link:link,
.vgg .pagination__link:visited {
transition: color .4s;
color: #333; }
.vgg .pagination__link:hover {
color: #dd052b; }
.vgg .pagination__link:active {
color: #fff;
transition: color 0.2s; }
.vgg .pagination__link.is-active {
background-color: #dd052b;
color: #fff; }
.vgg .goto-top {
position: fixed;
right: 22px;
background-color: #bfbfbf;
width: 50px;
height: 50px;
border-radius: 50%;
bottom: 22px;
color: #fff;
font-size: 22px;
transition: background-color .333s ease-in, opacity .333s ease-in;
opacity: 0;
z-index: 50; }
.vgg .goto-top.is-visible {
opacity: 1; }
.vgg .goto-top.is-hidden {
opacity: 0; }
.vgg .goto-top .Icon {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
transition: -webkit-transform 0.333s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.333s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.333s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.333s cubic-bezier(0.77, 0, 0.175, 1); }
html:not(.touch) .vgg .goto-top:hover {
background-color: #dd052b; }
html:not(.touch) .vgg .goto-top:hover .Icon {
-webkit-transform: rotate(-90deg) translateX(5px);
transform: rotate(-90deg) translateX(5px); }
html {
height: 100%;
font-size: 16px !important;
position: relative;
box-sizing: border-box; }
html.no-scroll,
html.no-scroll--mobile {
overflow: hidden; }
html.no-scroll body,
html.no-scroll--mobile body {
height: 100%;
overflow: hidden; }
@media screen and (min-width: 1024px) {
html.no-scroll--mobile {
overflow: visible; }
html.no-scroll--mobile body {
overflow: visible; } }
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
color: #333;
font-weight: normal;
min-height: 100%;
overflow-x: hidden;
padding: 0 !important;
position: relative; }
*::-webkit-input-placeholder {
color: #fff;
font-weight: 500; }
*:-moz-placeholder {
color: #fff;
font-weight: 500; }
*::-moz-placeholder {
color: #fff;
font-weight: 500; }
*:-ms-input-placeholder {
color: #fff;
font-weight: 500; }
.svg-defs {
position: absolute;
width: 0;
height: 0; }
*,
*:after,
*:before {
box-sizing: inherit; }
.vgg__container--wrapper {
max-width: 1600px;
margin-left: auto;
margin-right: auto; }
.vgg--bg-white {
background-color: #fff; }
.vgg--bg-red {
background-color: #e02537; }
.vgg--shadow {
box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.05) inset; }
.vgg--bg-grey {
background-color: #bfbfbf;
position: relative;
overflow: hidden; }
.vgg--bg-grey-light {
background-color: #e0e0e0; }
.vgg .grid-container {
padding-left: 10px;
padding-right: 10px; }
.vgg .grid-row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex: 0 1 auto;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -10px;
margin-right: -10px; }
.vgg .grid-row[class*=col-].no-gutter,
.vgg .grid-row[class*=el-].no-gutter {
padding-left: 0;
padding-right: 0;
margin-bottom: 0; }
.vgg .col-phone-2 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-3 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-4 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-6 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-8 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-9 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-10 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-12 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-phone-5 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-phone-7 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-land-2 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-land-3 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-land-4 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-land-6 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-land-8 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-land-9 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-land-10 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-phone-land-12 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-phone-land-5 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-phone-land-7 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-2 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-3 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-4 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-6 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-8 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-9 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-10 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-12 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-tablet-5 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-tablet-7 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-land-2 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-land-3 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-land-4 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-land-6 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-land-8 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-land-9 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-land-10 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-tablet-land-12 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-tablet-land-5 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-tablet-land-7 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-desktop-2 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-desktop-3 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-desktop-4 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-desktop-6 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-desktop-8 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-desktop-9 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-desktop-10 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-desktop-12 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-desktop-5 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-desktop-7 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-large-screen-2 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-large-screen-3 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-large-screen-4 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-large-screen-6 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-large-screen-8 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-large-screen-9 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-large-screen-10 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .col-large-screen-12 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-large-screen-5 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .el-large-screen-7 {
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
padding-left: 10px;
padding-right: 10px;
margin-bottom: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
@media (min-width: 320px) {
.vgg .col-phone-2 {
-webkit-flex-basis: 16.666%;
-ms-flex-preferred-size: 16.666%;
flex-basis: 16.666%;
max-width: 16.666%; } }
@media (min-width: 320px) {
.vgg .col-phone-3 {
-webkit-flex-basis: 25%;
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; } }
@media (min-width: 320px) {
.vgg .col-phone-4 {
-webkit-flex-basis: 33.333%;
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; } }
@media (min-width: 320px) {
.vgg .col-phone-6 {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; } }
@media (min-width: 320px) {
.vgg .col-phone-8 {
-webkit-flex-basis: 66.666%;
-ms-flex-preferred-size: 66.666%;
flex-basis: 66.666%;
max-width: 66.666%; } }
@media (min-width: 320px) {
.vgg .col-phone-9 {
-webkit-flex-basis: 75%;
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; } }
@media (min-width: 320px) {
.vgg .col-phone-10 {
-webkit-flex-basis: 83.333%;
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; } }
@media (min-width: 320px) {
.vgg .col-phone-12 {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; } }
@media (min-width: 320px) {
.vgg .el-phone-5 {
-webkit-flex-basis: 20%;
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
max-width: 20%; } }
@media (min-width: 320px) {
.vgg .el-phone-7 {
-webkit-flex-basis: 14.285%;
-ms-flex-preferred-size: 14.285%;
flex-basis: 14.285%;
max-width: 14.285%; } }
@media (min-width: 480px) {
.vgg .col-phone-land-2 {
-webkit-flex-basis: 16.666%;
-ms-flex-preferred-size: 16.666%;
flex-basis: 16.666%;
max-width: 16.666%; } }
@media (min-width: 480px) {
.vgg .col-phone-land-3 {
-webkit-flex-basis: 25%;
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; } }
@media (min-width: 480px) {
.vgg .col-phone-land-4 {
-webkit-flex-basis: 33.333%;
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; } }
@media (min-width: 480px) {
.vgg .col-phone-land-6 {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; } }
@media (min-width: 480px) {
.vgg .col-phone-land-8 {
-webkit-flex-basis: 66.666%;
-ms-flex-preferred-size: 66.666%;
flex-basis: 66.666%;
max-width: 66.666%; } }
@media (min-width: 480px) {
.vgg .col-phone-land-9 {
-webkit-flex-basis: 75%;
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; } }
@media (min-width: 480px) {
.vgg .col-phone-land-10 {
-webkit-flex-basis: 83.333%;
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; } }
@media (min-width: 480px) {
.vgg .col-phone-land-12 {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; } }
@media (min-width: 480px) {
.vgg .el-phone-land-5 {
-webkit-flex-basis: 20%;
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
max-width: 20%; } }
@media (min-width: 480px) {
.vgg .el-phone-land-7 {
-webkit-flex-basis: 14.285%;
-ms-flex-preferred-size: 14.285%;
flex-basis: 14.285%;
max-width: 14.285%; } }
@media (min-width: 768px) {
.vgg .col-tablet-2 {
-webkit-flex-basis: 16.666%;
-ms-flex-preferred-size: 16.666%;
flex-basis: 16.666%;
max-width: 16.666%; } }
@media (min-width: 768px) {
.vgg .col-tablet-3 {
-webkit-flex-basis: 25%;
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; } }
@media (min-width: 768px) {
.vgg .col-tablet-4 {
-webkit-flex-basis: 33.333%;
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; } }
@media (min-width: 768px) {
.vgg .col-tablet-6 {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; } }
@media (min-width: 768px) {
.vgg .col-tablet-8 {
-webkit-flex-basis: 66.666%;
-ms-flex-preferred-size: 66.666%;
flex-basis: 66.666%;
max-width: 66.666%; } }
@media (min-width: 768px) {
.vgg .col-tablet-9 {
-webkit-flex-basis: 75%;
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; } }
@media (min-width: 768px) {
.vgg .col-tablet-10 {
-webkit-flex-basis: 83.333%;
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; } }
@media (min-width: 768px) {
.vgg .col-tablet-12 {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; } }
@media (min-width: 768px) {
.vgg .el-tablet-5 {
-webkit-flex-basis: 20%;
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
max-width: 20%; } }
@media (min-width: 768px) {
.vgg .el-tablet-7 {
-webkit-flex-basis: 14.285%;
-ms-flex-preferred-size: 14.285%;
flex-basis: 14.285%;
max-width: 14.285%; } }
@media (min-width: 1024px) {
.vgg .col-tablet-land-2 {
-webkit-flex-basis: 16.666%;
-ms-flex-preferred-size: 16.666%;
flex-basis: 16.666%;
max-width: 16.666%; } }
@media (min-width: 1024px) {
.vgg .col-tablet-land-3 {
-webkit-flex-basis: 25%;
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; } }
@media (min-width: 1024px) {
.vgg .col-tablet-land-4 {
-webkit-flex-basis: 33.333%;
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; } }
@media (min-width: 1024px) {
.vgg .col-tablet-land-6 {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; } }
@media (min-width: 1024px) {
.vgg .col-tablet-land-8 {
-webkit-flex-basis: 66.666%;
-ms-flex-preferred-size: 66.666%;
flex-basis: 66.666%;
max-width: 66.666%; } }
@media (min-width: 1024px) {
.vgg .col-tablet-land-9 {
-webkit-flex-basis: 75%;
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; } }
@media (min-width: 1024px) {
.vgg .col-tablet-land-10 {
-webkit-flex-basis: 83.333%;
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; } }
@media (min-width: 1024px) {
.vgg .col-tablet-land-12 {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; } }
@media (min-width: 1024px) {
.vgg .el-tablet-land-5 {
-webkit-flex-basis: 20%;
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
max-width: 20%; } }
@media (min-width: 1024px) {
.vgg .el-tablet-land-7 {
-webkit-flex-basis: 14.285%;
-ms-flex-preferred-size: 14.285%;
flex-basis: 14.285%;
max-width: 14.285%; } }
@media (min-width: 1366px) {
.vgg .col-desktop-2 {
-webkit-flex-basis: 16.666%;
-ms-flex-preferred-size: 16.666%;
flex-basis: 16.666%;
max-width: 16.666%; } }
@media (min-width: 1366px) {
.vgg .col-desktop-3 {
-webkit-flex-basis: 25%;
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; } }
@media (min-width: 1366px) {
.vgg .col-desktop-4 {
-webkit-flex-basis: 33.333%;
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; } }
@media (min-width: 1366px) {
.vgg .col-desktop-6 {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; } }
@media (min-width: 1366px) {
.vgg .col-desktop-8 {
-webkit-flex-basis: 66.666%;
-ms-flex-preferred-size: 66.666%;
flex-basis: 66.666%;
max-width: 66.666%; } }
@media (min-width: 1366px) {
.vgg .col-desktop-9 {
-webkit-flex-basis: 75%;
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; } }
@media (min-width: 1366px) {
.vgg .col-desktop-10 {
-webkit-flex-basis: 83.333%;
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; } }
@media (min-width: 1366px) {
.vgg .col-desktop-12 {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; } }
@media (min-width: 1366px) {
.vgg .el-desktop-5 {
-webkit-flex-basis: 20%;
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
max-width: 20%; } }
@media (min-width: 1366px) {
.vgg .el-desktop-7 {
-webkit-flex-basis: 14.285%;
-ms-flex-preferred-size: 14.285%;
flex-basis: 14.285%;
max-width: 14.285%; } }
@media (min-width: 1600px) {
.vgg .col-large-screen-2 {
-webkit-flex-basis: 16.666%;
-ms-flex-preferred-size: 16.666%;
flex-basis: 16.666%;
max-width: 16.666%; } }
@media (min-width: 1600px) {
.vgg .col-large-screen-3 {
-webkit-flex-basis: 25%;
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; } }
@media (min-width: 1600px) {
.vgg .col-large-screen-4 {
-webkit-flex-basis: 33.333%;
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; } }
@media (min-width: 1600px) {
.vgg .col-large-screen-6 {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; } }
@media (min-width: 1600px) {
.vgg .col-large-screen-8 {
-webkit-flex-basis: 66.666%;
-ms-flex-preferred-size: 66.666%;
flex-basis: 66.666%;
max-width: 66.666%; } }
@media (min-width: 1600px) {
.vgg .col-large-screen-9 {
-webkit-flex-basis: 75%;
-ms-flex-preferred-size: 75%;
flex-basis: 75%;
max-width: 75%; } }
@media (min-width: 1600px) {
.vgg .col-large-screen-10 {
-webkit-flex-basis: 83.333%;
-ms-flex-preferred-size: 83.333%;
flex-basis: 83.333%;
max-width: 83.333%; } }
@media (min-width: 1600px) {
.vgg .col-large-screen-12 {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; } }
@media (min-width: 1600px) {
.vgg .el-large-screen-5 {
-webkit-flex-basis: 20%;
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
max-width: 20%; } }
@media (min-width: 1600px) {
.vgg .el-large-screen-7 {
-webkit-flex-basis: 14.285%;
-ms-flex-preferred-size: 14.285%;
flex-basis: 14.285%;
max-width: 14.285%; } }
.vgg .swiper-pagination,
.vgg .hero-slider-v2__pagination {
position: relative;
height: 40px;
bottom: -10px; }
.vgg .swiper-pagination-bullets .swiper-pagination-bullet {
background-color: #333;
opacity: 1;
margin: 0 12px;
box-shadow: 0 0 2px 1px rgba(150, 150, 150, 0.2);
position: relative; }
.vgg .swiper-pagination-bullets .swiper-pagination-bullet-active {
background-color: #dd052b; }
.vgg .swiper-pagination-bullets .swiper-pagination-bullet-active::before {
content: "";
position: absolute;
top: -6px;
left: -6px;
right: -6px;
bottom: -6px;
border-radius: 50%;
box-shadow: 0 0 2px 1px rgba(150, 150, 150, 0.2);
border: 1px solid rgba(51, 51, 51, 0.5); }
.vgg .swiper-button-prev,
.vgg .swiper-button-next {
width: 46px;
height: 46px;
margin-top: -23px;
border-radius: 50%;
border: 2px solid #e0e0e0;
background-image: none; }
.vgg .swiper-button-prev:after,
.vgg .swiper-button-next:after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 25%;
height: 25%;
border-top: 2px solid #333;
border-right: 2px solid #333;
border-radius: 2px; }
.vgg .swiper-button-prev {
left: 15px;
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
.vgg .swiper-button-prev:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
right: 4px; }
.vgg .swiper-button-next {
right: 15px; }
.vgg .swiper-button-next:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
right: 4px; }
.vgg .swiper-button-disabled {
opacity: 0 !important; }
@media screen and (min-width: 480px) {
.vgg .swiper-button-prev {
left: 25px; }
.vgg .swiper-button-next {
right: 25px; } }
@media screen and (min-width: 768px) {
.vgg .swiper-button-prev {
left: 35px; }
.vgg .swiper-button-next {
right: 35px; } }
@media screen and (min-width: 1024px) {
.vgg .swiper-button-prev,
.vgg .swiper-button-next {
width: 52px;
height: 52px;
margin-top: -26px; } }
@media screen and (min-width: 1440px) {
.vgg .swiper-button-prev,
.vgg .swiper-button-next {
width: 60px;
height: 60px;
margin-top: -30px; } }
html:not(.touch) .vgg .swiper-button-next:hover:after,
html:not(.touch) .vgg .swiper-button-prev:hover:after {
-webkit-animation-name: swiperButtonHover;
animation-name: swiperButtonHover;
-webkit-animation-duration: .2s;
animation-duration: .2s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards; }
.lg .lg-thumb.group {
min-width: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; }
.lg-outer .lg-img-wrap {
padding-bottom: 100px; }
@-webkit-keyframes ctaButtonHover {
0% {
-webkit-transform: rotateZ(45deg) translate3d(0, 0, 0);
transform: rotateZ(45deg) translate3d(0, 0, 0); }
49% {
-webkit-transform: rotateZ(45deg) translate3d(200%, -200%, 0);
transform: rotateZ(45deg) translate3d(200%, -200%, 0);
opacity: 0.7; }
50% {
opacity: 0;
-webkit-transform: rotateZ(45deg) translate3d(200%, -200%, 0);
transform: rotateZ(45deg) translate3d(200%, -200%, 0); }
51% {
opacity: 0;
-webkit-transform: rotateZ(45deg) translate3d(-200%, 200%, 0);
transform: rotateZ(45deg) translate3d(-200%, 200%, 0); }
52% {
opacity: .7;
-webkit-transform: rotateZ(45deg) translate3d(-200%, 200%, 0);
transform: rotateZ(45deg) translate3d(-200%, 200%, 0); }
100% {
opacity: 1;
-webkit-transform: rotateZ(45deg) translate3d(0, 0, 0);
transform: rotateZ(45deg) translate3d(0, 0, 0); } }
@keyframes ctaButtonHover {
0% {
-webkit-transform: rotateZ(45deg) translate3d(0, 0, 0);
transform: rotateZ(45deg) translate3d(0, 0, 0); }
49% {
-webkit-transform: rotateZ(45deg) translate3d(200%, -200%, 0);
transform: rotateZ(45deg) translate3d(200%, -200%, 0);
opacity: 0.7; }
50% {
opacity: 0;
-webkit-transform: rotateZ(45deg) translate3d(200%, -200%, 0);
transform: rotateZ(45deg) translate3d(200%, -200%, 0); }
51% {
opacity: 0;
-webkit-transform: rotateZ(45deg) translate3d(-200%, 200%, 0);
transform: rotateZ(45deg) translate3d(-200%, 200%, 0); }
52% {
opacity: .7;
-webkit-transform: rotateZ(45deg) translate3d(-200%, 200%, 0);
transform: rotateZ(45deg) translate3d(-200%, 200%, 0); }
100% {
opacity: 1;
-webkit-transform: rotateZ(45deg) translate3d(0, 0, 0);
transform: rotateZ(45deg) translate3d(0, 0, 0); } }
.vgg .main-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 70px;
z-index: 100;
box-shadow: 0 0 40px rgba(0, 0, 0, 0.2); }
.vgg .main-header:before {
content: "";
position: absolute;
top: 0;
left: 0;
background-color: #dd052b;
width: 100%;
height: 70px;
z-index: 2; }
.vgg .main-header__logo {
background-color: #fff;
height: 100%;
width: 90px;
position: relative;
z-index: 2; }
.vgg .main-header__logo:before {
content: "";
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
-webkit-transform-origin: bottom;
transform-origin: bottom;
top: 0;
bottom: 0;
left: 0;
right: 0;
position: absolute;
background-color: #fff; }
.vgg .main-header__logo a {
display: block;
height: 100%; }
.vgg .main-header__logo img {
width: 56px;
height: 56px;
display: block;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0); }
.vgg .main-menu {
position: absolute;
top: 0;
width: 100%;
min-height: 100vh;
pointer-events: none; }
.vgg .main-menu__logo {
position: relative;
font-size: 150px;
height: 160px;
width: 120px;
overflow: hidden;
float: right;
color: #ebebeb;
z-index: 0; }
.vgg .first-level-menu {
margin-top: 70px;
padding-bottom: 24px;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
transition: all 0.4s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform-origin: bottom;
transform-origin: bottom;
opacity: 0.2; }
.vgg .first-level-menu__item {
color: #333;
font-size: 14px;
text-transform: uppercase; }
.vgg .first-level-menu__item.is-open .first-level-menu__link {
color: #dd052b; }
.vgg .first-level-menu__item.is-open .first-level-menu__link:after {
border-bottom: 1px solid #dd052b;
border-right: 1px solid #dd052b;
-webkit-transform: rotateX(180deg) rotateZ(45deg);
transform: rotateX(180deg) rotateZ(45deg); }
.vgg .first-level-menu__item.is-active .first-level-menu__icon:after {
width: 100%; }
.vgg .first-level-menu__item.is-active .first-level-menu__icon svg {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
transition: all 0.3s 0.4s cubic-bezier(0.77, 0, 0.175, 1);
opacity: 1; }
.vgg .first-level-menu__item.is-active .first-level-menu__link {
color: #dd052b; }
.vgg .first-level-menu__item.is-active .first-level-menu__link:before {
content: "";
position: absolute;
border-radius: 50%;
width: 4px;
height: 4px;
background-color: #dd052b;
top: 0;
bottom: 0;
right: 50px;
margin: auto; }
.vgg .first-level-menu__link {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
height: 100%;
padding: 10px 55px 10px 30px;
letter-spacing: .05em;
cursor: pointer;
position: relative;
line-height: 1.1; }
.vgg .first-level-menu__link:after {
content: "";
position: absolute;
display: block;
width: 9px;
height: 9px;
right: 33px;
top: 0;
bottom: 10px;
border-bottom: 1px solid #333;
border-right: 1px solid #333;
margin: auto;
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg);
transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform-origin: bottom;
transform-origin: bottom; }
.vgg .first-level-menu__link--in-evidence {
background-color: #ebebeb;
font-weight: bold; }
.vgg .first-level-menu__link--in-evidence::after {
display: none; }
.vgg .extra-menu {
margin: 12px 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
transition: all 0.4s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform-origin: bottom;
transform-origin: bottom;
opacity: 0.2; }
.vgg .extra-menu__item {
vertical-align: top;
color: #808083;
line-height: 35px;
font-size: 13px;
text-transform: uppercase; }
.vgg .extra-menu__item.is-active,
.vgg .extra-menu__item--lang {
color: #dd052b; }
.vgg .extra-menu__item--shop {
display: none; }
.vgg .extra-menu__link {
display: block;
padding: 0 30px;
cursor: pointer;
line-height: 35px;
text-transform: uppercase;
transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .extra-menu__link .Icon--chevron {
-webkit-transform: rotate(90deg) translateX(-3px);
transform: rotate(90deg) translateX(-3px);
font-size: .8em;
margin-left: 7px; }
@media screen and (min-width: 1024px) {
.vgg .extra-menu__link .Icon--chevron {
-webkit-transform: rotate(90deg);
transform: rotate(90deg); } }
.vgg .extra-menu__link--mainsite-landing {
font-size: 14px;
line-height: 1.2;
z-index: 2; }
.vgg .extra-menu__link--mainsite-landing:link,
.vgg .extra-menu__link--mainsite-landing:visited {
transition: color .4s;
color: #fff; }
.vgg .extra-menu__link--mainsite-landing:hover {
color: #333; }
.vgg .extra-menu__link--mainsite-landing:active {
color: #fff;
transition: color 0.2s; }
.vgg .special-menu {
margin: 12px 0;
padding: 20px 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
transition: all 0.4s 0.3s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform-origin: bottom;
transform-origin: bottom;
opacity: .2;
background-color: #ebebeb; }
.vgg .special-menu__item {
vertical-align: top;
color: #808083;
line-height: 35px;
font-size: 15px; }
.vgg .special-menu__item.is-active {
color: #dd052b; }
.vgg .special-menu__link {
display: block;
padding: 0 30px;
cursor: pointer;
line-height: 35px;
transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .second-level-menu {
font-size: 13px;
overflow: hidden;
height: 0;
background-color: #ebebeb; }
.vgg .first-level-menu__icon {
display: none; }
.vgg .second-level-menu__intro {
padding: 0 30px; }
.vgg .second-level-menu__title {
letter-spacing: .05em;
margin-top: 20px; }
.vgg .second-level-menu__abstract {
display: none; }
.vgg .second-level-menu__cta {
color: #dd052b;
text-decoration: underline;
text-transform: initial;
line-height: 1.2em;
margin-bottom: 2em; }
.vgg .second-level-menu__list {
margin-bottom: 20px; }
.vgg .second-level-menu__item {
text-transform: none;
position: relative;
transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .second-level-menu__item &gt; a {
z-index: 1;
display: block;
line-height: 46px;
padding: 0 30px; }
.vgg .second-level-menu__item.is-active &gt; a {
background-color: #dd052b;
color: #fff; }
.vgg .second-level-menu__icon {
position: absolute;
top: 0;
height: 46px;
right: 10px;
width: 46px;
font-size: 28px; }
.vgg .second-level-menu__icon svg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto; }
.vgg .main-menu__panel {
position: absolute;
width: 100%;
height: 100%;
padding-left: 40px;
z-index: 3;
transition: z-index 0s .8s;
pointer-events: none; }
.vgg .main-menu__panel:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
background-color: rgba(51, 51, 51, 0.6);
opacity: 0;
transition: all 0.4s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .main-menu__panel.is-open {
pointer-events: all;
transition: z-index 0s; }
.vgg .main-menu__panel.is-open .extra-menu,
.vgg .main-menu__panel.is-open .first-level-menu,
.vgg .main-menu__panel.is-open .special-menu {
-webkit-transform: skewX(0);
transform: skewX(0);
opacity: 1; }
.vgg .main-menu__panel.is-open:before {
opacity: 1;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .main-menu__toggle {
position: absolute;
right: 10px;
top: 0;
height: 70px;
width: 50px;
display: block;
color: #fff;
z-index: 2;
pointer-events: all; }
.vgg .main-menu__toggle * {
font-size: 24px; }
.vgg .main-menu__toggle svg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto; }
.vgg .main-menu__close {
position: absolute;
top: 0;
right: 0;
z-index: 1;
width: 70px;
height: 70px; }
.vgg .main-menu__close:after,
.vgg .main-menu__close:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
display: block;
height: 35%;
width: 1px;
background-color: #dd052b; }
.vgg .main-menu__close:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg); }
.vgg .main-menu__close:before {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg); }
.vgg .main-menu__block {
width: 100%;
height: 100%;
overflow: auto;
top: 0;
background-color: #fff;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .is-open .main-menu__block {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .main-search__toggle {
position: absolute;
right: 160px;
top: 0;
height: 70px;
width: 50px;
display: block;
color: #fff;
z-index: 2;
pointer-events: all; }
.vgg .main-search__toggle * {
font-size: 24px; }
.vgg .main-search__toggle svg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto; }
.vgg .extra-buttons--assistance {
position: absolute;
right: 60px;
top: 0;
height: 70px;
width: 50px;
display: block;
color: #fff;
z-index: 2; }
.vgg .extra-buttons--assistance * {
font-size: 24px; }
.vgg .extra-buttons--assistance svg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto; }
.vgg .extra-buttons--assistance.is-open {
background-color: #e0e0e0;
color: #000; }
.vgg .extra-buttons--retailers {
position: absolute;
right: 110px;
top: 0;
height: 70px;
width: 50px;
display: block;
color: #fff;
z-index: 2; }
.vgg .extra-buttons--retailers * {
font-size: 24px; }
.vgg .extra-buttons--retailers svg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto; }
.vgg .extra-buttons--assistance-landing {
position: absolute;
right: 110px;
top: 0;
height: 70px;
width: 50px;
display: block;
color: #fff;
z-index: 2; }
.vgg .extra-buttons--assistance-landing * {
font-size: 24px; }
.vgg .extra-buttons--assistance-landing svg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto; }
.vgg .extra-buttons--assistance-landing.is-open {
background-color: #e0e0e0;
color: #000; }
.vgg .extra-buttons--retailers-landing {
position: absolute;
right: 160px;
top: 0;
height: 70px;
width: 50px;
display: block;
color: #fff;
z-index: 2; }
.vgg .extra-buttons--retailers-landing * {
font-size: 24px; }
.vgg .extra-buttons--retailers-landing svg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
margin: auto; }
.vgg .extra-buttons--mainsite-landing {
position: absolute;
right: 10px;
top: 0;
height: 70px;
width: 100px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; }
.vgg .main-search {
position: absolute;
top: 0;
width: 100%;
min-height: 100vh;
pointer-events: none; }
.vgg .main-search__block {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 70px;
-webkit-transform: translate3d(0, -140px, 0);
transform: translate3d(0, -140px, 0);
transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
z-index: 1; }
.vgg .main-search__input[type=text] {
height: 70px;
position: absolute;
top: 0;
right: 0;
width: 100%;
max-width: none !important;
display: block;
color: #fff;
font-size: 17px;
padding: 0 80px 0 10px;
background-color: #bd0426; }
.vgg .main-search__input[type=text]::-webkit-input-placeholder {
color: #fff; }
.vgg .main-search__input[type=text]:-moz-placeholder {
color: #fff; }
.vgg .main-search__input[type=text]::-moz-placeholder {
color: #fff; }
.vgg .main-search__input[type=text]:-ms-input-placeholder {
color: #fff; }
.vgg .main-search__input[type=text]:focus {
outline: none;
box-shadow: none; }
.vgg .main-search__input[type=text]:-webkit-autofill {
-webkit-text-fill-color: #fff;
-webkit-box-shadow: 0 0 0px 1000px #bd0426 inset; }
.vgg .main-search__submit {
position: absolute;
right: 10px;
top: 0;
height: 35px;
width: 35px;
background-color: #fff;
border-radius: 50%;
bottom: 0;
margin: auto; }
.vgg .main-search__submit:after {
content: "";
position: absolute;
display: block;
width: 9px;
height: 9px;
right: 5px;
top: 0;
bottom: 0;
left: 0;
border-top: 1px solid #bd0426;
border-right: 1px solid #bd0426;
margin: auto;
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg); }
.vgg .main-search__close {
display: none; }
.vgg .main-search__panel {
position: absolute;
width: 100%;
height: calc(100% - 70px);
margin-top: 70px;
z-index: 1;
transition: z-index 0s .8s;
pointer-events: none; }
.vgg .main-search__panel:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
background-color: rgba(51, 51, 51, 0.6);
opacity: 0;
transition: all 0.4s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .main-search.is-open .main-search__panel {
pointer-events: all;
transition: z-index 0s; }
.vgg .main-search.is-open .main-search__panel:before {
opacity: 1;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .main-search.is-open .main-search__block {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .assistance-box {
position: absolute;
top: 0;
width: 100%;
min-height: 100vh;
pointer-events: none; }
.vgg .assistance-box__panel {
position: absolute;
margin-top: 70px;
width: 100%;
height: calc(100% - 70px); }
.vgg .assistance-box__panel::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
background-color: rgba(51, 51, 51, 0.6);
opacity: 0;
transition: all 0.4s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .assistance-box__block {
position: absolute;
top: 0;
right: 0;
width: 100%;
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
background-color: #e0e0e0;
padding: 35px;
letter-spacing: 0.05em; }
@media screen and (min-width: 768px) {
.vgg .assistance-box__block {
max-width: 450px; } }
.vgg .assistance-box__block a {
display: inline-block;
position: relative;
line-height: 1.6;
padding-top: .4em;
padding-bottom: .4em;
max-width: 300px; }
.vgg .assistance-box__block a::after {
content: "";
display: inline-block;
width: 7px;
height: 7px;
vertical-align: middle;
border-bottom: 1px solid #dd052b;
border-right: 1px solid #dd052b;
margin: auto;
margin-left: 7px;
-webkit-transform: rotateZ(-45deg);
transform: rotateZ(-45deg);
-webkit-transform-origin: center;
transform-origin: center; }
.vgg .assistance-box.is-open .assistance-box__panel {
pointer-events: all;
transition: z-index 0s; }
.vgg .assistance-box.is-open .assistance-box__panel::before {
opacity: 1;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .assistance-box.is-open .assistance-box__block {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .assistance-box__abstract {
font-size: 13px;
color: #333;
margin-bottom: 2em; }
.vgg .assistance-box__main-link {
color: #dd052b;
font-size: 20px;
text-transform: uppercase; }
.vgg .assistance-box__main-link:hover,
.vgg .assistance-box__main-link:visited,
.vgg .assistance-box__main-link:active,
.vgg .assistance-box__main-link:focus {
color: #dd052b; }
.vgg .assistance-box__list {
margin-top: 2em;
font-size: 13px;
color: #dd052b;
text-transform: uppercase; }
.vgg .assistance-box__list li {
line-height: 2.2; }
.vgg .lang-box {
position: absolute;
top: 0;
width: 100%;
min-height: 100vh;
pointer-events: none; }
.vgg .lang-box__panel {
position: absolute;
margin-top: 70px;
width: 100%;
height: calc(100% - 70px); }
.vgg .lang-box__panel::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
background-color: rgba(51, 51, 51, 0.6);
opacity: 0;
transition: all 0.4s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .lang-box__block {
position: absolute;
top: 0;
right: 0;
width: 100%;
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
background-color: #e0e0e0;
padding: 35px;
letter-spacing: 0.05em; }
@media screen and (min-width: 768px) {
.vgg .lang-box__block {
max-width: 355px; } }
.vgg .lang-box__block a {
display: inline-block;
position: relative;
line-height: 1.6;
padding-top: .4em;
padding-bottom: .4em;
max-width: 300px; }
.vgg .lang-box.is-open .lang-box__panel {
pointer-events: all;
transition: z-index 0s; }
.vgg .lang-box.is-open .lang-box__panel::before {
opacity: 1;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .lang-box.is-open .lang-box__block {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .lang-box__list {
font-size: 13px;
color: #dd052b;
text-transform: uppercase; }
.vgg .lang-box__list li {
line-height: 2.2; }
.vgg .shop-box {
position: absolute;
top: 0;
width: 100%;
min-height: 100vh;
pointer-events: none; }
.vgg .shop-box__panel {
position: absolute;
margin-top: 70px;
width: 100%;
height: calc(100% - 70px); }
.vgg .shop-box__panel::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
background-color: rgba(51, 51, 51, 0.6);
opacity: 0;
transition: all 0.4s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .shop-box__block {
position: absolute;
top: 0;
right: 0;
width: 100%;
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
background-color: #bfbfbf;
padding: 35px;
letter-spacing: 0.05em; }
@media screen and (min-width: 768px) {
.vgg .shop-box__block {
max-width: 355px; } }
.vgg .shop-box__block a {
display: inline-block;
position: relative;
line-height: 1.6;
padding-top: .4em;
padding-bottom: .4em;
max-width: 300px; }
.vgg .shop-box.is-open .shop-box__panel {
pointer-events: all;
transition: z-index 0s; }
.vgg .shop-box.is-open .shop-box__panel::before {
opacity: 1;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .shop-box.is-open .shop-box__block {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .shop-box__list {
font-size: 13px;
color: #dd052b;
text-transform: uppercase; }
.vgg .shop-box__list li {
line-height: 2.2; }
#content {
margin-top: 70px; }
@media screen and (min-width: 375px) {
.vgg .main-menu__panel {
padding-left: 70px; }
.vgg .main-header__logo {
width: 104px; }
.vgg .first-level-menu__item {
font-size: 15px; }
.vgg .second-level-menu {
font-size: 15px; }
.vgg .main-menu__toggle {
position: absolute;
right: 10px;
top: 0;
height: 70px;
width: 60px; }
.vgg .main-search__toggle {
position: absolute;
right: 190px;
top: 0;
height: 70px;
width: 60px; }
.vgg .extra-buttons--assistance {
position: absolute;
right: 70px;
top: 0;
height: 70px;
width: 60px; }
.vgg .extra-buttons--retailers {
position: absolute;
right: 130px;
top: 0;
height: 70px;
width: 60px; }
.vgg .extra-buttons--assistance-landing {
position: absolute;
right: 130px;
top: 0;
height: 70px;
width: 60px; }
.vgg .extra-buttons--retailers-landing {
position: absolute;
right: 190px;
top: 0;
height: 70px;
width: 60px; }
.vgg .extra-buttons--mainsite-landing {
position: absolute;
right: 10px;
top: 0;
height: 70px;
width: 120px; } }
@media screen and (min-width: 500px) {
.vgg .main-header__logo {
width: 116px; }
.vgg .main-menu__panel {
padding-left: 40%; } }
@media screen and (min-width: 768px) {
.vgg .main-header {
height: 84px; }
.vgg .main-header:before {
height: 84px; }
.vgg .main-menu__toggle {
position: absolute;
right: 10px;
top: 0;
height: 84px;
width: 60px; }
.vgg .main-search__toggle {
position: absolute;
right: 190px;
top: 0;
height: 84px;
width: 60px; }
.vgg .extra-buttons--assistance {
position: absolute;
right: 70px;
top: 0;
height: 84px;
width: 60px; }
.vgg .extra-buttons--retailers {
position: absolute;
right: 130px;
top: 0;
height: 84px;
width: 60px; }
.vgg .extra-buttons--assistance-landing {
position: absolute;
right: 130px;
top: 0;
height: 84px;
width: 60px; }
.vgg .extra-buttons--retailers-landing {
position: absolute;
right: 190px;
top: 0;
height: 84px;
width: 60px; }
.vgg .extra-buttons--mainsite-landing {
position: absolute;
right: 10px;
top: 0;
height: 84px;
width: 120px; }
.vgg .main-search__block {
-webkit-transform: translate3d(0, -168px, 0);
transform: translate3d(0, -168px, 0);
height: 84px; }
.vgg .main-search__input[type=text] {
height: 84px;
padding-left: 20px; }
.vgg .main-search__panel {
height: calc(100% - 84px);
margin-top: 84px; }
.vgg .assistance-box__panel {
margin-top: 84px;
height: calc(100% - 84px); }
#content {
margin-top: 84px; } }
@media screen and (min-width: 1024px) {
.vgg .main-header__logo {
width: 164px; }
.vgg .main-header__logo img {
width: 90px;
height: 90px; }
.vgg .main-header {
height: 114px; }
.vgg .main-header:before {
height: 114px; }
.vgg .main-menu__block--landing {
position: relative; }
.vgg .main-menu__block--landing::before {
content: "";
position: absolute;
width: 100%;
height: 30px;
background-color: #fff;
top: 0;
right: 0; }
.vgg .main-menu__logo {
display: none; }
.vgg .assistance-box__panel {
margin-top: 30px;
height: 0;
z-index: 2; }
.vgg .lang-box__panel,
.vgg .shop-box__panel {
margin-top: 30px;
height: 0;
z-index: 2; }
.vgg .extra-menu__item--shop,
.vgg .extra-menu__item--shop-single {
display: block;
position: relative;
font-size: 14px !important;
background-color: #bfbfbf;
color: #fff;
margin-left: -7px; }
.vgg .extra-menu__item--shop::before,
.vgg .extra-menu__item--shop-single::before {
content: "";
position: absolute;
top: 0;
left: -15px;
width: 0;
height: 0;
border-style: solid;
border-width: 0 0 30px 15px;
border-color: transparent transparent #bfbfbf transparent; }
.vgg .extra-menu__item--assistance.is-open,
.vgg .extra-menu__item--lang.is-open {
background-color: #e0e0e0; }
.vgg .extra-menu__item--shop.is-open {
color: #fff; }
.vgg .extra-buttons {
display: none; }
.vgg .main-menu {
min-height: 0;
pointer-events: all; }
.vgg .main-menu__panel,
.vgg .main-menu__panel.is-open {
pointer-events: all;
z-index: 2; }
.vgg .main-menu__toggle {
display: none; }
.vgg .main-search {
padding-top: 30px; }
.vgg .main-search.is-open .main-search__toggle {
width: calc(100% - 164px);
transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .main-search.is-open .main-search__toggle svg {
right: calc(100% - 60px);
transition: all 1s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .main-search.is-open .main-search__block {
pointer-events: all;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
opacity: 1;
transition: all 0.8s 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .main-search.is-open .main-search__submit.main-search__submit {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .main-search__toggle {
top: 30px;
right: 0;
width: 120px;
transition: all 0.8s 1s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .main-search__toggle:before {
content: "";
width: 120%;
height: 100%;
position: absolute;
display: block;
top: 0;
left: 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
background-color: #bd0426; }
.vgg .main-search__toggle svg {
transition: all 1.2s 0.8s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .main-search__panel {
-webkit-transform: none;
transform: none;
height: auto;
pointer-events: all;
z-index: 2; }
.vgg .main-search__block {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
opacity: 0;
transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
pointer-events: none; }
.vgg .main-search__input[type=text] {
width: calc(100% - 374px);
padding: 0;
right: 150px; }
.vgg .main-search__submit {
right: 95px;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
transition: all 0.8s 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.vgg .main-search__close {
position: absolute;
right: 30px;
top: 0;
height: 35px;
width: 35px;
border-radius: 50%;
bottom: 0;
margin: auto;
display: block; }
.vgg .main-search__close:before,
.vgg .main-search__close:after {
content: "";
position: absolute;
display: block;
width: 1px;
height: 80%;
right: 0;
top: 0;
bottom: 0;
left: 0;
background-color: #fff;
margin: auto; }
.vgg .main-search__close:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg); }
.vgg .main-search__close:before {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg); }
.vgg .main-menu__panel .main-menu__block,
.vgg .main-menu__panel.open .main-menu__block {
height: 114px;
background-color: transparent;
-webkit-transform: none !important;
transform: none !important;
overflow: visible; }
.vgg .main-menu__panel .first-level-menu,
.vgg .main-menu__panel.open .first-level-menu {
margin-top: 0;
padding-left: 30px;
padding-right: 120px;
padding-bottom: 0;
-webkit-transform: none !important;
transform: none !important;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
.vgg .first-level-menu__link {
padding: 0 15px;
color: #fff;
font-weight: 700;
text-align: center; }
.vgg .first-level-menu__link::after {
display: none; }
.vgg .first-level-menu__link::before {
display: block;
right: 0;
left: 0;
top: 50px;
z-index: 2;
opacity: 0;
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
transition: all 0.3s 0s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .first-level-menu__item {
margin-top: 30px;
display: inline-block;
vertical-align: top;
color: #fff;
font-size: 13px;
height: 84px;
padding-left: 3px;
padding-right: 3px; }
.vgg .first-level-menu__item--is-desktop-hidden {
display: none; }
.vgg .first-level-menu__item.is-active .first-level-menu__icon:before {
background-color: #bd0426;
width: 100%; }
.vgg .first-level-menu__item.is-active .first-level-menu__icon:after {
width: 0; }
.vgg .first-level-menu__item.is-active .first-level-menu__icon svg {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
transition: all 0.3s 0.4s cubic-bezier(0.77, 0, 0.175, 1);
opacity: 1;
color: #fff; }
.vgg .first-level-menu__item.is-active .first-level-menu__link:before {
right: 0;
opacity: 0;
top: 50px;
background-color: #fff;
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
transition: all 0.3s 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .first-level-menu__item.is-open .first-level-menu__link {
color: #fff; }
.vgg .first-level-menu__item.is-open .first-level-menu__link:before {
right: 0;
top: 50px;
background-color: #dd052b; }
.vgg .first-level-menu__item.is-open .first-level-menu__icon:after {
width: 100%; }
.vgg .first-level-menu__item.is-open .first-level-menu__icon svg {
color: #dd052b;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
transition: all 0.3s 0.4s cubic-bezier(0.77, 0, 0.175, 1);
opacity: 1; }
.vgg .first-level-menu__item.is-open .second-level-menu {
height: 360px !important;
transition: all 1.4s cubic-bezier(0.77, 0, 0.175, 1);
z-index: -1; }
.vgg .first-level-menu__item.is-open .second-level-menu__intro {
opacity: 1;
transition: all 0.6s 0.8s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .first-level-menu__item.is-open .second-level-menu__list {
opacity: 1;
transition: all 0.6s 0.8s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .first-level-menu__item.is-open ~ li .special-menu {
pointer-events: all;
transition: all 0.6s 0.8s cubic-bezier(0.77, 0, 0.175, 1);
opacity: 1; }
.vgg .first-level-menu__icon {
display: block;
position: absolute;
top: 0;
z-index: 1;
width: 100%;
height: 100%;
left: 0;
color: #dd052b;
font-size: 38px; }
.vgg .first-level-menu__icon svg {
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
transition: all 0.3s 0s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
margin: auto;
opacity: 0;
z-index: 1; }
.vgg .first-level-menu__icon:after {
background-color: #fff; }
.vgg .first-level-menu__icon:after,
.vgg .first-level-menu__icon:before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 0;
transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
bottom: 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg); }
.vgg .first-level-menu__icon:before {
background-color: #bd0426; }
.vgg .second-level-menu {
position: absolute;
width: 100%;
left: 0;
background-color: #fff;
color: #333;
max-height: none;
height: 0 !important;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.04), 0 16px 10px -10px rgba(0, 0, 0, 0.1) inset;
transition: all 1s 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .main-menu__close {
display: none; }
.vgg .main-menu__panel {
padding-left: 164px; }
.vgg .second-level-menu__intro {
width: 25%;
max-width: 500px;
margin-top: 60px;
opacity: 0;
transition: all 1s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .second-level-menu__list {
width: 580px;
max-width: 50%;
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
left: 0;
right: 0;
margin: auto;
opacity: 0;
transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
font-size: 0; }
.vgg .second-level-menu__list.second-level-menu__list--5col .second-level-menu__item {
width: 20%; }
.vgg .second-level-menu__item {
width: 25%;
display: inline-block;
position: relative;
vertical-align: top;
font-size: 15px;
margin: 10px 0;
padding: 0 10px; }
.vgg .second-level-menu__item &gt; a {
padding: 0;
line-height: 1.2;
padding-top: 80px;
position: relative;
bottom: 0;
text-align: center; }
.vgg .second-level-menu__item.is-active &gt; a {
color: #dd052b;
background-color: transparent; }
.vgg .second-level-menu__icon {
position: absolute;
height: 80px;
width: auto;
cursor: pointer;
top: 0;
right: 0;
left: 0;
margin: auto;
font-size: 60px; }
.vgg .second-level-menu__title {
color: #dd052b;
font-size: 20px;
margin-top: 0;
line-height: 1.2;
margin-bottom: 0.4em; }
.vgg .second-level-menu__abstract {
display: block;
line-height: 1.4;
text-transform: none;
margin-bottom: 1em; }
.vgg .second-level-menu__cta {
font-size: 0;
display: block;
width: 40px;
position: relative;
height: 40px;
border-radius: 50%;
cursor: pointer;
background-color: #dd052b; }
.vgg .second-level-menu__cta:after {
content: "";
position: absolute;
display: block;
width: 9px;
height: 9px;
right: 5px;
top: 0;
bottom: 0;
left: 0;
border-top: 1px solid #fff;
border-right: 1px solid #fff;
margin: auto;
-webkit-transform: rotateZ(45deg);
transform: rotateZ(45deg); }
.vgg .extra-menu {
-webkit-transform: none;
transform: none;
opacity: 1;
position: absolute;
display: block;
height: 30px;
top: 0;
right: 0;
background-color: #fff;
margin: 0;
width: calc(100% - 164px);
text-align: right; }
.vgg .extra-menu__item {
display: inline-block;
font-size: 11px;
font-weight: 700;
letter-spacing: .05em;
line-height: 30px; }
.vgg .extra-menu__link {
line-height: 30px;
padding-left: 15px;
padding-right: 15px; }
.vgg .first-level-menu {
-webkit-transform: none;
transform: none;
opacity: 1;
overflow: visible; }
.vgg .main-menu__panel .special-menu,
.vgg .main-menu__panel.is-open .special-menu {
opacity: 0;
width: 25%;
background-color: transparent;
pointer-events: none;
position: absolute;
-webkit-transform: none;
transform: none;
right: 0;
top: 114px;
height: 360px;
margin: 0;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
transition: all 1s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .landing-menu {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding-top: 30px;
padding-left: 40px;
height: 100%; }
.vgg .landing-menu ul {
list-style: none;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 100%;
margin-right: 10px; }
.vgg .landing-menu li {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
position: relative;
margin: 0 2px; }
.vgg .landing-menu li::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
background-color: #bd0426;
z-index: 2;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .landing-menu li:hover::before {
width: 100%; }
.vgg .landing-menu li:hover a {
-webkit-animation: landingMenuLinksAnim 1s cubic-bezier(0.77, 0, 0.175, 1) 0.2s forwards;
animation: landingMenuLinksAnim 1s cubic-bezier(0.77, 0, 0.175, 1) 0.2s forwards; }
.vgg .landing-menu a {
color: #fff;
margin: 0 35px;
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
position: relative;
z-index: 3;
height: 100%; }
.vgg .landing-menu__icon-wrapper {
background-color: #fff;
border-radius: 50%;
color: #dd052b;
width: 40px;
height: 40px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin-left: 10px;
transition: background-color 0.2s; }
.vgg .landing-menu__heading {
font-size: 20px;
font-weight: bold;
color: #fff;
text-transform: uppercase; }
html:not(.touch) .vgg .first-level-menu__link:hover .first-level-menu__icon:before {
background-color: #bd0426;
width: 100%; }
html:not(.touch) .vgg .first-level-menu__link:hover .first-level-menu__icon svg {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
transition: all 0.3s 0.4s cubic-bezier(0.77, 0, 0.175, 1);
opacity: 1;
color: #fff; }
html:not(.touch) .vgg .first-level-menu__item.is-open .first-level-menu__link:hover svg {
color: #dd052b; }
html:not(.touch) .vgg .first-level-menu__item.is-active .first-level-menu__link:hover:before {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
transition: all 0.3s 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
html:not(.touch) .vgg .main-search__toggle:hover {
width: 160px;
transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1); }
html:not(.touch) .vgg .main-search.is-open .main-search__toggle {
width: calc(100% - 164px); }
html:not(.touch) .vgg .second-level-menu__item:hover {
color: #dd052b; }
html:not(.touch) .vgg .extra-menu__link:hover {
color: #dd052b; }
html:not(.touch) .vgg .special-menu__link:hover {
color: #dd052b; }
html:not(.touch) .vgg .assistance-box__item a:hover {
text-decoration: underline; }
html:not(.touch) .vgg .lang-box__item a:hover,
html:not(.touch) .vgg .shop-box__item a:hover {
text-decoration: underline; }
html:not(.touch) .vgg .second-level-menu__cta:hover:after {
-webkit-animation-name: ctaButtonHover;
animation-name: ctaButtonHover;
-webkit-animation-duration: .2s;
animation-duration: .2s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards; }
#content {
margin-top: 114px; } }
@media screen and (min-width: 1280px) {
.vgg .first-level-menu {
padding-left: 50px; }
.vgg .first-level-menu__link {
padding: 0 30px; }
.vgg .second-level-menu__intro {
padding: 0 40px 0 80px; }
.vgg .extra-menu__link {
padding-left: 30px;
padding-right: 30px; } }
@media screen and (min-width: 1440px) {
.vgg .second-level-menu__title {
font-size: 22px; }
.vgg .second-level-menu__abstract {
font-size: 16px; } }
@media screen and (min-width: 1920px) {
.vgg .second-level-menu__intro {
padding: 0 60px 0 120px; } }
@-webkit-keyframes landingMenuLinksAnim {
0% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
z-index: 1; }
50% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
z-index: 1; }
51% {
opacity: 0;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
z-index: 3; }
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
z-index: 3; } }
@keyframes landingMenuLinksAnim {
0% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
z-index: 1; }
50% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
z-index: 1; }
51% {
opacity: 0;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
z-index: 3; }
100% {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
z-index: 3; } }
.vgg .main-footer {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
position: relative;
text-align: center; }
.vgg .main-footer__lang {
background-color: #808083;
color: #fff !important;
display: inline-block;
font-size: 16px;
height: 52px;
letter-spacing: .05em;
line-height: 52px;
text-transform: uppercase;
transition: background-color .3s ease-in-out;
width: 100%; }
.vgg .main-footer__lang:hover {
background-color: #dd052b; }
@media (min-width: 1024px) {
.vgg .main-footer__lang {
left: 0;
position: absolute;
top: 0;
width: 170px; } }
.vgg .footer-main-menu {
background-color: #bfbfbf;
padding: 40px 20px; }
@media (min-width: 1024px) {
.vgg .footer-main-menu {
display: inline-block;
-webkit-order: 1;
-ms-flex-order: 1;
order: 1;
padding: 0; } }
.vgg .footer-main-menu__item {
text-align: center;
vertical-align: top; }
@media (min-width: 1024px) {
.vgg .footer-main-menu__item {
display: inline-block; } }
.vgg .footer-main-menu__link {
color: #fff !important;
display: inline-block;
font-size: 17px;
height: 52px;
line-height: 52px;
padding: 0 10px;
transition: color 0.3s ease-in-out; }
.vgg .footer-main-menu__link:hover {
color: #dd052b !important; }
.vgg .footer-main-menu__link:focus {
outline: none; }
@media (min-width: 1024px) {
.vgg .footer-mid-block {
-webkit-order: 3;
-ms-flex-order: 3;
order: 3; } }
.vgg .footer-extra-menu {
padding: 40px 20px 0 !important;
text-align: center; }
@media (min-width: 1024px) {
.vgg .footer-extra-menu {
display: inline-block; } }
.vgg .footer-extra-menu__item {
text-align: center; }
@media (min-width: 1024px) {
.vgg .footer-extra-menu__item {
display: inline-block; }
.vgg .footer-extra-menu__item::after {
color: #808083;
content: "/";
padding: 0 10px; } }
.vgg .footer-extra-menu__link {
color: #808083 !important;
display: inline-block;
font-size: 14px;
height: 34.6666666667px;
letter-spacing: .05em;
line-height: 34.6666666667px;
padding: 0 10px;
text-transform: uppercase;
transition: color 0.3s ease-in-out; }
.vgg .footer-extra-menu__link:hover {
color: #dd052b !important; }
.vgg .footer-social-menu {
margin-bottom: 20px;
text-align: center; }
@media (min-width: 1024px) {
.vgg .footer-social-menu {
display: inline-block; } }
.vgg .footer-social-menu__label {
color: #808083;
display: inline-block;
font-size: 14px;
height: 52px;
line-height: 52px;
padding: 0 10px;
text-transform: uppercase; }
@media (max-width: 1023px) {
.vgg .footer-social-menu__label {
display: none; } }
.vgg .footer-social-menu__item {
display: inline-block; }
.vgg .footer-social-menu__link {
color: #dd052b !important;
display: inline-block;
font-size: 34px;
height: 52px;
line-height: 52px;
padding: 0 10px;
text-transform: uppercase;
transition: color 0.3s ease-in-out; }
.vgg .footer-social-menu__link:hover {
color: #333 !important; }
@media (min-width: 1024px) {
.vgg .footer-social-menu__link {
font-size: 20px;
padding-left: 5px;
padding-right: 5px; } }
.vgg .footer-social-menu__link .Icon--facebook {
-webkit-transform: scale(1.15);
transform: scale(1.15); }
.vgg .footer-social-menu__link .Icon--linkedin,
.vgg .footer-social-menu__link .Icon--instagram {
-webkit-transform: scale(0.85);
transform: scale(0.85); }
.vgg .footer-logo {
padding: 30px; }
@media (min-width: 1024px) {
.vgg .footer-logo {
-webkit-order: 2;
-ms-flex-order: 2;
order: 2;
padding-bottom: 0; } }
.vgg .footer-logo img {
width: 60px; }
@media (min-width: 1024px) {
.vgg .footer-logo img {
width: 80px;
margin-bottom: 5px; } }
.vgg .footer-logo__payoff {
color: #808083;
font-size: 10px; }
@media (min-width: 1024px) {
.vgg .footer-logo__payoff {
font-size: 15px; } }
.vgg .footer-brand-info {
font-size: 10px;
color: #808083;
padding: 0 20px 20px; }
@media (min-width: 1024px) {
.vgg .footer-brand-info {
font-size: 13px;
-webkit-order: 4;
-ms-flex-order: 4;
order: 4; } }
.vgg .footer-widgets-row {
-webkit-order: 3;
-ms-flex-order: 3;
order: 3;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; }
.vgg .store-locator__heading-block {
padding: .1px 20px 0;
position: relative; }
@media (min-width: 1024px) {
.vgg .store-locator__heading-block {
padding: 0.1px 40px 0; } }
.vgg .store-locator__heading-block h2 {
max-width: 680px;
margin-left: auto;
margin-right: auto; }
@media (min-width: 480px) {
.vgg .store-locator__heading-block .heading-arrow-link {
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end; } }
@media (min-width: 768px) {
.vgg .store-locator__heading-block .heading-arrow-link {
margin-bottom: 25px; } }
@media (min-width: 1024px) {
.vgg .store-locator__heading-block .heading-arrow-link {
position: absolute;
right: 30px;
top: 30px; } }
.vgg .store-locator__form-wrapper {
padding: 0 20px 40px; }
@media (min-width: 1024px) {
.vgg .store-locator__form-wrapper {
padding: 0 40px 40px; } }
.vgg .store-locator-form {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -10px;
margin-right: -10px; }
@media (min-width: 1024px) {
.vgg .store-locator-form {
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; } }
.vgg .store-locator-form .form__group {
padding: 0 10px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
@media (min-width: 480px) {
.vgg .store-locator-form .form__group {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; } }
@media (max-width: 1023px) {
.vgg .store-locator-form .form__group {
margin-bottom: 10px; } }
@media (min-width: 1024px) {
.vgg .store-locator-form .form__group {
-webkit-flex-basis: auto;
-ms-flex-preferred-size: auto;
flex-basis: auto;
max-width: none; } }
@media (min-width: 1024px) {
.vgg .store-locator-form__group--dealer-type {
width: 190px; } }
@media (min-width: 1024px) {
.vgg .store-locator-form__group--category {
width: 250px; } }
.vgg .store-locator-form__address.store-locator-form__address {
padding-right: 45px; }
@media (min-width: 1024px) {
.vgg .store-locator-form__address.store-locator-form__address {
min-width: 300px; } }
@media (min-width: 1366px) {
.vgg .store-locator-form__address.store-locator-form__address {
min-width: 420px; } }
@media (min-width: 1024px) {
.vgg .store-locator-form__group--ray {
width: 130px; } }
@media (min-width: 480px) and (max-width: 1023px) {
.vgg .store-locator-form__group--submit.store-locator-form__group--submit {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; } }
.vgg .store-locator-form__geolocation {
position: absolute;
top: 40px;
right: 24px;
color: #dd052b;
font-size: 24px; }
.vgg .store-locator-form__submit {
margin-top: 28px; }
@media (min-width: 1024px) {
.vgg .store-locator-form__submit {
width: 60px; } }
.vgg .store-locator-form__no-results {
text-align: center;
color: #dd052b;
padding-top: 20px; }
.vgg .store-locator__map-container {
position: relative; }
.vgg .store-locator__map {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.vgg .store-locator__map .marker-cluster {
line-height: 60px !important; }
.vgg .store-locator__map .popup-dealer span {
display: block; }
.vgg .store-locator__map .popup-dealer__name {
font-size: 16px;
letter-spacing: .05em;
text-transform: uppercase;
color: #dd052b; }
.vgg .store-locator__map .popup-dealer__website a {
text-decoration: underline; }
.vgg .store-locator__map .popup-dealer__website a:link,
.vgg .store-locator__map .popup-dealer__website a:visited {
transition: color .4s;
color: #dd052b; }
.vgg .store-locator__map .popup-dealer__website a:hover {
color: #333; }
.vgg .store-locator__map .popup-dealer__website a:active {
color: #808083;
transition: color 0.2s; }
.vgg .circles-grid {
max-width: 1024px;
margin-left: auto;
margin-right: auto;
margin-top: 40px; }
.vgg .circles-grid__heading {
font-size: 20px;
color: #333;
letter-spacing: .05em;
padding: 1em;
line-height: 1.6em;
text-align: center;
margin-bottom: 40px; }
.vgg .circles-grid__heading:after,
.vgg .circles-grid__heading:before {
content: "/";
margin: 0 .3em;
color: #e0e0e0; }
@media screen and (min-width: 375px) {
.vgg .circles-grid__heading {
font-size: 25px; } }
@media screen and (min-width: 768px) {
.vgg .circles-grid__heading {
font-size: 30px; } }
@media screen and (min-width: 1024px) {
.vgg .circles-grid__heading {
font-size: 34px; } }
@media screen and (min-width: 1280px) {
.vgg .circles-grid__heading {
font-size: 36px; } }
@media screen and (min-width: 1440px) {
.vgg .circles-grid__heading {
font-size: 40px; } }
.vgg .circles-grid__list {
margin-bottom: 40px; }
.vgg .circles-grid__item {
text-align: center;
margin-bottom: 30px; }
.vgg .circles-grid__item img {
border-radius: 50%;
width: 200px;
height: 200px;
max-width: 100%;
mix-blend-mode: multiply; }
.vgg .circles-grid__item figure {
display: block;
position: relative;
background-color: #fff;
border-radius: 50%;
box-shadow: 10px 0 50px rgba(0, 0, 0, 0.08);
transition: background-color 0.666s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .circles-grid__link {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; }
.vgg .circles-grid__shop {
font-size: 16px;
margin-bottom: 5px;
margin-top: 50px;
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1);
position: relative; }
.vgg .circles-grid__shop::before {
content: "•";
position: absolute;
top: -25px;
left: 50%;
color: #dd052b;
-webkit-transform: translateY(60px);
transform: translateY(60px);
opacity: 0;
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1) 0.1666s; }
.vgg .circles-grid__store {
font-size: 14px;
text-transform: uppercase;
letter-spacing: .05em;
text-decoration: underline;
color: #dd052b;
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1) 0.166s; }
html.touch .vgg .circles-grid__link .circles-grid__shop,
html.touch .vgg .circles-grid__link .circles-grid__store,
.vgg .circles-grid__link:hover .circles-grid__shop,
.vgg .circles-grid__link:hover .circles-grid__store {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0); }
html.touch .vgg .circles-grid__link .circles-grid__shop:before,
.vgg .circles-grid__link:hover .circles-grid__shop:before {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1; }
.vgg .product-catalog {
position: relative; }
@media (min-width: 1024px) {
.vgg .product-catalog {
padding-left: 400px;
padding-right: 100px;
margin-top: 30px; } }
.vgg .product-catalog__filters-block {
position: relative;
background-color: #fff;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
transition: all 0.333s ease-in-out; }
.vgg .product-catalog__filters-block.is-open {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 120;
overflow-y: auto;
padding-bottom: 60px; }
.vgg .product-catalog__filters-block.is-open .filters-product__heading {
background-color: #bfbfbf;
color: #fff; }
.vgg .product-catalog__filters-block.is-open .filters-product__toggler span::before,
.vgg .product-catalog__filters-block.is-open .filters-product__toggler span::after {
background-color: #fff; }
.vgg .product-catalog__filters-block.is-open .filters-product__clear,
.vgg .product-catalog__filters-block.is-open .filters-product__close {
z-index: 10; }
@media (min-width: 1024px) {
.vgg .product-catalog__filters-block {
position: absolute;
top: 0;
left: 15px;
width: 300px;
border-radius: 7px; } }
.vgg .filters-product__heading {
padding: 0 20px;
text-transform: uppercase;
height: 60px;
line-height: 60px;
letter-spacing: 0.05em; }
@media (min-width: 1024px) {
.vgg .filters-product__heading {
font-size: 22px;
height: 90px;
line-height: 90px; } }
.vgg .filters-product__toggler {
height: 60px;
position: absolute;
right: 0;
top: 0;
width: 60px; }
@media (min-width: 1024px) {
.vgg .filters-product__toggler {
display: none; } }
.vgg .filters-product__toggler span::after,
.vgg .filters-product__toggler span::before {
background-color: #333;
content: "";
height: 2px;
left: 50%;
margin: auto;
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
transition: all 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.2s;
width: 33.333%; }
.vgg .filters-product__toggler span::before {
-webkit-transform: translate(-50%, -50%) rotate(45deg);
transform: translate(-50%, -50%) rotate(45deg); }
.vgg .filters-product__toggler span::after {
-webkit-transform: translate(-50%, -50%) rotate(-45deg);
transform: translate(-50%, -50%) rotate(-45deg); }
.vgg .filters-product__toggler span::before {
-webkit-transform: translate(-50%, -50%) rotate(0);
transform: translate(-50%, -50%) rotate(0); }
.vgg .filters-product__toggler span::after {
-webkit-transform: translate(-50%, -50%) rotate(90deg);
transform: translate(-50%, -50%) rotate(90deg); }
.vgg .filters-product__toggler.is-active span::before {
-webkit-transform: translate(-50%, -50%) rotate(135deg);
transform: translate(-50%, -50%) rotate(135deg); }
.vgg .filters-product__toggler.is-active span::after {
-webkit-transform: translate(-50%, -50%) rotate(225deg);
transform: translate(-50%, -50%) rotate(225deg); }
@media (max-width: 1023px) {
.vgg .filters-product__inner {
background-color: #fff;
max-height: 0;
overflow: hidden;
transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
opacity: 0; }
.vgg .filters-product__inner.is-open {
max-height: 2000px;
opacity: 1; } }
@media (min-width: 1024px) {
.vgg .filters-product__inner {
min-height: 500px;
font-size: 13px; } }
@media (max-width: 1023px) {
.vgg .filters-product__list-item {
border-bottom: 1px solid #e0e0e0; } }
.vgg .filters-product__list-item.has-filter .filters-product__sublist-toggler::after {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); }
.vgg .filters-product__sublist {
opacity: 0;
max-height: 0;
overflow: hidden;
transition: all .5s ease-in-out;
background-color: #f5f5f5;
padding: 0 20px; }
@media (min-width: 1024px) {
.vgg .filters-product__sublist {
border-top: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
padding: 0 30px 0 20px; } }
.vgg .filters-product__sublist.is-open {
max-height: 1000px;
opacity: 1;
padding: 20px; }
@media (min-width: 1024px) {
.vgg .filters-product__sublist.is-open {
padding: 20px 30px 20px 20px; } }
.vgg .filters-product__list-item.is-disabled {
color: #e0e0e0; }
.vgg .filters-product__sublist-toggler {
position: relative;
text-transform: uppercase;
padding: 0 20px;
height: 60px;
line-height: 60px;
width: 100%;
text-align: left; }
.vgg .filters-product__sublist-toggler.is-disabled {
pointer-events: none; }
.vgg .filters-product__sublist-toggler.is-active .Icon {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg); }
.vgg .filters-product__sublist-toggler::after {
content: "·";
position: absolute;
top: 0;
right: 55px;
color: #dd052b;
font-size: 48px;
line-height: 1.2;
opacity: 0;
-webkit-transform: scale(1.75);
transform: scale(1.75);
transition: all 0.15s ease-in; }
.vgg .filters-product__sublist-toggler .Icon {
position: absolute;
top: 22px;
right: 23px;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
font-size: 14px;
transition: -webkit-transform .333s ease-in;
transition: transform .333s ease-in;
transition: transform 0.333s ease-in, -webkit-transform 0.333s ease-in; }
@media (min-width: 1024px) {
.vgg .filters-product__sublist-toggler .Icon {
right: 33px; } }
.vgg .filters-product__sublist-item {
height: 45px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
transition: color 0.25s ease-in; }
.vgg .filters-product__sublist-item.has-filter {
color: #dd052b; }
.vgg .filters-product__sublist-item.is-disabled {
opacity: 0.333; }
.vgg .filters-product__sublist-label {
text-transform: uppercase; }
.vgg .filters-product__sublist-count {
margin-left: auto;
padding: 0 10px; }
.vgg .filters-product__clear,
.vgg .filters-product__close {
position: fixed;
bottom: 0;
width: 50%;
font-size: 13px;
font-weight: bold;
padding: 0 20px;
height: 60px;
line-height: 60px;
color: #fff;
text-transform: uppercase;
z-index: -1; }
.vgg .filters-product__clear {
left: 0;
background-color: #dd052b; }
@media (min-width: 1024px) {
.vgg .filters-product__clear {
position: absolute;
top: 24px;
right: 17px;
left: auto;
bottom: auto;
z-index: 10;
width: 42px;
font-size: 32px;
border-radius: 7px;
height: 42px;
line-height: 42px;
padding: 0; } }
@media (max-width: 1023px) {
.vgg .filters-product__clear .Icon {
margin: 0 10px;
font-size: 26px;
position: relative;
top: 5px; } }
@media (min-width: 1024px) {
.vgg .filters-product__clear__label {
display: none; } }
.vgg .filters-product__close {
right: 0;
background-color: #333; }
@media (min-width: 1024px) {
.vgg .filters-product__close {
display: none; } }
.vgg .product-catalog__fast-links {
padding: 20px; }
@media (max-width: 1023px) {
.vgg .product-catalog__fast-links {
display: none; } }
.vgg .product-catalog__fast-links a {
line-height: 2;
text-decoration: underline; }
.vgg .product-catalog__fast-links a:link,
.vgg .product-catalog__fast-links a:visited {
transition: color .4s;
color: #dd052b; }
.vgg .product-catalog__fast-links a:hover {
color: #808083; }
.vgg .product-catalog__fast-links a:active {
color: #333;
transition: color 0.2s; }
.vgg .product-catalog__content-block {
padding-left: 20px;
padding-right: 20px; }
@media screen and (min-width: 375px) {
.vgg .product-catalog__content-block {
padding-left: 50px;
padding-right: 50px; } }
@media (min-width: 1024px) {
.vgg .product-catalog__content-block {
padding-left: 0;
padding-right: 0; } }
.vgg .product-catalog__heading-block {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-bottom: 20px; }
@media (min-width: 1366px) {
.vgg .product-catalog__heading-block {
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap; } }
@media (max-width: 1365px) {
.vgg .product-catalog__heading {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
min-width: 100%; } }
.vgg .product-catalog__products-count {
color: #dd052b;
white-space: nowrap;
margin-right: 20px;
margin-left: auto; }
.vgg .product-catalog__order-by .custom-select-container {
min-width: 170px; }
@media (min-width: 1024px) {
.vgg .product-catalog__order-by .custom-select-container {
min-width: 240px; } }
.vgg .product-catalog__item {
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
.vgg .product-catalog__item-inner {
background-color: #fff;
padding: 25px;
border-radius: 7px;
box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
width: 100%; }
@media (min-width: 1366px) {
.vgg .product-catalog__item-inner {
padding: 30px; } }
.vgg .product-catalog__item-image {
margin-bottom: 30px;
display: block;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
position: relative; }
.vgg .product-catalog__item-image img {
width: 100%;
height: auto;
max-width: 100%;
display: block; }
.vgg .product-catalog__item-heading {
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0.05em; }
@media (min-width: 1366px) {
.vgg .product-catalog__item-heading {
font-size: 20px; } }
.vgg .product-catalog__item-code {
font-size: 11px;
color: #808083;
text-transform: uppercase;
margin-bottom: 15px;
letter-spacing: 0.05em; }
@media (min-width: 1366px) {
.vgg .product-catalog__item-code {
font-size: 14px; } }
.vgg .product-catalog__item-price {
position: relative;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
margin-bottom: 15px;
margin-left: -25px;
padding-left: 25px;
padding-right: 25px;
overflow: hidden; }
@media (min-width: 1366px) {
.vgg .product-catalog__item-price {
margin-left: -30px;
padding-left: 30px;
padding-right: 30px; } }
.vgg .product-catalog__item-price::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #f5f5f5;
z-index: 10;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
border-bottom-right-radius: 5px;
border-top-right-radius: 5px;
-webkit-transform-origin: top;
transform-origin: top; }
.vgg .product-catalog__item-current-price {
font-size: 18px;
letter-spacing: .05em;
font-weight: bold;
position: relative;
white-space: nowrap;
color: #dd052b;
z-index: 20; }
.vgg .product-catalog__item-old-price {
font-size: 12px;
letter-spacing: .05em;
font-weight: bold;
text-decoration: line-through;
position: relative;
z-index: 20;
margin-left: 10px;
white-space: nowrap; }
.vgg .product-catalog__item-desc {
font-size: 12px;
letter-spacing: .05em;
font-weight: bold;
position: relative;
z-index: 20;
white-space: nowrap;
color: #dd052b;
width: 100%; }
.vgg .product-catalog__item-detail {
padding-bottom: 30px;
margin-bottom: auto; }
.vgg .product-catalog__item-detail table {
width: 100%;
font-size: 11px; }
@media (min-width: 1366px) {
.vgg .product-catalog__item-detail table {
font-size: 14px; } }
.vgg .product-catalog__item-detail th {
width: 50%;
vertical-align: middle;
padding-bottom: 10px;
text-align: left; }
.vgg .product-catalog__item-detail td {
width: 50%;
text-align: right;
color: #dd052b;
vertical-align: middle;
font-weight: bold;
padding-bottom: 10px; }
.vgg .product-catalog__item-buy,
.vgg .product-catalog__item-goto-product {
margin-bottom: 10px; }
.vgg .product-intro__visual {
max-width: 580px;
margin: auto; }
.vgg .product-intro__visual .swiper-pagination,
.vgg .product-intro__visual .hero-slider-v2__pagination {
display: none; }
.vgg .product-intro__slider {
width: 100%; }
.vgg .product-intro__slider .swiper-button-prev,
.vgg .product-intro__slider .swiper-button-next {
width: 42px;
height: 42px;
margin-top: -21px; }
.vgg .product-intro__slider-item a {
width: 80%;
margin: auto;
display: block; }
.vgg .product-intro__slider-item img {
-webkit-flex-grow: 0;
-ms-flex-positive: 0;
flex-grow: 0; }
.vgg .product-intro__360-button {
width: 78px;
height: 36px;
border: 2px solid #333;
border-radius: 5px;
display: block;
color: #333;
font-size: 38px;
margin-left: auto;
margin-right: auto;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin-top: 30px;
margin-bottom: 30px; }
.vgg .product-intro__main-info {
text-align: center; }
.vgg .product-intro__short-description {
font-size: 12px;
max-width: 230px;
margin: .5em auto;
display: block;
letter-spacing: .05em;
text-transform: uppercase;
line-height: 1.4; }
.vgg .product-intro__name {
font-size: 28px;
max-width: 230px;
font-weight: 700;
letter-spacing: .08em;
margin: .5em auto;
display: block;
text-transform: uppercase; }
.vgg .product-intro__model {
font-size: 12px;
display: block;
margin: 0.5em auto; }
.vgg .product-intro__table {
margin: 2em auto;
width: 100%;
font-size: 12px;
line-height: 2; }
.vgg .product-intro__table tr {
width: 100%; }
.vgg .product-intro__table td,
.vgg .product-intro__table th {
display: inline; }
.vgg .product-intro__table th:after {
content: " / "; }
.vgg .product-intro__table td {
font-weight: 700;
color: #dd052b; }
.vgg .product-intro__price {
font-size: 25px;
text-align: center;
letter-spacing: .05em;
font-weight: 700;
margin: 1em auto 0;
color: #dd052b;
line-height: 1; }
.vgg .product-intro__price__deleted {
font-size: 12px;
font-weight: 400;
text-decoration: line-through;
display: inline;
color: #333; }
.vgg .product-intro__price-label {
color: #dd052b;
text-align: center;
font-size: 12px;
margin-bottom: 2em; }
.vgg .product-intro__buttons {
width: 250px;
margin: 5px auto; }
.vgg .product-intro__buttons--compare {
margin-bottom: 38px; }
.vgg .product-intro__links {
background-color: #e0e0e0;
padding: 25px;
text-align: center; }
.vgg .product-intro__link {
text-transform: uppercase;
margin: 1em 0;
font-size: 13px;
letter-spacing: .05em;
position: relative;
display: block;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .product-intro__link span {
display: inline-block;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
text-decoration: underline; }
.vgg .product-intro__eu-links {
text-align: center; }
.vgg .product-intro__eu-link {
text-transform: uppercase;
font-weight: 700;
margin: 1em 0;
font-size: 13px;
letter-spacing: .05em;
position: relative;
display: block;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .product-intro__eu-link span {
color: #dd052b;
display: inline-block;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .product-intro__eu-link span:after {
content: "";
display: block;
width: 100%;
height: 1px;
bottom: 2px;
position: relative;
background-color: #dd052b;
transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
.vgg .share {
position: absolute;
font-size: 22px;
right: 20px;
top: 100vw;
-webkit-transform: translateY(70px);
transform: translateY(70px);
z-index: 1; }
.vgg .share.is-open .share-list {
width: calc(100vw - 20px);
max-width: 300px;
transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(1) {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(1) {
transition: all 0.6s 0.05s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(2) {
-webkit-transform: translate3d(-200%, 0, 0);
transform: translate3d(-200%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(2) {
transition: all 0.6s 0.1s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(3) {
-webkit-transform: translate3d(-300%, 0, 0);
transform: translate3d(-300%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(3) {
transition: all 0.6s 0.15s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(4) {
-webkit-transform: translate3d(-400%, 0, 0);
transform: translate3d(-400%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(4) {
transition: all 0.6s 0.2s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(5) {
-webkit-transform: translate3d(-500%, 0, 0);
transform: translate3d(-500%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(5) {
transition: all 0.6s 0.25s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(6) {
-webkit-transform: translate3d(-600%, 0, 0);
transform: translate3d(-600%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(6) {
transition: all 0.6s 0.3s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(7) {
-webkit-transform: translate3d(-700%, 0, 0);
transform: translate3d(-700%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(7) {
transition: all 0.6s 0.35s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(8) {
-webkit-transform: translate3d(-800%, 0, 0);
transform: translate3d(-800%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(8) {
transition: all 0.6s 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(9) {
-webkit-transform: translate3d(-900%, 0, 0);
transform: translate3d(-900%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(9) {
transition: all 0.6s 0.45s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share.is-open .share-item {
opacity: 1; }
.vgg .share.is-open .share-item:nth-child(10) {
-webkit-transform: translate3d(-1000%, 0, 0);
transform: translate3d(-1000%, 0, 0); }
.vgg .share.is-open .share-item:nth-last-child(10) {
transition: all 0.6s 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-button {
width: 40px;
height: 40px;
background-color: #fff;
z-index: 2;
position: relative; }
.vgg .share-list {
position: absolute;
background-color: #fff;
right: 0;
top: 0;
width: 40px;
height: 40px;
z-index: 1;
transition: all 0.2s 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item {
position: absolute;
right: 0;
top: 0;
opacity: 0; }
.vgg .share-item a {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
width: 40px;
height: 40px; }
.vgg .share-item:nth-child(1) {
transition: all 0.6s 0.05s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item:nth-child(2) {
transition: all 0.6s 0.1s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item:nth-child(3) {
transition: all 0.6s 0.15s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item:nth-child(4) {
transition: all 0.6s 0.2s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item:nth-child(5) {
transition: all 0.6s 0.25s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item:nth-child(6) {
transition: all 0.6s 0.3s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item:nth-child(7) {
transition: all 0.6s 0.35s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item:nth-child(8) {
transition: all 0.6s 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item:nth-child(9) {
transition: all 0.6s 0.45s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .share-item:nth-child(10) {
transition: all 0.6s 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
@media screen and (min-width: 520px) {
.vgg .share {
top: 518px; } }
@media screen and (min-width: 1024px) {
.vgg .product-intro {
position: relative;
padding: 0 40px 30px 40px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; }
.vgg .product-intro__360-button {
margin-bottom: 0; }
.vgg .product-intro__model {
font-size: 14px; }
.vgg .product-intro__visual {
-webkit-flex-basis: 33%;
-ms-flex-preferred-size: 33%;
flex-basis: 33%;
width: 33%;
-webkit-order: 2;
-ms-flex-order: 2;
order: 2; }
.vgg .product-intro__main-info {
max-width: 33%;
-webkit-flex-basis: 33%;
-ms-flex-preferred-size: 33%;
flex-basis: 33%;
-webkit-order: 1;
-ms-flex-order: 1;
order: 1;
text-align: left; }
.vgg .product-intro__extra-info {
max-width: 33%;
-webkit-flex-basis: 33%;
-ms-flex-preferred-size: 33%;
flex-basis: 33%;
-webkit-order: 3;
-ms-flex-order: 3;
order: 3;
text-align: center; }
.vgg .product-intro__links {
background-color: transparent; }
.vgg .product-intro__short-description {
max-width: none; }
.vgg .product-intro__name {
font-size: 32px;
max-width: 520px;
margin: 0.5em 0; }
.vgg .product-intro__links {
text-align: left;
width: 250px;
margin: auto;
padding: 0 0 0 32px; }
.vgg .product-intro__eu-links {
text-align: left; }
.vgg .share {
top: initial;
bottom: -45px;
right: 40px;
-webkit-transform: none;
transform: none; } }
@media screen and (min-width: 1280px) {
.vgg .product-intro__main-info {
padding-left: 5%; }
.vgg .product-intro__name {
font-size: 44px; } }
@media screen and (min-width: 1440px) {
.vgg .product-intro__model {
font-size: 16px; } }
@media screen and (min-width: 580px) {
.vgg .product-intro .swiper-button-prev {
left: 0; }
.vgg .product-intro .swiper-button-next {
right: 0; } }
html:not(.touch) .vgg .product-intro__link:hover span:after,
html:not(.touch) .vgg .product-intro__eu-link:hover span:after {
-webkit-transform: translate3d(0, 2px, 0);
transform: translate3d(0, 2px, 0); }
.vgg .product-features {
padding: 30px 0; }
.vgg .product-features__title {
font-size: 20px;
color: #dd052b;
letter-spacing: .05em;
padding: 1em;
line-height: 1.6em;
text-align: center; }
.vgg .product-features__title:after,
.vgg .product-features__title:before {
content: "/";
margin: 0 .3em;
color: #e0e0e0; }
@media screen and (min-width: 375px) {
.vgg .product-features__title {
font-size: 25px; } }
@media screen and (min-width: 768px) {
.vgg .product-features__title {
font-size: 30px; } }
@media screen and (min-width: 1024px) {
.vgg .product-features__title {
font-size: 34px; } }
@media screen and (min-width: 1280px) {
.vgg .product-features__title {
font-size: 36px; } }
@media screen and (min-width: 1440px) {
.vgg .product-features__title {
font-size: 40px; } }
.vgg .product-features__table {
display: block;
width: 90%;
max-width: 500px;
margin: 0 auto 30px; }
.vgg .product-features__table tbody {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; }
.vgg .product-features__table tr {
max-width: 50%;
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
display: block;
margin: 10px 0; }
.vgg .product-features__table td,
.vgg .product-features__table th {
display: block;
width: 100%;
text-align: center; }
.vgg .product-features__table th {
text-transform: uppercase;
color: #dd052b;
letter-spacing: .08em;
font-size: 10px; }
.vgg .product-features__table th span {
position: relative;
padding-top: 1em; }
.vgg .product-features__table th span:before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
margin: auto;
height: 8px;
width: 8px;
background-color: #dd052b;
border-radius: 50%; }
.vgg .product-features__table td {
font-size: 16px;
padding: 0 1em; }
.vgg .product-features__table img {
width: 84%;
max-width: 204px;
margin: 6%;
border-radius: 50%;
box-shadow: 0 0 20px 10px rgba(100, 100, 120, 0.02), 0 0 10px 8px rgba(100, 100, 130, 0.04); }
.vgg .product-features__table span {
display: block;
line-height: 2; }
@media screen and (min-width: 768px) {
.vgg .product-features__table {
max-width: 1280px; }
.vgg .product-features__table tr {
max-width: 25%;
-webkit-flex-basis: 25%;
-ms-flex-preferred-size: 25%;
flex-basis: 25%; } }
@media screen and (min-width: 1024px) {
.vgg .product-features__table th {
font-size: 12px; }
.vgg .product-features__table td {
font-size: 20px; }
.vgg .product-features__table span {
margin-bottom: 1em; } }
@media screen and (min-width: 1280px) {
.vgg .product-features__table th {
font-size: 15px; }
.vgg .product-features__table td {
font-size: 24px; } }
.reevoo__product-detail-badge {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: 2em; }
.reevoo__product-catalog-badge {
position: absolute;
bottom: -45px;
right: -15px;
width: 60px;
height: 60px;
border-radius: 50%;
padding-left: 12px;
padding-top: 4px; }
@media (max-width: 1023px) {
.reevoo__product-catalog-badge--is-in-table {
right: -30px;
bottom: 0;
-webkit-transform: scale(0.7);
transform: scale(0.7);
-webkit-transform-origin: 100% 100%;
transform-origin: 100% 100%; } }
.reevoo__product-catalog-badge__inner {
-webkit-transform: scale(0.85);
transform: scale(0.85); }
.reevoo__product-catalog-tabbed {
margin-top: 2em;
margin-bottom: 2em; }
.reevoo__editorial-slider {
position: absolute;
bottom: 50px;
right: 20px;
z-index: 10;
width: 90px;
overflow: hidden; }
@media screen and (min-width: 768px) {
.reevoo__editorial-slider {
right: 20px;
bottom: 20px;
width: 120px; } }
@media screen and (min-width: 768px) {
.reevoo__editorial-slider reevoo-reviewable-badge {
display: none; } }
@media screen and (max-width: 767px) {
.reevoo__editorial-slider reevoo-reviewable-badge[variant=circle] {
display: none; } }
@media screen and (min-width: 768px) {
.reevoo__editorial-slider reevoo-reviewable-badge[variant=circle] {
display: block; } }
.reevoo__editorial-table {
margin-bottom: 10px; }
.vgg .guida-scelta {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: relative;
padding: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
z-index: 70;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-color: #fff; }
.vgg .guida-scelta__heading {
font-size: 13px;
padding-right: 20px;
line-height: 1; }
@media (min-width: 1366px) {
.vgg .guida-scelta__heading {
font-size: 18px; } }
.vgg .guida-scelta__link {
text-transform: uppercase;
text-decoration: underline;
font-size: 13px;
margin-left: auto;
font-weight: bold;
letter-spacing: 0.05em; }
.vgg .guida-scelta__link:link,
.vgg .guida-scelta__link:visited {
transition: color .4s;
color: #dd052b; }
.vgg .guida-scelta__link:hover {
color: #333; }
.vgg .guida-scelta__link:active {
color: #dd052b;
transition: color 0.2s; }
@media (min-width: 768px) {
.vgg .guida-scelta__link {
margin-left: 10px; } }
.vgg .guida-scelta__toggler {
margin-left: auto;
font-size: 18px;
width: 18px;
height: 18px; }
@media (max-width: 767px) {
.vgg .guida-scelta__toggler {
display: none; } }
.vgg .guida-scelta__toggler.is-active svg {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg); }
.vgg .guida-scelta__toggler svg {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .guida-scelta__panel {
background-color: #fff;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
height: 0;
left: 0;
overflow: hidden;
position: absolute;
top: 100%; }
.vgg .guida-scelta__panel-inner {
padding: 20px; }
.vgg .product-technical-sheet {
padding-top: 30px;
padding-bottom: 70px; }
.vgg .product-technical-sheet__title {
z-index: 1;
position: relative;
font-size: 20px;
color: #fff;
letter-spacing: .05em;
padding: 1em;
line-height: 1.6em;
text-align: center; }
.vgg .product-technical-sheet__title:after,
.vgg .product-technical-sheet__title:before {
content: "/";
margin: 0 .3em;
color: #e0e0e0; }
@media screen and (min-width: 375px) {
.vgg .product-technical-sheet__title {
font-size: 25px; } }
@media screen and (min-width: 768px) {
.vgg .product-technical-sheet__title {
font-size: 30px; } }
@media screen and (min-width: 1024px) {
.vgg .product-technical-sheet__title {
font-size: 34px; } }
@media screen and (min-width: 1280px) {
.vgg .product-technical-sheet__title {
font-size: 36px; } }
@media screen and (min-width: 1440px) {
.vgg .product-technical-sheet__title {
font-size: 40px; } }
.vgg .product-technical-sheet__tables {
z-index: 1;
position: relative;
max-width: 660px;
width: 84%;
margin: auto;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 20px 5px rgba(100, 100, 100, 0.2);
padding-top: 80px; }
.vgg .product-technical-sheet__tables table {
display: block;
width: 100%; }
.vgg .product-technical-sheet__tables table:last-of-type {
border-bottom: 1px solid #bfbfbf; }
.vgg .product-technical-sheet__bg {
position: absolute;
font-size: 100vw;
top: -60vw;
left: -20vw;
color: #b4b4b4;
z-index: 0; }
.vgg .product-technical-sheet__toggler {
border-top: 1px solid #bfbfbf;
font-size: 14px;
line-height: 1.6;
letter-spacing: .05em;
text-transform: uppercase;
display: block;
background-color: #ebebeb; }
.vgg .product-technical-sheet__toggler tr {
width: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
.vgg .product-technical-sheet__toggler th {
padding: .9em 30px;
text-align: left;
width: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between; }
.vgg .product-technical-sheet__toggler svg {
-webkit-transform: rotateZ(90deg);
transform: rotateZ(90deg); }
.vgg .product-technical-sheet__toggler span {
white-space: normal; }
.vgg .product-technical-sheet__toggler span,
.vgg .product-technical-sheet__toggler svg {
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .product-technical-sheet__toggler.is-active {
color: #dd052b;
background-color: transparent; }
.vgg .product-technical-sheet__toggler.is-active svg {
-webkit-transform: rotateX(180deg) rotateZ(90deg);
transform: rotateX(180deg) rotateZ(90deg); }
.vgg .product-technical-sheet__panel {
overflow: hidden;
height: 0;
display: block; }
.vgg .product-technical-sheet__panel th,
.vgg .product-technical-sheet__panel td {
text-align: left;
padding-left: 30px;
padding-right: 30px;
display: block;
font-size: 14px;
color: #808083; }
.vgg .product-technical-sheet__panel td {
color: #dd052b;
font-weight: 700; }
.vgg .product-technical-sheet__panel tr {
padding-bottom: 1em;
display: block; }
.vgg .product-technical-sheet__panel tr:first-child {
margin-top: 1em; }
.vgg .product-technical-sheet__panel tr:last-child {
margin-bottom: 1em; }
.vgg .product-technical-sheet__eu-links {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100%;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
min-height: 80px;
padding: 0.5em 0; }
.vgg .product-technical-sheet__eu-link {
display: block;
width: 100%;
text-align: center;
padding: 0;
text-transform: uppercase;
font-weight: 700;
margin: 0 auto;
font-size: 12px;
letter-spacing: .05em;
position: relative;
display: block;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .product-technical-sheet__eu-link span {
color: #dd052b;
display: inline-block;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); }
.vgg .product-technical-sheet__eu-link span:after {
content: "";
display: block;
width: 100%;
height: 1px;
bottom: 2px;
position: relative;
background-color: #dd052b;
transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden; }
@media screen and (min-width: 768px) {
.vgg .product-technical-sheet__toggler {
font-size: 18px;
cursor: pointer; }
.vgg .product-technical-sheet__toggler th {
padding: .9em 60px;
cursor: pointer; }
.vgg .product-technical-sheet__panel tr {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between; }
.vgg .product-technical-sheet__panel th {
font-size: 16px;
text-align: left;
padding-left: 60px;
padding-right: 10px; }
.vgg .product-technical-sheet__panel td {
font-size: 16px;
text-align: right;
padding-left: 10px;
padding-right: 60px; }
.vgg .product-technical-sheet__eu-link {
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
width: auto;
margin: 0 2em; }
.vgg .product-technical-sheet__eu-link:after {
content: "/";
cursor: normal;
pointer-events: none;
font-size: 3em;
font-weight: 400;
color: #bfbfbf;
position: absolute;
top: -0.5em;
right: -1em; }
.vgg .product-technical-sheet__eu-link:last-child:after {
display: none; } }
@media screen and (min-width: 768px) {
.vgg .product-technical-sheet__bg {
top: -30vw;
left: -16vw; } }
html:not(.touch) .vgg .product-technical-sheet__toggler:hover {
color: #dd052b; }
html:not(.touch) .vgg .product-intro__eu-link:hover span:after {
-webkit-transform: translate3d(0, 2px, 0);
transform: translate3d(0, 2px, 0); }
.vgg .carousel--shadow .carousel__item img {
box-shadow: 0 0 20px 10px rgba(100, 100, 120, 0.02), 0 0 10px 8px rgba(100, 100, 130, 0.04); }
.vgg .carousel__title {
font-size: 20px;
color: #dd052b;
letter-spacing: .05em;
padding: 1em;
line-height: 1.6em;
text-align: center; }
.vgg .carousel__title:after,
.vgg .carousel__title:before {
content: "/";
margin: 0 .3em;
color: #e0e0e0; }
@media screen and (min-width: 375px) {
.vgg .carousel__title {
font-size: 25px; } }
@media screen and (min-width: 768px) {
.vgg .carousel__title {
font-size: 30px; } }
@media screen and (min-width: 1024px) {
.vgg .carousel__title {
font-size: 34px; } }
@media screen and (min-width: 1280px) {
.vgg .carousel__title {
font-size: 36px; } }
@media screen and (min-width: 1440px) {
.vgg .carousel__title {
font-size: 40px; } }
.vgg .carousel__item {
width: 300px;
display: block;
max-width: 80%;
margin: auto;
text-align: center; }
.vgg .carousel__item img {
width: 160px;
margin: auto;
margin-bottom: 10px; }
.vgg .carousel__item__title {
font-size: 14px;
text-transform: uppercase;
letter-spacing: .05em;
margin: 1.2em 0; }
.vgg .carousel__item__abstract {
font-size: 12px;
line-height: 1.6;
color: #808083;
margin-bottom: 1em; }
.vgg .carousel {
margin: 0; }
.vgg .carousel .swiper-container {
width: 80%;
margin: auto;
position: static; }
.vgg .carousel .swiper-slide:first-child:last-child,
.vgg .carousel .swiper-slide:nth-child(1):nth-last-child(2),
.vgg .carousel .swiper-slide:nth-child(1):nth-last-child(2) ~ .swiper-slide {
margin: auto; }
.vgg .carousel-container {
position: relative;
padding-bottom: 30px; }
@media screen and (min-width: 480px) {
.vgg .carousel__item img {
width: 100%; }
.vgg .carousel .swiper-button-prev,
.vgg .carousel .swiper-button-next {
top: 150px; } }
@media screen and (min-width: 1024px) {
.vgg .carousel__item__title {
font-size: 16px; }
.vgg .carousel__item__abstract {
font-size: 13px; }
.vgg .carousel .swiper-button-prev,
.vgg .carousel .swiper-button-next {
top: 110px; } }
@media screen and (min-width: 1440px) {
.vgg .carousel__item__title {
font-size: 18px; }
.vgg .carousel__item__abstract {
font-size: 14px; }
.vgg .carousel .swiper-button-prev,
.vgg .carousel .swiper-button-next {
top: 150px; } }
.vgg .hero-slider {
position: relative; }
.vgg .hero-slider .swiper-container {
background-color: #fff; }
@media (min-width: 1024px) {
.vgg .hero-slider .swiper-container {
height: 450px; } }
@media (min-width: 1366px) {
.vgg .hero-slider .swiper-container {
height: 500px; } }
@media (min-width: 1600px) {
.vgg .hero-slider .swiper-container {
height: 540px; } }
.vgg .hero-slider__slide {
background-color: #fff; }
@media (min-width: 1024px) {
.vgg .hero-slider__slide {
background-color: transparent;
z-index: 1; }
.vgg .hero-slider__slide.swiper-slide-active {
z-index: 2; } }
.vgg .hero-slider__slide.is-right .hero-slider__slide-inner {
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end; }
.vgg .hero-slider__slide.is-right .hero-slider__image {
left: 25%; }
.vgg .hero-slider__slide-inner {
width: 100%;
height: 100%;
position: relative; }
@media (min-width: 1024px) {
.vgg .hero-slider__slide-inner {
display: -webkit-flex;
display: -ms-flexbox;
display: flex; } }
.vgg .hero-slider__image-container {
position: relative;
height: 0;
padding-bottom: 75%; }
@media (max-width: 767px) and (orientation: landscape) {
.vgg .hero-slider__image-container {
padding-bottom: 48%; } }
@media (max-width: 480px) {
.vgg .hero-slider__image-container {
padding-bottom: 120%; } }
@media (min-width: 768px) {
.vgg .hero-slider__image-container {
padding-bottom: 400px; } }
@media (min-width: 1024px) {
.vgg .hero-slider__image-container {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
z-index: 1;
opacity: 0;
padding-bottom: 0; } }
.vgg .hero-slider__image-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 80%;
background-position: center center;
background-size: cover; }
@media (max-width: 991px) {
.vgg .hero-slider__image-bg {
height: 100%; } }
@media (min-width: 1024px) {
.vgg .hero-slider__image-bg {
height: 100%; } }
.vgg .hero-slider__image {
position: relative;
display: block;
margin: 0 auto;
max-width: 100%; }
@media (min-width: 1024px) {
.vgg .hero-slider__image {
max-width: 40%;
position: absolute;
left: 75%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); } }
.vgg .hero-slider__content {
box-sizing: border-box;
text-align: center;
padding: 45px 20px 20px; }
@media (max-width: 767px) {
.vgg .hero-slider__content {
padding: 40px 20px; } }
@media (min-width: 768px) {
.vgg .hero-slider__content {
padding: 50px 40px; } }
@media (min-width: 1024px) {
.vgg .hero-slider__content {
text-align: left;
max-width: 50%;
padding: 40px 30px;
position: relative;
z-index: 3;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
opacity: 0; } }
@media (min-width: 1366px) {
.vgg .hero-slider__content {
padding: 40px 95px; } }
@media (min-width: 1600px) {
.vgg .hero-slider__content {
padding: 40px 120px; } }
.vgg .hero-slider__content .Icon--caret {
font-size: 12px; }
.vgg .hero-slider__heading {
font-size: 24px;
letter-spacing: .05em;
font-weight: 500;
margin-bottom: 10px;
text-transform: uppercase;
line-height: 1;
width: 100%; }
@media (min-width: 768px) {
.vgg .hero-slider__heading {
margin-bottom: 20px;
font-size: 40px; } }
@media (min-width: 1366px) {
.vgg .hero-slider__heading {
font-size: 58px; } }
@media (min-width: 1600px) {
.vgg .hero-slider__heading {
font-size: 54px; } }
.vgg .hero-slider__abstract {
font-size: 13px;
margin-bottom: 15px;
width: 100%; }
@media (min-width: 768px) {
.vgg .hero-slider__abstract {
font-size: 16px;
margin-bottom: 30px; } }
@media (min-width: 1366px) {
.vgg .hero-slider__abstract {
font-size: 13px;
font-weight: 500; } }
.vgg .hero-slider__cta {
vertical-align: middle; }
.vgg .hero-slider__cta .Icon--caret-circle {
font-size: 36px;
margin-left: 0; }
.vgg .hero-slider__links-list {
margin-top: 20px; }
@media (min-width: 1024px) {
.vgg .hero-slider__links-list {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; } }
.vgg .hero-slider__link {
font-size: 13px;
text-transform: uppercase;
letter-spacing: .05em;
position: relative;
display: inline-block; }
.vgg .hero-slider__link:link,
.vgg .hero-slider__link:visited {
transition: color .4s;
color: #333; }
.vgg .hero-slider__link:hover {
color: #dd052b; }
.vgg .hero-slider__link:active {
color: #dd052b;
transition: color 0.2s; }
.vgg .hero-slider__link::after {
content: "";
top: 120%;
width: 100%;
height: 1px;
background-color: #dd052b;
position: absolute;
left: 0; }
.vgg .hero-slider__link:not(:first-child) {
margin-left: 40px; }
.vgg .hero-slider__link:not(:first-child):before {
content: "";
border-left: 1px solid #333;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
display: inline-block;
width: 1px;
height: 26px;
position: absolute;
top: -4px;
left: -20px;
width: 5px; }
@media (min-width: 768px) {
.vgg .hero-slider__link:not(:first-child):before {
border-left-width: 2px; } }
.vgg .hero-slider__white-panel {
display: none; }
@media (min-width: 1024px) {
.vgg .hero-slider__white-panel {
position: absolute;
top: 0;
width: 120%;
height: 100%;
background-color: #fff;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
z-index: 2;
left: -10%;
-webkit-transform-origin: left center;
transform-origin: left center;
opacity: 1;
display: block;
overflow: hidden; }
.vgg .hero-slider__white-panel .Icon {
position: absolute;
top: 50%;
right: 0;
font-size: 700px;
color: #ebebeb;
-webkit-transform: skewX(25deg) scaleX(1.8) translate(56%, -48%);
transform: skewX(25deg) scaleX(1.8) translate(56%, -48%);
opacity: 0; } }
@media (min-width: 1600px) {
.vgg .hero-slider__white-panel .Icon {
font-size: 1000px; } }
.vgg .hero-slider__red-panel {
display: none; }
@media (min-width: 1024px) {
.vgg .hero-slider__red-panel {
position: absolute;
top: 0;
left: -10%;
width: 120%;
height: 100%;
background-color: #dd052b;
z-index: 4;
-webkit-transform-origin: left center;
transform-origin: left center;
-webkit-transform: skewX(-15deg) scale(0, 1);
transform: skewX(-15deg) scale(0, 1);
display: block; } }
.vgg .hero-slider__pagination {
position: absolute;
top: 0;
right: 0;
text-align: center;
z-index: 1;
padding-top: 75%;
bottom: auto; }
@media (max-width: 767px) and (orientation: landscape) {
.vgg .hero-slider__pagination {
padding-top: 42%; } }
@media (max-width: 480px) {
.vgg .hero-slider__pagination {
padding-top: 110%; } }
@media (min-width: 768px) {
.vgg .hero-slider__pagination {
padding-top: 360px; } }
@media (min-width: 1024px) {
.vgg .hero-slider__pagination {
bottom: 50%;
top: auto;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
left: auto;
width: 60px;
-webkit-transform: translateY(50%);
transform: translateY(50%);
padding-top: 0; }
.vgg .hero-slider__pagination .swiper-pagination-bullet {
margin-bottom: 9px;
margin-top: 9px; } }
.vgg .hero-slider-v2 {
background: #fff; }
.vgg .hero-slider-v2 * {
box-sizing: border-box; }
.vgg .hero-slider-v2 .swiper-slide {
background: #fff;
overflow: hidden;
position: relative; }
@media (min-width: 1024px) {
.vgg .hero-slider-v2 .swiper-slide {
height: 600px; } }
@media (min-width: 1366px) {
.vgg .hero-slider-v2 .swiper-slide {
height: 660px; } }
@media (min-width: 1600px) {
.vgg .hero-slider-v2 .swiper-slide {
height: 720px; } }
.vgg .hero-slider-v2__pagination {
bottom: auto;
left: 0;
height: auto;
position: absolute;
right: 0;
top: calc(66vw + 10px); }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__pagination {
bottom: 26px;
top: auto; } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__pagination--side {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
height: 100%;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
left: auto;
right: 40px;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: auto; }
.vgg .hero-slider-v2__pagination--side .swiper-pagination-bullet {
margin: 9px 12px; } }
.vgg .hero-slider-v2__image-container {
position: relative; }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__image-container {
bottom: 0;
left: auto;
right: 0;
top: 0;
z-index: 1;
position: absolute;
width: 62.5%; } }
@media (max-width: 1023px) {
.vgg .hero-slider-v2__image {
background: #fff !important; } }
.vgg .hero-slider-v2__image img {
display: block;
height: auto;
width: 100%; }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__image {
bottom: 0;
left: 0;
right: 0;
top: 0;
z-index: 1;
position: absolute;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
opacity: 0;
-webkit-transform: translate(150px, 0);
transform: translate(150px, 0);
transition: opacity 0s, -webkit-transform 0s;
transition: opacity 0s, transform 0s;
transition: opacity 0s, transform 0s, -webkit-transform 0s; }
.vgg .hero-slider-v2__image img {
display: none; } }
.vgg .hero-slider-v2__white-panel {
background: #fff;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg); }
@media (max-width: 1023px) {
.vgg .hero-slider-v2__white-panel {
display: none; } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__white-panel--left {
bottom: 0;
left: -110px;
right: auto;
top: 0;
z-index: 1;
position: absolute;
width: 220px;
display: block; }
.vgg .hero-slider-v2__white-panel--right {
display: none; } }
.vgg .hero-slider-v2__bar {
transition: opacity 0s, -webkit-transform 0s;
transition: opacity 0s, transform 0s;
transition: opacity 0s, transform 0s, -webkit-transform 0s; }
@media (max-width: 1023px) {
.vgg .hero-slider-v2__bar {
display: none; } }
.vgg .hero-slider-v2__bar--red,
.vgg .hero-slider-v2__bar--red2 {
background: #bd0426; }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__bar--red, .vgg .hero-slider-v2__bar--red2 {
width: 40px;
height: 47%; } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__bar--red {
bottom: auto;
left: 80px;
right: auto;
top: 0;
z-index: 4;
position: absolute;
-webkit-transform: skewX(-15deg) translate(0, -100%);
transform: skewX(-15deg) translate(0, -100%); } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__bar--red2 {
display: none; } }
.vgg .hero-slider-v2__bar--dark {
background: rgba(0, 0, 0, 0.1); }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__bar--dark {
bottom: 0;
left: 10px;
right: auto;
top: auto;
z-index: 5;
position: absolute;
height: 54%;
-webkit-transform: skewX(-15deg) translate(0, 100%);
transform: skewX(-15deg) translate(0, 100%);
width: 135px; } }
.vgg .hero-slider-v2__content {
padding: 30px 15px 10px;
text-align: center; }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__content {
padding: 0 0 0 6.5%;
opacity: 0;
text-align: left;
-webkit-transform: translate(0, 50%);
transform: translate(0, 50%);
transition: opacity 0s, -webkit-transform 0s;
transition: opacity 0s, transform 0s;
transition: opacity 0s, transform 0s, -webkit-transform 0s; }
.vgg .hero-slider-v2__content__wrapper {
bottom: auto;
left: 0;
right: auto;
top: 50%;
z-index: 3;
position: absolute;
max-width: 540px;
-webkit-transform: translate(0, -50%);
transform: translate(0, -50%);
width: 37.5%; } }
@media (max-width: 1023px) {
.vgg .hero-slider-v2__content__wrapper .hero-slider-v2__bar {
display: none; } }
.vgg .hero-slider-v2__title {
color: #dd052b;
font-size: 8vw;
font-weight: bold;
margin: 3.2vw 0;
text-transform: uppercase; }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__title {
font-size: 60px;
margin: 18px 0;
padding-right: 8%; } }
.vgg .hero-slider-v2__subtitle {
color: #333;
font-size: 20px;
letter-spacing: .1px;
margin: 3.2vw 0 5.3333333333vw; }
@media screen and (min-width: 620px) {
.vgg .hero-slider-v2__subtitle {
font-size: 3.2258064516vw; } }
@media screen and (min-width: 750px) {
.vgg .hero-slider-v2__subtitle {
font-size: 4vw;
margin: 3.2vw 0 5.3333333333vw; } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__subtitle {
font-size: 30px;
margin: 18px 0 28px;
padding-right: 4%; } }
.vgg .hero-slider-v2__description {
font-size: calc(14px + 0.5333333333vw);
letter-spacing: .1px;
line-height: 1.333;
margin: 22px 0; }
@media screen and (min-width: 750px) {
.vgg .hero-slider-v2__description {
font-size: 2.4vw;
margin: 2.9333333333vw 0; } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__description {
font-size: 18px;
margin: 22px 0; } }
.vgg .hero-slider-v2__caption {
font-size: 16px;
font-weight: bold;
margin: 22px 0 60px;
text-transform: uppercase; }
@media screen and (min-width: 750px) {
.vgg .hero-slider-v2__caption {
font-size: 1.8666666667vw;
margin: 2.9333333333vw 0 8vw; } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__caption {
font-size: 16px;
margin: 22px 0 60px; } }
.vgg .hero-slider-v2__buttons {
margin: 11.4666666667vw 0 4.6666666667vw;
text-transform: uppercase; }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__buttons {
margin: 60px 0 35px; } }
.vgg .hero-slider-v2__links {
margin: 4.6666666667vw 0; }
@media (min-width: 1024px) {
.vgg .hero-slider-v2__links {
margin: 35px 0; } }
.vgg .hero-slider-v2__link {
display: inline-block;
font-size: 13px;
letter-spacing: .05em;
position: relative;
text-transform: uppercase; }
.vgg .hero-slider-v2__link:link,
.vgg .hero-slider-v2__link:visited {
transition: color .4s;
color: #333; }
.vgg .hero-slider-v2__link:hover {
color: #dd052b; }
.vgg .hero-slider-v2__link:active {
color: #dd052b;
transition: color 0.2s; }
.vgg .hero-slider-v2__link::after {
background-color: #dd052b;
content: "";
height: 1px;
left: 0;
position: absolute;
top: 120%;
width: 100%; }
.vgg .hero-slider-v2__link:not(:first-child) {
margin-left: 40px; }
.vgg .hero-slider-v2__link:not(:first-child):before {
border-left: 1px solid #333;
content: "";
display: inline-block;
height: 26px;
left: -20px;
position: absolute;
top: -4px;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
width: 5px; }
@media (min-width: 768px) {
.vgg .hero-slider-v2__link:not(:first-child):before {
border-left-width: 2px; } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2 .swiper-slide-active.swiper-slide-active.swiper-slide-active .hero-slider-v2__image {
opacity: 1;
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
transition: opacity .45s ease .2s, -webkit-transform .65s ease;
transition: opacity .45s ease .2s, transform .65s ease;
transition: opacity 0.45s ease 0.2s, transform 0.65s ease, -webkit-transform 0.65s ease; }
.vgg .hero-slider-v2 .swiper-slide-active.swiper-slide-active.swiper-slide-active .hero-slider-v2__content {
opacity: 1;
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
transition: opacity .35s ease .5s, -webkit-transform .35s ease .5s;
transition: opacity .35s ease .5s, transform .35s ease .5s;
transition: opacity 0.35s ease 0.5s, transform 0.35s ease 0.5s, -webkit-transform 0.35s ease 0.5s; }
.vgg .hero-slider-v2 .swiper-slide-active.swiper-slide-active.swiper-slide-active .hero-slider-v2__bar {
opacity: 1;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
transition: opacity .15s ease .3s, -webkit-transform .35s ease .3s;
transition: opacity .15s ease .3s, transform .35s ease .3s;
transition: opacity 0.15s ease 0.3s, transform 0.35s ease 0.3s, -webkit-transform 0.35s ease 0.3s; } }
@media (max-width: 1023px) {
.vgg .hero-slider-v2.mobile-skew .hero-slider-v2__white-panel {
background: #fff;
display: block;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg); }
.vgg .hero-slider-v2.mobile-skew .hero-slider-v2__white-panel--left {
bottom: 0;
left: auto;
right: 92%;
top: 0;
z-index: 2;
position: absolute;
width: 50%; }
.vgg .hero-slider-v2.mobile-skew .hero-slider-v2__white-panel--right {
bottom: 0;
left: 93%;
right: auto;
top: 0;
z-index: 2;
position: absolute;
width: 50%; }
.vgg .hero-slider-v2.mobile-skew .hero-slider-v2__bar {
display: block;
height: 51%;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
transition: opacity 0s, -webkit-transform 0s;
transition: opacity 0s, transform 0s;
transition: opacity 0s, transform 0s, -webkit-transform 0s; }
.vgg .hero-slider-v2.mobile-skew .hero-slider-v2__bar--red,
.vgg .hero-slider-v2.mobile-skew .hero-slider-v2__bar--red2 {
background: #bd0426;
width: 40px;
height: 41.5%; }
.vgg .hero-slider-v2.mobile-skew .hero-slider-v2__bar--red {
bottom: auto;
left: 5%;
right: auto;
top: 0;
z-index: 4;
position: absolute; }
.vgg .hero-slider-v2.mobile-skew .hero-slider-v2__bar--red2 {
bottom: 0;
left: auto;
right: 9.5%;
top: auto;
z-index: 4;
position: absolute; }
.vgg .hero-slider-v2.mobile-skew .hero-slider-v2__bar--dark {
bottom: 0;
left: calc(5% - 62px);
right: auto;
top: auto;
z-index: 5;
position: absolute;
background: rgba(0, 0, 0, 0.1);
height: 59.4%;
width: 13.4%; } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2.reversed .hero-slider-v2__image {
-webkit-transform: translate(-150px, 0);
transform: translate(-150px, 0); }
.vgg .hero-slider-v2.reversed .hero-slider-v2__image-container {
left: 0;
right: auto; }
.vgg .hero-slider-v2.reversed .hero-slider-v2__white-panel--left {
left: auto;
right: -110px; }
.vgg .hero-slider-v2.reversed .hero-slider-v2__bar--red {
left: auto;
right: -20px; }
.vgg .hero-slider-v2.reversed .hero-slider-v2__bar--dark {
left: auto;
right: 100px; }
.vgg .hero-slider-v2.reversed .hero-slider-v2__content {
padding: 0 6.5% 0 0;
text-align: right; }
.vgg .hero-slider-v2.reversed .hero-slider-v2__content__wrapper {
left: auto;
right: 0; }
.vgg .hero-slider-v2.reversed .hero-slider-v2__title {
padding-left: 8%;
padding-right: 0; }
.vgg .hero-slider-v2.reversed .hero-slider-v2__subtitle {
padding-left: 4%;
padding-right: 0; }
.vgg .hero-slider-v2.reversed .hero-slider-v2__pagination--side {
left: 40px;
right: auto; } }
@media (min-width: 1024px) {
.vgg .hero-slider-v2.landing .swiper-slide {
height: 600px; }
.vgg .hero-slider-v2.landing .swiper-slide-active.swiper-slide-active.swiper-slide-active .hero-slider-v2__content {
transition: opacity .35s ease .3s, -webkit-transform .35s ease .3s;
transition: opacity .35s ease .3s, transform .35s ease .3s;
transition: opacity 0.35s ease 0.3s, transform 0.35s ease 0.3s, -webkit-transform 0.35s ease 0.3s; }
.vgg .hero-slider-v2.landing .hero-slider-v2__image {
bottom: 0;
left: 0;
right: 0;
top: 0;
z-index: 1;
position: absolute;
-webkit-transform: translate(0, 0);
transform: translate(0, 0); }
.vgg .hero-slider-v2.landing .hero-slider-v2__image-container {
bottom: 0;
left: auto;
right: 0;
top: 0;
z-index: 1;
position: absolute;
width: 100%; }
.vgg .hero-slider-v2.landing .hero-slider-v2__image-container .hero-slider-v2__white-panel,
.vgg .hero-slider-v2.landing .hero-slider-v2__image-container .hero-slider-v2__bar {
display: none; }
.vgg .hero-slider-v2.landing .hero-slider-v2__content {
background: #fff;
padding-bottom: 15px;
padding-top: 15px;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0); }
.vgg .hero-slider-v2.landing .hero-slider-v2__content:before {
bottom: 0;
left: auto;
right: -110px;
top: 0;
z-index: -1;
position: absolute;
background: #fff;
content: "";
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
width: 220px; }
.vgg .hero-slider-v2.landing .hero-slider-v2__content__wrapper .hero-slider-v2__bar--red {
left: auto;
right: -120px;
top: -12%;
height: 56%;
opacity: 0;
width: 30px; }
.vgg .hero-slider-v2.landing .hero-slider-v2__content__wrapper .hero-slider-v2__bar--dark {
bottom: -9%;
left: auto;
right: -100px;
height: 70%;
opacity: 0;
width: 60px; }
.vgg .hero-slider-v2.landing .hero-slider-v2__title {
font-size: 50px;
margin: 34px 0;
padding-left: 0;
padding-right: 0; }
.vgg .hero-slider-v2.landing .hero-slider-v2__description {
font-size: 18px;
margin: 34px 0 22px;
padding-left: 0;
padding-right: 0; }
.vgg .hero-slider-v2.landing .hero-slider-v2__caption {
font-size: 16px;
margin: 22px 0 40px; }
.vgg .hero-slider-v2.landing .hero-slider-v2__buttons {
margin: 50px 0 25px; }
.vgg .hero-slider-v2.landing.reversed .hero-slider-v2__content {
-webkit-transform: translate(50%, 0);
transform: translate(50%, 0); }
.vgg .hero-slider-v2.landing.reversed .hero-slider-v2__content:before {
left: -110px;
right: auto; }
.vgg .hero-slider-v2.landing.reversed .hero-slider-v2__content__wrapper .hero-slider-v2__bar--red {
left: -38px;
right: auto;
top: -12%; }
.vgg .hero-slider-v2.landing.reversed .hero-slider-v2__content__wrapper .hero-slider-v2__bar--dark {
bottom: -9%;
left: -154px;
right: auto; } }
.vgg .editorial-slider {
position: relative; }
.vgg .editorial-slider .swiper-button-prev,
.vgg .editorial-slider .swiper-button-next {
background: #fff;
border: none; }
.vgg .editorial-slider .swiper-button-disabled {
opacity: 0.2; }
.vgg .editorial-slider--is-slim .editorial-slider__slide {
height: 280px; }
@media (min-width: 768px) {
.vgg .editorial-slider--is-slim .editorial-slider__slide {
height: auto; } }
@media (min-width: 1600px) {
.vgg .editorial-slider--is-slim .editorial-slider__slide {
height: 460px; } }
@media screen and (min-width: 1920px) {
.vgg .editorial-slider--is-slim .editorial-slider__slide {
height: 520px; } }
@media (min-width: 768px) {
.vgg .editorial-slider--is-slim .editorial-slider__slide-inner {
height: 0;
padding-bottom: 50%; } }
@media (min-width: 1024px) {
.vgg .editorial-slider--is-slim .editorial-slider__slide-inner {
padding-bottom: 30%; } }
@media (min-width: 1600px) {
.vgg .editorial-slider--is-slim .editorial-slider__slide-inner {
padding-bottom: 0;
height: 460px; } }
@media screen and (min-width: 1920px) {
.vgg .editorial-slider--is-slim .editorial-slider__slide-inner {
height: 520px; } }
.vgg .editorial-slider--is-slim .editorial-slider__heading {
font-size: 24px; }
@media (min-width: 768px) {
.vgg .editorial-slider--is-slim .editorial-slider__heading {
font-size: 35px; } }
@media (min-width: 1366px) {
.vgg .editorial-slider--is-slim .editorial-slider__heading {
font-size: 46px; } }
@media (min-width: 1600px) {
.vgg .editorial-slider--is-slim .editorial-slider__heading {
font-size: 56px; } }
.vgg .editorial-slider__slide-inner {
width: 100%;
height: 100%; }
.vgg .editorial-slider__slide-inner::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2; }
@media (min-width: 768px) {
.vgg .editorial-slider__slide-inner {
height: 0;
padding-bottom: 66.666%; } }
@media (min-width: 1024px) {
.vgg .editorial-slider__slide-inner {
padding-bottom: 40%; } }
@media (min-width: 1366px) {
.vgg .editorial-slider__slide-inner {
padding-bottom: 33.333%; } }
@media screen and (min-width: 1440px) {
.vgg .editorial-slider__slide-inner {
padding-bottom: 40%; } }
@media (min-width: 1600px) {
.vgg .editorial-slider__slide-inner {
padding-bottom: 0;
height: 720px; } }
.vgg .editorial-slider__slide {
height: 355px; }
@media (min-width: 768px) {
.vgg .editorial-slider__slide {
height: auto; } }
@media (min-width: 1600px) {
.vgg .editorial-slider__slide {
height: 720px; } }
.vgg .editorial-slider__slide.is-left .editorial-slider__slide-inner::before {
background: rgba(0, 0, 0, 0.3); }
@media (min-width: 768px) {
.vgg .editorial-slider__slide.is-left .editorial-slider__slide-inner::before {
background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 30%, rgba(0, 0, 0, 0) 80%); } }
@media (min-width: 1366px) {
.vgg .editorial-slider__slide.is-left .editorial-slider__slide-inner::before {
background: linear-gradient(to right, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 60%); } }
.vgg .editorial-slider__slide.is-left .editorial-slider__image {
background-position: right center; }
@media (min-width: 768px) {
.vgg .editorial-slider__slide.is-left .editorial-slider__content {
left: 60px;
right: auto; } }
@media (min-width: 1366px) {
.vgg .editorial-slider__slide.is-left .editorial-slider__content {
left: 100px; } }
.vgg .editorial-slider__slide.is-right .editorial-slider__slide-inner::before {
background: rgba(0, 0, 0, 0.3); }
@media (min-width: 768px) {
.vgg .editorial-slider__slide.is-right .editorial-slider__slide-inner::before {
background: linear-gradient(to left, rgba(0, 0, 0, 0.35) 30%, rgba(0, 0, 0, 0) 80%); } }
@media (min-width: 1366px) {
.vgg .editorial-slider__slide.is-right .editorial-slider__slide-inner::before {
background: linear-gradient(to left, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 60%); } }
.vgg .editorial-slider__slide.is-right .editorial-slidegitr__image {
background-position: left center; }
@media (min-width: 768px) {
.vgg .editorial-slider__slide.is-right .editorial-slider__content {
right: 60px;
left: auto; } }
@media (min-width: 1366px) {
.vgg .editorial-slider__slide.is-right .editorial-slider__content {
right: 100px; } }
.vgg .editorial-slider__slide.has-notext .editorial-slider__content {
left: 50%;
right: auto;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%); }
.vgg .editorial-slider__image {
height: 100%;
width: 100%;
background-size: cover; }
@media (min-width: 768px) {
.vgg .editorial-slider__image {
position: absolute;
top: 0;
left: 0;
z-index: 1; } }
.vgg .editorial-slider__image img {
max-width: 100%;
display: block;
height: auto;
width: 100%; }
.vgg .editorial-slider__content {
position: absolute;
top: 50%;
left: 30px;
right: 30px;
-webkit-transform: translateY(-55%);
transform: translateY(-55%);
box-sizing: border-box;
z-index: 3; }
@media (min-width: 768px) {
.vgg .editorial-slider__content {
max-width: 400px;
padding-bottom: 40px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%); } }
@media (min-width: 1024px) {
.vgg .editorial-slider__content {
max-width: 600px; } }
.vgg .editorial-slider__content .Icon--caret {
font-size: 12px; }
.vgg .editorial-slider__heading {
font-size: 30px;
letter-spacing: .05em;
font-weight: bold;
margin-bottom: 15px;
color: #fff;
text-transform: uppercase;
line-height: 1; }
@media (min-width: 768px) {
.vgg .editorial-slider__heading {
font-size: 44px; } }
@media (min-width: 1366px) {
.vgg .editorial-slider__heading {
font-size: 58px; } }
@media (min-width: 1600px) {
.vgg .editorial-slider__heading {
font-size: 70px; } }
.vgg .editorial-slider__abstract {
font-size: 13px;
color: #fff;
margin-bottom: 30px; }
@media (min-width: 768px) {
.vgg .editorial-slider__abstract {
font-size: 16px; } }
@media (min-width: 1366px) {
.vgg .editorial-slider__abstract {
font-size: 18px; } }
.vgg .editorial-slider__pagination {
position: absolute;
bottom: 10px;
left: 0;
text-align: center;
z-index: 1; }
@media (min-width: 768px) {
.vgg .editorial-slider__pagination {
bottom: 30px; } }
.vgg .editorial-tripletta {
width: 84%;
margin: auto; }
.vgg .editorial-tripletta .swiper-pagination,
.vgg .editorial-tripletta .hero-slider-v2__pagination {
position: absolute; }
.vgg .editorial-tripletta__text {
padding: 18px; }
.vgg .editorial-tripletta__text .editorial-text {
line-height: 2em; }
.vgg .editorial-tripletta__text h2,
.vgg .editorial-tripletta__text h3 {
text-transform: uppercase;
color: #dd052b; }
.vgg .editorial-tripletta__text h2:first-child,
.vgg .editorial-tripletta__text h3:first-child {
position: relative; }
.vgg .editorial-tripletta__text h2:first-child:after,
.vgg .editorial-tripletta__text h3:first-child:after {
content: "";
height: 35px;
width: 2px;
background-color: #dd052b;
position: absolute;
top: -42px;
margin: auto;
left: 0;
z-index: 1; }
.vgg .editorial-tripletta__text:first-child:last-child {
width: 100%; }
.vgg .editorial-tripletta__text:first-child:last-child h2:first-child:after,
.vgg .editorial-tripletta__text:first-child:last-child h3:first-child:after {
display: none; }
.vgg .editorial-tripletta__cta {
margin-top: 10px; }
.vgg .editorial-tripletta__slider__video:after {
content: "";
width: 50px;
height: 50px;
position: absolute;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
border-radius: 6px;
display: block;
bottom: 0;
top: 0;
left: 0;
right: 0;
background-color: #dd052b;
margin: auto; }
.vgg .editorial-tripletta__slider__video:before {
content: "";
width: 0;
height: 0;
position: absolute;
display: block;
bottom: 0;
top: 0;
left: 0;
right: 0;
margin: auto;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid #fff;
z-index: 1;
border-radius: 10px; }
.vgg .editorial-tripletta__slider img {
width: 100%; }
@media screen and (min-width: 1024px) {
.vgg .editorial-tripletta {
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
.vgg .editorial-tripletta--flipback {
-webkit-flex-direction: row-reverse;
-ms-flex-direction: row-reverse;
flex-direction: row-reverse; }
.vgg .editorial-tripletta--flipback .editorial-tripletta__text h2:first-child:after,
.vgg .editorial-tripletta--flipback .editorial-tripletta__text h3:first-child:after {
right: auto;
left: 103%; }
.vgg .editorial-tripletta__slider {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%;
width: 50%; }
.vgg .editorial-tripletta__text {
margin: 0;
padding: 17px 43px;
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.vgg .editorial-tripletta__text &gt; * {
max-width: 100%; }
.vgg .editorial-tripletta__text .editorial-text {
width: 100%; }
.vgg .editorial-tripletta__text h2:first-child:after,
.vgg .editorial-tripletta__text h3:first-child:after {
height: 2px;
width: 15%;
top: 0;
bottom: 0;
left: auto;
right: 103%; }
.vgg .editorial-tripletta__text:first-child:last-child {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; }
.vgg .editorial-tripletta__cta {
margin-top: auto; } }
@media screen and (min-width: 1280px) {
.vgg .editorial-tripletta__text {
padding: 32px 60px; }
.vgg .editorial-tripletta__text h2:first-child:after,
.vgg .editorial-tripletta__text h3:first-child:after {
width: 18%; } }
@media screen and (min-width: 1440px) {
.vgg .editorial-tripletta__text {
padding: 48px 84px; }
.vgg .editorial-tripletta__text h2:first-child:after,
.vgg .editorial-tripletta__text h3:first-child:after {
width: 22%; } }
html:not(.touch) .vgg .editorial-tripletta__slider__video:hover:before {
-webkit-animation-name: videoButtonHover;
animation-name: videoButtonHover;
-webkit-animation-duration: .2s;
animation-duration: .2s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards; }
.vgg .editorial-table__heading-block {
padding: 0 20px; }
@media (min-width: 768px) {
.vgg .editorial-table__heading-block {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; } }
@media (min-width: 1024px) {
.vgg .editorial-table__heading-block {
padding: 20px 40px; } }
@media (min-width: 1024px) {
.vgg .editorial-table__heading {
transition: padding-left 0.333s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.vgg .editorial-table__heading.has-padding {
padding-left: 20%; } }
.vgg .editorial-table__table {
width: 100%;
margin-bottom: 25px; }
@media (min-width: 768px) {
.vgg .editorial-table__table {
margin-bottom: 50px; } }
@media (min-width: 1366px) {
.vgg .editorial-table__table {
margin-bottom: 100px; } }
.vgg .editorial-table__table.is-hidden {
display: none; }
.vgg .editorial-table__table td.is-hidden {
opacity: 0;
transition: opacity 0.666s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .editorial-table__table thead {
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
.vgg .editorial-table__table thead tr {
padding: 0 20px;
display: block;
margin-bottom: 40px;
width: 100%; }
@media (min-width: 1024px) {
.vgg .editorial-table__table thead tr {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-left: 40px;
padding-right: 40px;
margin-bottom: 0; } }
.vgg .editorial-table__table thead th {
height: 1px;
margin-top: -1px;
overflow: hidden;
clip: rect(0 0 0 0);
display: block; }
@media (min-width: 1024px) {
.vgg .editorial-table__table thead th {
-webkit-flex-basis: 20%;
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
max-width: 20%; } }
.vgg .editorial-table__table thead td {
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1); }
@media (max-width: 1023px) {
.vgg .editorial-table__table thead td {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
border-radius: 7px;
background-color: #fff;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin-bottom: 10px;
box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08); } }
@media (min-width: 1024px) {
.vgg .editorial-table__table thead td {
-webkit-flex-basis: 25.666%;
-ms-flex-preferred-size: 25.666%;
flex-basis: 25.666%;
max-width: 25.666%;
background-color: #fff;
border-radius: 7px 7px 0 0;
padding: 20px;
margin: 30px .5% 0;
position: relative;
box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.07);
display: block; } }
@media (min-width: 1366px) {
.vgg .editorial-table__table thead td {
padding: 40px; } }
.vgg .editorial-table__table tbody tr {
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
@media (max-width: 1023px) {
.vgg .editorial-table__table tbody tr {
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around;
background-color: #fff;
border-bottom: 1px solid #e0e0e0; } }
@media (min-width: 1024px) {
.vgg .editorial-table__table tbody tr {
padding-left: 40px;
padding-right: 40px;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
cursor: pointer; }
.vgg .editorial-table__table tbody tr:hover th:not(.visuallyhidden) {
color: #dd052b; }
.vgg .editorial-table__table tbody tr:hover td {
background-color: #f5f5f5;
color: #808083; } }
.vgg .editorial-table__table tbody th:not(.visuallyhidden) {
letter-spacing: .08em;
text-transform: uppercase;
padding: 10px 20px; }
@media (max-width: 1023px) {
.vgg .editorial-table__table tbody th:not(.visuallyhidden) {
font-size: 13px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%;
color: #dd052b;
background-color: #f5f5f5;
border-bottom: 1px solid #e0e0e0; } }
@media (min-width: 1024px) {
.vgg .editorial-table__table tbody th:not(.visuallyhidden) {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-basis: 20%;
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
max-width: 20%;
text-align: left;
font-size: 14px;
transition: color 0.333s cubic-bezier(0.77, 0, 0.175, 1);
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; } }
.vgg .editorial-table__table tbody th:not(.visuallyhidden):first-child:nth-last-child(1) {
-webkit-transform: scale(1, 0);
transform: scale(1, 0);
-webkit-transform-origin: 0 50%;
transform-origin: 0 50%;
transition: -webkit-transform 0.333s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.333s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.333s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.333s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .editorial-table__table tbody td {
font-size: 12px;
padding: 10px 20px;
text-align: center; }
@media (max-width: 1023px) {
.vgg .editorial-table__table tbody td {
-webkit-flex-basis: 33.333%;
-ms-flex-preferred-size: 33.333%;
flex-basis: 33.333%;
max-width: 33.333%; } }
@media (min-width: 1024px) {
.vgg .editorial-table__table tbody td {
-webkit-flex-basis: 25.666%;
-ms-flex-preferred-size: 25.666%;
flex-basis: 25.666%;
max-width: 25.666%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-size: 15px;
background-color: #fff;
padding: 20px;
margin: 0 .5%;
position: relative;
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1);
box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.07);
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; }
.vgg .editorial-table__table tbody td::before,
.vgg .editorial-table__table tbody td::after {
content: "";
position: absolute;
height: 1px;
background-color: #f5f5f5;
left: 40px;
right: 40px; }
.vgg .editorial-table__table tbody td::before {
top: 0; }
.vgg .editorial-table__table tbody td::after {
bottom: -1px; } }
@media (min-width: 1366px) {
.vgg .editorial-table__table tbody td {
padding: 20px 40px; } }
.vgg .editorial-table__table .editorial-table__sticky-product-names {
background-color: #bfbfbf;
z-index: 5; }
.vgg .editorial-table__table .editorial-table__sticky-product-names td {
color: #fff;
text-transform: uppercase; }
@media (min-width: 768px) {
.vgg .editorial-table__table .editorial-table__sticky-product-names td {
font-size: 15px; } }
@media (min-width: 1024px) {
.vgg .editorial-table__table .editorial-table__sticky-product-names {
display: none; } }
.vgg .editorial-table__table tfoot tr {
display: -webkit-flex;
display: -ms-flexbox;
display: flex; }
@media (max-width: 1023px) {
.vgg .editorial-table__table tfoot tr {
background-color: #f5f5f5;
border-bottom: 1px solid #e0e0e0;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around; } }
@media (min-width: 1024px) {
.vgg .editorial-table__table tfoot tr {
padding-left: 40px;
padding-right: 40px; } }
.vgg .editorial-table__table tfoot th {
clip: rect(0 0 0 0);
display: block;
height: 1px;
margin-top: -1px;
overflow: hidden; }
@media (min-width: 1024px) {
.vgg .editorial-table__table tfoot th {
-webkit-flex-basis: 20%;
-ms-flex-preferred-size: 20%;
flex-basis: 20%;
max-width: 20%; } }
.vgg .editorial-table__table tfoot td {
transition: all 0.333s cubic-bezier(0.77, 0, 0.175, 1); }
@media (max-width: 1023px) {
.vgg .editorial-table__table tfoot td {
border-bottom: 1px solid #e0e0e0;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 20px;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%; } }
@media (min-width: 1024px) {
.vgg .editorial-table__table tfoot td {
-webkit-flex-basis: 25.666%;
-ms-flex-preferred-size: 25.666%;
flex-basis: 25.666%;
max-width: 25.666%;
background-color: #fff;
border-radius: 0 0 7px 7px;
display: block;
margin: 0 .5%;
padding: 40px 20px;
text-align: center;
position: relative;
box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.07); } }
@media (min-width: 1366px) {
.vgg .editorial-table__table tfoot td {
padding: 40px; } }
.vgg .editorial-table__table .Icon--delete {
color: #dd052b;
margin-right: 5px; }
.vgg .editorial-table__table .Icon--checkmark {
color: #8cc64e;
font-size: 1.2em;
margin-right: 5px; }
.vgg .editorial-table__image {
max-width: 100%;
display: block; }
@media (max-width: 1023px) {
.vgg .editorial-table__image {
width: 120px;
height: 120px;
border-radius: 7px; } }
@media (min-width: 1024px) {
.vgg .editorial-table__image {
margin-bottom: 35px;
display: block;
margin-left: auto;
margin-right: auto; } }
.vgg .editorial-table__image-header {
position: relative;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0; }
.vgg .editorial-table__product-heading {
position: relative; }
@media (max-width: 1023px) {
.vgg .editorial-table__product-heading {
padding-left: 30px; } }
@media (min-width: 1024px) {
.vgg .editorial-table__product-heading {
max-width: 320px;
margin-left: auto;
margin-right: auto; } }
.vgg .editorial-table__name,
.vgg .editorial-table__name--footer {
font-size: 14px;
text-transform: uppercase;
margin-bottom: 10px;
letter-spacing: 0.05em; }
@media (min-width: 768px) {
.vgg .editorial-table__name, .vgg .editorial-table__name--footer {
font-size: 18px; } }
@media (min-width: 1366px) {
.vgg .editorial-table__name, .vgg .editorial-table__name--footer {
font-size: 22px; } }
.vgg .editorial-table__name {
margin-bottom: 0; }
@media (min-width: 1024px) {
.vgg .editorial-table__name, .vgg .editorial-table__code {
padding-right: 55%; } }
@media (min-width: 1366px) {
.vgg .editorial-table__name, .vgg .editorial-table__code {
padding-right: 40%; } }
.vgg .editorial-table__code,
.vgg .editorial-table__code--footer {
font-size: 10px;
color: #808083;
margin-bottom: 10px; }
@media (min-width: 768px) {
.vgg .editorial-table__code, .vgg .editorial-table__code--footer {
font-size: 13px; } }
@media (min-width: 1366px) {
.vgg .editorial-table__code, .vgg .editorial-table__code--footer {
font-size: 16px; } }
.vgg .editorial-table__price,
.vgg .editorial-table__price-footer {
font-size: 15px;
font-weight: bold;
color: #dd052b; }
@media (min-width: 768px) {
.vgg .editorial-table__price, .vgg .editorial-table__price-footer {
font-size: 16.5px; } }
@media (min-width: 1366px) {
.vgg .editorial-table__price, .vgg .editorial-table__price-footer {
font-size: 18px; } }
@media (min-width: 1024px) {
.vgg .editorial-table__price {
position: absolute;
top: 50%;
right: 0;
-webkit-transform: translateY(calc(-50% - 10px));
transform: translateY(calc(-50% - 10px));
width: 50%;
text-align: right;
line-height: 1.1; } }
@media (min-width: 1600px) {
.vgg .editorial-table__price {
width: 30%; } }
.vgg .editorial-table__price__current {
display: inline-block;
white-space: nowrap; }
.vgg .editorial-table__price__old {
font-size: .75em;
text-decoration: line-through;
display: inline-block;
margin-left: 10px;
color: #333;
white-space: nowrap; }
@media (min-width: 1024px) {
.vgg .editorial-table__price__old {
position: relative;
top: -4px; } }
.vgg .editorial-table__price__desc {
color: #dd052b;
display: block;
font-size: 11px;
line-height: 1.1;
white-space: nowrap; }
.vgg .editorial-table__remove {
width: 30px;
max-width: 30px;
-webkit-flex-basis: 30px;
-ms-flex-preferred-size: 30px;
flex-basis: 30px;
height: 30px;
border-radius: 7px;
background-color: #dd052b;
margin-left: auto;
position: relative;
margin-right: 20px;
transition: background-color 0.333s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .editorial-table__remove::after,
.vgg .editorial-table__remove::before {
background-color: #fff;
content: "";
height: 2px;
left: 50%;
margin: auto;
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
transition: all 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.2s;
width: 50%; }
.vgg .editorial-table__remove::before {
-webkit-transform: translate(-50%, -50%) rotate(45deg);
transform: translate(-50%, -50%) rotate(45deg); }
.vgg .editorial-table__remove::after {
-webkit-transform: translate(-50%, -50%) rotate(-45deg);
transform: translate(-50%, -50%) rotate(-45deg); }
.vgg .editorial-table__remove:hover {
background-color: #333; }
.vgg .editorial-table__remove:active {
background-color: #fff; }
@media (min-width: 1024px) {
.vgg .editorial-table__remove {
position: absolute;
bottom: 100%;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
border-radius: 0; } }
.vgg .editorial-table__footer-headings {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
@media (min-width: 1024px) {
.vgg .editorial-table__footer-headings {
display: none; } }
.vgg .editorial-table__price-footer {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%;
line-height: 1.1;
padding-left: 20px; }
@media (min-width: 1024px) {
.vgg .editorial-table__price-footer {
display: none; } }
.vgg .editorial-table__price-footer__current {
color: #dd052b; }
.vgg .editorial-table__price-footer__old {
display: inline-block;
font-size: .75em;
text-decoration: line-through;
margin-left: 5px;
color: #333; }
.vgg .editorial-table__price-footer__desc {
display: inline-block;
width: 100%;
font-size: .75em;
color: #dd052b; }
.vgg .editorial-table__no-items {
opacity: 0;
transition: opacity 0.333s cubic-bezier(0.77, 0, 0.175, 1);
padding-left: 20px;
padding-right: 20px;
margin-bottom: 40px; }
@media (min-width: 1024px) {
.vgg .editorial-table__no-items {
padding-left: 40px;
padding-right: 40px; } }
.vgg .editorial-table__no-items.is-visible {
opacity: 1; }
.vgg .editorial-table__cta {
margin-bottom: 10px; }
@media (min-width: 1024px) {
.vgg .editorial-table__cta {
width: 100%; } }
.vgg .compare-bar {
position: fixed;
bottom: 0;
width: 100%;
z-index: 100;
box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.06);
-webkit-transform: translateY(100%);
transform: translateY(100%);
transition: -webkit-transform 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22);
transition: transform 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22);
transition: transform 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.vgg .compare-bar.has-elements {
-webkit-transform: translateY(0);
transform: translateY(0); }
.vgg .compare-bar__panel {
height: 60px;
overflow: hidden;
background-color: #e0e0e0;
padding-left: 20px;
padding-top: 20px;
transition: height 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.333s; }
@media (min-width: 768px) {
.vgg .compare-bar__panel {
padding-left: 50px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding-top: 0; } }
.vgg .compare-bar__panel.is-open {
height: 100vh;
transition: height 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22);
overflow-y: auto;
padding-bottom: 60px; }
@media (min-width: 768px) {
.vgg .compare-bar__panel.is-open {
height: 300px;
padding-bottom: 0;
overflow-y: hidden; } }
.vgg .compare-bar__panel.is-open .compare-bar__items-list {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
transition: all 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s; }
.vgg .compare-bar__panel.is-open .compare-bar__goto-compare {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
transition: opacity 0.1s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s !important;
transition: transform 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s, opacity 0.1s cubic-bezier(0.77, 0, 0.175, 1) !important;
transition: transform 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s, opacity 0.1s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s !important; }
.vgg .compare-bar__title {
font-size: 16px;
text-transform: uppercase;
display: inline-block;
font-weight: bold; }
.vgg .compare-bar__count {
margin-left: 5px;
color: #dd052b;
display: inline-block; }
.vgg .compare-bar__count::before {
content: "/";
color: #333;
padding-right: 10px; }
.vgg .compare-bar__items-list {
opacity: 0;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-transform: translateY(50%);
transform: translateY(50%);
transition: all 0.666s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
@media (min-width: 768px) {
.vgg .compare-bar__items-list {
width: 530px;
padding-left: 30px;
padding-right: 100px; } }
@media (min-width: 1024px) {
.vgg .compare-bar__items-list {
padding-left: 0;
padding-right: 0; } }
.vgg .compare-bar__item {
position: relative;
padding-top: 20px;
margin-bottom: 0;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between; }
@media (min-width: 768px) {
.vgg .compare-bar__item {
display: block;
padding-top: 30px; } }
.vgg .compare-bar__item a {
display: block;
background-color: #bfbfbf;
border-radius: 7px;
position: relative;
z-index: 2;
width: 40%;
min-width: 40%; }
@media screen and (min-width: 475px) {
.vgg .compare-bar__item a {
width: 30%;
min-width: 30%; } }
@media (min-width: 768px) {
.vgg .compare-bar__item a {
height: 0;
padding-bottom: 100%;
min-width: none;
width: auto; } }
.vgg .compare-bar__item img {
max-width: 100%;
display: block;
height: auto;
border-radius: 7px;
opacity: 0;
-webkit-transform: scale(1.2);
transform: scale(1.2);
transition: all 0.75s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.vgg .compare-bar__item h5 {
font-size: 14px;
padding: 20px;
-webkit-transform: translateY(25px);
transform: translateY(25px);
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
opacity: 0; }
@media (min-width: 768px) {
.vgg .compare-bar__item h5 {
text-align: center; } }
.vgg .compare-bar__item.is-ready img {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1); }
.vgg .compare-bar__item.is-ready h5 {
-webkit-transform: translateY(0);
transform: translateY(0);
opacity: 1;
transition: all 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s; }
.vgg .compare-bar__item.is-ready .compare-bar__item-remove {
-webkit-transform: translateY(0);
transform: translateY(0);
transition: -webkit-transform 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s;
transition: transform 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s;
transition: transform 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s, -webkit-transform 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.5s; }
.vgg .compare-bar__goto-compare {
opacity: 0;
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end;
padding-right: 20px;
padding-left: 20px;
-webkit-transform: translateY(100%);
transform: translateY(100%);
transition: opacity 0.1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s, -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1) !important;
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s !important;
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.1s cubic-bezier(0.77, 0, 0.175, 1) 0.5s, -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1) !important;
position: absolute;
bottom: 0;
right: -12px;
left: -12px;
text-align: center; }
.vgg .compare-bar__goto-compare::before {
border-radius: 0; }
@media (min-width: 768px) {
.vgg .compare-bar__goto-compare {
left: auto; }
.vgg .compare-bar__goto-compare::before {
border-radius: 7px 0 0 0; } }
@media (min-width: 1024px) {
.vgg .compare-bar__goto-compare {
position: relative; } }
.vgg .compare-bar__placeholder {
height: 0;
padding-bottom: 40%;
background-color: #bfbfbf;
position: relative;
display: block;
border-radius: 7px;
width: 40%; }
@media screen and (min-width: 475px) {
.vgg .compare-bar__placeholder {
width: 30%;
padding-bottom: 30%; } }
@media (min-width: 768px) {
.vgg .compare-bar__placeholder {
width: auto;
padding-bottom: 100%; } }
.vgg .compare-bar__placeholder .Icon {
position: absolute;
font-size: 55px;
top: 50%;
left: 50%;
margin-top: -27.55px;
margin-left: -27.5px;
color: #808083;
opacity: 0.75; }
.vgg .compare-bar__item-remove {
width: 30px;
min-width: 30px;
height: 30px;
background-color: #dd052b;
-webkit-transform: translateY(100%);
transform: translateY(100%);
transition: -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
z-index: 1;
margin-right: 25px;
border-radius: 3px; }
@media (min-width: 768px) {
.vgg .compare-bar__item-remove {
position: absolute;
top: 0;
left: 50%;
margin-left: -15px;
margin-right: 0;
border-radius: 0; } }
.vgg .compare-bar__item-remove span::after,
.vgg .compare-bar__item-remove span::before {
background-color: #fff;
content: "";
height: 2px;
left: 50%;
margin: auto;
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
transition: all 0.2s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.2s;
width: 50%; }
.vgg .compare-bar__item-remove span::before {
-webkit-transform: translate(-50%, -50%) rotate(45deg);
transform: translate(-50%, -50%) rotate(45deg); }
.vgg .compare-bar__item-remove span::after {
-webkit-transform: translate(-50%, -50%) rotate(-45deg);
transform: translate(-50%, -50%) rotate(-45deg); }
.vgg .compare-bar__toggler {
position: absolute;
width: 40px;
height: 40px;
background-color: #bfbfbf;
border-radius: 50%;
top: 10px;
right: 20px;
color: #fff;
font-size: 18px;
transition: all 0.333s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.vgg .compare-bar__toggler:hover,
.vgg .compare-bar__toggler:focus {
background-color: #dd052b; }
@media (min-width: 768px) {
.vgg .compare-bar__toggler.is-active {
top: 25px; } }
.vgg .compare-bar__toggler.is-active .Icon {
-webkit-transform: rotate(90deg);
transform: rotate(90deg); }
.vgg .compare-bar__toggler .Icon {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
transition: -webkit-transform 0.333s cubic-bezier(0.895, 0.03, 0.685, 0.22);
transition: transform 0.333s cubic-bezier(0.895, 0.03, 0.685, 0.22);
transition: transform 0.333s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.333s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.vgg .internal-nav {
display: none; }
@media screen and (min-width: 1024px) {
.vgg .internal-nav {
display: block;
width: 100%;
text-align: center; }
.vgg .internal-nav::before {
content: "";
position: absolute;
width: 0;
height: 100%;
left: 0;
right: 0;
margin: auto;
transition: all 1.6s cubic-bezier(0.77, 0, 0.175, 1);
background-color: #ebebeb;
box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
z-index: -1; }
.vgg .internal-nav.is-fixed {
z-index: 99;
width: 100% !important; }
.vgg .internal-nav.is-fixed .internal-nav__list {
border-radius: 0; }
.vgg .internal-nav.is-fixed::before {
width: 100%; }
.vgg .internal-nav--white {
background-color: #fff;
transition: box-shadow 0.333s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .internal-nav--white.is-fixed {
box-shadow: 0 0 40px rgba(0, 0, 0, 0.2); }
.vgg .internal-nav--white::before {
display: none; }
.vgg .internal-nav--white .internal-nav__list {
background-color: #fff; }
.vgg .internal-nav__list {
font-size: 0;
display: inline-block;
background-color: #ebebeb;
border-radius: 6px;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .internal-nav__item {
display: inline-block;
font-size: 12px;
color: #808083;
text-transform: uppercase;
letter-spacing: .08em;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .internal-nav__item a {
display: inline-block;
line-height: 42px;
padding: 0 2em; }
.vgg .internal-nav__item.is-active {
background-color: #dd052b;
color: #fff; }
.vgg .internal-nav__item:not(:last-child) {
border-right: 1px solid #e0e0e0; } }
html:not(.touch) .vgg .internal-nav__item:not(.is-active):hover {
color: #dd052b; }
.vgg .hp-editorial-set {
margin: 0 auto;
max-width: 1280px;
padding: 40px 30px 10px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; }
.vgg .hp-editorial-set img {
-webkit-align-self: flex-start;
-ms-flex-item-align: start;
align-self: flex-start;
width: 100%; }
.vgg .hp-editorial-set h2,
.vgg .hp-editorial-set h3 {
color: #333;
text-transform: none; }
.vgg .hp-editorial-set h2:first-child,
.vgg .hp-editorial-set h3:first-child {
position: relative; }
.vgg .hp-editorial-set h2:first-child:after,
.vgg .hp-editorial-set h3:first-child:after {
content: "";
height: 4em;
width: 3px;
background-color: #dd052b;
position: absolute;
margin: auto;
left: -14px;
z-index: 1;
top: -3em; }
.vgg .hp-editorial-set .editorial-text {
width: 100%;
padding-bottom: 2em; }
.vgg .hp-editorial-set__col {
margin: 0 10px;
max-width: 590px;
width: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch; }
.vgg .hp-editorial-set__col &gt; :last-child {
margin: 0 auto; }
.vgg .hp-editorial-set__row {
width: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.vgg .hp-editorial-set__text {
padding: 2em; }
.vgg .hp-editorial-set__block-full,
.vgg .hp-editorial-set__text {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.vgg .hp-editorial-set__button {
margin-top: auto; }
.vgg .hp-editorial-set__block-slim {
width: 100%; }
@media screen and (max-width: 1023px) {
.vgg .hp-editorial-set__text {
min-height: 0 !important; }
.vgg .hp-editorial-set__block-slim .editorial-text {
min-height: 0 !important; } }
@media screen and (max-width: 767px) {
.vgg .hp-editorial-set .editorial-text {
min-height: 0 !important; }
.vgg .hp-editorial-set img {
max-width: 84vw; } }
@media screen and (min-width: 768px) {
.vgg .hp-editorial-set__row {
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap; }
.vgg .hp-editorial-set__row &gt; :first-child:nth-last-child(2) {
margin-right: 10px; }
.vgg .hp-editorial-set__row &gt; :last-child:nth-child(2) {
margin-left: 10px; }
.vgg .hp-editorial-set__block-squared {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; } }
@media screen and (min-width: 1024px) {
.vgg .hp-editorial-set {
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start; }
.vgg .hp-editorial-set__block-slim:nth-child(1) .hp-editorial-set__text,
.vgg .hp-editorial-set__row:nth-child(1) .hp-editorial-set__text {
display: block; }
.vgg .hp-editorial-set__block-slim:nth-child(1) .hp-editorial-set__button,
.vgg .hp-editorial-set__row:nth-child(1) .hp-editorial-set__button {
margin-top: 0; } }
.vgg .hp-newsletter {
padding-bottom: 50px;
padding-top: 10px; }
.vgg .hp-newsletter__title {
color: #fff;
font-size: 20px;
line-height: 1.3;
text-transform: uppercase;
letter-spacing: .05em;
text-align: center;
font-weight: 700;
padding: 0.5em; }
.vgg .hp-newsletter__form {
width: 600px;
max-width: 90%;
margin: 10px auto; }
.vgg .hp-newsletter__block {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: relative; }
.vgg .hp-newsletter__block:before {
content: "";
position: absolute;
border: 2px solid #fff;
border-radius: 7px;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
left: 6px;
top: 0;
bottom: 0;
right: 6px;
display: block;
pointer-events: none; }
.vgg input.hp-newsletter__input {
background-color: transparent;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
font-size: 12px;
color: #fff;
height: 50px;
line-height: 46px;
padding-left: 1.6em; }
.vgg input.hp-newsletter__input::-webkit-input-placeholder {
color: #fff; }
.vgg input.hp-newsletter__input:-moz-placeholder {
color: #fff; }
.vgg input.hp-newsletter__input::-moz-placeholder {
color: #fff; }
.vgg input.hp-newsletter__input:-ms-input-placeholder {
color: #fff; }
.vgg input.hp-newsletter__input:focus {
outline: none;
box-shadow: none; }
.vgg input.hp-newsletter__input:-webkit-autofill {
-webkit-text-fill-color: #fff;
-webkit-box-shadow: 0 0 0px 1000px #e02537 inset; }
@media screen and (min-width: 375px) {
.vgg input.hp-newsletter__input {
font-size: 13px; } }
@media screen and (min-width: 768px) {
.vgg input.hp-newsletter__input {
font-size: 14px;
padding-left: 50px; }
.vgg .hp-newsletter__block:after {
content: "";
width: 60px;
height: 2px;
position: absolute;
top: 0;
bottom: 0;
margin: auto;
background-color: #fff;
left: -24px; } }
@media screen and (min-width: 1280px) {
.vgg .hp-newsletter {
padding-top: 20px; }
.vgg .hp-newsletter__title {
font-size: 32px; }
.vgg input.hp-newsletter__input {
font-size: 15px; } }
@media screen and (min-width: 1440px) {
.vgg input.hp-newsletter__input {
font-size: 15px; } }
.vgg .hp-shortcut {
max-width: 1260px;
padding: 40px 30px 10px;
margin: 0 auto 30px; }
.vgg .hp-shortcut__item {
display: block;
margin-bottom: 5px; }
.vgg .hp-shortcut__link {
display: block;
width: 100%;
padding-bottom: 30%;
position: relative;
background-size: cover;
background-position: center; }
.vgg .hp-shortcut__link span {
display: block;
text-align: left;
position: absolute;
top: 50%;
left: 0;
width: 150px;
padding: 1.5em;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 15px;
color: #fff;
line-height: 1.2;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
.vgg .hp-shortcut__link svg {
position: absolute;
top: 50%;
right: 20px;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 36px;
color: #fff;
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
@media screen and (min-width: 768px) {
.vgg .hp-shortcut {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; }
.vgg .hp-shortcut__item {
-webkit-flex-basis: 25%;
-ms-flex-preferred-size: 25%;
flex-basis: 25%; }
.vgg .hp-shortcut__link {
padding-bottom: 100%; }
.vgg .hp-shortcut__link span {
width: 100%;
bottom: 50%;
top: auto;
padding-bottom: 0;
text-align: center;
-webkit-transform: none;
transform: none; }
.vgg .hp-shortcut__link svg {
right: 0;
left: 0;
margin: 10px auto;
-webkit-transform-origin: center;
transform-origin: center;
overflow: visible;
-webkit-transform: none;
transform: none; } }
@media screen and (min-width: 1024px) {
.vgg .hp-shortcut {
max-width: 1280px;
padding: 40px 40px 10px; }
.vgg .hp-shortcut__link span {
font-size: 16px; }
.vgg .hp-shortcut__link svg {
font-size: 44px; } }
@media screen and (min-width: 1280px) {
.vgg .hp-shortcut__link span {
font-size: 22px; }
.vgg .hp-shortcut__link svg {
font-size: 60px; } }
html:not(.touch) .vgg .hp-shortcut__link:hover span {
-webkit-transform: translateY(-0.5em);
transform: translateY(-0.5em); }
html:not(.touch) .vgg .hp-shortcut__link:hover svg {
-webkit-transform: scale(1.3) translateY(0.1em);
transform: scale(1.3) translateY(0.1em);
opacity: 0.8; }
.vgg .assistance {
padding: 0.1px 0 0; }
@media (min-width: 1024px) {
.vgg .assistance {
padding: 0.1px 0 0; } }
.vgg .assistance__article__list {
margin: 0 20px; }
.vgg .assistance__article__list h2,
.vgg .assistance__article__list h3 {
text-transform: uppercase; }
.vgg .assistance__banner-list {
width: 100%;
max-width: 500px;
margin: auto; }
.vgg .assistance__banner {
width: 100%; }
.vgg .assistance__article {
margin-bottom: 20px;
background-color: #fff;
box-shadow: 0 0 20px 10px rgba(100, 100, 120, 0.02), 0 0 10px 8px rgba(100, 100, 130, 0.04);
padding: 8%;
font-size: 0; }
.vgg .assistance__article .editorial-text h2,
.vgg .assistance__article .editorial-text h3 {
color: #333;
font-weight: 700; }
.vgg .assistance__cta {
margin-top: 10px;
max-width: 250px; }
.vgg .assistance__heading-block {
padding: 0.1px 40px 0; }
@media screen and (min-width: 768px) {
.vgg .assistance__banner {
width: 50%;
float: left; }
.vgg .assistance__banner-list {
max-width: 100%; } }
@media screen and (min-width: 1024px) {
.vgg .assistance {
max-width: 84%;
margin: auto; }
.vgg .assistance__article__list {
margin: 0;
width: calc(100% - 360px);
float: left; }
.vgg .assistance__article__list.is-full {
width: 100%; }
.vgg .assistance__article {
padding: 5% 8%; }
.vgg .assistance__banner-list {
width: 340px;
float: right; }
.vgg .assistance__banner {
float: none;
width: 100%; } }
@media screen and (min-width: 1280px) {
.vgg .assistance__cta {
width: 47%;
max-width: none;
margin-right: 3%;
display: inline-block; } }
@media screen and (min-width: 1600px) {
.vgg .assistance__cta {
width: 30%;
max-width: none;
margin-right: 3%;
display: inline-block; } }
.vgg .editorial-intro {
text-align: center; }
.vgg .editorial-intro.slim-padding .editorial-intro__text {
padding: 0.5em 0; }
.vgg .editorial-intro__text {
max-width: 1600px;
margin: 0 auto;
text-align: left;
padding: 2em 0 3em; }
.vgg .editorial-intro__text .editorial-text {
max-width: 84%;
margin: 0 auto; }
.vgg .editorial-intro__text h2,
.vgg .editorial-intro__text h3 {
text-align: center; }
.vgg .editorial-intro__text h2,
.vgg .editorial-intro__text h3 {
color: #dd052b;
font-size: 24px; }
.vgg .editorial-intro__text h2 ~ h3 {
font-size: 20px; }
@media screen and (min-width: 1024px) {
.vgg .editorial-intro__text h2,
.vgg .editorial-intro__text h3 {
font-size: 30px; }
.vgg .editorial-intro__text h2 ~ h3 {
font-size: 22px; } }
@media screen and (min-width: 1440px) {
.vgg .editorial-intro__text h2,
.vgg .editorial-intro__text h3 {
font-size: 39px; }
.vgg .editorial-intro__text h2 ~ h3 {
font-size: 24px; } }
.vgg .editorial-intro__cover {
width: 100%;
display: block; }
.vgg .editorial-intro__cover img {
width: 100%; }
.vgg .editorial-intro__cover.is-video {
position: relative; }
.vgg .editorial-intro__cover.is-video:after {
content: "";
width: 50px;
height: 50px;
position: absolute;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
border-radius: 6px;
display: block;
bottom: 0;
top: 0;
left: 0;
right: 0;
background-color: #dd052b;
margin: auto; }
.vgg .editorial-intro__cover.is-video:before {
content: "";
width: 0;
height: 0;
position: absolute;
display: block;
bottom: 0;
top: 0;
left: 0;
right: 0;
margin: auto;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid #fff;
z-index: 1;
border-radius: 10px; }
.vgg .editorial-intro__cta {
margin: 40px 0 80px;
padding: 0 2em; }
html:not(.touch) .vgg .editorial-intro__cover.is-video:hover:before {
-webkit-animation-name: videoButtonHover;
animation-name: videoButtonHover;
-webkit-animation-duration: .2s;
animation-duration: .2s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards; }
.vgg .editorial-standard {
text-align: center; }
.vgg .editorial-standard__text {
max-width: 1600px;
margin: 0 auto;
text-align: left;
padding: 2em 0 0; }
.vgg .editorial-standard__text .editorial-text {
max-width: 84%;
margin: 0 auto; }
.vgg .editorial-standard__text h2,
.vgg .editorial-standard__text h3 {
text-transform: uppercase;
font-weight: bold;
text-align: center; }
.vgg .editorial-standard__text h2 ~ h3 {
text-transform: none; }
.vgg .editorial-standard__cta {
margin: 40px 0 80px;
padding: 0 2em; }
.vgg .editorial-dynamic {
max-width: 84%;
margin: auto; }
.vgg .editorial-dynamic .swiper-pagination,
.vgg .editorial-dynamic .hero-slider-v2__pagination {
position: absolute; }
.vgg .editorial-dynamic__wrapper {
margin: 0 -2.5%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
@media screen and (min-width: 1280px) {
.vgg .editorial-dynamic__wrapper {
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap; } }
.vgg .editorial-dynamic__item {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 100%;
padding: 40px 2.5% 60px; }
@media screen and (min-width: 768px) {
.vgg .editorial-dynamic__item {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; } }
@media screen and (min-width: 1280px) {
.vgg .editorial-dynamic__item {
-webkit-flex-basis: 25%;
-ms-flex-preferred-size: 25%;
flex-basis: 25%;
max-width: 25%; }
.vgg .editorial-dynamic__item:nth-child(2):nth-last-child(1),
.vgg .editorial-dynamic__item:nth-child(1):nth-last-child(2) {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%;
max-width: 50%; }
.vgg .editorial-dynamic__item:nth-child(3):nth-last-child(1),
.vgg .editorial-dynamic__item:nth-child(2):nth-last-child(2),
.vgg .editorial-dynamic__item:nth-child(1):nth-last-child(3) {
-webkit-flex-basis: 33%;
-ms-flex-preferred-size: 33%;
flex-basis: 33%;
max-width: 33%; } }
.vgg .editorial-dynamic__text {
padding: 2em 0 1em; }
.vgg .editorial-dynamic__text h2,
.vgg .editorial-dynamic__text h3 {
text-transform: uppercase;
font-weight: 700; }
.vgg .editorial-dynamic__slider {
width: 100%;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0; }
.vgg .editorial-dynamic__slider img {
width: 100%; }
.vgg .editorial-dynamic__slider__video:after {
content: "";
width: 50px;
height: 50px;
position: absolute;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
border-radius: 6px;
display: block;
bottom: 0;
top: 0;
left: 0;
right: 0;
background-color: #dd052b;
margin: auto; }
.vgg .editorial-dynamic__slider__video:before {
content: "";
width: 0;
height: 0;
position: absolute;
display: block;
bottom: 0;
top: 0;
left: 0;
right: 0;
margin: auto;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid #fff;
z-index: 1;
border-radius: 10px; }
.vgg .editorial-dynamic__cta {
max-width: 250px;
width: 90%;
margin-top: auto;
text-align: center; }
html:not(.touch) .vgg .editorial-dynamic__slider__video:hover:before {
-webkit-animation-name: videoButtonHover;
animation-name: videoButtonHover;
-webkit-animation-duration: .2s;
animation-duration: .2s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards; }
.vgg .editorial-listing {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
max-width: 84%;
margin: auto;
padding: 3em 0; }
.vgg .editorial-listing__item {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
@media screen and (min-width: 768px) {
.vgg .editorial-listing__item {
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap; } }
@media screen and (min-width: 1024px) {
.vgg .editorial-listing__item {
-webkit-flex-basis: 50%;
-ms-flex-preferred-size: 50%;
flex-basis: 50%; } }
.vgg .editorial-listing__image {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
max-width: 300px;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
margin-bottom: 30px; }
@media screen and (min-width: 768px) {
.vgg .editorial-listing__image {
-webkit-flex-basis: 33%;
-ms-flex-preferred-size: 33%;
flex-basis: 33%; } }
.vgg .editorial-listing__image img {
width: 100%; }
.vgg .editorial-listing__text {
padding: 0 0 50px 0; }
@media screen and (min-width: 768px) {
.vgg .editorial-listing__text {
padding: 0 30px 50px 18px; } }
.vgg .editorial-listing__text h2,
.vgg .editorial-listing__text h3 {
color: #dd052b; }
.vgg .editorial-listing__cta:not(.button--primary) {
display: block;
color: #dd052b;
text-decoration: underline;
font-size: 14px;
letter-spacing: .05em;
transition: color 0.3s cubic-bezier(0.77, 0, 0.175, 1);
margin-bottom: 1em;
font-weight: 700; }
.vgg .editorial-listing__cta:not(.button--primary):hover {
color: #333; }
@media screen and (min-width: 1024px) {
.vgg .editorial-listing__cta:not(.button--primary) {
font-size: 15px; } }
@media screen and (min-width: 1440px) {
.vgg .editorial-listing__cta:not(.button--primary) {
font-size: 16px; } }
.vgg .editorial-gallery {
padding: 40px 0; }
.vgg .editorial-gallery .swiper-slide {
width: auto; }
.vgg .editorial-gallery .swiper-button-prev,
.vgg .editorial-gallery .swiper-button-next {
background: #fff;
border: none;
top: 90px; }
@media screen and (min-width: 375px) {
.vgg .editorial-gallery .swiper-button-prev,
.vgg .editorial-gallery .swiper-button-next {
top: 105px; } }
@media screen and (min-width: 768px) {
.vgg .editorial-gallery .swiper-button-prev,
.vgg .editorial-gallery .swiper-button-next {
top: 155px; } }
@media screen and (min-width: 1024px) {
.vgg .editorial-gallery .swiper-button-prev,
.vgg .editorial-gallery .swiper-button-next {
top: 175px; } }
@media screen and (min-width: 1280px) {
.vgg .editorial-gallery .swiper-button-prev,
.vgg .editorial-gallery .swiper-button-next {
top: 207px; } }
.vgg .editorial-gallery .swiper-button-disabled {
opacity: 0.2; }
.vgg .editorial-gallery__figure {
position: relative; }
.vgg .editorial-gallery__figure img {
height: 180px; }
@media screen and (min-width: 375px) {
.vgg .editorial-gallery__figure img {
height: 210px; } }
@media screen and (min-width: 768px) {
.vgg .editorial-gallery__figure img {
height: 310px; } }
@media screen and (min-width: 1024px) {
.vgg .editorial-gallery__figure img {
height: 350px; } }
@media screen and (min-width: 1280px) {
.vgg .editorial-gallery__figure img {
height: 414px; } }
.vgg .editorial-gallery__figure.is-video:after {
content: "";
width: 50px;
height: 50px;
position: absolute;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
border-radius: 6px;
display: block;
bottom: 0;
top: 0;
left: 0;
right: 0;
background-color: #dd052b;
margin: auto; }
.vgg .editorial-gallery__figure.is-video:before {
content: "";
width: 0;
height: 0;
position: absolute;
display: block;
bottom: 0;
top: 0;
left: 0;
right: 0;
margin: auto;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid #fff;
z-index: 1;
border-radius: 10px; }
.vgg .editorial-gallery__slide {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.vgg .editorial-gallery__text {
-webkit-flex-basis: 100%;
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
width: 0;
max-width: 100%; }
.vgg .editorial-gallery__text .editorial-text {
padding: 30px 30px 0; }
.vgg .editorial-gallery__text h2:first-child,
.vgg .editorial-gallery__text h3:first-child {
position: relative; }
.vgg .editorial-gallery__text h2:first-child:after,
.vgg .editorial-gallery__text h3:first-child:after {
content: "";
height: 2.4em;
width: 3px;
background-color: #dd052b;
position: absolute;
top: -10px;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
left: 1em; }
.vgg .editorial-gallery__text h2,
.vgg .editorial-gallery__text h3 {
color: #dd052b;
text-transform: uppercase;
font-size: 22px; }
.vgg .editorial-gallery__text h2 ~ h3 {
font-size: 18px; }
@media screen and (min-width: 1024px) {
.vgg .editorial-gallery__text h2,
.vgg .editorial-gallery__text h3 {
font-size: 25px; }
.vgg .editorial-gallery__text h2 ~ h3 {
font-size: 20px; } }
@media screen and (min-width: 1440px) {
.vgg .editorial-gallery__text h2,
.vgg .editorial-gallery__text h3 {
font-size: 31px; }
.vgg .editorial-gallery__text h2 ~ h3 {
font-size: 22px; } }
html:not(.touch) .vgg .editorial-gallery__figure.is-video:hover:before {
-webkit-animation-name: videoButtonHover;
animation-name: videoButtonHover;
-webkit-animation-duration: .2s;
animation-duration: .2s;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards; }
.vgg .editorial-slider-table {
max-width: 84%;
margin: -20px auto 20px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 0;
overflow: hidden;
position: relative; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table {
margin-top: -40px; } }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table {
margin-bottom: 40px; } }
@media screen and (min-width: 540px) {
.vgg .editorial-slider-table::after {
content: "";
position: absolute;
top: 20px;
bottom: 20px;
right: -10px;
width: 10px;
box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
z-index: 2; } }
@media screen and (min-width: 540px) and (min-width: 768px) {
.vgg .editorial-slider-table::after {
top: 40px;
bottom: 40px; } }
@media screen and (min-width: 540px) and (min-width: 1366px) {
.vgg .editorial-slider-table::after {
bottom: 60px; } }
@media screen and (min-width: 450px) {
.vgg .editorial-slider-table.count_1::after {
display: none; } }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table.count_2::after {
display: none; } }
@media screen and (min-width: 1024px) {
.vgg .editorial-slider-table.count_3::after {
display: none; } }
.vgg .editorial-slider-table__side {
width: 50%;
padding-top: 20px;
padding-bottom: 20px;
padding-right: 10px; }
@media screen and (min-width: 500px) {
.vgg .editorial-slider-table__side {
width: 200px; } }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__side {
padding-top: 40px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__side {
width: 290px; } }
.vgg .editorial-slider-table__side-box {
border-radius: 7px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
background-color: #fff; }
.vgg .editorial-slider-table__side-image {
font-size: 72px;
color: #ebebeb;
background-color: #bfbfbf;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
padding: 20px 20px 0;
position: relative;
margin-bottom: auto;
border-radius: 7px 7px 0 0; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__side-image {
font-size: 10vw;
padding-top: 30px; } }
@media screen and (min-width: 1600px) {
.vgg .editorial-slider-table__side-image {
font-size: 170px;
padding-top: 40px; } }
.vgg .editorial-slider-table__side-image::after {
content: "";
-webkit-transform: skewY(-15deg);
transform: skewY(-15deg);
-webkit-transform-origin: right;
transform-origin: right;
top: 7px;
bottom: 0;
left: 0;
right: 0;
position: absolute;
background-color: #bfbfbf;
z-index: 1; }
.vgg .editorial-slider-table__side-image .Icon {
z-index: 2;
position: absolute;
left: 50%;
bottom: 0;
-webkit-transform: translateX(-50%);
transform: translateX(-50%); }
.vgg .editorial-slider-table__side-title {
text-transform: uppercase;
letter-spacing: .05em;
font-weight: bold;
font-size: 12px;
padding: 0 10px;
line-height: 1.2; }
@media screen and (min-width: 580px) {
.vgg .editorial-slider-table__side-title {
font-size: 15px; } }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__side-title {
font-size: 18px;
padding-left: 20px;
padding-right: 20px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__side-title {
font-size: 22px; } }
@media screen and (min-width: 1600px) {
.vgg .editorial-slider-table__side-title {
padding-left: 40px;
padding-right: 40px; } }
.vgg .editorial-slider-table__side-count {
font-size: 11px;
padding: 0 10px 10px; }
@media screen and (min-width: 580px) {
.vgg .editorial-slider-table__side-count {
font-size: 13px; } }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__side-count {
font-size: 15px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__side-count {
font-size: 18px; } }
@media screen and (min-width: 1600px) {
.vgg .editorial-slider-table__side-count {
padding: 0 40px 20px; } }
.vgg .editorial-slider-table__side-panel {
overflow: hidden; }
.vgg .editorial-slider-table__side-list {
padding: 10px; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__side-list {
padding: 20px; } }
@media screen and (min-width: 1600px) {
.vgg .editorial-slider-table__side-list {
padding-left: 40px;
padding-right: 40px; } }
.vgg .editorial-slider-table__side-list-item {
letter-spacing: .08em;
text-transform: uppercase;
font-size: 13px;
padding: 5px 0;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
transition: color .333s ease-out;
cursor: pointer; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__side-list-item {
padding: 10px 0; } }
@media screen and (min-width: 1024px) {
.vgg .editorial-slider-table__side-list-item {
font-size: 14px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__side-list-item {
padding: 20px 0; } }
.vgg .editorial-slider-table__side-list-item.has-hover {
color: #dd052b; }
.vgg .editorial-slider-table__detail-toggler {
background-color: #dd052b;
border-radius: 0 0 7px 7px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
cursor: pointer; }
.vgg .editorial-slider-table__detail-toggler-text {
display: none; }
@media screen and (min-width: 400px) {
.vgg .editorial-slider-table__detail-toggler-text {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
letter-spacing: .08em;
text-transform: uppercase;
padding: 10px;
color: #fff;
line-height: 1.1;
font-size: 13px; } }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__detail-toggler-text {
padding: 10px 20px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__detail-toggler-text {
font-size: 14px;
padding: 20px 20px; } }
@media screen and (min-width: 1600px) {
.vgg .editorial-slider-table__detail-toggler-text {
padding: 20px 40px; } }
.vgg .editorial-slider-table__detail-toggler-icon {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
font-size: 16px;
padding: 10px;
color: #fff;
background-color: #bd0426;
margin-left: auto;
border-radius: 0 0 7px 0; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__detail-toggler-icon {
padding: 10px 20px; } }
.vgg .editorial-slider-table__detail-toggler-icon .Icon {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
transition: -webkit-transform .333s ease-out;
transition: transform .333s ease-out;
transition: transform 0.333s ease-out, -webkit-transform 0.333s ease-out; }
.vgg .editorial-slider-table__detail-toggler--is-open .Icon {
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg); }
.vgg .editorial-slider-table__slide {
box-sizing: border-box;
width: 100%;
margin-bottom: 20px;
background-color: #fff;
border-radius: 7px; }
@media screen and (min-width: 500px) {
.vgg .editorial-slider-table__slide {
max-width: 183px;
box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1); } }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__slide {
max-width: calc(47% - 20px);
margin-bottom: 40px; } }
@media screen and (min-width: 1024px) {
.vgg .editorial-slider-table__slide {
max-width: calc(31% - 20px); } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__slide {
margin-bottom: 60px; } }
.vgg .editorial-slider-table__slide-header {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; }
.vgg .editorial-slider-table__slide-image {
border-radius: 7px;
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0; }
@media screen and (min-width: 1600px) {
.vgg .editorial-slider-table__slide-product-name-row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center; } }
.vgg .editorial-slider-table__slide-product-name {
font-size: 14px;
text-transform: uppercase;
letter-spacing: .05em;
padding: 10px 10px 0;
line-height: 1.2; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__slide-product-name {
font-size: 16px;
padding: 20px 20px 10px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__slide-product-name {
font-size: 16px; } }
@media screen and (min-width: 1600px) {
.vgg .editorial-slider-table__slide-product-name {
padding-bottom: 20px; } }
.vgg .editorial-slider-table__slide-product-price {
font-size: 12px;
color: #dd052b;
padding: 0 10px 10px;
letter-spacing: .05em;
white-space: nowrap; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__slide-product-price {
font-size: 14px;
padding: 0 20px 20px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__slide-product-price {
font-size: 16px; } }
@media screen and (min-width: 1600px) {
.vgg .editorial-slider-table__slide-product-price {
padding-left: 0;
padding-top: 20px;
margin-left: auto; } }
.vgg .editorial-slider-table__slide-product-price:only-child {
padding-top: 10px; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__slide-product-price:only-child {
padding-top: 20px; } }
.vgg .editorial-slider-table__slide-product-code {
font-size: 10px;
color: #808083;
padding: 0 10px 10px;
margin-top: auto; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__slide-product-code {
font-size: 13px;
padding: 0 20px 20px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__slide-product-code {
font-size: 16px; } }
.vgg .editorial-slider-table__slide-panel {
overflow: hidden; }
.vgg .editorial-slider-table__slide-panel-list {
padding: 10px 0; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__slide-panel-list {
padding: 20px 0; } }
.vgg .editorial-slider-table__slide-panel-item {
font-size: 13px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
padding: 5px 10px;
text-align: center;
transition: all .333s ease-out;
position: relative;
cursor: pointer; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__slide-panel-item {
padding: 10px 20px; } }
@media screen and (min-width: 1024px) {
.vgg .editorial-slider-table__slide-panel-item {
font-size: 14px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__slide-panel-item {
padding: 20px 40px; } }
.vgg .editorial-slider-table__slide-panel-item.has-hover {
background-color: #f5f5f5;
color: #808083; }
.vgg .editorial-slider-table__slide-panel-item::before,
.vgg .editorial-slider-table__slide-panel-item::after {
content: "";
position: absolute;
left: 10%;
right: 10%;
height: 1px;
background-color: #f5f5f5; }
.vgg .editorial-slider-table__slide-panel-item::before {
top: 0; }
.vgg .editorial-slider-table__slide-panel-item::after {
bottom: -1px; }
.vgg .editorial-slider-table__slide-panel-item .Icon--delete {
color: #dd052b;
margin-right: 5px; }
.vgg .editorial-slider-table__slide-panel-item .Icon--checkmark {
color: #8cc64e;
font-size: 1.2em;
margin-right: 5px; }
.vgg .editorial-slider-table__slider {
width: 50%;
padding-top: 20px;
padding-left: 10px; }
@media screen and (min-width: 500px) {
.vgg .editorial-slider-table__slider {
width: calc(100% - 200px); } }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__slider {
padding-top: 40px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__slider {
width: calc(100% - 290px); } }
@media screen and (max-width: 768px) {
.vgg .editorial-slider-table__slider-button-prev,
.vgg .editorial-slider-table__slider-button-next {
width: 26px;
height: 26px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__slider-button-prev,
.vgg .editorial-slider-table__slider-button-next {
display: block;
background-color: #e0e0e0;
top: 12vw; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__slider-button-prev {
left: 20px; } }
@media screen and (min-width: 1366px) {
.vgg .editorial-slider-table__slider-button-next {
right: 11.5%; } }
.vgg .editorial-slider-table__goto-product-row {
padding: 0 10px 10px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin-top: auto; }
@media screen and (min-width: 768px) {
.vgg .editorial-slider-table__goto-product-row {
padding: 0 20px 20px; } }
@media screen and (max-width: 475px) {
.vgg .editorial-slider-table__goto-product .button__inner span {
display: none; }
.vgg .editorial-slider-table__goto-product .button__inner svg {
margin-left: 0; } }
.vgg .search-results {
position: relative; }
@media (min-width: 1024px) {
.vgg .search-results {
padding-left: 400px;
padding-right: 100px;
margin-top: 30px;
min-height: 350px; } }
.vgg .search-results__menu {
position: relative;
background-color: #fff;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
padding: 30px 20px; }
@media (min-width: 1024px) {
.vgg .search-results__menu {
position: absolute;
top: 0;
left: 15px;
width: 300px;
border-radius: 7px; } }
.vgg .search-results__menu[type=submit] {
width: 100%;
margin-bottom: 2em; }
.vgg .search-results__content {
margin-top: 50px; }
@media (min-width: 1024px) {
.vgg .search-results__content {
margin-top: -20px; } }
.vgg .search-results__content .asset-entry-title {
font-size: 32px;
color: #dd052b;
font-weight: 700;
letter-spacing: .05em;
text-transform: uppercase;
line-height: 1.2; }
.vgg .search-results__content .asset-entry-content {
line-height: 2;
margin: 0.6em 0 2em; }
.vgg .search-results__content .asset-entry-cta {
text-transform: uppercase;
color: #dd052b;
letter-spacing: .05em;
margin-bottom: 2em;
display: inline-block; }
.vgg .search-results__content .suggested-word {
color: #dd052b;
font-style: italic; }
.vgg .search-results__content .line-info {
font-size: 1.1em;
font-weight: 700; }
.vgg .search-results__content .no-results {
margin-bottom: 1em; }
.vgg .search-results__content .no-results .message {
font-size: 32px;
font-weight: 700;
letter-spacing: .05em;
text-transform: uppercase;
line-height: 1.2; }
.vgg .country-select__heading-block {
padding: 0 20px; }
.vgg .country-select__list {
padding: 20px 20px 60px;
max-width: 750px;
margin: auto; }
@media screen and (min-width: 500px) {
.vgg .country-select__list {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2; } }
@media screen and (min-width: 750px) {
.vgg .country-select__list {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3; } }
.vgg .country-select__item {
line-height: 2;
text-align: center; }
@media screen and (min-width: 500px) {
.vgg .country-select__item {
text-align: left; } }
.vgg .country-select__item a:link,
.vgg .country-select__item a:visited {
transition: color .4s;
color: #333; }
.vgg .country-select__item a:hover {
color: #dd052b; }
.vgg .country-select__item a:active {
color: #dd052b;
transition: color 0.2s; }
.vgg .country-select__item a.is-active {
color: #dd052b;
text-decoration: underline; }
.vgg .cookie-banner {
display: none; }
.vgg .cookie-banner.is-shown {
display: block;
position: fixed;
z-index: 10000;
top: 0;
left: 0;
right: 0;
bottom: 0; }
.vgg .cookie-banner__wrapper {
background: rgba(0, 0, 0, 0.9);
position: absolute;
left: 0;
right: 0;
bottom: 0;
color: #fff;
padding: 2em 1em; }
.vgg .cookie-banner__wrapper h2 {
max-width: 960px;
margin: auto;
font-size: 1.25em;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 0.08em; }
.vgg .cookie-banner__wrapper p {
max-width: 960px;
margin: 0.5em auto; }
.vgg .cookie-banner__wrapper a {
text-transform: underline; }
.vgg .cookie-banner__wrapper a:link,
.vgg .cookie-banner__wrapper a:visited {
transition: color .4s;
color: #dd052b; }
.vgg .cookie-banner__wrapper a:hover {
color: #fff; }
.vgg .cookie-banner__wrapper a:active {
color: #dd052b;
transition: color 0.2s; }
.vgg .cookie-banner__close {
position: absolute;
top: 0;
right: 0;
left: 0;
height: 28px;
max-width: 960px;
display: block;
width: 100%;
margin: auto; }
.vgg .cookie-banner__close:after,
.vgg .cookie-banner__close:before {
cursor: pointer;
content: "";
position: absolute;
display: block;
height: 1px;
width: 24px;
background: #fff;
top: 24px;
right: 0;
bottom: 0; }
.vgg .cookie-banner__close:after {
-webkit-transform: rotate(45deg);
transform: rotate(45deg); }
.vgg .cookie-banner__close:before {
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg); }
.vgg .find-wrapper {
padding: 30px 0 40px;
background: #fff;
border-radius: 10px; }
.vgg .modal-window {
position: fixed;
z-index: 1000;
background-color: rgba(0, 0, 0, 0.85);
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none; }
.vgg .modal-window.is-open {
display: block; }
.vgg .find-code {
width: 300px;
margin: 0 auto; }
.vgg .find-code p {
color: #333;
margin: 10px auto; }
.vgg .find-code .custom-select-opener {
background-color: #fff; }
.vgg .findcodeWrapper {
max-width: 320px;
color: #fff; }
.vgg .findcodeWrapper p {
color: #333;
text-align: center;
padding-top: 35px; }
.vgg .findcodeWrapper.is-hidden {
opacity: 0;
height: 0;
padding-bottom: 0;
overflow: hidden; }
.vgg .findcodeWrapper .findcodeImage,
.vgg .findcodeWrapper .findcodeLabel {
width: 45%;
-webkit-flex-basis: 45%;
-ms-flex-preferred-size: 45%;
flex-basis: 45%;
margin: 2.5%; }
@media screen and (min-width: 480px) {
.vgg .findcodeWrapper {
max-width: 480px; } }
@media screen and (min-width: 600px) {
.vgg .findcodeWrapper {
max-width: 600px; } }
.vgg .modal-window__close {
position: absolute;
top: 10px;
right: 10px;
color: #999;
cursor: pointer;
font-size: 24px;
height: 47px;
line-height: 27px;
text-align: center;
width: 50px;
text-decoration: none !important;
outline: medium none; }
.vgg .modal-window__close:after {
font-family: "lg";
content: ""; }
.vgg .modal-window__close:hover {
color: #fff; }
.vgg .modal-window__outer {
display: table;
margin: 0 auto;
padding: 10px;
height: 100%; }
.vgg .modal-window__inner {
display: table-cell;
vertical-align: middle; }
.blog__background {
background: #fff; }
.vgg.blog .vgg__container--wrapper {
max-width: 1200px; }
.vgg.blog .editorial-text.editorial-text .blog__subtitle {
font-size: 20px;
text-transform: uppercase; }
.vgg .blog__tags--mobile {
margin: 0 auto;
max-width: 500px; }
@media (min-width: 1024px) {
.vgg .blog__tags--mobile {
display: none; } }
.vgg .blog__tags--desktop {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
@media (max-width: 1023px) {
.vgg .blog__tags--desktop {
display: none; } }
.vgg .blog__tags--post {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
margin-bottom: 50px; }
@media (min-width: 1024px) {
.vgg .blog__tags--post {
margin-bottom: 0; } }
.vgg .blog__list {
margin: 0 auto;
max-width: 1240px; }
@media (min-width: 768px) {
.vgg .blog__list.blog__list--masonry .blog__item {
width: 50%; } }
@media (min-width: 1024px) {
.vgg .blog__list.blog__list--masonry .blog__item {
width: 25%; } }
@media (min-width: 768px) {
.vgg .blog__list.blog__list--masonry .blog__item:first-child {
width: 100%; } }
@media (min-width: 1024px) {
.vgg .blog__list.blog__list--masonry .blog__item:first-child {
width: 50%; } }
.vgg .blog__item img {
height: auto;
width: 100%; }
.vgg .blog__article {
display: block;
margin: 10px 10px 40px; }
.vgg .blog__img {
position: relative; }
.vgg .blog__icons {
bottom: 10px;
position: absolute;
right: 10px; }
.vgg .blog__icon {
color: #fff;
font-size: 12px;
font-weight: bold;
padding: 0 8px;
position: relative;
text-transform: uppercase;
letter-spacing: .05em;
cursor: pointer;
display: inline-block;
height: 27px; }
.vgg .blog__icon i {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
background-position: center;
background-repeat: no-repeat;
background-size: auto 40%;
display: -webkit-inline-flex;
display: -ms-inline-flexbox;
display: inline-flex;
height: 27px;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
opacity: 1;
padding: 0 10px;
position: relative;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
z-index: 1; }
.vgg .blog__icon::before {
background-color: #dd052b;
border-radius: 7px;
border: 2px solid #dd052b;
bottom: 0;
content: "";
left: 6px;
position: absolute;
right: 6px;
top: 0;
-webkit-transform: skewX(-15deg);
transform: skewX(-15deg);
z-index: 1; }
.vgg .blog__icon--gallery i {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAA6WlDQ1BJQ0MgcHJvZmlsZQAAeNqt0D9KA0EcxfHvRNQuWgTruYCCa7Xl5A+LYBFiimyqTGYHDWF3h9mff/YGHsHjeIMUghdRUluoBEvBT/V4zYMH6tkM+6POMZSVxGxi8lk+14cbDtgDAOuaYMbjK4Cqrjy/Kdi+oQBeT82wP+Jv9l2IArwASeEbB3wAqwcJAmoB9JbrIKAE6K2nkwGoJ6Ar/lEABnVo4+rmVvR5mqbaFPXS6+u2EV82+rJydQx1tOIL4HsD4CiLttWZLUurk7OEfzfL5/orvU9RgDrZ7Loddxfvf/7sXMAnSxs4MNhD1akAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAADI2lUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDAgNzkuMTYwNDUxLCAyMDE3LzA1LzA2LTAxOjA4OjIxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MjAyQjJBMTUyM0I3MTFFOUI3NTBFQjVFRDc5REEzMjciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MjAyQjJBMTYyM0I3MTFFOUI3NTBFQjVFRDc5REEzMjciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoyMDJCMkExMzIzQjcxMUU5Qjc1MEVCNUVENzlEQTMyNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoyMDJCMkExNDIzQjcxMUU5Qjc1MEVCNUVENzlEQTMyNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pg7n2eYAAAFSSURBVHjaYvz//z/DYAJMDIMMDG4HMTIyYsUgKSBuBOIXQPyfSvgF1ExGFBeB0hAM4wJAuY7/tAOdyG5gRHYINDSwOegDkOKnUSyBzBaEu4FIB9E6KzKO5jJiAQuuqGHEFX+jBeOog0YdNOogvOA5FBNfZKPVCljLITKrjt9AbANlHwFiVmKqDpTaHrkKRi8wcYDvQBwCxF+xyMUj6U8jUOMjWhwUOigBKh+GJj4BSwW9gNYOWommZjZU/DAQM2NxECsQn6SVg24DMReaGg4g3gTEQngaeqJA/IraDgKlGy1ysx1QrxkQ/6KmgxIoLQuwJHLsTVg82R7UIBenUVn1EoglSC0Y59Ow8FyAs9eBK8qg6uqA+CUVexsgsxrR3UBUlNEaILthtLYnqZEPTfHitOqLEZMMmOiYm4hPUMh9exrkJpw5F5sbGEcHrIaagwACDADMnLJNlmci9wAAAABJRU5ErkJggg==); }
.vgg .blog__icon--video i {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAKCAYAAACJxx+AAAAAdElEQVQYlX2QwQnCABAEJyaVWYsi6E8/frcLmxFShSDEnxUE9Dt+EghyZGDhYG9v4Rr1AQzAMcmbPxrVaR6BK3BLYrUw0wP7JAMA1nzVi9pWF5bcNysmaxUf9ay2XZHpgV2SF8CyYgQOwHY2ATrgOelUPeoHN2Nk6YVxOr0AAAAASUVORK5CYII=); }
.vgg .blog__text {
font-size: 15px;
padding: 1em 2em 0; }
.vgg .blog__text h2,
.vgg .blog__text h3 {
color: #333;
font-size: 20px;
text-transform: none; }
.vgg .blog__text h2:first-child,
.vgg .blog__text h3:first-child {
position: relative; }
.vgg .blog__text h2:first-child:after,
.vgg .blog__text h3:first-child:after {
content: "";
height: 4em;
width: 3px;
background-color: #dd052b;
position: absolute;
margin: auto;
left: -14px;
z-index: 1;
top: -3em; }
.vgg .blog__showmore__container {
margin: 20px 0;
text-align: center; }
.vgg .blog__showmore {
margin-bottom: 48px;
text-align: center; }
.vgg .blog__latest {
background-color: #fff;
padding: 80px 15px;
text-align: center; }
.vgg .blog__latest__container {
margin: 0 auto;
max-width: 1200px;
padding: 0 7.3333333333vw;
position: relative; }
@media screen and (min-width: 750px) {
.vgg .blog__latest__container {
padding: 0 55px; } }
.vgg .blog__latest__title {
margin-bottom: 20px; }
.vgg .blog__latest__subtitle {
margin-bottom: 40px; }
.vgg .blog__latest__slider {
margin-top: 65px;
position: static; }
.vgg .blog__latest__slider .swiper-pagination-bullet {
background-color: #fff; }
.vgg .blog__latest__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
background-color: #dd052b; }
.vgg .blog__latest__slider .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
border-color: #dd052b; }
.vgg .blog__latest .swiper-slide {
overflow: hidden; }
.vgg .blog__latest .swiper-button-prev {
left: 0; }
.vgg .blog__latest .swiper-button-next {
right: 0; }
.vgg .post__row {
padding: 0 35px; }
@media (min-width: 1024px) {
.vgg .post__row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: auto;
margin-right: auto;
max-width: 1200px;
padding: 0 15px; } }
.vgg .post__col {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto; }
@media (min-width: 1024px) {
.vgg .post__col--title {
-webkit-align-self: center;
-ms-flex-item-align: center;
-ms-grid-row-align: center;
align-self: center;
width: 40%; } }
.vgg .post__col--header {
margin: 0 -35px; }
@media (min-width: 1024px) {
.vgg .post__col--header {
margin: 0;
width: 60%; } }
@media (min-width: 1024px) {
.vgg .post__col--content {
width: 66%; } }
@media (max-width: 1023px) {
.vgg .post__col--related .swiper-slide {
width: 90%; } }
@media (min-width: 1024px) {
.vgg .post__col--related {
margin-left: 10%;
width: 24%; }
.vgg .post__col--related .swiper-wrapper {
display: block; } }
.vgg .post__col--related h2 {
text-transform: none; }
.vgg .post__header {
padding-top: 60px; }
@media (min-width: 1024px) {
.vgg .post__header {
margin-bottom: 70px;
padding-top: 0; } }
.vgg .post__date {
font-size: 16px; }
.vgg .post__title {
font-size: 30px;
font-weight: bold;
letter-spacing: 2px;
line-height: 1.1em;
margin-top: 20px;
margin-bottom: 25px; }
@media (min-width: 1024px) {
.vgg .post__title {
margin-top: 30px;
margin-bottom: 50px;
font-size: 40px; } }
.vgg .post__slider img {
width: 100%; }
.vgg .post__slider .swiper-pagination,
.vgg .post__slider .hero-slider-v2__pagination {
bottom: 0;
left: 0;
position: absolute;
right: 0;
z-index: 1; }
.vgg .post__slider .swiper-pagination-bullet {
background-color: #fff; }
.vgg .post__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
background-color: #dd052b; }
.vgg .post__slider .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
border-color: #dd052b; }
.vgg .post__image {
width: 100%; }
@media (max-width: 1023px) {
.vgg .post__image--desktop {
display: none; } }
@media (min-width: 1024px) {
.vgg .post__image--mobile {
display: none; } }
.vgg .post__content .editorial-text img {
margin: 30px -35px;
width: calc(100% + 70px); }
@media (min-width: 1024px) {
.vgg .post__content .editorial-text img {
margin: 30px 0;
width: 100%; } }
.vgg .post__categories {
background-color: #fafafa;
padding: 60px 0 70px;
text-align: center; }
.vgg .post__categories__title {
color: #dd052b;
display: inline-block;
font-size: 38px;
margin-bottom: 66px;
padding: 0 50px;
position: relative; }
.vgg .post__categories__title:before,
.vgg .post__categories__title:after {
bottom: 0;
content: "";
position: absolute;
top: 0;
border-left: 1px solid #cacaca;
-webkit-transform: rotate(15deg);
transform: rotate(15deg); }
.vgg .post__categories__title:before {
left: 0; }
.vgg .post__categories__title:after {
right: 0; }
.vgg .post__categories .swiper-container {
position: static; }
@media (max-width: 1023px) {
.vgg .post__categories .swiper-wrapper {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column; } }
@media (max-width: 1023px) {
.vgg .post__categories .swiper-button-prev, .vgg .post__categories .swiper-button-next {
display: none; } }
.vgg .post__categories .swiper-button-prev {
left: 10px; }
.vgg .post__categories .swiper-button-next {
right: 10px; }
.vgg .post__categories__list {
padding: 0 72px;
position: relative; }
.vgg .post__categories__item {
box-sizing: border-box;
padding: 8px;
position: relative; }
.vgg .post__categories__item a {
display: block;
position: relative; }
.vgg .post__categories__item img {
display: block;
height: auto;
width: 100%; }
.vgg .post__categories__item h2,
.vgg .post__categories__item h3 {
color: #fff;
font-size: 15px;
letter-spacing: 2px;
text-transform: uppercase; }
.vgg .post__categories__texts {
background: rgba(0, 0, 0, 0.5);
bottom: 0;
left: 0;
padding: 17px 12px;
position: absolute;
right: 0;
z-index: 1; }
.Icon--skiff_sports-logo-flat {
background: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/banner-logo-pattern.svg) no-repeat; }
@media (max-width: 1024px) {
.vgg .hero-slider__content br {
display: none; } }
.mCustomScrollbar {
-ms-touch-action: pinch-zoom;
touch-action: pinch-zoom; }
.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
-ms-touch-action: auto;
touch-action: auto; }
.mCustomScrollBox {
position: relative;
overflow: hidden;
height: 100%;
max-width: 100%;
outline: 0;
direction: ltr; }
.mCSB_container {
overflow: hidden;
width: auto;
height: auto; }
.mCSB_inside &gt; .mCSB_container {
margin-right: 30px; }
.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
margin-right: 0; }
.mCS-dir-rtl &gt; .mCSB_inside &gt; .mCSB_container {
margin-right: 0;
margin-left: 30px; }
.mCS-dir-rtl &gt; .mCSB_inside &gt; .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
margin-left: 0; }
.mCSB_scrollTools {
position: absolute;
width: 16px;
height: auto;
left: auto;
top: 0;
right: 0;
bottom: 0;
opacity: .75;
filter: "alpha(opacity=75)";
-ms-filter: "alpha(opacity=75)"; }
.mCSB_outside + .mCSB_scrollTools {
right: -26px; }
.mCS-dir-rtl &gt; .mCSB_inside &gt; .mCSB_scrollTools, .mCS-dir-rtl &gt; .mCSB_outside + .mCSB_scrollTools {
right: auto;
left: 0; }
.mCS-dir-rtl &gt; .mCSB_outside + .mCSB_scrollTools {
left: -26px; }
.mCSB_scrollTools .mCSB_draggerContainer {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: auto; }
.mCSB_scrollTools a + .mCSB_draggerContainer {
margin: 20px 0; }
.mCSB_scrollTools .mCSB_draggerRail {
width: 2px;
height: 100%;
margin: 0 auto;
-webkit-border-radius: 16px;
-moz-border-radius: 16px;
border-radius: 16px; }
.mCSB_scrollTools .mCSB_dragger {
cursor: pointer;
width: 100%;
height: 30px;
z-index: 1; }
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
position: relative;
width: 4px;
height: 100%;
margin: 0 auto;
-webkit-border-radius: 16px;
-moz-border-radius: 16px;
border-radius: 16px;
text-align: center; }
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
width: 12px; }
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
width: 8px; }
.mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonUp {
display: block;
position: absolute;
height: 20px;
width: 100%;
overflow: hidden;
margin: 0 auto;
cursor: pointer; }
.mCSB_scrollTools .mCSB_buttonDown {
bottom: 0; }
.mCSB_horizontal.mCSB_inside &gt; .mCSB_container {
margin-right: 0;
margin-bottom: 30px; }
.mCSB_horizontal.mCSB_outside &gt; .mCSB_container {
min-height: 100%; }
.mCSB_horizontal &gt; .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
margin-bottom: 0; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
width: auto;
height: 16px;
top: auto;
right: 0;
bottom: 0;
left: 0; }
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
bottom: -26px; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
margin: 0 20px; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 2px;
margin: 7px 0; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
width: 30px;
height: 100%;
left: 0; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
width: 100%;
height: 4px;
margin: 6px auto; }
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
height: 12px;
margin: 2px auto; }
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
height: 8px;
margin: 4px 0; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft, .mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
display: block;
position: absolute;
width: 20px;
height: 100%;
overflow: hidden;
margin: 0 auto;
cursor: pointer; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
left: 0; }
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
right: 0; }
.mCSB_container_wrapper {
position: absolute;
height: auto;
width: auto;
overflow: hidden;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin-right: 30px;
margin-bottom: 30px; }
.mCSB_container_wrapper &gt; .mCSB_container {
padding-right: 30px;
padding-bottom: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mCSB_vertical_horizontal &gt; .mCSB_scrollTools.mCSB_scrollTools_vertical {
bottom: 20px; }
.mCSB_vertical_horizontal &gt; .mCSB_scrollTools.mCSB_scrollTools_horizontal {
right: 20px; }
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
bottom: 0; }
.mCS-dir-rtl &gt; .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside &gt; .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
right: 0; }
.mCS-dir-rtl &gt; .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside &gt; .mCSB_scrollTools.mCSB_scrollTools_horizontal {
left: 20px; }
.mCS-dir-rtl &gt; .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside &gt; .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
left: 0; }
.mCS-dir-rtl &gt; .mCSB_inside &gt; .mCSB_container_wrapper {
margin-right: 0;
margin-left: 30px; }
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden &gt; .mCSB_container {
padding-right: 0; }
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden &gt; .mCSB_container {
padding-bottom: 0; }
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside &gt; .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
margin-right: 0;
margin-left: 0; }
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside &gt; .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
margin-bottom: 0; }
.mCSB_scrollTools, .mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonLeft, .mCSB_scrollTools .mCSB_buttonRight, .mCSB_scrollTools .mCSB_buttonUp, .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
-webkit-transition: opacity .2s ease-in-out,background-color .2s ease-in-out;
-moz-transition: opacity .2s ease-in-out,background-color .2s ease-in-out;
-o-transition: opacity .2s ease-in-out,background-color .2s ease-in-out;
transition: opacity .2s ease-in-out,background-color .2s ease-in-out; }
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, .mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar {
-webkit-transition: width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;
-moz-transition: width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;
-o-transition: width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;
transition: width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out; }
.mCS-autoHide &gt; .mCustomScrollBox &gt; .mCSB_scrollTools, .mCS-autoHide &gt; .mCustomScrollBox ~ .mCSB_scrollTools {
opacity: 0;
filter: "alpha(opacity=0)";
-ms-filter: "alpha(opacity=0)"; }
.mCS-autoHide:hover &gt; .mCustomScrollBox &gt; .mCSB_scrollTools, .mCS-autoHide:hover &gt; .mCustomScrollBox ~ .mCSB_scrollTools, .mCustomScrollBox:hover &gt; .mCSB_scrollTools, .mCustomScrollBox:hover ~ .mCSB_scrollTools, .mCustomScrollbar &gt; .mCustomScrollBox &gt; .mCSB_scrollTools.mCSB_scrollTools_onDrag, .mCustomScrollbar &gt; .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag {
opacity: 1;
filter: "alpha(opacity=100)";
-ms-filter: "alpha(opacity=100)"; }
.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.4);
filter: "alpha(opacity=40)";
-ms-filter: "alpha(opacity=40)"; }
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.75);
filter: "alpha(opacity=75)";
-ms-filter: "alpha(opacity=75)"; }
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85);
filter: "alpha(opacity=85)";
-ms-filter: "alpha(opacity=85)"; }
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.9);
filter: "alpha(opacity=90)";
-ms-filter: "alpha(opacity=90)"; }
.mCSB_scrollTools .mCSB_buttonDown, .mCSB_scrollTools .mCSB_buttonLeft, .mCSB_scrollTools .mCSB_buttonRight, .mCSB_scrollTools .mCSB_buttonUp {
background-image: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/css/mCSB_buttons.png);
background-repeat: no-repeat;
opacity: .4;
filter: "alpha(opacity=40)";
-ms-filter: "alpha(opacity=40)"; }
.mCSB_scrollTools .mCSB_buttonUp {
background-position: 0 0; }
.mCSB_scrollTools .mCSB_buttonDown {
background-position: 0 -20px; }
.mCSB_scrollTools .mCSB_buttonLeft {
background-position: 0 -40px; }
.mCSB_scrollTools .mCSB_buttonRight {
background-position: 0 -56px; }
.mCSB_scrollTools .mCSB_buttonDown:hover, .mCSB_scrollTools .mCSB_buttonLeft:hover, .mCSB_scrollTools .mCSB_buttonRight:hover, .mCSB_scrollTools .mCSB_buttonUp:hover {
opacity: .75;
filter: "alpha(opacity=75)";
-ms-filter: "alpha(opacity=75)"; }
.mCSB_scrollTools .mCSB_buttonDown:active, .mCSB_scrollTools .mCSB_buttonLeft:active, .mCSB_scrollTools .mCSB_buttonRight:active, .mCSB_scrollTools .mCSB_buttonUp:active {
opacity: .9;
filter: "alpha(opacity=90)";
-ms-filter: "alpha(opacity=90)"; }
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.15); }
.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75); }
.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: rgba(0, 0, 0, 0.85); }
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: rgba(0, 0, 0, 0.9); }
.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -80px 0; }
.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -80px -20px; }
.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -80px -40px; }
.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -80px -56px; }
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail, .mCS-light-2.mCSB_scrollTools .mCSB_draggerRail {
width: 4px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.1);
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px; }
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 4px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.75);
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px; }
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 4px;
margin: 6px auto; }
.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85); }
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.9); }
.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px 0; }
.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -20px; }
.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -40px; }
.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -56px; }
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1);
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px; }
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px; }
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85); }
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9); }
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px 0; }
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -20px; }
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -40px; }
.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -56px; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail, .mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail {
width: 4px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.1);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 6px;
background-color: #fff;
background-color: rgba(255, 255, 255, 0.75);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px; }
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 4px;
margin: 6px 0; }
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
width: 100%;
height: 6px;
margin: 5px auto; }
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85); }
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.9); }
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
background-position: -16px 0; }
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
background-position: -16px -20px; }
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -20px -40px; }
.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
background-position: -20px -56px; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85); }
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9); }
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
background-position: -96px 0; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
background-position: -96px -20px; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -100px -40px; }
.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
background-position: -100px -56px; }
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.1); }
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 2px; }
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%; }
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
width: 100%;
height: 2px;
margin: 7px auto; }
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.15); }
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75); }
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85); }
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9); }
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
background-position: -80px 0; }
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
background-position: -80px -20px; }
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -80px -40px; }
.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
background-position: -80px -56px; }
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.15); }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger, .mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, .mCS-rounded.mCSB_scrollTools .mCSB_dragger {
height: 14px; }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 14px;
margin: 0 1px; }
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger {
width: 14px; }
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
height: 14px;
margin: 1px 0; }
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
width: 16px;
height: 16px;
margin: -1px 0; }
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
width: 4px; }
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
height: 16px;
width: 16px;
margin: 0 -1px; }
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
height: 4px;
margin: 6px 0; }
.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
background-position: 0 -72px; }
.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
background-position: 0 -92px; }
.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
background-position: 0 -112px; }
.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
background-position: 0 -128px; }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75); }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.15); }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85); }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9); }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -80px -72px; }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -80px -92px; }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -80px -112px; }
.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -80px -128px; }
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail {
width: 4px; }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
background-color: transparent;
background-position: center; }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==);
background-repeat: repeat-y;
opacity: .3;
filter: "alpha(opacity=30)";
-ms-filter: "alpha(opacity=30)"; }
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail {
height: 4px;
margin: 6px 0;
background-repeat: repeat-x; }
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
background-position: -16px -72px; }
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
background-position: -16px -92px; }
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -20px -112px; }
.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
background-position: -20px -128px; }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=); }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -96px -72px; }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -96px -92px; }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -100px -112px; }
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -100px -128px; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-repeat: repeat-y;
background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
background-image: -ms-linear-gradient(left, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%); }
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
background-repeat: repeat-x;
background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.5)), color-stop(100%, rgba(255, 255, 255, 0)));
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
background-image: -ms-linear-gradient(top, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%);
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0, rgba(255, 255, 255, 0) 100%); }
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger, .mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger {
height: 70px; }
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger {
width: 70px; }
.mCS-3d-dark.mCSB_scrollTools, .mCS-3d.mCSB_scrollTools {
opacity: 1;
filter: "alpha(opacity=30)";
-ms-filter: "alpha(opacity=30)"; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
-webkit-border-radius: 16px;
-moz-border-radius: 16px;
border-radius: 16px; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-3d.mCSB_scrollTools .mCSB_draggerRail {
width: 8px;
background-color: #000;
background-color: rgba(0, 0, 0, 0.2);
box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2); }
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #555; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 8px; }
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 8px;
margin: 4px 0;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2); }
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
width: 100%;
height: 8px;
margin: 4px auto; }
.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px -72px; }
.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -92px; }
.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -112px; }
.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -128px; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1);
box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1); }
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); }
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px -72px; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -92px; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -112px; }
.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -128px; }
.mCS-3d-thick-dark.mCSB_scrollTools, .mCS-3d-thick.mCSB_scrollTools {
opacity: 1;
filter: "alpha(opacity=30)";
-ms-filter: "alpha(opacity=30)"; }
.mCS-3d-thick-dark.mCSB_scrollTools, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer, .mCS-3d-thick.mCSB_scrollTools, .mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px; }
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical, .mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical {
right: 1px; }
.mCS-3d-thick-dark.mCSB_scrollTools_vertical, .mCS-3d-thick.mCSB_scrollTools_vertical {
box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5); }
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal, .mCS-3d-thick.mCSB_scrollTools_horizontal {
bottom: 1px;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5); }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
width: 12px;
margin: 2px;
position: absolute;
height: auto;
top: 0;
bottom: 0;
left: 0;
right: 0; }
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
height: 12px;
width: auto; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #555; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
background-color: #000;
background-color: rgba(0, 0, 0, 0.05);
box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1); }
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
background-color: transparent; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px -72px; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -92px; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -112px; }
.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -128px; }
.mCS-3d-thick-dark.mCSB_scrollTools {
box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2); }
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2); }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2); }
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2); }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #777; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
background-color: #fff;
background-color: rgba(0, 0, 0, 0.05);
box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1); }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-minimal.mCSB_scrollTools .mCSB_draggerRail {
background-color: transparent; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px -72px; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -92px; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -112px; }
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -128px; }
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical, .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
right: 0;
margin: 12px 0; }
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, .mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
bottom: 0;
margin: 0 12px; }
.mCS-dir-rtl &gt; .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical, .mCS-dir-rtl &gt; .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical {
left: 0;
right: auto; }
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger, .mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger {
height: 50px; }
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger, .mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger {
width: 50px; }
.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.2);
filter: "alpha(opacity=20)";
-ms-filter: "alpha(opacity=20)"; }
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.5);
filter: "alpha(opacity=50)";
-ms-filter: "alpha(opacity=50)"; }
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.2);
filter: "alpha(opacity=20)";
-ms-filter: "alpha(opacity=20)"; }
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.5);
filter: "alpha(opacity=50)";
-ms-filter: "alpha(opacity=50)"; }
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools .mCSB_draggerRail {
width: 6px;
background-color: #000;
background-color: rgba(0, 0, 0, 0.2); }
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 6px; }
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 6px;
margin: 5px 0; }
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
width: 12px; }
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, .mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
height: 12px;
margin: 2px 0; }
.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px -72px; }
.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -92px; }
.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -112px; }
.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -128px; }
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75); }
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85); }
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9); }
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1); }
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px -72px; }
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -92px; }
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -112px; }
.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -128px; }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset.mCSB_scrollTools .mCSB_draggerRail {
width: 12px;
background-color: #000;
background-color: rgba(0, 0, 0, 0.2); }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
width: 6px;
margin: 3px 5px;
position: absolute;
height: auto;
top: 0;
bottom: 0;
left: 0;
right: 0; }
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, .mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
height: 6px;
margin: 5px 3px;
position: absolute;
width: auto;
top: 0;
bottom: 0;
left: 0;
right: 0; }
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, .mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail {
width: 100%;
height: 12px;
margin: 2px 0; }
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset.mCSB_scrollTools .mCSB_buttonUp {
background-position: -32px -72px; }
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset.mCSB_scrollTools .mCSB_buttonDown {
background-position: -32px -92px; }
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -40px -112px; }
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset.mCSB_scrollTools .mCSB_buttonRight {
background-position: -40px -128px; }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75); }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85); }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9); }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.1); }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp, .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp {
background-position: -112px -72px; }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown, .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown {
background-position: -112px -92px; }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft, .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft {
background-position: -120px -112px; }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight, .mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight {
background-position: -120px -128px; }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, .mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail {
background-color: transparent;
border-width: 1px;
border-style: solid;
border-color: #fff;
border-color: rgba(255, 255, 255, 0.2);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
border-color: #000;
border-color: rgba(0, 0, 0, 0.2); }
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.6); }
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
background-color: #000;
background-color: rgba(0, 0, 0, 0.6); }
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.75); }
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.85); }
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #000;
background-color: rgba(0, 0, 0, 0.9); }
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.75); }
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.85); }
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, .mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
background-color: #fff;
background-color: rgba(255, 255, 255, 0.9); }  body {
font-style: normal;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-moz-font-feature-settings: 'liga','kern';
height: auto !important; }
iframe {
display: block; }
img {
max-width: 100%; }
select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none; }
select::-ms-expand, input::-ms-clear {
display: none; }
html {
height: 100%; }
.align-center {
text-align: center; }
ul {
padding: 0;
margin: 0; }
a, a:hover, a:focus {
text-decoration: none;
outline: none;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
a, a:hover, a:focus {
transition: none; } }
a {
color: #000; }
a:hover {
color: #e02537; }
button, button:focus, select, select:focus {
outline: none; }
figure {
margin: 0; }
.wrapper {
padding-top: 0px; }
.rev-select .select-styled {
background: #f5f5f5;
-webkit-appearance: none;
-moz-appearance: none;
-o-appearance: none;
cursor: pointer;
border: solid 1px #d4d4d4;
padding: 0 55px 0 15px;
height: 43px;
line-height: 40px;
position: relative;
overflow: hidden; }
.rev-select .select-styled:before {
content: "";
height: 12px;
width: 12px;
position: absolute;
right: 22px;
top: 13px;
pointer-events: none;
border-left: solid 3px #000;
border-bottom: solid 3px #000;
transform: rotate(-45deg); }
.rev-select .select-styled.active:before {
top: 16px;
-webkit-transform: rotate(135deg);
-ms-transform: rotate(135deg);
-o-transform: rotate(135deg);
transform: rotate(135deg); }
.rev-select .select-options {
display: none;
position: absolute;
z-index: 15;
width: 100%;
box-shadow: 0 0 10px #CCC; }
.rev-select .select-options li {
background: #f5f5f5;
border-bottom: solid 1px #d4d4d4;
padding: 8px 15px !important;
list-style-type: none;
cursor: pointer; }
.rev-select .select-options li:hover {
background: #e2e2e2; }
@media (max-width: 767px) {
.rev-select {
font-size: 15px; } }
.cms-page .section-content h1 {
font-size: 35px;
font-weight: 700;
color: #000; }
.cms-page .section-content h2 {
font-size: 30px;
font-weight: 700;
color: #000; }
.cms-page .section-content h3 {
font-size: 26px;
font-weight: 700;
margin-top: 0;
color: #000; }
.cms-page .section-content h4 {
font-size: 24px;
font-weight: 700;
margin-top: 0;
color: #000;
margin-bottom: 13px; }
.cms-page .section-content h5 {
font-size: 22px;
font-weight: 700;
margin-bottom: 12px; }
.cms-page .section-content h6 {
font-size: 18px;
font-weight: 700;
margin-bottom: 18px; }
.cms-page .section-content ul li {
color: #000;
font-size: 22px;
font-weight: 400;
font-family: "Calibri", sans-serif;
margin-bottom: 0px; }
.cms-page .section-content ul {
margin-bottom: 30px; }
.cms-page .section-content ol {
color: #000; }
.cms-page .section-content ol li {
color: #000;
font-size: 22px;
font-weight: 400;
font-family: "Calibri", sans-serif;
margin-bottom: 0px; }
.ratio-img figure {
position: relative;
padding-bottom: 67%;
overflow: hidden; }
.ratio-img figure img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover; }
.owl-dots {
position: absolute;
top: 50%;
right: 20px;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%); }
.owl-dots .owl-dot {
padding: 5px 0;
width: 18px;
height: 18px;
border-radius: 100%;
margin: 3px 0;
border: solid 1px transparent; }
.owl-dots .owl-dot span {
height: 6px;
width: 6px;
border-radius: 100%;
background: #000;
display: block;
margin: auto; }
.owl-dots .owl-dot.active {
border: solid 1px #000; }
.owl-dots .owl-dot.active span {
background: #e02537; }
.cta-button {
font-size: 10px;
color: #fff;
text-transform: uppercase;
position: relative;
display: inline-block;
padding: 0 20px;
line-height: 38px;
text-align: center;
font-weight: 500; }
.cta-button span {
display: block;
overflow: hidden;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.cta-button span {
transition: none; } }
.cta-button:before {
width: 100%;
position: absolute;
height: 40px;
border-radius: 5px;
background: #e02537;
content: "";
display: block;
top: 0;
left: 0;
transform: skewX(-15deg);
z-index: -1; }
.cta-button .clone {
position: absolute;
-webkit-transform: translate3d(-50%, 0, 0);
transform: translate3d(-50%, 0, 0);
top: 0;
left: 0;
width: 100%;
opacity: 0;
pointer-events: none; }
.cta-button:hover {
color: #fff; }
.cta-button:hover span {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
opacity: 0;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.cta-button:hover span {
transition: none; } }
.cta-button:hover .clone {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.cta-button:hover .clone {
transition: none; } }  .after-banner-info {
text-align: center;
padding: 45px 0 33px;
font-family: "Gotham", sans-serif;
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px; }
.after-banner-info .section-title {
font-size: 39px;
font-weight: 500;
margin-bottom: 10px; }
@media (max-width: 1024px) {
.after-banner-info .section-title {
font-size: 30px; } }
@media (max-width: 767px) {
.after-banner-info .section-title {
font-size: 22px; } }
.after-banner-info .desc p {
font-size: 24px;
line-height: 35px;
font-weight: 400; }
@media (max-width: 1024px) {
.after-banner-info .desc p {
font-size: 20px; }
.after-banner-info .desc p br {
display: none; } }
@media (max-width: 767px) {
.after-banner-info .desc p {
font-size: 16px;
line-height: 25px; } }
.after-banner-info .desc p a {
color: #000;
display: inline-block; }
.after-banner-info .desc p a:hover {
color: #e02537; } .welcome-img figure {
height: 467px;
overflow: hidden; }
.welcome-img figure img {
height: 150%;
width: 100%;
object-fit: cover; }
@media (max-width: 991px) {
.welcome-img figure {
min-height: 350px; } }
@media (max-width: 767px) {
.welcome-img figure {
min-height: 250px; } } .new-product-main {
padding: 93px 0; }
@media (max-width: 1200px) {
.new-product-main {
padding: 60px 0; } }
@media (max-width: 767px) {
.new-product-main {
padding: 40px 0; } }
.new-product-main .section-title {
text-align: center;
font-size: 39px;
font-weight: 500; }
@media (max-width: 1200px) {
.new-product-main .section-title {
font-size: 30px; } }
@media (max-width: 767px) {
.new-product-main .section-title {
font-size: 22px; } }
.new-product-main .sub-title {
text-align: center;
font-size: 24px;
line-height: 35px;
font-weight: 400;
margin-bottom: 50px; }
@media (max-width: 1200px) {
.new-product-main .sub-title {
font-size: 20px; } }
@media (max-width: 767px) {
.new-product-main .sub-title {
font-size: 16px;
line-height: 25px;
margin-bottom: 20px; } }
.new-product-main .new-product-list {
margin-bottom: 40px; }
.new-product-main .new-product-list .item {
text-align: center;
padding-bottom: 40px; }
.new-product-main .new-product-list .item .product-img {
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.new-product-main .new-product-list .item .product-img {
transition: none; } }
.new-product-main .new-product-list .item .product-img figure {
margin: 0;
padding-bottom: 118%;
position: relative; }
.new-product-main .new-product-list .item .product-img figure img {
max-width: 215px;
max-height: 100%;
height: auto;
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 0;
bottom: 0; }
@media (max-width: 991px) {
.new-product-main .new-product-list .item .product-img figure img {
max-width: 170px; } }
@media (max-width: 767px) {
.new-product-main .new-product-list .item .product-img figure {
padding-bottom: 63%; }
.new-product-main .new-product-list .item .product-img figure img {
max-width: 215px; } }
@media (max-width: 480px) {
.new-product-main .new-product-list .item .product-img figure {
padding-bottom: 330px; } }
.new-product-main .new-product-list .item .product-info {
font-size: 11px;
margin: auto auto 18px;
max-width: 220px; }
.new-product-main .new-product-list .item .product-info .pro-name {
font-weight: 500; }
.new-product-main .new-product-list .item:hover .product-img {
-webkit-transform: translateY(-5px);
-ms-transform: translateY(-5px);
-o-transform: translateY(-5px);
transform: translateY(-5px);
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.new-product-main .new-product-list .item:hover .product-img {
transition: none; } }
.new-product-main .new-product-list .item .cta-button {
position: absolute;
bottom: 0;
left: 0;
right: 0;
margin: auto;
max-width: 130px; }
@media (max-width: 767px) {
.new-product-main .new-product-list .item {
max-width: 100%;
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 0 0 100%;
margin-bottom: 20px; } }
.new-product-main .view-all {
text-align: center; }
.new-product-main .view-all .cta-button {
min-width: 205px; }  .need-help-main {
background: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/help-bg.jpg) no-repeat;
background-size: cover;
padding: 80px 0; }
@media (max-width: 991px) {
.need-help-main {
padding: 60px 0; } }
@media (max-width: 767px) {
.need-help-main {
padding: 40px 0 0; }
.need-help-main .icon-box {
-webkit-box-flex: 0 0 50%;
-moz-box-flex: 0 0 50%;
-ms-flex: 0 0 50%;
-webkit-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 0 0 50%;
max-width: 50%; } }
@media (max-width: 480px) {
.need-help-main .icon-box {
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 0 0 100%;
max-width: 100%; } }
.need-help-main .section-title {
text-align: center;
margin-bottom: 30px; }
@media (max-width: 991px) {
.need-help-main .section-title {
font-size: 30px; } }
@media (max-width: 767px) {
.need-help-main .section-title {
font-size: 22px; } }
.need-help-main a {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-ms-flex-pack: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%;
height: 226px; }
.need-help-main a .icon-title {
font-weight: 400;
font-size: 16px;
color: #fff;
margin-top: auto;
padding-top: 25px;
text-align: center;
transition: 0.3s all; }
@media (prefers-reduced-motion: reduce) {
.need-help-main a .icon-title {
transition: none; } }
@media (max-width: 991px) {
.need-help-main a .icon-title {
font-size: 14px; } }
.need-help-main a .icon-img {
text-align: center;
padding: 0;
width: 100%;
margin-bottom: auto; }
.need-help-main a .icon-img img {
height: 48px;
width: 48px;
transition: 0.3s all;
backface-visibility: hidden; }
@media (prefers-reduced-motion: reduce) {
.need-help-main a .icon-img img {
transition: none; } }
.need-help-main a:hover .icon-title {
padding-bottom: 10px;
transition: 0.3s all; }
@media (prefers-reduced-motion: reduce) {
.need-help-main a:hover .icon-title {
transition: none; } }
.need-help-main a:hover .icon-img img {
height: 60px;
width: 60px;
transition: 0.3s all;
backface-visibility: hidden; }
@media (prefers-reduced-motion: reduce) {
.need-help-main a:hover .icon-img img {
transition: none; } }  .about-content {
padding: 46px 0 57px;
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px; }
.about-content .section-title {
text-align: center;
font-weight: 500;
margin-bottom: 15px;
font-size: 39px; }
@media (max-width: 991px) {
.about-content .section-title {
font-size: 30px; } }
@media (max-width: 767px) {
.about-content .section-title {
font-size: 22px; } }
.about-content .sub-title {
text-align: center;
font-weight: 400;
font-size: 24px;
line-height: 33px;
max-width: 800px;
margin: auto auto 35px; }
@media (max-width: 991px) {
.about-content .sub-title {
font-size: 20px; } }
@media (max-width: 767px) {
.about-content .sub-title {
font-size: 16px;
line-height: 25px;
margin-bottom: 15px; } }
.about-content .about-desc {
column-count: 3;
column-gap: 40px;
padding: 0 22px;
margin-bottom: 46px; }
.about-content .about-desc p {
font-size: 12px;
line-height: 15px;
margin-bottom: 12px;
font-weight: 500; }
@media (max-width: 991px) {
.about-content .about-desc {
column-count: 2;
padding: 0; } }
@media (max-width: 767px) {
.about-content .about-desc {
column-count: 1;
padding: 0;
margin-bottom: 20px; } }
.about-content .about-img-box .ratio-img figure {
padding-bottom: 60%; }
@media (max-width: 767px) {
.about-content {
padding: 40px 0; } }  .promotion-listing .item {
padding: 28px 0; }
.promotion-listing .item .left-detail {
padding-right: 70px; }
.promotion-listing .item .left-detail .pro-title {
font-weight: 400;
font-size: 24px;
color: #e02537;
margin-bottom: 30px; }
@media (max-width: 767px) {
.promotion-listing .item .left-detail .pro-title {
margin-bottom: 20px; } }
.promotion-listing .item .left-detail .pro-sub-title {
font-size: 17px;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 10px; }
.promotion-listing .item .left-detail .pro-desc {
margin-bottom: 50px; }
.promotion-listing .item .left-detail .pro-desc p {
font-weight: 400;
line-height: 20px; }
@media (max-width: 767px) {
.promotion-listing .item .left-detail .pro-desc {
margin-bottom: 30px; } }
@media (max-width: 991px) {
.promotion-listing .item .left-detail {
padding-right: 15px; } }
.promotion-listing .item .right-imgbox .ratio-img {
width: 474px;
margin: 0 0 0 -32px; }
.promotion-listing .item .right-imgbox .ratio-img figure {
padding-bottom: 80%; }
@media (max-width: 991px) {
.promotion-listing .item .right-imgbox .ratio-img {
width: auto;
margin: 0; } }
.promotion-listing .item .cta-button {
min-width: 206px;
font-size: 12px;
line-height: 40px;
z-index: 1; }
.promotion-listing .item:nth-child(even) {
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px; }
.promotion-listing .item:nth-child(even) .row .left-detail {
order: 2;
padding: 0 0 0 70px; }
@media (max-width: 991px) {
.promotion-listing .item:nth-child(even) .row .left-detail {
padding-left: 15px; } }
.promotion-listing .item:nth-child(even) .row .right-imgbox {
order: 1; }
.promotion-listing .item:nth-child(even) .row .right-imgbox .ratio-img {
margin: 0; }
@media (max-width: 767px) {
.promotion-listing .item .left-detail {
order: 2; }
.promotion-listing .item .right-imgbox {
order: 1;
margin-bottom: 30px; } }  .form-main {
padding: 60px 0; }
@media (max-width: 767px) {
.form-main {
padding: 40px 0; } }
.form-main .form-heading {
padding: 0 20px;
margin-bottom: 4px; }
.form-main .form-heading .section-title {
font-size: 24px;
font-weight: 400;
color: #e02537;
margin-bottom: 0; }
.form-main .form-heading .req-note {
font-size: 11px;
font-weight: 500;
color: #e02537; }
@media (max-width: 767px) {
.form-main .form-heading {
padding: 0 10px; }
.form-main .form-heading .section-title {
font-size: 17px; } }
.form-main .gform_wrapper.gform_validation_error .gform_body ul li.gfield.col-12.gfield_error:not(.gf_left_half):not(.gf_right_half) {
max-width: 100% !important; }
.form-main .gform_wrapper {
margin: 0; }
.form-main .gform_wrapper .warningTextareaInfo {
display: none !important; }
.form-main .gform_wrapper ul.gform_fields {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
position: relative; }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container {
margin-top: 0; }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container input[type="text"] {
background: #f5f5f5;
border: solid 1px #d4d4d4 !important;
width: 100%;
height: 43px;
padding: 0 15px 0 15px !important; }
@media (max-width: 767px) {
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container input[type="text"] {
font-size: 14px !important; } }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container select {
height: 43px;
background: #f5f5f5;
border: solid 1px #d4d4d4 !important;
width: 100%;
padding: 0 15px;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
display: none; }
@media (max-width: 767px) {
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container select {
font-size: 14px !important; } }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container textarea {
height: 123px;
background: #f5f5f5;
border: solid 1px #d4d4d4;
width: 100%; }
@media (max-width: 767px) {
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container textarea {
font-size: 14px !important; } }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container *::-webkit-input-placeholder { color: #000;
font-weight: 500; }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container *::-moz-placeholder { color: #000;
font-weight: 500; }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container *:-ms-input-placeholder { color: #000;
font-weight: 500; }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container *:-moz-placeholder { color: #000;
font-weight: 500; }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container.ginput_container_select {
position: relative; }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container.ginput_recaptcha {
float: left;
position: relative;
z-index: 11; }
@media (max-width: 360px) {
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container.ginput_recaptcha {
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
-o-transform: scale(0.9);
transform: scale(0.9);
margin: -25px 0 0 -16px; } }
.form-main .gform_wrapper .gform_ajax_spinner {
padding-left: 10px;
max-width: 35px;
position: absolute;
margin: 25px 0 0 0; }
.form-main .gform_wrapper .gfield_required {
color: #000;
margin-left: 0; }
.form-main .gform_wrapper .gfield {
padding: 0 20px !important;
margin-top: 20px !important; }
.form-main .gform_wrapper .gfield.cl-repeater-hide {
display: none; }
@media (max-width: 767px) {
.form-main .gform_wrapper .gfield {
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 0 0 100%;
max-width: 100%;
padding: 0 15px !important; } }
@media (max-width: 360px) {
.form-main .gform_wrapper .gfield {
padding: 0 10px !important; } }
.form-main .gform_wrapper div.validation_error {
display: none !important; }
.form-main .gform_wrapper .validation_message {
color: #F00;
font-weight: normal;
padding-top: 5px !important; }
.form-main .gform_wrapper .gfield_label {
font-size: 17px !important;
font-weight: 400 !important;
margin-bottom: 4px; }
@media (max-width: 991px) {
.form-main .gform_wrapper .gfield_label {
font-size: 15px !important; } }
@media (max-width: 767px) {
.form-main .gform_wrapper .gfield_label {
font-size: 14px !important; } }
.form-main .gform_wrapper .gfield_error {
background: none !important;
border: 0 !important; }
.form-main .gform_wrapper .gfield_error .gfield_label {
margin-top: 0 !important;
color: #000; }
.form-main .gform_wrapper .gfield_error .ginput_container {
margin-top: 0 !important; }
.form-main .gform_wrapper .gfield_error .ginput_container input {
border: solid 1px #d4d4d4; }
.form-main .gform_wrapper .gform_footer {
position: relative;
padding: 0 25px;
text-align: right; }
.form-main .gform_wrapper .gform_footer input[type="submit"] {
font-size: 10px;
color: #fff;
text-transform: uppercase;
position: relative;
display: inline-block;
padding: 0 20px;
line-height: 38px;
text-align: center;
font-weight: 500;
position: absolute;
width: 206px;
top: 0;
right: -15px;
opacity: 0;
z-index: 2; }
.form-main .gform_wrapper .gform_footer input[type="submit"] span {
display: block;
overflow: hidden;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.form-main .gform_wrapper .gform_footer input[type="submit"] span {
transition: none; } }
.form-main .gform_wrapper .gform_footer input[type="submit"]:before {
width: 100%;
position: absolute;
height: 40px;
border-radius: 5px;
background: #e02537;
content: "";
display: block;
top: 0;
left: 0;
transform: skewX(-15deg);
z-index: -1; }
.form-main .gform_wrapper .gform_footer input[type="submit"] .clone {
position: absolute;
-webkit-transform: translate3d(-50%, 0, 0);
transform: translate3d(-50%, 0, 0);
top: 0;
left: 0;
width: 100%;
opacity: 0;
pointer-events: none; }
.form-main .gform_wrapper .gform_footer input[type="submit"]:hover {
color: #fff; }
.form-main .gform_wrapper .gform_footer input[type="submit"]:hover span {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
opacity: 0;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.form-main .gform_wrapper .gform_footer input[type="submit"]:hover span {
transition: none; } }
.form-main .gform_wrapper .gform_footer input[type="submit"]:hover .clone {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.form-main .gform_wrapper .gform_footer input[type="submit"]:hover .clone {
transition: none; } }
.form-main .gform_wrapper .gform_footer .cta-button {
min-width: 206px;
font-size: 12px;
line-height: 40px; }
.form-main .gform_wrapper .gform_footer .cta-button input + .clone, .form-main .gform_wrapper .gform_footer .cta-button input + .clone + .clone {
opacity: 0; }
@media (max-width: 480px) {
.form-main .gform_wrapper .gform_footer {
text-align: center; } }
@media (max-width: 360px) {
.warranty-main .form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container.ginput_recaptcha {
transform: scale(0.85);
margin: -25px 0 0 -21px; } }
.gform_wrapper ul.gform_fields li.gfield.loc-add *::-webkit-input-placeholder { opacity: 0 !important; }
.gform_wrapper ul.gform_fields li.gfield.loc-add *::-moz-placeholder { opacity: 0 !important; }
.gform_wrapper ul.gform_fields li.gfield.loc-add *:-ms-input-placeholder { opacity: 0 !important; }
.gform_wrapper ul.gform_fields li.gfield.loc-add *:-moz-placeholder { opacity: 0 !important; }  .customer-care .after-banner-info .container {
max-width: 815px; }
.customer-care .after-banner-info .section-title {
font-weight: 500; }
.customer-care .after-banner-info .desc p {
font-size: 17px;
line-height: 22px;
margin-bottom: 10px; }
.customer-care .after-banner-info .desc p strong {
font-family: "Gotham", sans-serif;
font-weight: 600; }
.customer-care .form-main .gform_wrapper .gform_footer {
margin: -73px 0 30px 0; }
@media (max-width: 767px) {
.customer-care .form-main .gform_wrapper .gform_footer {
margin: 25px 0 0 0; } }  .contact-us-main .contact-info {
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px;
text-align: center; }
.contact-us-main .contact-info .contact-address {
padding: 33px 0;
font-size: 21px;
font-weight: 400; }
.contact-us-main .contact-info .contact-address .section-title {
font-weight: 600;
text-transform: uppercase;
font-size: 21px;
margin-bottom: 3px; }
.contact-us-main .contact-info .contact-address .address {
color: #000; }
.contact-us-main .contact-info .contact-address .address:hover {
color: #e02537; }
.contact-us-main .mapcontainer {
position: relative;
height: 435px;
overflow: hidden;
width: 100%; }
.contact-us-main .mapcontainer .google-map {
height: 100%; }
@media (max-width: 767px) {
.contact-us-main .mapcontainer {
height: 300px; } }
.contact-us-main .form-main .gform_wrapper .gform_footer {
margin: -73px 0 30px 0; }
@media (max-width: 767px) {
.contact-us-main .form-main .gform_wrapper .gform_footer {
margin: 25px 0 0 0; } }  .appliance-selection {
text-align: center;
padding: 61px 0; }
@media (max-width: 767px) {
.appliance-selection {
padding: 40px 0; } }
.appliance-selection .section-title {
margin-bottom: 35px;
font-size: 39px;
line-height: 52px; }
@media (max-width: 991px) {
.appliance-selection .section-title {
font-size: 30px; } }
@media (max-width: 767px) {
.appliance-selection .section-title {
font-size: 20px;
line-height: 25px;
margin-bottom: 15px; } }
.appliance-selection .option-btns .cta-button {
min-width: 206px;
margin: 0 12px;
font-size: 12px;
line-height: 40px; }
@media (max-width: 991px) {
.appliance-selection .option-btns .cta-button {
min-width: 140px; } }
@media (max-width: 480px) {
.appliance-selection .option-btns .cta-button {
min-width: 140px;
display: block;
width: 190px;
margin: auto auto 15px; }
.appliance-selection .option-btns .cta-button:last-child {
margin-bottom: 0; } }
.product-listing {
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px;
padding: 37px 0 1px; }
.product-listing .heading {
margin-bottom: 28px;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-ms-flex-pack: space-between; }
.product-listing .heading .title {
-webkit-box-flex: 0 0 68%;
-moz-box-flex: 0 0 68%;
-ms-flex: 0 0 68%;
-webkit-flex: 0 0 68%;
flex: 0 0 68%;
max-width: 0 0 68%;
font-size: 39px;
margin-bottom: 0; }
@media (max-width: 991px) {
.product-listing .heading .title {
font-size: 30px; } }
@media (max-width: 767px) {
.product-listing .heading .title {
font-size: 22px; } }
@media (max-width: 480px) {
.product-listing .heading .title {
margin-bottom: 15px; } }
.product-listing .heading .filter-select {
float: right;
position: relative; }
.product-listing .heading .filter-select select {
width: 285px;
height: 45px;
border-radius: 8px;
border: solid 1px #000;
background: #f5f5f4;
box-shadow: 0px 0 0px #000;
padding: 0 40px 0 10px;
font-weight: 400;
cursor: pointer;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
display: none; }
@media (max-width: 991px) {
.product-listing .heading .filter-select select {
width: 220px; } }
@media (max-width: 767px) {
.product-listing .heading .filter-select select {
width: 160px; } }
.product-listing .heading .filter-select:before {
content: "";
height: 12px;
width: 12px;
position: absolute;
right: 15px;
top: 13px;
pointer-events: none;
border-left: solid 3px #000;
border-bottom: solid 3px #000;
transform: rotate(-45deg); }
@media (max-width: 480px) {
.product-listing .heading .filter-select {
float: none;
padding: 0 8px; }
.product-listing .heading .filter-select select {
width: 100%;
padding: 0 40px 0 15px; }
.product-listing .heading .filter-select:before {
right: 23px; } }
.product-listing .heading .filter-select .rev-select {
width: 285px; }
.product-listing .heading .filter-select .rev-select .select-styled {
border-color: #000;
border-radius: 8px; }
@media (max-width: 991px) {
.product-listing .heading .filter-select .rev-select {
width: 220px; } }
@media (max-width: 767px) {
.product-listing .heading .filter-select .rev-select {
width: 160px; } }
@media (max-width: 480px) {
.product-listing .heading .filter-select .rev-select {
width: 100%; }
.product-listing .heading .filter-select .rev-select .select-styled {
text-align: left; }
.product-listing .heading .filter-select .rev-select .select-options {
width: calc(100% - 16px); }
.product-listing .heading .filter-select .rev-select .select-options li {
text-align: left; } }
.product-listing .heading:after {
clear: both;
float: none;
display: block;
content: ""; }
@media (max-width: 480px) {
.product-listing .heading {
display: block;
text-align: center; } }
.product-listing .pro-main-sub section {
margin-bottom: 25px; }
.product-listing .product-boxes {
margin: 0 -12px; }
.product-listing .product-boxes .product-box {
background: #fff;
padding: 30px 24px 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
border-radius: 8px;
height: 100%;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-ms-flex-pack: center;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.product-listing .product-boxes .product-box {
transition: none; } }
.product-listing .product-boxes .product-box .product-img {
text-align: center;
transition: 0.5s all;
margin-bottom: 11px; }
@media (prefers-reduced-motion: reduce) {
.product-listing .product-boxes .product-box .product-img {
transition: none; } }
.product-listing .product-boxes .product-box .product-img figure {
max-width: 190px; }
.product-listing .product-boxes .product-box .product-info {
margin-bottom: 15px;
width: 100%; }
.product-listing .product-boxes .product-box .product-info .pro-name {
margin-bottom: 25px; }
.product-listing .product-boxes .product-box .product-info .pro-name .title {
text-transform: uppercase;
font-weight: 600;
font-size: 17px;
margin-bottom: 3px; }
.product-listing .product-boxes .product-box .product-info .pro-name .pro-code {
font-weight: 400;
color: #cecfd1;
font-size: 14px; }
.product-listing .product-boxes .product-box .product-info .pro-features ul li {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-ms-flex-pack: space-between;
font-size: 14px;
margin-bottom: 2px; }
.product-listing .product-boxes .product-box .product-info .pro-features ul li .f-title {
letter-spacing: 0.3px; }
.product-listing .product-boxes .product-box .product-info .pro-features ul li .f-red-lbl {
font-weight: 600;
color: #e02537; }
.product-listing .product-boxes .product-box .more-info-btn {
text-align: center;
margin-top: auto; }
.product-listing .product-boxes .product-box .more-info-btn .cta-button {
z-index: 1;
min-width: 198px;
font-size: 12px;
line-height: 40px; }
@media (max-width: 767px) {
.product-listing .product-boxes .product-box .more-info-btn .cta-button {
min-width: 150px; } }
.product-listing .product-boxes .product-box:hover .product-img {
-webkit-transform: translateY(-5px);
-ms-transform: translateY(-5px);
-o-transform: translateY(-5px);
transform: translateY(-5px);
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.product-listing .product-boxes .product-box:hover .product-img {
transition: none; } }
@media (max-width: 767px) {
.product-listing .product-boxes .product-box {
padding: 15px; } }
@media (max-width: 480px) {
.product-listing .product-boxes .product-box {
padding: 20px; } }
.product-listing .product-boxes .item {
padding: 0 12px;
margin-bottom: 26px; }
@media (max-width: 600px) {
.product-listing .product-boxes .item {
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 0 0 100%;
max-width: 270px;
margin: 0 auto 26px; } }
@media (max-width: 480px) {
.product-listing .product-boxes .item {
max-width: 100%;
padding: 0 20px; } }  .woocommerce-product-gallery .owl-nav .owl-prev, .woocommerce-product-gallery .owl-nav .owl-next {
font-size: 0;
position: absolute;
left: 0;
top: 0; }
.woocommerce-product-gallery .owl-nav .owl-prev:before, .woocommerce-product-gallery .owl-nav .owl-next:before {
content: "";
height: 20px;
width: 20px;
border-left: solid 3px #000;
border-bottom: solid 3px #000;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
display: block;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.woocommerce-product-gallery .owl-nav .owl-prev:before, .woocommerce-product-gallery .owl-nav .owl-next:before {
transition: none; } }
.woocommerce-product-gallery .owl-nav .owl-prev:hover:before, .woocommerce-product-gallery .owl-nav .owl-next:hover:before {
border-color: #e02537;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.woocommerce-product-gallery .owl-nav .owl-prev:hover:before, .woocommerce-product-gallery .owl-nav .owl-next:hover:before {
transition: none; } }
@media (max-width: 767px) {
.woocommerce-product-gallery .owl-nav .owl-prev, .woocommerce-product-gallery .owl-nav .owl-next {
left: 23px; }
.woocommerce-product-gallery .owl-nav .owl-prev:before, .woocommerce-product-gallery .owl-nav .owl-next:before {
height: 25px;
width: 25px; } }
.woocommerce-product-gallery .owl-nav .owl-next {
left: auto;
right: 0; }
.woocommerce-product-gallery .owl-nav .owl-next:before {
-webkit-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg); }
@media (max-width: 767px) {
.woocommerce-product-gallery .owl-nav .owl-next {
left: auto;
right: 23px; } }
.related-suggestions .ul .owl-nav .owl-prev, .related-suggestions .ul .owl-nav .owl-next {
font-size: 0;
position: absolute;
left: 0;
top: 0; }
.related-suggestions .ul .owl-nav .owl-prev:before, .related-suggestions .ul .owl-nav .owl-next:before {
content: "";
height: 20px;
width: 20px;
border-left: solid 3px #000;
border-bottom: solid 3px #000;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
display: block;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.related-suggestions .ul .owl-nav .owl-prev:before, .related-suggestions .ul .owl-nav .owl-next:before {
transition: none; } }
.related-suggestions .ul .owl-nav .owl-prev:hover:before, .related-suggestions .ul .owl-nav .owl-next:hover:before {
border-color: #e02537;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.related-suggestions .ul .owl-nav .owl-prev:hover:before, .related-suggestions .ul .owl-nav .owl-next:hover:before {
transition: none; } }
@media (max-width: 767px) {
.related-suggestions .ul .owl-nav .owl-prev, .related-suggestions .ul .owl-nav .owl-next {
left: 23px; }
.related-suggestions .ul .owl-nav .owl-prev:before, .related-suggestions .ul .owl-nav .owl-next:before {
height: 25px;
width: 25px; } }
.related-suggestions .ul .owl-nav .owl-next {
left: auto;
right: 0; }
.related-suggestions .ul .owl-nav .owl-next:before {
-webkit-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
transform: rotate(-135deg); }
@media (max-width: 767px) {
.related-suggestions .ul .owl-nav .owl-next {
left: auto;
right: 23px; } }
.product-banner-section {
background-size: cover;
padding: 20px 0 30px; }
.product-banner-section .product-slider {
position: relative; }
.product-banner-section .product-slider .next, .product-banner-section .product-slider .prev {
font-size: 0;
position: absolute;
left: -50px;
top: 200px; }
.product-banner-section .product-slider .next:before, .product-banner-section .product-slider .prev:before {
content: "";
height: 25px;
width: 25px;
border-left: solid 3px #000;
border-bottom: solid 3px #000;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
display: block;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.product-banner-section .product-slider .next:before, .product-banner-section .product-slider .prev:before {
transition: none; } }
.product-banner-section .product-slider .next:hover:before, .product-banner-section .product-slider .prev:hover:before {
border-color: #e02537;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.product-banner-section .product-slider .next:hover:before, .product-banner-section .product-slider .prev:hover:before {
transition: none; } }
@media (max-width: 1200px) {
.product-banner-section .product-slider .next, .product-banner-section .product-slider .prev {
left: 0; } }
@media (max-width: 767px) {
.product-banner-section .product-slider .next, .product-banner-section .product-slider .prev {
top: 126px; } }
.product-banner-section .product-slider .next {
left: auto;
right: -50px; }
.product-banner-section .product-slider .next:before {
-webkit-transform: rotate(225deg);
-ms-transform: rotate(225deg);
-o-transform: rotate(225deg);
transform: rotate(225deg); }
@media (max-width: 1200px) {
.product-banner-section .product-slider .next {
right: 0; } }
.product-banner-section .product-slider .item .product-imgbox {
margin-bottom: 15px;
text-align: center; }
.product-banner-section .product-slider .item .product-imgbox img {
width: auto;
margin: auto;
max-width: 285px;
height: auto; }
@media (max-width: 767px) {
.product-banner-section .product-slider .item .product-imgbox {
max-width: 200px;
margin: auto auto 15px; }
.product-banner-section .product-slider .item .product-imgbox img {
max-width: 100%; } }
.product-banner-section .heading {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-ms-flex-pack: space-between;
margin-bottom: 20px; }
.product-banner-section .heading .left-part .product-name {
font-size: 39px;
font-weight: 500; }
@media (max-width: 991px) {
.product-banner-section .heading .left-part .product-name {
font-size: 30px; } }
@media (max-width: 767px) {
.product-banner-section .heading .left-part .product-name {
font-size: 20px; } }
.product-banner-section .heading .left-part .product-code {
font-size: 13px;
font-weight: 600; }
.product-banner-section .heading .left-part .product-h-w {
font-size: 13px; }
@media (max-width: 767px) {
.product-banner-section .heading .left-part {
margin-bottom: 20px; } }
.product-banner-section .heading .right-part .cta-button {
min-width: 152px;
z-index: 1;
font-size: 12px;
margin: 0 6px; }
@media (max-width: 991px) {
.product-banner-section .heading .right-part .cta-button {
min-width: 120px; } }
@media (max-width: 767px) {
.product-banner-section .heading .right-part .cta-button {
min-width: 140px; } }
@media (max-width: 360px) {
.product-banner-section .heading .right-part .cta-button {
min-width: 115px; } }
@media (max-width: 767px) {
.product-banner-section .heading {
display: block;
margin-bottom: 10px; } }
.product-banner-section .product-about-desc p {
font-size: 13px;
line-height: 18px;
font-weight: 500; }
@media (max-width: 767px) {
.product-banner-section {
padding: 0 14px; } }
@media (max-width: 991px) {
.product-banner-section {
margin-top: -27px; } }
.product-overview {
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px;
padding: 40px 0; }
.product-overview .section-title {
margin-bottom: 18px;
font-size: 39px;
font-weight: 500;
text-align: center; }
@media (max-width: 991px) {
.product-overview .section-title {
font-size: 30px; } }
@media (max-width: 767px) {
.product-overview .section-title {
font-size: 20px;
margin-bottom: 12px; } }
.product-overview ul {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.product-overview ul li {
-webkit-box-flex: 0 0 25%;
-moz-box-flex: 0 0 25%;
-ms-flex: 0 0 25%;
-webkit-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 0 0 25%;
max-width: 25%;
text-align: center;
list-style-type: none; }
.product-overview ul li .icon-box {
margin-bottom: 10px; }
@media (max-width: 360px) {
.product-overview ul li .icon-box {
max-width: 120px;
margin: auto auto 10px; } }
.product-overview ul li .icon-name {
text-transform: uppercase;
color: #e02537;
font-size: 16px;
line-height: 16px;
font-weight: 600; }
@media (max-width: 767px) {
.product-overview ul li {
-webkit-box-flex: 0 0 50%;
-moz-box-flex: 0 0 50%;
-ms-flex: 0 0 50%;
-webkit-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 0 0 50%;
max-width: 50%;
margin-bottom: 20px; }
.product-overview ul li .icon-name, .product-overview ul li .icon-desc {
font-size: 13px; } }
@media (max-width: 767px) {
.product-overview {
padding: 40px 0 20px; } }
.one-grid-list .product-imgbox {
text-align: center; }
.one-grid-list .product-info .title {
font-size: 39px;
font-weight: 500; }
@media (max-width: 991px) {
.one-grid-list .product-info .title {
font-size: 30px; } }
@media (max-width: 767px) {
.one-grid-list .product-info .title {
font-size: 20px; } }
.one-grid-list .product-info .desc p {
font-size: 13px;
font-weight: 500; }
.one-grid-list.top-sideimg {
padding-bottom: 20px; }
.one-grid-list.top-sideimg .product-imgbox {
margin-bottom: 30px; }
.one-grid-list.pattern-box {
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px; }
.one-grid-list.bottom-sideimg {
padding-top: 40px; }
.one-grid-list.bottom-sideimg .product-info {
margin-bottom: 30px; }
@media (max-width: 767px) {
.one-grid-list .container {
padding: 0 30px; }
.one-grid-list.top-sideimg .product-imgbox {
margin-bottom: 26px; }
.one-grid-list.bottom-sideimg {
padding-top: 27px; } }
.two-grid-list {
padding: 50px 0; }
.two-grid-list.pattern-box {
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px; }
@media (max-width: 767px) {
.two-grid-list .detailbox {
padding: 0 20px 10px; } }
.two-grid-list .product-info .title {
font-size: 39px;
font-weight: 500; }
@media (max-width: 991px) {
.two-grid-list .product-info .title {
font-size: 30px; } }
@media (max-width: 767px) {
.two-grid-list .product-info .title {
font-size: 20px; } }
.two-grid-list .product-info .desc p {
font-size: 13px;
font-weight: 500; }
.two-grid-list .imgbox .ratio-img figure {
padding-bottom: 100%; }
.two-grid-list .imgbox .iconimg img {
max-width: 376px;
margin: 70px auto; }
@media (max-width: 991px) {
.two-grid-list .imgbox .iconimg img {
max-width: 250px;
margin-bottom: 15px; } }
@media (max-width: 767px) {
.two-grid-list.first-imgbox .imgbox {
order: 1; }
.two-grid-list.first-imgbox .detailbox {
padding: 0 20px 35px; }
.two-grid-list.first-imgbox .detailbox .product-info {
order: 2; } }
@media (max-width: 767px) {
.two-grid-list {
padding: 30px 0 0; }
.two-grid-list .imgbox {
padding: 0; } }
.general-info {
padding: 40px 0; }
.general-info .section-title {
color: #e02537;
font-size: 24px;
font-weight: 400;
margin-bottom: 15px; }
.general-info .sub-title {
text-transform: uppercase;
font-weight: 600;
font-size: 17px; }
.general-info .info-box {
margin-bottom: 10px; }
.general-info .info-box ul li {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
-ms-flex-pack: space-between;
font-size: 14px; }
.general-info .info-box ul li .f-desc {
font-weight: 600;
color: #e02537; }
@media (max-width: 767px) {
.general-info {
padding: 30px 0 13px; }
.general-info .section-title {
font-size: 22px;
margin-bottom: 20px; }
.general-info .info-box {
margin-bottom: 18px; }
.general-info .container {
padding: 0 30px; } }
.extra-features {
padding-bottom: 40px; }
.extra-features .section-title {
color: #e02537;
font-size: 24px;
font-weight: 400;
margin-bottom: 30px; }
.extra-features .item {
text-align: center; }
.extra-features .item .f-icon {
max-width: 61px;
margin: auto auto 10px;
height: 72px;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center; }
.extra-features .item .f-icon img {
width: auto; }
.extra-features .item .f-name {
font-size: 14px;
line-height: 18px; }
.extra-features .owl-prev, .extra-features .owl-next {
top: 25px !important; }
@media (max-width: 767px) {
.extra-features .container {
padding: 0 20px; }
.extra-features .section-title {
margin-bottom: 17px; }
.extra-features .owl-prev, .extra-features .owl-next {
top: 35px !important; } }
@media (max-width: 480px) {
.extra-features .owl-item {
opacity: 0.2;
transition: 0.5s all; } }
@media (max-width: 480px) and (prefers-reduced-motion: reduce) {
.extra-features .owl-item {
transition: none; } }
@media (max-width: 480px) {
.extra-features .owl-item.center {
opacity: 1;
transition: 0.5s all; } }
@media (max-width: 480px) and (prefers-reduced-motion: reduce) {
.extra-features .owl-item.center {
transition: none; } }
.bottom-buynow {
position: fixed;
right: -150px;
bottom: 100px;
opacity: 0;
z-index: 11;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.bottom-buynow {
transition: none; } }
.bottom-buynow .cta-button {
font-size: 12px;
min-width: 150px; }
.bottom-buynow .cta-button:before {
box-shadow: 0 0 5px #CCC; }
.bottom-buynow.sticky {
opacity: 1;
right: -15px;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.bottom-buynow.sticky {
transition: none; } }  .warranty-main {
padding: 45px 0 25px;
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px; }
.warranty-main .form-main {
padding: 35px 0; }
.warranty-main .form-main .form-heading {
margin: 0; }
.warranty-main .about-warranty {
text-align: center; }
.warranty-main .about-warranty .section-title {
font-size: 39px;
margin-bottom: 15px; }
@media (max-width: 991px) {
.warranty-main .about-warranty .section-title {
font-size: 30px;
margin-bottom: 10px; } }
@media (max-width: 767px) {
.warranty-main .about-warranty .section-title {
font-size: 20px; } }
.warranty-main .about-warranty .sub-title {
font-size: 24px;
margin-bottom: 30px; }
@media (max-width: 991px) {
.warranty-main .about-warranty .sub-title {
font-size: 20px; } }
@media (max-width: 767px) {
.warranty-main .about-warranty .sub-title {
font-size: 15px; } }
.warranty-main .about-warranty .desc {
text-align: left; }
.warranty-main .about-warranty .desc p {
font-size: 12px;
line-height: 16px;
margin-bottom: 7px;
font-weight: 500; }
.warranty-main .step-progress {
margin-bottom: 30px; }
.warranty-main .step-progress .stepwizard {
text-align: center;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-ms-flex-pack: center; }
.warranty-main .step-progress .stepwizard .stepbtn {
height: 50px;
width: 51px;
margin: auto auto 15px;
line-height: 50px;
text-align: center;
display: block;
background: #333;
color: #fff;
font-size: 17px;
border-radius: 100%; }
.warranty-main .step-progress .stepwizard .stepbtn.active {
background: #dd042b; }
.warranty-main .step-progress .stepwizard li {
font-size: 12px;
list-style-type: none;
min-width: 100px;
padding: 0 25px;
font-weight: 500; }
@media (max-width: 360px) {
.warranty-main .step-progress .stepwizard li {
font-size: 10px;
padding: 0 5px; } }
@media (max-width: 767px) {
.warranty-main .step-progress {
margin-bottom: 20px; }
.warranty-main .step-progress .stepwizard .stepbtn {
height: 40px;
width: 40px;
margin: auto auto 5px;
line-height: 40px;
font-size: 14px; } }
.warranty-main .gform_wrapper .gf_page_steps {
display: none; }
.warranty-main .form-main .gform_wrapper .gform_page {
background: #fff;
padding: 5px 5px 25px 5px;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); }
.warranty-main .gform_wrapper div.gform_body ul.gform_fields li:first-child {
width: 100%;
padding: 0; }
.warranty-main .form-main .form-heading {
width: 100%;
padding: 0; }
.warranty-main .gform_wrapper .gform_page_footer {
text-align: center;
border: 0;
padding: 0;
margin: 5px 0 30px 0; }
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"], .warranty-main .gform_wrapper .gform_page_footer input[type="button"] {
font-size: 10px;
color: #fff;
text-transform: uppercase;
position: relative;
display: inline-block;
padding: 0 20px;
line-height: 38px;
text-align: center;
font-weight: 500;
position: absolute;
width: 206px;
top: 0;
right: -15px;
opacity: 0;
z-index: 2; }
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"] span, .warranty-main .gform_wrapper .gform_page_footer input[type="button"] span {
display: block;
overflow: hidden;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"] span, .warranty-main .gform_wrapper .gform_page_footer input[type="button"] span {
transition: none; } }
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"]:before, .warranty-main .gform_wrapper .gform_page_footer input[type="button"]:before {
width: 100%;
position: absolute;
height: 40px;
border-radius: 5px;
background: #e02537;
content: "";
display: block;
top: 0;
left: 0;
transform: skewX(-15deg);
z-index: -1; }
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"] .clone, .warranty-main .gform_wrapper .gform_page_footer input[type="button"] .clone {
position: absolute;
-webkit-transform: translate3d(-50%, 0, 0);
transform: translate3d(-50%, 0, 0);
top: 0;
left: 0;
width: 100%;
opacity: 0;
pointer-events: none; }
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"]:hover, .warranty-main .gform_wrapper .gform_page_footer input[type="button"]:hover {
color: #fff; }
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"]:hover span, .warranty-main .gform_wrapper .gform_page_footer input[type="button"]:hover span {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
opacity: 0;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"]:hover span, .warranty-main .gform_wrapper .gform_page_footer input[type="button"]:hover span {
transition: none; } }
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"]:hover .clone, .warranty-main .gform_wrapper .gform_page_footer input[type="button"]:hover .clone {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.warranty-main .gform_wrapper .gform_page_footer input[type="submit"]:hover .clone, .warranty-main .gform_wrapper .gform_page_footer input[type="button"]:hover .clone {
transition: none; } }
.warranty-main .gform_wrapper .gform_page_footer .cta-button {
min-width: 206px;
font-size: 12px;
line-height: 40px;
z-index: 1;
background: none;
border: 0;
margin: 0 10px; }
.warranty-main .gform_wrapper .gform_page_footer .cta-button .clone + span.clone, .warranty-main .gform_wrapper .gform_page_footer .cta-button .clone + span.clone + span.clone {
opacity: 0 !important; }
.warranty-main .gform_wrapper .gform_page_footer .cta-button span {
display: block;
overflow: hidden;
transition: 0.5s all;
position: absolute;
top: 0;
z-index: 1;
width: 100%;
left: 0; }
@media (max-width: 767px) {
.warranty-main .gform_wrapper .gform_page_footer .cta-button {
min-width: 110px; } }
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date .gfield_label {
-webkit-box-flex: 0 0 50%;
-moz-box-flex: 0 0 50%;
-ms-flex: 0 0 50%;
-webkit-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 0 0 50%;
padding-right: 20px; }
@media (max-width: 767px) {
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date .gfield_label {
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 0 0 100%;
padding-right: 0; } }
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date .ginput_container_date {
-webkit-box-flex: 0 0 50%;
-moz-box-flex: 0 0 50%;
-ms-flex: 0 0 50%;
-webkit-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 0 0 50%;
padding-left: 20px; }
@media (max-width: 767px) {
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date .ginput_container_date {
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 0 0 100%;
padding-left: 0; } }
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date .validation_message {
margin-left: 50%;
padding-left: 20px; }
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date *::-webkit-input-placeholder { font-weight: 400; }
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date *::-moz-placeholder { font-weight: 400; }
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date *:-ms-input-placeholder { font-weight: 400; }
.warranty-main .gform_wrapper ul.gform_fields li.purchase-date *:-moz-placeholder { font-weight: 400; }
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center; }
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice .gfield_label {
-webkit-box-flex: 0 0 50%;
-moz-box-flex: 0 0 50%;
-ms-flex: 0 0 50%;
-webkit-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 0 0 50%;
padding-right: 20px; }
@media (max-width: 767px) {
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice .gfield_label {
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 0 0 100%;
padding-right: 0; } }
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice .ginput_container_fileupload {
-webkit-box-flex: 0 0 50%;
-moz-box-flex: 0 0 50%;
-ms-flex: 0 0 50%;
-webkit-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 0 0 50%;
padding-left: 20px; }
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice .ginput_container_fileupload .screen-reader-text {
display: none; }
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice .ginput_container_fileupload input {
width: 100%; }
@media (max-width: 767px) {
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice .ginput_container_fileupload {
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 0 0 100%;
padding-left: 0; } }
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice .gfield_description {
padding-top: 0;
font-size: 11px;
color: #b9b9b9;
margin: -10px 0 8px 0;
line-height: 14px; }
@media (max-width: 767px) {
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice .gfield_description {
margin: 0 0 8px 0; } }
.warranty-main .gform_wrapper ul.gform_fields li.file-upload-invoice .ginput_preview strong {
font-size: 12px;
font-weight: 500; }
.warranty-main .gform_wrapper ul.gform_fields li.newsletter-subscribe {
margin-top: 0 !important; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_label {
display: none; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .ginput_container {
display: inline-block;
vertical-align: middle; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_checkbox {
margin: 0; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_checkbox li input[type="checkbox"] {
visibility: hidden;
opacity: 0;
position: absolute; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_checkbox li input[type="checkbox"]:checked + label:after {
opacity: 1; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_checkbox li label {
font-size: 17px;
position: relative;
padding-left: 35px;
max-width: 100%;
width: 100%;
font-weight: 400;
color: #000;
line-height: 28px; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_checkbox li label:before {
background: #f5f5f5;
content: "";
border: solid 2px #d4d4d4;
position: absolute;
left: 0;
top: 3px;
display: block;
height: 24px;
width: 24px; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_checkbox li label:after {
content: "";
border-left: solid 3px #e02537;
border-bottom: solid 3px #e02537;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
display: block;
height: 8px;
width: 13px;
position: absolute;
left: 6px;
top: 9px;
opacity: 0; }
@media (max-width: 991px) {
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_checkbox li label {
font-size: 15px; } }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_description {
width: auto;
font-size: 17px;
padding-left: 5px;
padding-top: 0;
margin-bottom: 8px; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_description a {
position: relative; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_description a:after {
height: 1px;
width: 100%;
position: absolute;
bottom: 0;
content: "";
display: block;
background: #d4d4d4; }
@media (max-width: 991px) {
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_description a {
font-size: 15px; } }
@media (max-width: 600px) {
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_description a {
margin: -10px 0 0 0;
display: inline-block;
vertical-align: middle; } }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_description.validation_message {
font-size: 12px;
-webkit-box-flex: 0 0 100%;
-moz-box-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 0 0 100%;
padding: 0 !important; }
@media (max-width: 480px) {
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_description {
width: 100%;
padding-left: 35px; }
.warranty-main .gform_wrapper ul.gform_fields li.checkbox-option .gfield_description a {
margin: -30px 0 0 0; } }
.confirmation-msg {
background: #FFF;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
padding: 25px;
border-radius: 8px; }
.confirmation-msg .title {
font-size: 24px;
color: #e02537;
font-weight: 400;
margin-bottom: 20px; }
.confirmation-msg p {
margin-bottom: 10px;
line-height: 20px; }
.confirmation-msg p .code {
color: #e02537; }
.form-main .file-upload-wrapper {
position: relative; }
.form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container input.file-upload-input {
padding: 0px 0 0 120px !important;
font-size: 12px !important; }
.file-upload-button {
font-size: 13px;
border: solid 1px #d4d4d4;
border-radius: 8px;
position: absolute;
left: 15px;
top: 10px;
background: #FFF;
padding: 1px 12px; }
.location-main {
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px;
padding: 60px 0; }
.location-main .section-title {
font-size: 24px;
color: #dd042b;
font-weight: normal; }
.location-main p {
font-size: 17px;
line-height: 1.5em; }
.location-main .inputbox {
max-width: 450px;
position: relative;
margin: 30px auto; }
.location-main .inputbox::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
border: solid 2px #e02537;
border-radius: 5px;
width: 100%;
height: 38px;
-webkit-transform: skew(-15deg);
-ms-transform: skew(-15deg);
-o-transform: skew(-15deg);
transform: skew(-15deg); }
.location-main .inputbox .cta-button {
z-index: 1;
position: absolute;
right: 0;
top: 0;
line-height: 36px;
padding: 0 16px; }
.location-main .inputbox .cta-button:before {
height: 37px; }
.location-main .inputbox input[type="submit"] {
position: absolute;
top: 0;
right: 0;
width: 67px;
opacity: 0; }
.location-main .inputbox input[type="text"] {
width: 100%;
height: 36px;
background: transparent;
border: 0;
color: #000;
position: relative;
z-index: 1;
padding: 0 78px 0 20px !important;
font-size: 12px !important;
font-weight: 500;
width: 100% !important; }
.location-main .inputbox *::-webkit-input-placeholder { color: #000;
font-size: 12px;
font-weight: 500; }
.location-main .inputbox *::-moz-placeholder { color: #000;
font-size: 12px;
font-weight: 500; }
.location-main .inputbox *:-ms-input-placeholder { color: #000;
font-size: 12px;
font-weight: 500; }
.location-main .inputbox *:-moz-placeholder { color: #000;
font-size: 12px;
font-weight: 500; }
.location-main .inputbox .error-message {
color: red;
font-size: 13px;
margin-top: 5px;
display: block; }
.cl-terms-popup-main {
font-size: 12px;
position: absolute;
width: 100%;
z-index: 11;
margin-top: 20px !important;
visibility: hidden;
opacity: 0;
transform: scale(0);
transition: 0.5s all; }
@media (prefers-reduced-motion: reduce) {
.cl-terms-popup-main {
transition: none; } }
.cl-terms-popup-main .popup-contain {
background: #f2f2f2;
padding: 20px !important;
max-width: 1250px;
height: 562px;
overflow: auto !important;
border: solid 1px #000; }
.cl-terms-popup-main .close-popup {
background: #e02537;
text-transform: uppercase;
color: #FFF;
padding: 6px 15px;
position: absolute;
right: 15px;
top: -39px;
font-size: 18px;
box-shadow: 0 -2px 11px rgba(0, 0, 0, 0.5); }
.cl-terms-popup-main .close-popup:hover {
background: #000; }
.cl-terms-popup-main.open {
visibility: visible;
opacity: 1;
transform: scale(1); }
body .gform_wrapper div.gform_body ul.gform_fields li.cl-terms-popup-main {
padding: 0 15px !important; }
.mCSB_scrollTools {
right: -8px; }
.mCSB_scrollTools .mCSB_draggerRail {
background: #d4d4d4 !important;
width: 10px;
border-radius: 0 !important; }
.mCSB_scrollTools .mCSB_dragger {
height: 100px !important; }
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
background: #e02537 !important;
opacity: 1 !important;
border-radius: 0 !important;
width: 10px; } @media (max-width: 991px) {
.top-nav, .top-nav.menu-opened {
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px; } }
.cms-page {
word-break: break-word; }
.cms-page.about-content {
padding: 20px 0; }
.cms-page p {
font-size: 15px;
line-height: 1.5em;
font-weight: 400; }
.cms-page h3 {
font-size: 25px;
margin-bottom: 15px;
margin-top: 40px; }
@media (max-width: 767px) {
.cms-page h3 {
font-size: 16px;
line-height: 1.5em; } }
.cms-page h4 {
font-size: 18px;
color: #e02537;
margin-top: 30px; }
@media (max-width: 767px) {
.cms-page h4 {
font-size: 16px;
line-height: 1.5em; } }
.cms-page a {
color: #e02537;
text-decoration: underline; }
.cms-page a:hover {
color: #000; }
.cms-page ul, .cms-page ol {
padding-left: 20px; }
.cms-page ul li, .cms-page ol li {
margin-bottom: 15px; }
.cms-page header {
padding: 0;
border-bottom: none;
text-align: center; }
.cms-page header h1 {
font-size: 26px !important;
margin-bottom: 10px; }
@media (min-width: 1025px) {
.cms-page {
min-height: auto; } }
@media (max-width: 991px) {
.cms-page {
margin-top: -17px; } }
@media (max-width: 991px) {
.inner-banner + .cms-page {
margin-top: 0; } }
.warranty-conditions {
margin: 0; }
.warranty-conditions .cms-page p {
font-size: 12px;
line-height: 1.4em;
font-weight: 500;
margin-bottom: 0.7rem; }
.warranty-conditions .cms-page h4 {
font-size: 16px; }
@media (max-width: 991px) {
.warranty-conditions .cms-page h4 {
margin-top: 20px; } }
@media (max-width: 767px) {
.warranty-conditions .cms-page h4 {
font-size: 14px;
margin-bottom: 5px;
margin-top: 15px; } }
@media (max-width: 991px) {
.warranty-conditions .cms-page h2 {
font-size: 20px !important; } }
@media (max-width: 767px) {
.warranty-conditions .cms-page .entry-content h2 {
font-size: 16px !important;
margin-top: 35px; } }
.overlay-loader-blk {
display: block;
background-color: rgba(255, 255, 255, 0.9);
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 999; }
.overlay-loader-blk .overlay-loader {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: 80px;
height: 80px; }
.parallax-image-wrapper {
position: fixed;
left: 0;
width: 100%;
overflow: hidden; }
.parallax-image-wrapper-50 {
height: 50%;
top: -50%; }
.parallax-image-wrapper-100 {
height: 100%;
top: -100%; }
.parallax-image {
display: none;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
background-repeat: no-repeat;
background-position: center;
background-size: cover; }
.parallax-image-50 {
height: 200%;
top: -50%; }
.parallax-image-100 {
height: 100%;
top: 0; }
.parallax-image.skrollable-between {
display: block; }
.no-skrollr .parallax-image-wrapper {
display: none !important; }
#skrollr-body {
height: 100%;
overflow: visible;
position: relative; }
.gap {
background: transparent center no-repeat;
background-size: cover; }
.skrollr .gap {
background: transparent !important; }
.gap-50 {
height: 50%; }
.gap-100 {
height: 100%; }
.header, .content {
background: #fff;
padding: 1em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.content-full {
height: 100%; }
#done {
height: 100%; }
.map-main #map_canvas {
width: 100%;
height: 560px;
z-index: 2; }
.map-main .full-map {
position: relative; }
.error404 {
background-image: -webkit-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-image: -ms-repeating-radial-gradient(center center, #e0e0e0, #e0e0e0 1px, #f5f5f5 1px, #f5f5f5 100%);
background-size: 20px 20px; } .search-pagination {
margin-top: 50px; }
.search-pagination a {
text-decoration: none;
min-width: 206px;
font-size: 12px; }
.search-pagination span {
color: #FFF; }
.detail-bottom-img {
max-height: 265px;
overflow: hidden; }
.detail-bottom-img figure {
background: red;
display: block; }
.detail-bottom-img figure img {
width: 100%; } .instructions-manual-listing {
padding: 65px 0 15px; }
@media (max-width: 767px) {
.instructions-manual-listing {
padding: 40px 0 0; } }
.instructions-manual-listing .pro-main-sub section {
margin-bottom: 26px; }
.instructions-manual-listing .heading .title {
font-size: 39px;
margin-bottom: 25px; }
@media (max-width: 1280px) {
.instructions-manual-listing .heading .title {
font-size: 30px; } }
@media (max-width: 991px) {
.instructions-manual-listing .heading .title {
font-size: 22px; } }
@media (max-width: 767px) {
.instructions-manual-listing .heading .title {
font-size: 18px; } }
@media (max-width: 480px) {
.instructions-manual-listing .heading .title {
margin-bottom: 15px; } }
.instructions-manual-listing .instructions-manual {
padding: 0 15px; }
.instructions-manual-listing .instructions-manual li {
font-size: 20px;
list-style-type: none;
padding-left: 50px;
margin-bottom: 32px; }
.instructions-manual-listing .instructions-manual li a {
position: relative;
color: #e02537; }
.instructions-manual-listing .instructions-manual li a:hover {
text-decoration: underline; }
.instructions-manual-listing .instructions-manual li a:before {
background: url(//skiffsports.com/wp-content/themes/skiff-sports/assets/images/pdf-icon.svg) no-repeat;
content: "";
position: absolute;
left: -50px;
top: -8px;
height: 45px;
width: 35px;
background-size: 32px;
display: block; }
@media (max-width: 1280px) {
.instructions-manual-listing .instructions-manual li {
font-size: 18px;
padding-left: 40px; }
.instructions-manual-listing .instructions-manual li a:before {
top: -7px;
height: 37px;
width: 29px;
left: -40px;
background-size: 28px; } }
@media (max-width: 991px) {
.instructions-manual-listing .instructions-manual li {
font-size: 15px;
padding-left: 30px; }
.instructions-manual-listing .instructions-manual li a:before {
top: -5px;
height: 28px;
width: 22px;
left: -30px;
background-size: 21px; } }
@media (max-width: 767px) {
.instructions-manual-listing .instructions-manual li {
font-size: 13px;
margin-bottom: 20px; } }
@media (max-width: 480px) {
.instructions-manual-listing .instructions-manual li {
margin-bottom: 15px;
line-height: 20px;
min-height: 27px;
position: relative; }
.instructions-manual-listing .instructions-manual li a {
position: static;
line-height: 0; }
.instructions-manual-listing .instructions-manual li a:before {
top: 0;
bottom: 0;
margin: auto;
left: 0; } }
.page-template-tpl-commercial .form-main {
padding: 25px 0; }
@media (max-width: 767px) {
.page-template-tpl-commercial .form-main {
padding: 40px 15px; } }
.page-template-tpl-commercial .form-main .form-heading {
text-align: left;
margin: 20px 0 0 0; }
.page-template-tpl-commercial .form-main .container {
background: #fff;
padding: 5px 5px 25px 5px;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15); }
@media (max-width: 360px) {
.page-template-tpl-commercial .form-main .gform_wrapper ul.gform_fields.top_label div.ginput_container.ginput_recaptcha {
margin: -25px 0 0 -21px;
-webkit-transform: scale(0.85);
-ms-transform: scale(0.85);
-o-transform: scale(0.85);
transform: scale(0.85); } }
.page-template-tpl-commercial .form-main .gform_wrapper .gform_footer {
margin: -73px 0 30px 0; }
@media (max-width: 767px) {
.page-template-tpl-commercial .form-main .gform_wrapper .gform_footer {
margin: 25px 0 0 0; } }
.page-template-tpl-commercial .form-main .gform_wrapper .gform_footer .cta-button {
z-index: 1; } @media screen and (min-width: 0\0) {
.header-search {
background-size: 34% !important; }
.header-search.open {
width: 92.2%;
background-position: -21% center !important; }
.product-listing .product-boxes .product-box {
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25); }
.page-template-tpl-warranty .wrapper {
overflow: hidden; } }
.thankyou .about-content {
padding: 46px 0 49px; }
.thankyou .about-content .entry-content p {
margin-bottom: 0; }
.about-content {
padding: 50px 0 40px !important;
margin-top: 0;
background-image: inherit !important; }
.about-content .section-title {
text-align: center;
font-weight: 700;
text-transform: uppercase;
color: #000;
margin-bottom: 40px; }
.general-content-block-row.col-xl-12.col-lg-12.col-md-12.col-sm-12 {
padding: 0; }
.general-content-block-text h2 {
font-size: 24px;
color: #000;
font-weight: 700; }
.cms-page p {
font-size: 20px !important;
color: #000; }
.general-content-block-text {
margin-bottom: 60px;
position: relative; }
.general-content-block-text:after {
content: "";
position: absolute;
bottom: -30px;
width: 100%;
height: 2px;
background: #ebebeb; }
.content_block .general-content-block-row.col-xl-12.col-lg-12.col-md-12.col-sm-12:last-child .general-content-block-text:after {
display: none; }
.content_block .general-content-block-row.col-xl-12.col-lg-12.col-md-12.col-sm-12:last-child .general-content-block-text {
margin-bottom: 0; }
@media (max-width: 1170px) {
.about-content {
padding: 30px 0 20px !important; }
.about-content .section-title {
margin-bottom: 30px; }
.cms-page .section-content h3 {
font-size: 22px;
line-height: 24px;
margin-bottom: 0; } }
@media (max-width: 767px) {
.about-content {
padding: 20px 0 20px !important; }
.about-content .section-title {
margin-bottom: 20px;
font-size: 20px !important; }
.cms-page p {
font-size: 18px !important;
color: #000;
line-height: 24px; }
.general-content-block-text h2 {
font-size: 22px; }
.general-content-block-text {
margin-bottom: 40px; }
.general-content-block-text:after {
bottom: -22px; }
.cms-page header h1 {
font-size: 24px !important; }
.cms-page .section-content ul li {
font-size: 18px; }
.cms-page .section-content ol li {
font-size: 18px; }
.cms-page .section-content h4 {
font-size: 22px;
line-height: 24px; }
.cms-page .section-content h3 {
font-size: 22px;
line-height: 24px;
margin-bottom: 15px; }
.cms-page .section-content h2 {
font-size: 20px !important; }
.thankyou-page-wrapper .status .top-cont h4 {
font-size: 18px !important; }
#stripe-payment-data p {
line-height: 22px;
font-size: 18px !important; } }
@media (max-width: 480px) {
.cms-page .section-content h3 {
font-size: 20px;
line-height: 22px;
margin-bottom: 15px; } }
@media (max-height: 900px) and (min-width: 767px) {
.about-content {
padding: 30px 0 10px !important; }
.about-content .section-title {
margin-bottom: 26px; }
.cms-page header h1 {
font-size: 22px !important; }
.cms-page .section-content h2 {
font-size: 26px; }
div#stripe-payment-data p {
line-height: 22px;
font-size: 18px !important; } }
.error404 {
background-image: inherit !important; }
.error404 header {
display: none; }
.error404 .site-header {
display: none; }
.error404 #content {
margin: 0; }
.error404 .logo-wrap {
max-width: 85px;
margin: auto auto 40px; }
.error404 footer {
display: none; }
.error404 #page,
.error404 .page-content-section {
height: 100%; }
.error404 .page-content-section {
position: absolute;
left: 0;
right: 0;
top: 50%;
transform: translateY(-50%); }
.error404 .page-content-section .logo {
display: none; }
.error404 .error-main {
max-width: 950px;
margin: 0 auto;
width: 100%;
padding: 50px 0; }
@media (max-width: 767px) {
.error404 .error-main {
padding: 30px 5%; } }
.error404 .error-main .title-404 {
font-size: 200px;
line-height: 0.8;
margin-bottom: 0; }
@media (max-width: 767px) {
.error404 .error-main .title-404 {
font-size: 80px;
margin-bottom: 10px; } }
.error404 .error-main .content-404 h3 {
padding: 10px;
text-transform: uppercase;
margin: 20px 0;
font-size: 40px;
color: #e2441b;
letter-spacing: 2px; }
@media (max-width: 767px) {
.error404 .error-main .content-404 h3 {
font-size: 20px;
letter-spacing: 2px; }
.error404 .error-main .content-404 p {
line-height: 1.25em;
font-size: 15px; } }
@media (max-width: 767px) {
.error404 .error-main {
box-shadow: none; } }
.error404 .cta-button {
z-index: 1;
font-size: 25px;
font-family: "Calibri", sans-serif;
font-weight: 400;
padding: 6px 25px 6px 25px;
display: inline-block;
line-height: initial;
background: #000;
border-radius: 6px; }
.error404 .cta-button:hover {
background: #b7b7b7; }
.error404 .cta-button .clone {
top: 7px !important;
display: none; }
.error404 .cta-button:before {
transform: skewX(0deg);
display: none; }
.cta-button:hover span {
-webkit-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
opacity: 1 !important;
transition: 0.5s all !important; }
.content-404 p {
font-size: 24px;
line-height: 28px;
margin-bottom: 40px; }</pre></body></html>