@charset "UTF-8";
.animated {
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-ms-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-ms-animation-duration: 1s;
-o-animation-duration: 1s;
animation-duration: 1s;
}
.animated.hinge {
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-ms-animation-duration: 1s;
-o-animation-duration: 1s;
animation-duration: 1s;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@-moz-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@-o-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;
-moz-animation-name: flash;
-o-animation-name: flash;
animation-name: flash;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
}
}
@-moz-keyframes shake {
0%, 100% {
-moz-transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-moz-transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-moz-transform: translateX(10px);
}
}
@-o-keyframes shake {
0%, 100% {
-o-transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-o-transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-o-transform: translateX(10px);
}
}
@keyframes shake {
0%, 100% {
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
transform: translateX(10px);
}
}
.shake {
-webkit-animation-name: shake;
-moz-animation-name: shake;
-o-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
}
}
@-moz-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-moz-transform: translateY(0);
}
40% {
-moz-transform: translateY(-30px);
}
60% {
-moz-transform: translateY(-15px);
}
}
@-o-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-o-transform: translateY(0);
}
40% {
-o-transform: translateY(-30px);
}
60% {
-o-transform: translateY(-15px);
}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-30px);
}
60% {
transform: translateY(-15px);
}
}
.bounce {
-webkit-animation-name: bounce;
-moz-animation-name: bounce;
-o-animation-name: bounce;
animation-name: bounce;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
}
}
@-moz-keyframes tada {
0% {
-moz-transform: scale(1);
}
10%, 20% {
-moz-transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-moz-transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-moz-transform: scale(1.1) rotate(-3deg);
}
100% {
-moz-transform: scale(1) rotate(0);
}
}
@-o-keyframes tada {
0% {
-o-transform: scale(1);
}
10%, 20% {
-o-transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-o-transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-o-transform: scale(1.1) rotate(-3deg);
}
100% {
-o-transform: scale(1) rotate(0);
}
}
@keyframes tada {
0% {
transform: scale(1);
}
10%, 20% {
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
transform: scale(1.1) rotate(-3deg);
}
100% {
transform: scale(1) rotate(0);
}
}
.tada {
-webkit-animation-name: tada;
-moz-animation-name: tada;
-o-animation-name: tada;
animation-name: tada;
}
@-webkit-keyframes swing {
20%, 40%, 60%, 80%, 100% {
-webkit-transform-origin: top center;
}
20% {
-webkit-transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
}
}
@-moz-keyframes swing {
20% {
-moz-transform: rotate(15deg);
}
40% {
-moz-transform: rotate(-10deg);
}
60% {
-moz-transform: rotate(5deg);
}
80% {
-moz-transform: rotate(-5deg);
}
100% {
-moz-transform: rotate(0deg);
}
}
@-o-keyframes swing {
20% {
-o-transform: rotate(15deg);
}
40% {
-o-transform: rotate(-10deg);
}
60% {
-o-transform: rotate(5deg);
}
80% {
-o-transform: rotate(-5deg);
}
100% {
-o-transform: rotate(0deg);
}
}
@keyframes swing {
20% {
transform: rotate(15deg);
}
40% {
transform: rotate(-10deg);
}
60% {
transform: rotate(5deg);
}
80% {
transform: rotate(-5deg);
}
100% {
transform: rotate(0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-moz-transform-origin: top center;
-o-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
-moz-animation-name: swing;
-o-animation-name: swing;
animation-name: swing;
} @-webkit-keyframes wobble {
0% {
-webkit-transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
}
}
@-moz-keyframes wobble {
0% {
-moz-transform: translateX(0%);
}
15% {
-moz-transform: translateX(-25%) rotate(-5deg);
}
30% {
-moz-transform: translateX(20%) rotate(3deg);
}
45% {
-moz-transform: translateX(-15%) rotate(-3deg);
}
60% {
-moz-transform: translateX(10%) rotate(2deg);
}
75% {
-moz-transform: translateX(-5%) rotate(-1deg);
}
100% {
-moz-transform: translateX(0%);
}
}
@-o-keyframes wobble {
0% {
-o-transform: translateX(0%);
}
15% {
-o-transform: translateX(-25%) rotate(-5deg);
}
30% {
-o-transform: translateX(20%) rotate(3deg);
}
45% {
-o-transform: translateX(-15%) rotate(-3deg);
}
60% {
-o-transform: translateX(10%) rotate(2deg);
}
75% {
-o-transform: translateX(-5%) rotate(-1deg);
}
100% {
-o-transform: translateX(0%);
}
}
@keyframes wobble {
0% {
transform: translateX(0%);
}
15% {
transform: translateX(-25%) rotate(-5deg);
}
30% {
transform: translateX(20%) rotate(3deg);
}
45% {
transform: translateX(-15%) rotate(-3deg);
}
60% {
transform: translateX(10%) rotate(2deg);
}
75% {
transform: translateX(-5%) rotate(-1deg);
}
100% {
transform: translateX(0%);
}
}
.wobble {
-webkit-animation-name: wobble;
-moz-animation-name: wobble;
-o-animation-name: wobble;
animation-name: wobble;
} @-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
}
}
@-moz-keyframes pulse {
0% {
-moz-transform: scale(1);
}
50% {
-moz-transform: scale(1.1);
}
100% {
-moz-transform: scale(1);
}
}
@-o-keyframes pulse {
0% {
-o-transform: scale(1);
}
50% {
-o-transform: scale(1.1);
}
100% {
-o-transform: scale(1);
}
}
@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}
.pulse {
-webkit-animation-name: pulse;
-moz-animation-name: pulse;
-o-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
}
}
@-moz-keyframes flip {
0% {
-moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-moz-animation-timing-function: ease-out;
}
40% {
-moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-moz-animation-timing-function: ease-out;
}
50% {
-moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-moz-animation-timing-function: ease-in;
}
80% {
-moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-moz-animation-timing-function: ease-in;
}
100% {
-moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-moz-animation-timing-function: ease-in;
}
}
@-o-keyframes flip {
0% {
-o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-o-animation-timing-function: ease-out;
}
40% {
-o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-o-animation-timing-function: ease-out;
}
50% {
-o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-o-animation-timing-function: ease-in;
}
80% {
-o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-o-animation-timing-function: ease-in;
}
100% {
-o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-o-animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
animation-timing-function: ease-out;
}
40% {
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
animation-timing-function: ease-out;
}
50% {
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
animation-timing-function: ease-in;
}
80% {
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
animation-timing-function: ease-in;
}
100% {
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible !important;
-webkit-animation-name: flip;
-moz-backface-visibility: visible !important;
-moz-animation-name: flip;
-o-backface-visibility: visible !important;
-o-animation-name: flip;
backface-visibility: visible !important;
animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
@-moz-keyframes flipInX {
0% {
-moz-transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-moz-transform: perspective(400px) rotateX(-10deg);
}
70% {
-moz-transform: perspective(400px) rotateX(10deg);
}
100% {
-moz-transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
@-o-keyframes flipInX {
0% {
-o-transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-o-transform: perspective(400px) rotateX(-10deg);
}
70% {
-o-transform: perspective(400px) rotateX(10deg);
}
100% {
-o-transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
@keyframes flipInX {
0% {
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
transform: perspective(400px) rotateX(-10deg);
}
70% {
transform: perspective(400px) rotateX(10deg);
}
100% {
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
-webkit-animation-name: flipInX;
-moz-backface-visibility: visible !important;
-moz-animation-name: flipInX;
-o-backface-visibility: visible !important;
-o-animation-name: flipInX;
backface-visibility: visible !important;
animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
@-moz-keyframes flipOutX {
0% {
-moz-transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-moz-transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
@-o-keyframes flipOutX {
0% {
-o-transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-o-transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
-moz-animation-name: flipOutX;
-moz-backface-visibility: visible !important;
-o-animation-name: flipOutX;
-o-backface-visibility: visible !important;
animation-name: flipOutX;
backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
@-moz-keyframes flipInY {
0% {
-moz-transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-moz-transform: perspective(400px) rotateY(-10deg);
}
70% {
-moz-transform: perspective(400px) rotateY(10deg);
}
100% {
-moz-transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
@-o-keyframes flipInY {
0% {
-o-transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-o-transform: perspective(400px) rotateY(-10deg);
}
70% {
-o-transform: perspective(400px) rotateY(10deg);
}
100% {
-o-transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
@keyframes flipInY {
0% {
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
transform: perspective(400px) rotateY(-10deg);
}
70% {
transform: perspective(400px) rotateY(10deg);
}
100% {
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
-webkit-animation-name: flipInY;
-moz-backface-visibility: visible !important;
-moz-animation-name: flipInY;
-o-backface-visibility: visible !important;
-o-animation-name: flipInY;
backface-visibility: visible !important;
animation-name: flipInY;
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
@-moz-keyframes flipOutY {
0% {
-moz-transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-moz-transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
@-o-keyframes flipOutY {
0% {
-o-transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-o-transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
-moz-backface-visibility: visible !important;
-moz-animation-name: flipOutY;
-o-backface-visibility: visible !important;
-o-animation-name: flipOutY;
backface-visibility: visible !important;
animation-name: flipOutY;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
-moz-animation-name: fadeIn;
-o-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@-moz-keyframes fadeInUp {
0% {
opacity: 0;
-moz-transform: translateY(20px);
}
100% {
opacity: 1;
-moz-transform: translateY(0);
}
}
@-o-keyframes fadeInUp {
0% {
opacity: 0;
-o-transform: translateY(20px);
}
100% {
opacity: 1;
-o-transform: translateY(0);
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
-moz-animation-name: fadeInUp;
-o-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@-moz-keyframes fadeInDown {
0% {
opacity: 0;
-moz-transform: translateY(-20px);
}
100% {
opacity: 1;
-moz-transform: translateY(0);
}
}
@-o-keyframes fadeInDown {
0% {
opacity: 0;
-o-transform: translateY(-20px);
}
100% {
opacity: 1;
-o-transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
-moz-animation-name: fadeInDown;
-o-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
}
}
@-moz-keyframes fadeInLeft {
0% {
opacity: 0;
-moz-transform: translateX(-20px);
}
100% {
opacity: 1;
-moz-transform: translateX(0);
}
}
@-o-keyframes fadeInLeft {
0% {
opacity: 0;
-o-transform: translateX(-20px);
}
100% {
opacity: 1;
-o-transform: translateX(0);
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
transform: translateX(-20px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
-moz-animation-name: fadeInLeft;
-o-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
}
}
@-moz-keyframes fadeInRight {
0% {
opacity: 0;
-moz-transform: translateX(20px);
}
100% {
opacity: 1;
-moz-transform: translateX(0);
}
}
@-o-keyframes fadeInRight {
0% {
opacity: 0;
-o-transform: translateX(20px);
}
100% {
opacity: 1;
-o-transform: translateX(0);
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
transform: translateX(20px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
-moz-animation-name: fadeInRight;
-o-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@-moz-keyframes fadeInUpBig {
0% {
opacity: 0;
-moz-transform: translateY(2000px);
}
100% {
opacity: 1;
-moz-transform: translateY(0);
}
}
@-o-keyframes fadeInUpBig {
0% {
opacity: 0;
-o-transform: translateY(2000px);
}
100% {
opacity: 1;
-o-transform: translateY(0);
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
transform: translateY(2000px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
-moz-animation-name: fadeInUpBig;
-o-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}
@-moz-keyframes fadeInDownBig {
0% {
opacity: 0;
-moz-transform: translateY(-2000px);
}
100% {
opacity: 1;
-moz-transform: translateY(0);
}
}
@-o-keyframes fadeInDownBig {
0% {
opacity: 0;
-o-transform: translateY(-2000px);
}
100% {
opacity: 1;
-o-transform: translateY(0);
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
transform: translateY(-2000px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
-moz-animation-name: fadeInDownBig;
-o-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
}
}
@-moz-keyframes fadeInLeftBig {
0% {
opacity: 0;
-moz-transform: translateX(-2000px);
}
100% {
opacity: 1;
-moz-transform: translateX(0);
}
}
@-o-keyframes fadeInLeftBig {
0% {
opacity: 0;
-o-transform: translateX(-2000px);
}
100% {
opacity: 1;
-o-transform: translateX(0);
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
transform: translateX(-2000px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
-moz-animation-name: fadeInLeftBig;
-o-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
}
}
@-moz-keyframes fadeInRightBig {
0% {
opacity: 0;
-moz-transform: translateX(2000px);
}
100% {
opacity: 1;
-moz-transform: translateX(0);
}
}
@-o-keyframes fadeInRightBig {
0% {
opacity: 0;
-o-transform: translateX(2000px);
}
100% {
opacity: 1;
-o-transform: translateX(0);
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
transform: translateX(2000px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
-moz-animation-name: fadeInRightBig;
-o-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@-moz-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@-o-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
-moz-animation-name: fadeOut;
-o-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
}
}
@-moz-keyframes fadeOutUp {
0% {
opacity: 1;
-moz-transform: translateY(0);
}
100% {
opacity: 0;
-moz-transform: translateY(-20px);
}
}
@-o-keyframes fadeOutUp {
0% {
opacity: 1;
-o-transform: translateY(0);
}
100% {
opacity: 0;
-o-transform: translateY(-20px);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(-20px);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
-moz-animation-name: fadeOutUp;
-o-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
}
}
@-moz-keyframes fadeOutDown {
0% {
opacity: 1;
-moz-transform: translateY(0);
}
100% {
opacity: 0;
-moz-transform: translateY(20px);
}
}
@-o-keyframes fadeOutDown {
0% {
opacity: 1;
-o-transform: translateY(0);
}
100% {
opacity: 0;
-o-transform: translateY(20px);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(20px);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
-moz-animation-name: fadeOutDown;
-o-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
}
}
@-moz-keyframes fadeOutLeft {
0% {
opacity: 1;
-moz-transform: translateX(0);
}
100% {
opacity: 0;
-moz-transform: translateX(-20px);
}
}
@-o-keyframes fadeOutLeft {
0% {
opacity: 1;
-o-transform: translateX(0);
}
100% {
opacity: 0;
-o-transform: translateX(-20px);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
transform: translateX(0);
}
100% {
opacity: 0;
transform: translateX(-20px);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
-moz-animation-name: fadeOutLeft;
-o-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
}
}
@-moz-keyframes fadeOutRight {
0% {
opacity: 1;
-moz-transform: translateX(0);
}
100% {
opacity: 0;
-moz-transform: translateX(20px);
}
}
@-o-keyframes fadeOutRight {
0% {
opacity: 1;
-o-transform: translateX(0);
}
100% {
opacity: 0;
-o-transform: translateX(20px);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
transform: translateX(0);
}
100% {
opacity: 0;
transform: translateX(20px);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
-moz-animation-name: fadeOutRight;
-o-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
}
}
@-moz-keyframes fadeOutUpBig {
0% {
opacity: 1;
-moz-transform: translateY(0);
}
100% {
opacity: 0;
-moz-transform: translateY(-2000px);
}
}
@-o-keyframes fadeOutUpBig {
0% {
opacity: 1;
-o-transform: translateY(0);
}
100% {
opacity: 0;
-o-transform: translateY(-2000px);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(-2000px);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
-moz-animation-name: fadeOutUpBig;
-o-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
}
}
@-moz-keyframes fadeOutDownBig {
0% {
opacity: 1;
-moz-transform: translateY(0);
}
100% {
opacity: 0;
-moz-transform: translateY(2000px);
}
}
@-o-keyframes fadeOutDownBig {
0% {
opacity: 1;
-o-transform: translateY(0);
}
100% {
opacity: 0;
-o-transform: translateY(2000px);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
transform: translateY(0);
}
100% {
opacity: 0;
transform: translateY(2000px);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
-moz-animation-name: fadeOutDownBig;
-o-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
}
}
@-moz-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-moz-transform: translateX(0);
}
100% {
opacity: 0;
-moz-transform: translateX(-2000px);
}
}
@-o-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-o-transform: translateX(0);
}
100% {
opacity: 0;
-o-transform: translateX(-2000px);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
transform: translateX(0);
}
100% {
opacity: 0;
transform: translateX(-2000px);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
-moz-animation-name: fadeOutLeftBig;
-o-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
}
}
@-moz-keyframes fadeOutRightBig {
0% {
opacity: 1;
-moz-transform: translateX(0);
}
100% {
opacity: 0;
-moz-transform: translateX(2000px);
}
}
@-o-keyframes fadeOutRightBig {
0% {
opacity: 1;
-o-transform: translateX(0);
}
100% {
opacity: 0;
-o-transform: translateX(2000px);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
transform: translateX(0);
}
100% {
opacity: 0;
transform: translateX(2000px);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
-moz-animation-name: fadeOutRightBig;
-o-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
}
}
@-moz-keyframes bounceIn {
0% {
opacity: 0;
-moz-transform: scale(.3);
}
50% {
opacity: 1;
-moz-transform: scale(1.05);
}
70% {
-moz-transform: scale(.9);
}
100% {
-moz-transform: scale(1);
}
}
@-o-keyframes bounceIn {
0% {
opacity: 0;
-o-transform: scale(.3);
}
50% {
opacity: 1;
-o-transform: scale(1.05);
}
70% {
-o-transform: scale(.9);
}
100% {
-o-transform: scale(1);
}
}
@keyframes bounceIn {
0% {
opacity: 0;
transform: scale(.3);
}
50% {
opacity: 1;
transform: scale(1.05);
}
70% {
transform: scale(.9);
}
100% {
transform: scale(1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
-moz-animation-name: bounceIn;
-o-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
}
}
@-moz-keyframes bounceInUp {
0% {
opacity: 0;
-moz-transform: translateY(2000px);
}
60% {
opacity: 1;
-moz-transform: translateY(-30px);
}
80% {
-moz-transform: translateY(10px);
}
100% {
-moz-transform: translateY(0);
}
}
@-o-keyframes bounceInUp {
0% {
opacity: 0;
-o-transform: translateY(2000px);
}
60% {
opacity: 1;
-o-transform: translateY(-30px);
}
80% {
-o-transform: translateY(10px);
}
100% {
-o-transform: translateY(0);
}
}
@keyframes bounceInUp {
0% {
opacity: 0;
transform: translateY(2000px);
}
60% {
opacity: 1;
transform: translateY(-30px);
}
80% {
transform: translateY(10px);
}
100% {
transform: translateY(0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
-moz-animation-name: bounceInUp;
-o-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
}
}
@-moz-keyframes bounceInDown {
0% {
opacity: 0;
-moz-transform: translateY(-2000px);
}
60% {
opacity: 1;
-moz-transform: translateY(30px);
}
80% {
-moz-transform: translateY(-10px);
}
100% {
-moz-transform: translateY(0);
}
}
@-o-keyframes bounceInDown {
0% {
opacity: 0;
-o-transform: translateY(-2000px);
}
60% {
opacity: 1;
-o-transform: translateY(30px);
}
80% {
-o-transform: translateY(-10px);
}
100% {
-o-transform: translateY(0);
}
}
@keyframes bounceInDown {
0% {
opacity: 0;
transform: translateY(-2000px);
}
60% {
opacity: 1;
transform: translateY(30px);
}
80% {
transform: translateY(-10px);
}
100% {
transform: translateY(0);
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
-moz-animation-name: bounceInDown;
-o-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
}
}
@-moz-keyframes bounceInLeft {
0% {
opacity: 0;
-moz-transform: translateX(-2000px);
}
60% {
opacity: 1;
-moz-transform: translateX(30px);
}
80% {
-moz-transform: translateX(-10px);
}
100% {
-moz-transform: translateX(0);
}
}
@-o-keyframes bounceInLeft {
0% {
opacity: 0;
-o-transform: translateX(-2000px);
}
60% {
opacity: 1;
-o-transform: translateX(30px);
}
80% {
-o-transform: translateX(-10px);
}
100% {
-o-transform: translateX(0);
}
}
@keyframes bounceInLeft {
0% {
opacity: 0;
transform: translateX(-2000px);
}
60% {
opacity: 1;
transform: translateX(30px);
}
80% {
transform: translateX(-10px);
}
100% {
transform: translateX(0);
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
-moz-animation-name: bounceInLeft;
-o-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
}
}
@-moz-keyframes bounceInRight {
0% {
opacity: 0;
-moz-transform: translateX(2000px);
}
60% {
opacity: 1;
-moz-transform: translateX(-30px);
}
80% {
-moz-transform: translateX(10px);
}
100% {
-moz-transform: translateX(0);
}
}
@-o-keyframes bounceInRight {
0% {
opacity: 0;
-o-transform: translateX(2000px);
}
60% {
opacity: 1;
-o-transform: translateX(-30px);
}
80% {
-o-transform: translateX(10px);
}
100% {
-o-transform: translateX(0);
}
}
@keyframes bounceInRight {
0% {
opacity: 0;
transform: translateX(2000px);
}
60% {
opacity: 1;
transform: translateX(-30px);
}
80% {
transform: translateX(10px);
}
100% {
transform: translateX(0);
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
-moz-animation-name: bounceInRight;
-o-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceOut {
0% {
-webkit-transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
}
}
@-moz-keyframes bounceOut {
0% {
-moz-transform: scale(1);
}
25% {
-moz-transform: scale(.95);
}
50% {
opacity: 1;
-moz-transform: scale(1.1);
}
100% {
opacity: 0;
-moz-transform: scale(.3);
}
}
@-o-keyframes bounceOut {
0% {
-o-transform: scale(1);
}
25% {
-o-transform: scale(.95);
}
50% {
opacity: 1;
-o-transform: scale(1.1);
}
100% {
opacity: 0;
-o-transform: scale(.3);
}
}
@keyframes bounceOut {
0% {
transform: scale(1);
}
25% {
transform: scale(.95);
}
50% {
opacity: 1;
transform: scale(1.1);
}
100% {
opacity: 0;
transform: scale(.3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
-moz-animation-name: bounceOut;
-o-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
}
}
@-moz-keyframes bounceOutUp {
0% {
-moz-transform: translateY(0);
}
20% {
opacity: 1;
-moz-transform: translateY(20px);
}
100% {
opacity: 0;
-moz-transform: translateY(-2000px);
}
}
@-o-keyframes bounceOutUp {
0% {
-o-transform: translateY(0);
}
20% {
opacity: 1;
-o-transform: translateY(20px);
}
100% {
opacity: 0;
-o-transform: translateY(-2000px);
}
}
@keyframes bounceOutUp {
0% {
transform: translateY(0);
}
20% {
opacity: 1;
transform: translateY(20px);
}
100% {
opacity: 0;
transform: translateY(-2000px);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
-moz-animation-name: bounceOutUp;
-o-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
}
}
@-moz-keyframes bounceOutDown {
0% {
-moz-transform: translateY(0);
}
20% {
opacity: 1;
-moz-transform: translateY(-20px);
}
100% {
opacity: 0;
-moz-transform: translateY(2000px);
}
}
@-o-keyframes bounceOutDown {
0% {
-o-transform: translateY(0);
}
20% {
opacity: 1;
-o-transform: translateY(-20px);
}
100% {
opacity: 0;
-o-transform: translateY(2000px);
}
}
@keyframes bounceOutDown {
0% {
transform: translateY(0);
}
20% {
opacity: 1;
transform: translateY(-20px);
}
100% {
opacity: 0;
transform: translateY(2000px);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
-moz-animation-name: bounceOutDown;
-o-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
}
}
@-moz-keyframes bounceOutLeft {
0% {
-moz-transform: translateX(0);
}
20% {
opacity: 1;
-moz-transform: translateX(20px);
}
100% {
opacity: 0;
-moz-transform: translateX(-2000px);
}
}
@-o-keyframes bounceOutLeft {
0% {
-o-transform: translateX(0);
}
20% {
opacity: 1;
-o-transform: translateX(20px);
}
100% {
opacity: 0;
-o-transform: translateX(-2000px);
}
}
@keyframes bounceOutLeft {
0% {
transform: translateX(0);
}
20% {
opacity: 1;
transform: translateX(20px);
}
100% {
opacity: 0;
transform: translateX(-2000px);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
-moz-animation-name: bounceOutLeft;
-o-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
}
}
@-moz-keyframes bounceOutRight {
0% {
-moz-transform: translateX(0);
}
20% {
opacity: 1;
-moz-transform: translateX(-20px);
}
100% {
opacity: 0;
-moz-transform: translateX(2000px);
}
}
@-o-keyframes bounceOutRight {
0% {
-o-transform: translateX(0);
}
20% {
opacity: 1;
-o-transform: translateX(-20px);
}
100% {
opacity: 0;
-o-transform: translateX(2000px);
}
}
@keyframes bounceOutRight {
0% {
transform: translateX(0);
}
20% {
opacity: 1;
transform: translateX(-20px);
}
100% {
opacity: 0;
transform: translateX(2000px);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
-moz-animation-name: bounceOutRight;
-o-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
-webkit-transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
-webkit-transform: rotate(0);
opacity: 1;
}
}
@-moz-keyframes rotateIn {
0% {
-moz-transform-origin: center center;
-moz-transform: rotate(-200deg);
opacity: 0;
}
100% {
-moz-transform-origin: center center;
-moz-transform: rotate(0);
opacity: 1;
}
}
@-o-keyframes rotateIn {
0% {
-o-transform-origin: center center;
-o-transform: rotate(-200deg);
opacity: 0;
}
100% {
-o-transform-origin: center center;
-o-transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateIn {
0% {
transform-origin: center center;
transform: rotate(-200deg);
opacity: 0;
}
100% {
transform-origin: center center;
transform: rotate(0);
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
-moz-animation-name: rotateIn;
-o-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate(0);
opacity: 1;
}
}
@-moz-keyframes rotateInUpLeft {
0% {
-moz-transform-origin: left bottom;
-moz-transform: rotate(90deg);
opacity: 0;
}
100% {
-moz-transform-origin: left bottom;
-moz-transform: rotate(0);
opacity: 1;
}
}
@-o-keyframes rotateInUpLeft {
0% {
-o-transform-origin: left bottom;
-o-transform: rotate(90deg);
opacity: 0;
}
100% {
-o-transform-origin: left bottom;
-o-transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
transform-origin: left bottom;
transform: rotate(90deg);
opacity: 0;
}
100% {
transform-origin: left bottom;
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
-moz-animation-name: rotateInUpLeft;
-o-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate(0);
opacity: 1;
}
}
@-moz-keyframes rotateInDownLeft {
0% {
-moz-transform-origin: left bottom;
-moz-transform: rotate(-90deg);
opacity: 0;
}
100% {
-moz-transform-origin: left bottom;
-moz-transform: rotate(0);
opacity: 1;
}
}
@-o-keyframes rotateInDownLeft {
0% {
-o-transform-origin: left bottom;
-o-transform: rotate(-90deg);
opacity: 0;
}
100% {
-o-transform-origin: left bottom;
-o-transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
transform-origin: left bottom;
transform: rotate(-90deg);
opacity: 0;
}
100% {
transform-origin: left bottom;
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
-moz-animation-name: rotateInDownLeft;
-o-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(0);
opacity: 1;
}
}
@-moz-keyframes rotateInUpRight {
0% {
-moz-transform-origin: right bottom;
-moz-transform: rotate(-90deg);
opacity: 0;
}
100% {
-moz-transform-origin: right bottom;
-moz-transform: rotate(0);
opacity: 1;
}
}
@-o-keyframes rotateInUpRight {
0% {
-o-transform-origin: right bottom;
-o-transform: rotate(-90deg);
opacity: 0;
}
100% {
-o-transform-origin: right bottom;
-o-transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
transform-origin: right bottom;
transform: rotate(-90deg);
opacity: 0;
}
100% {
transform-origin: right bottom;
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
-moz-animation-name: rotateInUpRight;
-o-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(0);
opacity: 1;
}
}
@-moz-keyframes rotateInDownRight {
0% {
-moz-transform-origin: right bottom;
-moz-transform: rotate(90deg);
opacity: 0;
}
100% {
-moz-transform-origin: right bottom;
-moz-transform: rotate(0);
opacity: 1;
}
}
@-o-keyframes rotateInDownRight {
0% {
-o-transform-origin: right bottom;
-o-transform: rotate(90deg);
opacity: 0;
}
100% {
-o-transform-origin: right bottom;
-o-transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
transform-origin: right bottom;
transform: rotate(90deg);
opacity: 0;
}
100% {
transform-origin: right bottom;
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
-moz-animation-name: rotateInDownRight;
-o-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
-webkit-transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
-webkit-transform: rotate(200deg);
opacity: 0;
}
}
@-moz-keyframes rotateOut {
0% {
-moz-transform-origin: center center;
-moz-transform: rotate(0);
opacity: 1;
}
100% {
-moz-transform-origin: center center;
-moz-transform: rotate(200deg);
opacity: 0;
}
}
@-o-keyframes rotateOut {
0% {
-o-transform-origin: center center;
-o-transform: rotate(0);
opacity: 1;
}
100% {
-o-transform-origin: center center;
-o-transform: rotate(200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
transform-origin: center center;
transform: rotate(0);
opacity: 1;
}
100% {
transform-origin: center center;
transform: rotate(200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
-moz-animation-name: rotateOut;
-o-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotateOutUpLeft {
0% {
-moz-transform-origin: left bottom;
-moz-transform: rotate(0);
opacity: 1;
}
100% {
-moz-transform-origin: left bottom;
-moz-transform: rotate(-90deg);
opacity: 0;
}
}
@-o-keyframes rotateOutUpLeft {
0% {
-o-transform-origin: left bottom;
-o-transform: rotate(0);
opacity: 1;
}
100% {
-o-transform-origin: left bottom;
-o-transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
transform-origin: left bottom;
transform: rotate(0);
opacity: 1;
}
100% {
-transform-origin: left bottom;
-transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
-moz-animation-name: rotateOutUpLeft;
-o-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-webkit-transform: rotate(90deg);
opacity: 0;
}
}
@-moz-keyframes rotateOutDownLeft {
0% {
-moz-transform-origin: left bottom;
-moz-transform: rotate(0);
opacity: 1;
}
100% {
-moz-transform-origin: left bottom;
-moz-transform: rotate(90deg);
opacity: 0;
}
}
@-o-keyframes rotateOutDownLeft {
0% {
-o-transform-origin: left bottom;
-o-transform: rotate(0);
opacity: 1;
}
100% {
-o-transform-origin: left bottom;
-o-transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
transform-origin: left bottom;
transform: rotate(0);
opacity: 1;
}
100% {
transform-origin: left bottom;
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
-moz-animation-name: rotateOutDownLeft;
-o-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(90deg);
opacity: 0;
}
}
@-moz-keyframes rotateOutUpRight {
0% {
-moz-transform-origin: right bottom;
-moz-transform: rotate(0);
opacity: 1;
}
100% {
-moz-transform-origin: right bottom;
-moz-transform: rotate(90deg);
opacity: 0;
}
}
@-o-keyframes rotateOutUpRight {
0% {
-o-transform-origin: right bottom;
-o-transform: rotate(0);
opacity: 1;
}
100% {
-o-transform-origin: right bottom;
-o-transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
transform-origin: right bottom;
transform: rotate(0);
opacity: 1;
}
100% {
transform-origin: right bottom;
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
-moz-animation-name: rotateOutUpRight;
-o-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
opacity: 0;
}
}
@-moz-keyframes rotateOutDownRight {
0% {
-moz-transform-origin: right bottom;
-moz-transform: rotate(0);
opacity: 1;
}
100% {
-moz-transform-origin: right bottom;
-moz-transform: rotate(-90deg);
opacity: 0;
}
}
@-o-keyframes rotateOutDownRight {
0% {
-o-transform-origin: right bottom;
-o-transform: rotate(0);
opacity: 1;
}
100% {
-o-transform-origin: right bottom;
-o-transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
transform-origin: right bottom;
transform: rotate(0);
opacity: 1;
}
100% {
transform-origin: right bottom;
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
-moz-animation-name: rotateOutDownRight;
-o-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
@-moz-keyframes lightSpeedIn {
0% {
-moz-transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-moz-transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-moz-transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-moz-transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
@-o-keyframes lightSpeedIn {
0% {
-o-transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-o-transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-o-transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-o-transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
-moz-animation-name: lightSpeedIn;
-o-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
-moz-animation-timing-function: ease-out;
-o-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
@-moz-keyframes lightSpeedOut {
0% {
-moz-transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-moz-transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
@-o-keyframes lightSpeedOut {
0% {
-o-transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-o-transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
-moz-animation-name: lightSpeedOut;
-o-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
-moz-animation-timing-function: ease-in;
-o-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform: rotate(0);
-webkit-transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
-webkit-transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
-webkit-transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
opacity: 0;
}
}
@-moz-keyframes hinge {
0% {
-moz-transform: rotate(0);
-moz-transform-origin: top left;
-moz-animation-timing-function: ease-in-out;
}
20%, 60% {
-moz-transform: rotate(80deg);
-moz-transform-origin: top left;
-moz-animation-timing-function: ease-in-out;
}
40% {
-moz-transform: rotate(60deg);
-moz-transform-origin: top left;
-moz-animation-timing-function: ease-in-out;
}
80% {
-moz-transform: rotate(60deg) translateY(0);
opacity: 1;
-moz-transform-origin: top left;
-moz-animation-timing-function: ease-in-out;
}
100% {
-moz-transform: translateY(700px);
opacity: 0;
}
}
@-o-keyframes hinge {
0% {
-o-transform: rotate(0);
-o-transform-origin: top left;
-o-animation-timing-function: ease-in-out;
}
20%, 60% {
-o-transform: rotate(80deg);
-o-transform-origin: top left;
-o-animation-timing-function: ease-in-out;
}
40% {
-o-transform: rotate(60deg);
-o-transform-origin: top left;
-o-animation-timing-function: ease-in-out;
}
80% {
-o-transform: rotate(60deg) translateY(0);
opacity: 1;
-o-transform-origin: top left;
-o-animation-timing-function: ease-in-out;
}
100% {
-o-transform: translateY(700px);
opacity: 0;
}
}
@keyframes hinge {
0% {
transform: rotate(0);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
20%, 60% {
transform: rotate(80deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
40% {
transform: rotate(60deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
80% {
transform: rotate(60deg) translateY(0);
opacity: 1;
transform-origin: top left;
animation-timing-function: ease-in-out;
}
100% {
transform: translateY(700px);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
-moz-animation-name: hinge;
-o-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
}
}
@-moz-keyframes rollIn {
0% {
opacity: 0;
-moz-transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-moz-transform: translateX(0px) rotate(0deg);
}
}
@-o-keyframes rollIn {
0% {
opacity: 0;
-o-transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-o-transform: translateX(0px) rotate(0deg);
}
}
@keyframes rollIn {
0% {
opacity: 0;
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
transform: translateX(0px) rotate(0deg);
}
}
.rollIn {
-webkit-animation-name: rollIn;
-moz-animation-name: rollIn;
-o-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
}
}
@-moz-keyframes rollOut {
0% {
opacity: 1;
-moz-transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-moz-transform: translateX(100%) rotate(120deg);
}
}
@-o-keyframes rollOut {
0% {
opacity: 1;
-o-transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-o-transform: translateX(100%) rotate(120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
transform: translateX(100%) rotate(120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
-moz-animation-name: rollOut;
-o-animation-name: rollOut;
animation-name: rollOut;
}
 @media print, screen and (min-width: 40em) {
.reveal, .reveal.tiny, .reveal.small, .reveal.large {
right: auto;
left: auto;
margin: 0 auto;
}
} html {
line-height: 1.15;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
pre {
font-family: monospace, monospace;
font-size: 1em;
}
a {
background-color: transparent;
}
abbr[title] {
border-bottom: 0;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
}
b,
strong {
font-weight: bolder;
}
code,
kbd,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
img {
border-style: none;
}
button,
input,
optgroup,
select,
textarea {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
fieldset {
padding: 0.35em 0.75em 0.625em;
}
legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal;
}
progress {
vertical-align: baseline;
}
textarea {
overflow: auto;
}
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
-webkit-appearance: textfield;
outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit;
}
details {
display: block;
}
summary {
display: list-item;
}
template {
display: none;
}
[hidden] {
display: none;
}
[data-whatintent="mouse"] *, [data-whatintent="mouse"] *:focus,
[data-whatintent="touch"] *,
[data-whatintent="touch"] *:focus,
[data-whatinput="mouse"] *,
[data-whatinput="mouse"] *:focus,
[data-whatinput="touch"] *,
[data-whatinput="touch"] *:focus {
outline: none;
}
[draggable=false] {
-webkit-touch-callout: none;
-webkit-user-select: none;
}
.foundation-mq {
font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em";
}
html {
box-sizing: border-box;
font-size: 100%;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
background: #fefefe;
font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
font-weight: normal;
line-height: 1.5;
color: #0a0a0a;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img {
display: inline-block;
vertical-align: middle;
max-width: 100%;
height: auto;
-ms-interpolation-mode: bicubic;
}
textarea {
height: auto;
min-height: 50px;
border-radius: 0;
}
select {
box-sizing: border-box;
width: 100%;
border-radius: 0;
}
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
max-width: none !important;
}
button {
padding: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 0;
border-radius: 0;
background: transparent;
line-height: 1;
cursor: auto;
}
[data-whatinput='mouse'] button {
outline: 0;
}
pre {
overflow: auto;
-webkit-overflow-scrolling: touch;
}
button,
input,
optgroup,
select,
textarea {
font-family: inherit;
}
.is-visible {
display: block !important;
}
.is-hidden {
display: none !important;
}
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
display: block;
box-sizing: border-box;
width: 100%;
height: 2.4375rem;
margin: 0 0 1rem;
padding: 0.5rem;
border: 1px solid #cacaca;
border-radius: 0;
background-color: #fefefe;
box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
font-family: inherit;
font-size: 1rem;
font-weight: normal;
line-height: 1.5;
color: #0a0a0a;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
textarea:focus {
outline: none;
border: 1px solid #8a8a8a;
background-color: #fefefe;
box-shadow: 0 0 5px #cacaca;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
textarea {
max-width: 100%;
}
textarea[rows] {
height: auto;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
background-color: #e6e6e6;
cursor: not-allowed;
}
[type='submit'],
[type='button'] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border-radius: 0;
}
input[type='search'] {
box-sizing: border-box;
}
::-moz-placeholder {
color: #cacaca;
}
::placeholder {
color: #cacaca;
}
[type='file'],
[type='checkbox'],
[type='radio'] {
margin: 0 0 1rem;
}
[type='checkbox'] + label,
[type='radio'] + label {
display: inline-block;
vertical-align: baseline;
margin-left: 0.5rem;
margin-right: 1rem;
margin-bottom: 0;
}
[type='checkbox'] + label[for],
[type='radio'] + label[for] {
cursor: pointer;
}
label > [type='checkbox'],
label > [type='radio'] {
margin-right: 0.5rem;
}
[type='file'] {
width: 100%;
}
label {
display: block;
margin: 0;
font-size: 0.875rem;
font-weight: normal;
line-height: 1.8;
color: #0a0a0a;
}
label.middle {
margin: 0 0 1rem;
line-height: 1.5;
padding: 0.5625rem 0;
}
.help-text {
margin-top: -0.5rem;
font-size: 0.8125rem;
font-style: italic;
color: #0a0a0a;
}
.input-group {
display: flex;
width: 100%;
margin-bottom: 1rem;
align-items: stretch;
}
.input-group > :first-child, .input-group > :first-child.input-group-button > * {
border-radius: 0 0 0 0;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
border-radius: 0 0 0 0;
}
.input-group-label, .input-group-field, .input-group-button, .input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
margin: 0;
white-space: nowrap;
}
.input-group-label {
padding: 0 1rem;
border: 1px solid #cacaca;
background: #e6e6e6;
color: #0a0a0a;
text-align: center;
white-space: nowrap;
display: flex;
flex: 0 0 auto;
align-items: center;
}
.input-group-label:first-child {
border-right: 0;
}
.input-group-label:last-child {
border-left: 0;
}
.input-group-field {
border-radius: 0;
flex: 1 1 0px;
min-width: 0;
}
.input-group-button {
padding-top: 0;
padding-bottom: 0;
text-align: center;
display: flex;
flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
align-self: stretch;
height: auto;
padding-top: 0;
padding-bottom: 0;
font-size: 1rem;
}
fieldset {
margin: 0;
padding: 0;
border: 0;
}
legend {
max-width: 100%;
margin-bottom: 0.5rem;
}
.fieldset {
margin: 1.125rem 0;
padding: 1.25rem;
border: 1px solid #cacaca;
}
.fieldset legend {
margin: 0;
margin-left: -0.1875rem;
padding: 0 0.1875rem;
}
select {
height: 2.4375rem;
margin: 0 0 1rem;
padding: 0.5rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 1px solid #cacaca;
border-radius: 0;
background-color: #fefefe;
font-family: inherit;
font-size: 1rem;
font-weight: normal;
line-height: 1.5;
color: #0a0a0a;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
background-origin: content-box;
background-position: right -1rem center;
background-repeat: no-repeat;
background-size: 9px 6px;
padding-right: 1.5rem;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0) {
select {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==);
}
}
select:focus {
outline: none;
border: 1px solid #8a8a8a;
background-color: #fefefe;
box-shadow: 0 0 5px #cacaca;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
background-color: #e6e6e6;
cursor: not-allowed;
}
select::-ms-expand {
display: none;
}
select[multiple] {
height: auto;
background-image: none;
}
select:not([multiple]) {
padding-top: 0;
padding-bottom: 0;
}
.is-invalid-input:not(:focus) {
border-color: #cc4b37;
background-color: #f9ecea;
}
.is-invalid-input:not(:focus)::-moz-placeholder {
color: #cc4b37;
}
.is-invalid-input:not(:focus)::placeholder {
color: #cc4b37;
}
.is-invalid-label {
color: #cc4b37;
}
.form-error {
display: none;
margin-top: -0.5rem;
margin-bottom: 1rem;
font-size: 0.75rem;
font-weight: bold;
color: #cc4b37;
}
.form-error.is-visible {
display: block;
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
margin: 0;
padding: 0;
}
p {
margin-bottom: 1rem;
font-size: inherit;
line-height: 1.6;
text-rendering: optimizeLegibility;
}
em,
i {
font-style: italic;
line-height: inherit;
}
strong,
b {
font-weight: bold;
line-height: inherit;
}
small {
font-size: 80%;
line-height: inherit;
}
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
font-style: normal;
font-weight: normal;
color: inherit;
text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
line-height: 0;
color: #cacaca;
}
h1, .h1 {
font-size: 1.5rem;
line-height: 1.4;
margin-top: 0;
margin-bottom: 0.5rem;
}
h2, .h2 {
font-size: 1.25rem;
line-height: 1.4;
margin-top: 0;
margin-bottom: 0.5rem;
}
h3, .h3 {
font-size: 1.1875rem;
line-height: 1.4;
margin-top: 0;
margin-bottom: 0.5rem;
}
h4, .h4 {
font-size: 1.125rem;
line-height: 1.4;
margin-top: 0;
margin-bottom: 0.5rem;
}
h5, .h5 {
font-size: 1.0625rem;
line-height: 1.4;
margin-top: 0;
margin-bottom: 0.5rem;
}
h6, .h6 {
font-size: 1rem;
line-height: 1.4;
margin-top: 0;
margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 40em) {
h1, .h1 {
font-size: 3rem;
}
h2, .h2 {
font-size: 2.5rem;
}
h3, .h3 {
font-size: 1.9375rem;
}
h4, .h4 {
font-size: 1.5625rem;
}
h5, .h5 {
font-size: 1.25rem;
}
h6, .h6 {
font-size: 1rem;
}
}
a {
line-height: inherit;
color: #1779ba;
text-decoration: none;
cursor: pointer;
}
a:hover, a:focus {
color: #1468a0;
}
a img {
border: 0;
}
hr {
clear: both;
max-width: 75rem;
height: 0;
margin: 1.25rem auto;
border-top: 0;
border-right: 0;
border-bottom: 1px solid #cacaca;
border-left: 0;
}
ul,
ol,
dl {
margin-bottom: 1rem;
list-style-position: outside;
line-height: 1.6;
}
li {
font-size: inherit;
}
ul {
margin-left: 1.25rem;
list-style-type: disc;
}
ol {
margin-left: 1.25rem;
}
ul ul, ol ul, ul ol, ol ol {
margin-left: 1.25rem;
margin-bottom: 0;
}
dl {
margin-bottom: 1rem;
}
dl dt {
margin-bottom: 0.3rem;
font-weight: bold;
}
blockquote {
margin: 0 0 1rem;
padding: 0.5625rem 1.25rem 0 1.1875rem;
border-left: 1px solid #cacaca;
}
blockquote, blockquote p {
line-height: 1.6;
color: #8a8a8a;
}
abbr, abbr[title] {
border-bottom: 1px dotted #0a0a0a;
cursor: help;
text-decoration: none;
}
figure {
margin: 0;
}
kbd {
margin: 0;
padding: 0.125rem 0.25rem 0;
background-color: #e6e6e6;
font-family: Consolas, "Liberation Mono", Courier, monospace;
color: #0a0a0a;
}
.subheader {
margin-top: 0.2rem;
margin-bottom: 0.5rem;
font-weight: normal;
line-height: 1.4;
color: #8a8a8a;
}
.lead {
font-size: 125%;
line-height: 1.6;
}
.stat {
font-size: 2.5rem;
line-height: 1;
}
p + .stat {
margin-top: -1rem;
}
ul.no-bullet, ol.no-bullet {
margin-left: 0;
list-style: none;
}
cite, .cite-block {
display: block;
color: #8a8a8a;
font-size: 0.8125rem;
}
cite:before, .cite-block:before {
content: "— ";
}
code, .code-inline {
border: 1px solid #cacaca;
background-color: #e6e6e6;
font-family: Consolas, "Liberation Mono", Courier, monospace;
font-weight: normal;
color: #0a0a0a;
display: inline;
max-width: 100%;
word-wrap: break-word;
padding: 0.125rem 0.3125rem 0.0625rem;
}
.code-block {
border: 1px solid #cacaca;
background-color: #e6e6e6;
font-family: Consolas, "Liberation Mono", Courier, monospace;
font-weight: normal;
color: #0a0a0a;
display: block;
overflow: auto;
white-space: pre;
padding: 1rem;
margin-bottom: 1.5rem;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center, .title-center .block-title {
text-align: center;
}
.text-justify {
text-align: justify;
}
@media print, screen and (min-width: 40em) {
.medium-text-left {
text-align: left;
}
.medium-text-right {
text-align: right;
}
.medium-text-center {
text-align: center;
}
.medium-text-justify {
text-align: justify;
}
}
@media print, screen and (min-width: 64em) {
.large-text-left {
text-align: left;
}
.large-text-right {
text-align: right;
}
.large-text-center {
text-align: center;
}
.large-text-justify {
text-align: justify;
}
}
.show-for-print {
display: none !important;
}
@media print {
* {
background: transparent !important;
color: black !important;
-webkit-print-color-adjust: economy;
color-adjust: economy;
print-color-adjust: economy;
box-shadow: none !important;
text-shadow: none !important;
}
.show-for-print {
display: block !important;
}
.hide-for-print {
display: none !important;
}
table.show-for-print {
display: table !important;
}
thead.show-for-print {
display: table-header-group !important;
}
tbody.show-for-print {
display: table-row-group !important;
}
tr.show-for-print {
display: table-row !important;
}
td.show-for-print {
display: table-cell !important;
}
th.show-for-print {
display: table-cell !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
.ir a:after,
a[href^='javascript:']:after,
a[href^='#']:after {
content: '';
}
abbr[title]:after {
content: " (" attr(title) ")";
}
pre,
blockquote {
border: 1px solid #8a8a8a;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
@page {
margin: 0.5cm;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
.print-break-inside {
page-break-inside: auto;
}
}
.grid-container {
padding-right: 0.625rem;
padding-left: 0.625rem;
max-width: 75rem;
margin-left: auto;
margin-right: auto;
}
@media print, screen and (min-width: 40em) {
.grid-container {
padding-right: 0.9375rem;
padding-left: 0.9375rem;
}
}
.grid-container.fluid {
padding-right: 0.625rem;
padding-left: 0.625rem;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
@media print, screen and (min-width: 40em) {
.grid-container.fluid {
padding-right: 0.9375rem;
padding-left: 0.9375rem;
}
}
.grid-container.full {
padding-right: 0;
padding-left: 0;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.grid-x {
display: flex;
flex-flow: row wrap;
}
.cell {
flex: 0 0 auto;
min-height: 0;
min-width: 0;
width: 100%;
}
.cell.auto {
flex: 1 1 0;
}
.cell.shrink {
flex: 0 0 auto;
}
.grid-x > .auto {
width: auto;
}
.grid-x > .shrink {
width: auto;
}
.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
.grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
flex-basis: auto;
}
}
@media print, screen and (min-width: 64em) {
.grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
flex-basis: auto;
}
}
.grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
flex: 0 0 auto;
}
.grid-x > .small-1 {
width: 8.33333%;
}
.grid-x > .small-2 {
width: 16.66667%;
}
.grid-x > .small-3 {
width: 25%;
}
.grid-x > .small-4 {
width: 33.33333%;
}
.grid-x > .small-5 {
width: 41.66667%;
}
.grid-x > .small-6 {
width: 50%;
}
.grid-x > .small-7 {
width: 58.33333%;
}
.grid-x > .small-8 {
width: 66.66667%;
}
.grid-x > .small-9 {
width: 75%;
}
.grid-x > .small-10 {
width: 83.33333%;
}
.grid-x > .small-11 {
width: 91.66667%;
}
.grid-x > .small-12 {
width: 100%;
}
@media print, screen and (min-width: 40em) {
.grid-x > .medium-auto {
flex: 1 1 0;
width: auto;
}
.grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
flex: 0 0 auto;
}
.grid-x > .medium-shrink {
width: auto;
}
.grid-x > .medium-1 {
width: 8.33333%;
}
.grid-x > .medium-2 {
width: 16.66667%;
}
.grid-x > .medium-3 {
width: 25%;
}
.grid-x > .medium-4 {
width: 33.33333%;
}
.grid-x > .medium-5 {
width: 41.66667%;
}
.grid-x > .medium-6 {
width: 50%;
}
.grid-x > .medium-7 {
width: 58.33333%;
}
.grid-x > .medium-8 {
width: 66.66667%;
}
.grid-x > .medium-9 {
width: 75%;
}
.grid-x > .medium-10 {
width: 83.33333%;
}
.grid-x > .medium-11 {
width: 91.66667%;
}
.grid-x > .medium-12 {
width: 100%;
}
}
@media print, screen and (min-width: 64em) {
.grid-x > .large-auto {
flex: 1 1 0;
width: auto;
}
.grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
flex: 0 0 auto;
}
.grid-x > .large-shrink {
width: auto;
}
.grid-x > .large-1 {
width: 8.33333%;
}
.grid-x > .large-2 {
width: 16.66667%;
}
.grid-x > .large-3 {
width: 25%;
}
.grid-x > .large-4 {
width: 33.33333%;
}
.grid-x > .large-5 {
width: 41.66667%;
}
.grid-x > .large-6 {
width: 50%;
}
.grid-x > .large-7 {
width: 58.33333%;
}
.grid-x > .large-8 {
width: 66.66667%;
}
.grid-x > .large-9 {
width: 75%;
}
.grid-x > .large-10 {
width: 83.33333%;
}
.grid-x > .large-11 {
width: 91.66667%;
}
.grid-x > .large-12 {
width: 100%;
}
}
.grid-margin-x:not(.grid-x) > .cell {
width: auto;
}
.grid-margin-y:not(.grid-y) > .cell {
height: auto;
}
.grid-margin-x {
margin-left: -0.625rem;
margin-right: -0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-margin-x {
margin-left: -0.9375rem;
margin-right: -0.9375rem;
}
}
.grid-margin-x > .cell {
width: calc(100% - 1.25rem);
margin-left: 0.625rem;
margin-right: 0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-margin-x > .cell {
width: calc(100% - 1.875rem);
margin-left: 0.9375rem;
margin-right: 0.9375rem;
}
}
.grid-margin-x > .auto {
width: auto;
}
.grid-margin-x > .shrink {
width: auto;
}
.grid-margin-x > .small-1 {
width: calc(8.33333% - 1.25rem);
}
.grid-margin-x > .small-2 {
width: calc(16.66667% - 1.25rem);
}
.grid-margin-x > .small-3 {
width: calc(25% - 1.25rem);
}
.grid-margin-x > .small-4 {
width: calc(33.33333% - 1.25rem);
}
.grid-margin-x > .small-5 {
width: calc(41.66667% - 1.25rem);
}
.grid-margin-x > .small-6 {
width: calc(50% - 1.25rem);
}
.grid-margin-x > .small-7 {
width: calc(58.33333% - 1.25rem);
}
.grid-margin-x > .small-8 {
width: calc(66.66667% - 1.25rem);
}
.grid-margin-x > .small-9 {
width: calc(75% - 1.25rem);
}
.grid-margin-x > .small-10 {
width: calc(83.33333% - 1.25rem);
}
.grid-margin-x > .small-11 {
width: calc(91.66667% - 1.25rem);
}
.grid-margin-x > .small-12 {
width: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
.grid-margin-x > .auto {
width: auto;
}
.grid-margin-x > .shrink {
width: auto;
}
.grid-margin-x > .small-1 {
width: calc(8.33333% - 1.875rem);
}
.grid-margin-x > .small-2 {
width: calc(16.66667% - 1.875rem);
}
.grid-margin-x > .small-3 {
width: calc(25% - 1.875rem);
}
.grid-margin-x > .small-4 {
width: calc(33.33333% - 1.875rem);
}
.grid-margin-x > .small-5 {
width: calc(41.66667% - 1.875rem);
}
.grid-margin-x > .small-6 {
width: calc(50% - 1.875rem);
}
.grid-margin-x > .small-7 {
width: calc(58.33333% - 1.875rem);
}
.grid-margin-x > .small-8 {
width: calc(66.66667% - 1.875rem);
}
.grid-margin-x > .small-9 {
width: calc(75% - 1.875rem);
}
.grid-margin-x > .small-10 {
width: calc(83.33333% - 1.875rem);
}
.grid-margin-x > .small-11 {
width: calc(91.66667% - 1.875rem);
}
.grid-margin-x > .small-12 {
width: calc(100% - 1.875rem);
}
.grid-margin-x > .medium-auto {
width: auto;
}
.grid-margin-x > .medium-shrink {
width: auto;
}
.grid-margin-x > .medium-1 {
width: calc(8.33333% - 1.875rem);
}
.grid-margin-x > .medium-2 {
width: calc(16.66667% - 1.875rem);
}
.grid-margin-x > .medium-3 {
width: calc(25% - 1.875rem);
}
.grid-margin-x > .medium-4 {
width: calc(33.33333% - 1.875rem);
}
.grid-margin-x > .medium-5 {
width: calc(41.66667% - 1.875rem);
}
.grid-margin-x > .medium-6 {
width: calc(50% - 1.875rem);
}
.grid-margin-x > .medium-7 {
width: calc(58.33333% - 1.875rem);
}
.grid-margin-x > .medium-8 {
width: calc(66.66667% - 1.875rem);
}
.grid-margin-x > .medium-9 {
width: calc(75% - 1.875rem);
}
.grid-margin-x > .medium-10 {
width: calc(83.33333% - 1.875rem);
}
.grid-margin-x > .medium-11 {
width: calc(91.66667% - 1.875rem);
}
.grid-margin-x > .medium-12 {
width: calc(100% - 1.875rem);
}
}
@media print, screen and (min-width: 64em) {
.grid-margin-x > .large-auto {
width: auto;
}
.grid-margin-x > .large-shrink {
width: auto;
}
.grid-margin-x > .large-1 {
width: calc(8.33333% - 1.875rem);
}
.grid-margin-x > .large-2 {
width: calc(16.66667% - 1.875rem);
}
.grid-margin-x > .large-3 {
width: calc(25% - 1.875rem);
}
.grid-margin-x > .large-4 {
width: calc(33.33333% - 1.875rem);
}
.grid-margin-x > .large-5 {
width: calc(41.66667% - 1.875rem);
}
.grid-margin-x > .large-6 {
width: calc(50% - 1.875rem);
}
.grid-margin-x > .large-7 {
width: calc(58.33333% - 1.875rem);
}
.grid-margin-x > .large-8 {
width: calc(66.66667% - 1.875rem);
}
.grid-margin-x > .large-9 {
width: calc(75% - 1.875rem);
}
.grid-margin-x > .large-10 {
width: calc(83.33333% - 1.875rem);
}
.grid-margin-x > .large-11 {
width: calc(91.66667% - 1.875rem);
}
.grid-margin-x > .large-12 {
width: calc(100% - 1.875rem);
}
}
.grid-padding-x .grid-padding-x {
margin-right: -0.625rem;
margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-padding-x .grid-padding-x {
margin-right: -0.9375rem;
margin-left: -0.9375rem;
}
}
.grid-container:not(.full) > .grid-padding-x {
margin-right: -0.625rem;
margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-container:not(.full) > .grid-padding-x {
margin-right: -0.9375rem;
margin-left: -0.9375rem;
}
}
.grid-padding-x > .cell {
padding-right: 0.625rem;
padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-padding-x > .cell {
padding-right: 0.9375rem;
padding-left: 0.9375rem;
}
}
.small-up-1 > .cell {
width: 100%;
}
.small-up-2 > .cell {
width: 50%;
}
.small-up-3 > .cell {
width: 33.33333%;
}
.small-up-4 > .cell {
width: 25%;
}
.small-up-5 > .cell {
width: 20%;
}
.small-up-6 > .cell {
width: 16.66667%;
}
.small-up-7 > .cell {
width: 14.28571%;
}
.small-up-8 > .cell {
width: 12.5%;
}
@media print, screen and (min-width: 40em) {
.medium-up-1 > .cell {
width: 100%;
}
.medium-up-2 > .cell {
width: 50%;
}
.medium-up-3 > .cell {
width: 33.33333%;
}
.medium-up-4 > .cell {
width: 25%;
}
.medium-up-5 > .cell {
width: 20%;
}
.medium-up-6 > .cell {
width: 16.66667%;
}
.medium-up-7 > .cell {
width: 14.28571%;
}
.medium-up-8 > .cell {
width: 12.5%;
}
}
@media print, screen and (min-width: 64em) {
.large-up-1 > .cell {
width: 100%;
}
.large-up-2 > .cell {
width: 50%;
}
.large-up-3 > .cell {
width: 33.33333%;
}
.large-up-4 > .cell {
width: 25%;
}
.large-up-5 > .cell {
width: 20%;
}
.large-up-6 > .cell {
width: 16.66667%;
}
.large-up-7 > .cell {
width: 14.28571%;
}
.large-up-8 > .cell {
width: 12.5%;
}
}
.grid-margin-x.small-up-1 > .cell {
width: calc(100% - 1.25rem);
}
.grid-margin-x.small-up-2 > .cell {
width: calc(50% - 1.25rem);
}
.grid-margin-x.small-up-3 > .cell {
width: calc(33.33333% - 1.25rem);
}
.grid-margin-x.small-up-4 > .cell {
width: calc(25% - 1.25rem);
}
.grid-margin-x.small-up-5 > .cell {
width: calc(20% - 1.25rem);
}
.grid-margin-x.small-up-6 > .cell {
width: calc(16.66667% - 1.25rem);
}
.grid-margin-x.small-up-7 > .cell {
width: calc(14.28571% - 1.25rem);
}
.grid-margin-x.small-up-8 > .cell {
width: calc(12.5% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
.grid-margin-x.small-up-1 > .cell {
width: calc(100% - 1.875rem);
}
.grid-margin-x.small-up-2 > .cell {
width: calc(50% - 1.875rem);
}
.grid-margin-x.small-up-3 > .cell {
width: calc(33.33333% - 1.875rem);
}
.grid-margin-x.small-up-4 > .cell {
width: calc(25% - 1.875rem);
}
.grid-margin-x.small-up-5 > .cell {
width: calc(20% - 1.875rem);
}
.grid-margin-x.small-up-6 > .cell {
width: calc(16.66667% - 1.875rem);
}
.grid-margin-x.small-up-7 > .cell {
width: calc(14.28571% - 1.875rem);
}
.grid-margin-x.small-up-8 > .cell {
width: calc(12.5% - 1.875rem);
}
.grid-margin-x.medium-up-1 > .cell {
width: calc(100% - 1.875rem);
}
.grid-margin-x.medium-up-2 > .cell {
width: calc(50% - 1.875rem);
}
.grid-margin-x.medium-up-3 > .cell {
width: calc(33.33333% - 1.875rem);
}
.grid-margin-x.medium-up-4 > .cell {
width: calc(25% - 1.875rem);
}
.grid-margin-x.medium-up-5 > .cell {
width: calc(20% - 1.875rem);
}
.grid-margin-x.medium-up-6 > .cell {
width: calc(16.66667% - 1.875rem);
}
.grid-margin-x.medium-up-7 > .cell {
width: calc(14.28571% - 1.875rem);
}
.grid-margin-x.medium-up-8 > .cell {
width: calc(12.5% - 1.875rem);
}
}
@media print, screen and (min-width: 64em) {
.grid-margin-x.large-up-1 > .cell {
width: calc(100% - 1.875rem);
}
.grid-margin-x.large-up-2 > .cell {
width: calc(50% - 1.875rem);
}
.grid-margin-x.large-up-3 > .cell {
width: calc(33.33333% - 1.875rem);
}
.grid-margin-x.large-up-4 > .cell {
width: calc(25% - 1.875rem);
}
.grid-margin-x.large-up-5 > .cell {
width: calc(20% - 1.875rem);
}
.grid-margin-x.large-up-6 > .cell {
width: calc(16.66667% - 1.875rem);
}
.grid-margin-x.large-up-7 > .cell {
width: calc(14.28571% - 1.875rem);
}
.grid-margin-x.large-up-8 > .cell {
width: calc(12.5% - 1.875rem);
}
}
.small-margin-collapse {
margin-right: 0;
margin-left: 0;
}
.small-margin-collapse > .cell {
margin-right: 0;
margin-left: 0;
}
.small-margin-collapse > .small-1 {
width: 8.33333%;
}
.small-margin-collapse > .small-2 {
width: 16.66667%;
}
.small-margin-collapse > .small-3 {
width: 25%;
}
.small-margin-collapse > .small-4 {
width: 33.33333%;
}
.small-margin-collapse > .small-5 {
width: 41.66667%;
}
.small-margin-collapse > .small-6 {
width: 50%;
}
.small-margin-collapse > .small-7 {
width: 58.33333%;
}
.small-margin-collapse > .small-8 {
width: 66.66667%;
}
.small-margin-collapse > .small-9 {
width: 75%;
}
.small-margin-collapse > .small-10 {
width: 83.33333%;
}
.small-margin-collapse > .small-11 {
width: 91.66667%;
}
.small-margin-collapse > .small-12 {
width: 100%;
}
@media print, screen and (min-width: 40em) {
.small-margin-collapse > .medium-1 {
width: 8.33333%;
}
.small-margin-collapse > .medium-2 {
width: 16.66667%;
}
.small-margin-collapse > .medium-3 {
width: 25%;
}
.small-margin-collapse > .medium-4 {
width: 33.33333%;
}
.small-margin-collapse > .medium-5 {
width: 41.66667%;
}
.small-margin-collapse > .medium-6 {
width: 50%;
}
.small-margin-collapse > .medium-7 {
width: 58.33333%;
}
.small-margin-collapse > .medium-8 {
width: 66.66667%;
}
.small-margin-collapse > .medium-9 {
width: 75%;
}
.small-margin-collapse > .medium-10 {
width: 83.33333%;
}
.small-margin-collapse > .medium-11 {
width: 91.66667%;
}
.small-margin-collapse > .medium-12 {
width: 100%;
}
}
@media print, screen and (min-width: 64em) {
.small-margin-collapse > .large-1 {
width: 8.33333%;
}
.small-margin-collapse > .large-2 {
width: 16.66667%;
}
.small-margin-collapse > .large-3 {
width: 25%;
}
.small-margin-collapse > .large-4 {
width: 33.33333%;
}
.small-margin-collapse > .large-5 {
width: 41.66667%;
}
.small-margin-collapse > .large-6 {
width: 50%;
}
.small-margin-collapse > .large-7 {
width: 58.33333%;
}
.small-margin-collapse > .large-8 {
width: 66.66667%;
}
.small-margin-collapse > .large-9 {
width: 75%;
}
.small-margin-collapse > .large-10 {
width: 83.33333%;
}
.small-margin-collapse > .large-11 {
width: 91.66667%;
}
.small-margin-collapse > .large-12 {
width: 100%;
}
}
.small-padding-collapse {
margin-right: 0;
margin-left: 0;
}
.small-padding-collapse > .cell {
padding-right: 0;
padding-left: 0;
}
@media print, screen and (min-width: 40em) {
.medium-margin-collapse {
margin-right: 0;
margin-left: 0;
}
.medium-margin-collapse > .cell {
margin-right: 0;
margin-left: 0;
}
}
@media print, screen and (min-width: 40em) {
.medium-margin-collapse > .small-1 {
width: 8.33333%;
}
.medium-margin-collapse > .small-2 {
width: 16.66667%;
}
.medium-margin-collapse > .small-3 {
width: 25%;
}
.medium-margin-collapse > .small-4 {
width: 33.33333%;
}
.medium-margin-collapse > .small-5 {
width: 41.66667%;
}
.medium-margin-collapse > .small-6 {
width: 50%;
}
.medium-margin-collapse > .small-7 {
width: 58.33333%;
}
.medium-margin-collapse > .small-8 {
width: 66.66667%;
}
.medium-margin-collapse > .small-9 {
width: 75%;
}
.medium-margin-collapse > .small-10 {
width: 83.33333%;
}
.medium-margin-collapse > .small-11 {
width: 91.66667%;
}
.medium-margin-collapse > .small-12 {
width: 100%;
}
}
@media print, screen and (min-width: 40em) {
.medium-margin-collapse > .medium-1 {
width: 8.33333%;
}
.medium-margin-collapse > .medium-2 {
width: 16.66667%;
}
.medium-margin-collapse > .medium-3 {
width: 25%;
}
.medium-margin-collapse > .medium-4 {
width: 33.33333%;
}
.medium-margin-collapse > .medium-5 {
width: 41.66667%;
}
.medium-margin-collapse > .medium-6 {
width: 50%;
}
.medium-margin-collapse > .medium-7 {
width: 58.33333%;
}
.medium-margin-collapse > .medium-8 {
width: 66.66667%;
}
.medium-margin-collapse > .medium-9 {
width: 75%;
}
.medium-margin-collapse > .medium-10 {
width: 83.33333%;
}
.medium-margin-collapse > .medium-11 {
width: 91.66667%;
}
.medium-margin-collapse > .medium-12 {
width: 100%;
}
}
@media print, screen and (min-width: 64em) {
.medium-margin-collapse > .large-1 {
width: 8.33333%;
}
.medium-margin-collapse > .large-2 {
width: 16.66667%;
}
.medium-margin-collapse > .large-3 {
width: 25%;
}
.medium-margin-collapse > .large-4 {
width: 33.33333%;
}
.medium-margin-collapse > .large-5 {
width: 41.66667%;
}
.medium-margin-collapse > .large-6 {
width: 50%;
}
.medium-margin-collapse > .large-7 {
width: 58.33333%;
}
.medium-margin-collapse > .large-8 {
width: 66.66667%;
}
.medium-margin-collapse > .large-9 {
width: 75%;
}
.medium-margin-collapse > .large-10 {
width: 83.33333%;
}
.medium-margin-collapse > .large-11 {
width: 91.66667%;
}
.medium-margin-collapse > .large-12 {
width: 100%;
}
}
@media print, screen and (min-width: 40em) {
.medium-padding-collapse {
margin-right: 0;
margin-left: 0;
}
.medium-padding-collapse > .cell {
padding-right: 0;
padding-left: 0;
}
}
@media print, screen and (min-width: 64em) {
.large-margin-collapse {
margin-right: 0;
margin-left: 0;
}
.large-margin-collapse > .cell {
margin-right: 0;
margin-left: 0;
}
}
@media print, screen and (min-width: 64em) {
.large-margin-collapse > .small-1 {
width: 8.33333%;
}
.large-margin-collapse > .small-2 {
width: 16.66667%;
}
.large-margin-collapse > .small-3 {
width: 25%;
}
.large-margin-collapse > .small-4 {
width: 33.33333%;
}
.large-margin-collapse > .small-5 {
width: 41.66667%;
}
.large-margin-collapse > .small-6 {
width: 50%;
}
.large-margin-collapse > .small-7 {
width: 58.33333%;
}
.large-margin-collapse > .small-8 {
width: 66.66667%;
}
.large-margin-collapse > .small-9 {
width: 75%;
}
.large-margin-collapse > .small-10 {
width: 83.33333%;
}
.large-margin-collapse > .small-11 {
width: 91.66667%;
}
.large-margin-collapse > .small-12 {
width: 100%;
}
}
@media print, screen and (min-width: 64em) {
.large-margin-collapse > .medium-1 {
width: 8.33333%;
}
.large-margin-collapse > .medium-2 {
width: 16.66667%;
}
.large-margin-collapse > .medium-3 {
width: 25%;
}
.large-margin-collapse > .medium-4 {
width: 33.33333%;
}
.large-margin-collapse > .medium-5 {
width: 41.66667%;
}
.large-margin-collapse > .medium-6 {
width: 50%;
}
.large-margin-collapse > .medium-7 {
width: 58.33333%;
}
.large-margin-collapse > .medium-8 {
width: 66.66667%;
}
.large-margin-collapse > .medium-9 {
width: 75%;
}
.large-margin-collapse > .medium-10 {
width: 83.33333%;
}
.large-margin-collapse > .medium-11 {
width: 91.66667%;
}
.large-margin-collapse > .medium-12 {
width: 100%;
}
}
@media print, screen and (min-width: 64em) {
.large-margin-collapse > .large-1 {
width: 8.33333%;
}
.large-margin-collapse > .large-2 {
width: 16.66667%;
}
.large-margin-collapse > .large-3 {
width: 25%;
}
.large-margin-collapse > .large-4 {
width: 33.33333%;
}
.large-margin-collapse > .large-5 {
width: 41.66667%;
}
.large-margin-collapse > .large-6 {
width: 50%;
}
.large-margin-collapse > .large-7 {
width: 58.33333%;
}
.large-margin-collapse > .large-8 {
width: 66.66667%;
}
.large-margin-collapse > .large-9 {
width: 75%;
}
.large-margin-collapse > .large-10 {
width: 83.33333%;
}
.large-margin-collapse > .large-11 {
width: 91.66667%;
}
.large-margin-collapse > .large-12 {
width: 100%;
}
}
@media print, screen and (min-width: 64em) {
.large-padding-collapse {
margin-right: 0;
margin-left: 0;
}
.large-padding-collapse > .cell {
padding-right: 0;
padding-left: 0;
}
}
.small-offset-0 {
margin-left: 0%;
}
.grid-margin-x > .small-offset-0 {
margin-left: calc(0% + 1.25rem / 2);
}
.small-offset-1 {
margin-left: 8.33333%;
}
.grid-margin-x > .small-offset-1 {
margin-left: calc(8.33333% + 1.25rem / 2);
}
.small-offset-2 {
margin-left: 16.66667%;
}
.grid-margin-x > .small-offset-2 {
margin-left: calc(16.66667% + 1.25rem / 2);
}
.small-offset-3 {
margin-left: 25%;
}
.grid-margin-x > .small-offset-3 {
margin-left: calc(25% + 1.25rem / 2);
}
.small-offset-4 {
margin-left: 33.33333%;
}
.grid-margin-x > .small-offset-4 {
margin-left: calc(33.33333% + 1.25rem / 2);
}
.small-offset-5 {
margin-left: 41.66667%;
}
.grid-margin-x > .small-offset-5 {
margin-left: calc(41.66667% + 1.25rem / 2);
}
.small-offset-6 {
margin-left: 50%;
}
.grid-margin-x > .small-offset-6 {
margin-left: calc(50% + 1.25rem / 2);
}
.small-offset-7 {
margin-left: 58.33333%;
}
.grid-margin-x > .small-offset-7 {
margin-left: calc(58.33333% + 1.25rem / 2);
}
.small-offset-8 {
margin-left: 66.66667%;
}
.grid-margin-x > .small-offset-8 {
margin-left: calc(66.66667% + 1.25rem / 2);
}
.small-offset-9 {
margin-left: 75%;
}
.grid-margin-x > .small-offset-9 {
margin-left: calc(75% + 1.25rem / 2);
}
.small-offset-10 {
margin-left: 83.33333%;
}
.grid-margin-x > .small-offset-10 {
margin-left: calc(83.33333% + 1.25rem / 2);
}
.small-offset-11 {
margin-left: 91.66667%;
}
.grid-margin-x > .small-offset-11 {
margin-left: calc(91.66667% + 1.25rem / 2);
}
@media print, screen and (min-width: 40em) {
.medium-offset-0 {
margin-left: 0%;
}
.grid-margin-x > .medium-offset-0 {
margin-left: calc(0% + 1.875rem / 2);
}
.medium-offset-1 {
margin-left: 8.33333%;
}
.grid-margin-x > .medium-offset-1 {
margin-left: calc(8.33333% + 1.875rem / 2);
}
.medium-offset-2 {
margin-left: 16.66667%;
}
.grid-margin-x > .medium-offset-2 {
margin-left: calc(16.66667% + 1.875rem / 2);
}
.medium-offset-3 {
margin-left: 25%;
}
.grid-margin-x > .medium-offset-3 {
margin-left: calc(25% + 1.875rem / 2);
}
.medium-offset-4 {
margin-left: 33.33333%;
}
.grid-margin-x > .medium-offset-4 {
margin-left: calc(33.33333% + 1.875rem / 2);
}
.medium-offset-5 {
margin-left: 41.66667%;
}
.grid-margin-x > .medium-offset-5 {
margin-left: calc(41.66667% + 1.875rem / 2);
}
.medium-offset-6 {
margin-left: 50%;
}
.grid-margin-x > .medium-offset-6 {
margin-left: calc(50% + 1.875rem / 2);
}
.medium-offset-7 {
margin-left: 58.33333%;
}
.grid-margin-x > .medium-offset-7 {
margin-left: calc(58.33333% + 1.875rem / 2);
}
.medium-offset-8 {
margin-left: 66.66667%;
}
.grid-margin-x > .medium-offset-8 {
margin-left: calc(66.66667% + 1.875rem / 2);
}
.medium-offset-9 {
margin-left: 75%;
}
.grid-margin-x > .medium-offset-9 {
margin-left: calc(75% + 1.875rem / 2);
}
.medium-offset-10 {
margin-left: 83.33333%;
}
.grid-margin-x > .medium-offset-10 {
margin-left: calc(83.33333% + 1.875rem / 2);
}
.medium-offset-11 {
margin-left: 91.66667%;
}
.grid-margin-x > .medium-offset-11 {
margin-left: calc(91.66667% + 1.875rem / 2);
}
}
@media print, screen and (min-width: 64em) {
.large-offset-0 {
margin-left: 0%;
}
.grid-margin-x > .large-offset-0 {
margin-left: calc(0% + 1.875rem / 2);
}
.large-offset-1 {
margin-left: 8.33333%;
}
.grid-margin-x > .large-offset-1 {
margin-left: calc(8.33333% + 1.875rem / 2);
}
.large-offset-2 {
margin-left: 16.66667%;
}
.grid-margin-x > .large-offset-2 {
margin-left: calc(16.66667% + 1.875rem / 2);
}
.large-offset-3 {
margin-left: 25%;
}
.grid-margin-x > .large-offset-3 {
margin-left: calc(25% + 1.875rem / 2);
}
.large-offset-4 {
margin-left: 33.33333%;
}
.grid-margin-x > .large-offset-4 {
margin-left: calc(33.33333% + 1.875rem / 2);
}
.large-offset-5 {
margin-left: 41.66667%;
}
.grid-margin-x > .large-offset-5 {
margin-left: calc(41.66667% + 1.875rem / 2);
}
.large-offset-6 {
margin-left: 50%;
}
.grid-margin-x > .large-offset-6 {
margin-left: calc(50% + 1.875rem / 2);
}
.large-offset-7 {
margin-left: 58.33333%;
}
.grid-margin-x > .large-offset-7 {
margin-left: calc(58.33333% + 1.875rem / 2);
}
.large-offset-8 {
margin-left: 66.66667%;
}
.grid-margin-x > .large-offset-8 {
margin-left: calc(66.66667% + 1.875rem / 2);
}
.large-offset-9 {
margin-left: 75%;
}
.grid-margin-x > .large-offset-9 {
margin-left: calc(75% + 1.875rem / 2);
}
.large-offset-10 {
margin-left: 83.33333%;
}
.grid-margin-x > .large-offset-10 {
margin-left: calc(83.33333% + 1.875rem / 2);
}
.large-offset-11 {
margin-left: 91.66667%;
}
.grid-margin-x > .large-offset-11 {
margin-left: calc(91.66667% + 1.875rem / 2);
}
}
.grid-y {
display: flex;
flex-flow: column nowrap;
}
.grid-y > .cell {
height: auto;
max-height: none;
}
.grid-y > .auto {
height: auto;
}
.grid-y > .shrink {
height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
.grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
flex-basis: auto;
}
}
@media print, screen and (min-width: 64em) {
.grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
flex-basis: auto;
}
}
.grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
flex: 0 0 auto;
}
.grid-y > .small-1 {
height: 8.33333%;
}
.grid-y > .small-2 {
height: 16.66667%;
}
.grid-y > .small-3 {
height: 25%;
}
.grid-y > .small-4 {
height: 33.33333%;
}
.grid-y > .small-5 {
height: 41.66667%;
}
.grid-y > .small-6 {
height: 50%;
}
.grid-y > .small-7 {
height: 58.33333%;
}
.grid-y > .small-8 {
height: 66.66667%;
}
.grid-y > .small-9 {
height: 75%;
}
.grid-y > .small-10 {
height: 83.33333%;
}
.grid-y > .small-11 {
height: 91.66667%;
}
.grid-y > .small-12 {
height: 100%;
}
@media print, screen and (min-width: 40em) {
.grid-y > .medium-auto {
flex: 1 1 0;
height: auto;
}
.grid-y > .medium-shrink, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
flex: 0 0 auto;
}
.grid-y > .medium-shrink {
height: auto;
}
.grid-y > .medium-1 {
height: 8.33333%;
}
.grid-y > .medium-2 {
height: 16.66667%;
}
.grid-y > .medium-3 {
height: 25%;
}
.grid-y > .medium-4 {
height: 33.33333%;
}
.grid-y > .medium-5 {
height: 41.66667%;
}
.grid-y > .medium-6 {
height: 50%;
}
.grid-y > .medium-7 {
height: 58.33333%;
}
.grid-y > .medium-8 {
height: 66.66667%;
}
.grid-y > .medium-9 {
height: 75%;
}
.grid-y > .medium-10 {
height: 83.33333%;
}
.grid-y > .medium-11 {
height: 91.66667%;
}
.grid-y > .medium-12 {
height: 100%;
}
}
@media print, screen and (min-width: 64em) {
.grid-y > .large-auto {
flex: 1 1 0;
height: auto;
}
.grid-y > .large-shrink, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
flex: 0 0 auto;
}
.grid-y > .large-shrink {
height: auto;
}
.grid-y > .large-1 {
height: 8.33333%;
}
.grid-y > .large-2 {
height: 16.66667%;
}
.grid-y > .large-3 {
height: 25%;
}
.grid-y > .large-4 {
height: 33.33333%;
}
.grid-y > .large-5 {
height: 41.66667%;
}
.grid-y > .large-6 {
height: 50%;
}
.grid-y > .large-7 {
height: 58.33333%;
}
.grid-y > .large-8 {
height: 66.66667%;
}
.grid-y > .large-9 {
height: 75%;
}
.grid-y > .large-10 {
height: 83.33333%;
}
.grid-y > .large-11 {
height: 91.66667%;
}
.grid-y > .large-12 {
height: 100%;
}
}
.grid-padding-y .grid-padding-y {
margin-top: -0.625rem;
margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-padding-y .grid-padding-y {
margin-top: -0.9375rem;
margin-bottom: -0.9375rem;
}
}
.grid-padding-y > .cell {
padding-top: 0.625rem;
padding-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-padding-y > .cell {
padding-top: 0.9375rem;
padding-bottom: 0.9375rem;
}
}
.grid-margin-y {
margin-top: -0.625rem;
margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-margin-y {
margin-top: -0.9375rem;
margin-bottom: -0.9375rem;
}
}
.grid-margin-y > .cell {
height: calc(100% - 1.25rem);
margin-top: 0.625rem;
margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-margin-y > .cell {
height: calc(100% - 1.875rem);
margin-top: 0.9375rem;
margin-bottom: 0.9375rem;
}
}
.grid-margin-y > .auto {
height: auto;
}
.grid-margin-y > .shrink {
height: auto;
}
.grid-margin-y > .small-1 {
height: calc(8.33333% - 1.25rem);
}
.grid-margin-y > .small-2 {
height: calc(16.66667% - 1.25rem);
}
.grid-margin-y > .small-3 {
height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
height: calc(33.33333% - 1.25rem);
}
.grid-margin-y > .small-5 {
height: calc(41.66667% - 1.25rem);
}
.grid-margin-y > .small-6 {
height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
height: calc(58.33333% - 1.25rem);
}
.grid-margin-y > .small-8 {
height: calc(66.66667% - 1.25rem);
}
.grid-margin-y > .small-9 {
height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
height: calc(83.33333% - 1.25rem);
}
.grid-margin-y > .small-11 {
height: calc(91.66667% - 1.25rem);
}
.grid-margin-y > .small-12 {
height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
.grid-margin-y > .auto {
height: auto;
}
.grid-margin-y > .shrink {
height: auto;
}
.grid-margin-y > .small-1 {
height: calc(8.33333% - 1.875rem);
}
.grid-margin-y > .small-2 {
height: calc(16.66667% - 1.875rem);
}
.grid-margin-y > .small-3 {
height: calc(25% - 1.875rem);
}
.grid-margin-y > .small-4 {
height: calc(33.33333% - 1.875rem);
}
.grid-margin-y > .small-5 {
height: calc(41.66667% - 1.875rem);
}
.grid-margin-y > .small-6 {
height: calc(50% - 1.875rem);
}
.grid-margin-y > .small-7 {
height: calc(58.33333% - 1.875rem);
}
.grid-margin-y > .small-8 {
height: calc(66.66667% - 1.875rem);
}
.grid-margin-y > .small-9 {
height: calc(75% - 1.875rem);
}
.grid-margin-y > .small-10 {
height: calc(83.33333% - 1.875rem);
}
.grid-margin-y > .small-11 {
height: calc(91.66667% - 1.875rem);
}
.grid-margin-y > .small-12 {
height: calc(100% - 1.875rem);
}
.grid-margin-y > .medium-auto {
height: auto;
}
.grid-margin-y > .medium-shrink {
height: auto;
}
.grid-margin-y > .medium-1 {
height: calc(8.33333% - 1.875rem);
}
.grid-margin-y > .medium-2 {
height: calc(16.66667% - 1.875rem);
}
.grid-margin-y > .medium-3 {
height: calc(25% - 1.875rem);
}
.grid-margin-y > .medium-4 {
height: calc(33.33333% - 1.875rem);
}
.grid-margin-y > .medium-5 {
height: calc(41.66667% - 1.875rem);
}
.grid-margin-y > .medium-6 {
height: calc(50% - 1.875rem);
}
.grid-margin-y > .medium-7 {
height: calc(58.33333% - 1.875rem);
}
.grid-margin-y > .medium-8 {
height: calc(66.66667% - 1.875rem);
}
.grid-margin-y > .medium-9 {
height: calc(75% - 1.875rem);
}
.grid-margin-y > .medium-10 {
height: calc(83.33333% - 1.875rem);
}
.grid-margin-y > .medium-11 {
height: calc(91.66667% - 1.875rem);
}
.grid-margin-y > .medium-12 {
height: calc(100% - 1.875rem);
}
}
@media print, screen and (min-width: 64em) {
.grid-margin-y > .large-auto {
height: auto;
}
.grid-margin-y > .large-shrink {
height: auto;
}
.grid-margin-y > .large-1 {
height: calc(8.33333% - 1.875rem);
}
.grid-margin-y > .large-2 {
height: calc(16.66667% - 1.875rem);
}
.grid-margin-y > .large-3 {
height: calc(25% - 1.875rem);
}
.grid-margin-y > .large-4 {
height: calc(33.33333% - 1.875rem);
}
.grid-margin-y > .large-5 {
height: calc(41.66667% - 1.875rem);
}
.grid-margin-y > .large-6 {
height: calc(50% - 1.875rem);
}
.grid-margin-y > .large-7 {
height: calc(58.33333% - 1.875rem);
}
.grid-margin-y > .large-8 {
height: calc(66.66667% - 1.875rem);
}
.grid-margin-y > .large-9 {
height: calc(75% - 1.875rem);
}
.grid-margin-y > .large-10 {
height: calc(83.33333% - 1.875rem);
}
.grid-margin-y > .large-11 {
height: calc(91.66667% - 1.875rem);
}
.grid-margin-y > .large-12 {
height: calc(100% - 1.875rem);
}
}
.grid-frame {
overflow: hidden;
position: relative;
flex-wrap: nowrap;
align-items: stretch;
width: 100vw;
}
.cell .grid-frame {
width: 100%;
}
.cell-block {
overflow-x: auto;
max-width: 100%;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.cell-block-y {
overflow-y: auto;
max-height: 100%;
min-height: 100%;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.cell-block-container {
display: flex;
flex-direction: column;
max-height: 100%;
}
.cell-block-container > .grid-x {
max-height: 100%;
flex-wrap: nowrap;
}
@media print, screen and (min-width: 40em) {
.medium-grid-frame {
overflow: hidden;
position: relative;
flex-wrap: nowrap;
align-items: stretch;
width: 100vw;
}
.cell .medium-grid-frame {
width: 100%;
}
.medium-cell-block {
overflow-x: auto;
max-width: 100%;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.medium-cell-block-container {
display: flex;
flex-direction: column;
max-height: 100%;
}
.medium-cell-block-container > .grid-x {
max-height: 100%;
flex-wrap: nowrap;
}
.medium-cell-block-y {
overflow-y: auto;
max-height: 100%;
min-height: 100%;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
}
@media print, screen and (min-width: 64em) {
.large-grid-frame {
overflow: hidden;
position: relative;
flex-wrap: nowrap;
align-items: stretch;
width: 100vw;
}
.cell .large-grid-frame {
width: 100%;
}
.large-cell-block {
overflow-x: auto;
max-width: 100%;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
.large-cell-block-container {
display: flex;
flex-direction: column;
max-height: 100%;
}
.large-cell-block-container > .grid-x {
max-height: 100%;
flex-wrap: nowrap;
}
.large-cell-block-y {
overflow-y: auto;
max-height: 100%;
min-height: 100%;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
}
}
.grid-y.grid-frame {
overflow: hidden;
position: relative;
flex-wrap: nowrap;
align-items: stretch;
height: 100vh;
width: auto;
}
@media print, screen and (min-width: 40em) {
.grid-y.medium-grid-frame {
overflow: hidden;
position: relative;
flex-wrap: nowrap;
align-items: stretch;
height: 100vh;
width: auto;
}
}
@media print, screen and (min-width: 64em) {
.grid-y.large-grid-frame {
overflow: hidden;
position: relative;
flex-wrap: nowrap;
align-items: stretch;
height: 100vh;
width: auto;
}
}
.cell .grid-y.grid-frame {
height: 100%;
}
@media print, screen and (min-width: 40em) {
.cell .grid-y.medium-grid-frame {
height: 100%;
}
}
@media print, screen and (min-width: 64em) {
.cell .grid-y.large-grid-frame {
height: 100%;
}
}
.grid-margin-y {
margin-top: -0.625rem;
margin-bottom: -0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-margin-y {
margin-top: -0.9375rem;
margin-bottom: -0.9375rem;
}
}
.grid-margin-y > .cell {
height: calc(100% - 1.25rem);
margin-top: 0.625rem;
margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 40em) {
.grid-margin-y > .cell {
height: calc(100% - 1.875rem);
margin-top: 0.9375rem;
margin-bottom: 0.9375rem;
}
}
.grid-margin-y > .auto {
height: auto;
}
.grid-margin-y > .shrink {
height: auto;
}
.grid-margin-y > .small-1 {
height: calc(8.33333% - 1.25rem);
}
.grid-margin-y > .small-2 {
height: calc(16.66667% - 1.25rem);
}
.grid-margin-y > .small-3 {
height: calc(25% - 1.25rem);
}
.grid-margin-y > .small-4 {
height: calc(33.33333% - 1.25rem);
}
.grid-margin-y > .small-5 {
height: calc(41.66667% - 1.25rem);
}
.grid-margin-y > .small-6 {
height: calc(50% - 1.25rem);
}
.grid-margin-y > .small-7 {
height: calc(58.33333% - 1.25rem);
}
.grid-margin-y > .small-8 {
height: calc(66.66667% - 1.25rem);
}
.grid-margin-y > .small-9 {
height: calc(75% - 1.25rem);
}
.grid-margin-y > .small-10 {
height: calc(83.33333% - 1.25rem);
}
.grid-margin-y > .small-11 {
height: calc(91.66667% - 1.25rem);
}
.grid-margin-y > .small-12 {
height: calc(100% - 1.25rem);
}
@media print, screen and (min-width: 40em) {
.grid-margin-y > .auto {
height: auto;
}
.grid-margin-y > .shrink {
height: auto;
}
.grid-margin-y > .small-1 {
height: calc(8.33333% - 1.875rem);
}
.grid-margin-y > .small-2 {
height: calc(16.66667% - 1.875rem);
}
.grid-margin-y > .small-3 {
height: calc(25% - 1.875rem);
}
.grid-margin-y > .small-4 {
height: calc(33.33333% - 1.875rem);
}
.grid-margin-y > .small-5 {
height: calc(41.66667% - 1.875rem);
}
.grid-margin-y > .small-6 {
height: calc(50% - 1.875rem);
}
.grid-margin-y > .small-7 {
height: calc(58.33333% - 1.875rem);
}
.grid-margin-y > .small-8 {
height: calc(66.66667% - 1.875rem);
}
.grid-margin-y > .small-9 {
height: calc(75% - 1.875rem);
}
.grid-margin-y > .small-10 {
height: calc(83.33333% - 1.875rem);
}
.grid-margin-y > .small-11 {
height: calc(91.66667% - 1.875rem);
}
.grid-margin-y > .small-12 {
height: calc(100% - 1.875rem);
}
.grid-margin-y > .medium-auto {
height: auto;
}
.grid-margin-y > .medium-shrink {
height: auto;
}
.grid-margin-y > .medium-1 {
height: calc(8.33333% - 1.875rem);
}
.grid-margin-y > .medium-2 {
height: calc(16.66667% - 1.875rem);
}
.grid-margin-y > .medium-3 {
height: calc(25% - 1.875rem);
}
.grid-margin-y > .medium-4 {
height: calc(33.33333% - 1.875rem);
}
.grid-margin-y > .medium-5 {
height: calc(41.66667% - 1.875rem);
}
.grid-margin-y > .medium-6 {
height: calc(50% - 1.875rem);
}
.grid-margin-y > .medium-7 {
height: calc(58.33333% - 1.875rem);
}
.grid-margin-y > .medium-8 {
height: calc(66.66667% - 1.875rem);
}
.grid-margin-y > .medium-9 {
height: calc(75% - 1.875rem);
}
.grid-margin-y > .medium-10 {
height: calc(83.33333% - 1.875rem);
}
.grid-margin-y > .medium-11 {
height: calc(91.66667% - 1.875rem);
}
.grid-margin-y > .medium-12 {
height: calc(100% - 1.875rem);
}
}
@media print, screen and (min-width: 64em) {
.grid-margin-y > .large-auto {
height: auto;
}
.grid-margin-y > .large-shrink {
height: auto;
}
.grid-margin-y > .large-1 {
height: calc(8.33333% - 1.875rem);
}
.grid-margin-y > .large-2 {
height: calc(16.66667% - 1.875rem);
}
.grid-margin-y > .large-3 {
height: calc(25% - 1.875rem);
}
.grid-margin-y > .large-4 {
height: calc(33.33333% - 1.875rem);
}
.grid-margin-y > .large-5 {
height: calc(41.66667% - 1.875rem);
}
.grid-margin-y > .large-6 {
height: calc(50% - 1.875rem);
}
.grid-margin-y > .large-7 {
height: calc(58.33333% - 1.875rem);
}
.grid-margin-y > .large-8 {
height: calc(66.66667% - 1.875rem);
}
.grid-margin-y > .large-9 {
height: calc(75% - 1.875rem);
}
.grid-margin-y > .large-10 {
height: calc(83.33333% - 1.875rem);
}
.grid-margin-y > .large-11 {
height: calc(91.66667% - 1.875rem);
}
.grid-margin-y > .large-12 {
height: calc(100% - 1.875rem);
}
}
.grid-frame.grid-margin-y {
height: calc(100vh + 1.25rem);
}
@media print, screen and (min-width: 40em) {
.grid-frame.grid-margin-y {
height: calc(100vh + 1.875rem);
}
}
@media print, screen and (min-width: 64em) {
.grid-frame.grid-margin-y {
height: calc(100vh + 1.875rem);
}
}
@media print, screen and (min-width: 40em) {
.grid-margin-y.medium-grid-frame {
height: calc(100vh + 1.875rem);
}
}
@media print, screen and (min-width: 64em) {
.grid-margin-y.large-grid-frame {
height: calc(100vh + 1.875rem);
}
}
.row {
max-width: 75rem;
margin-right: auto;
margin-left: auto;
}
.row::before, .row::after {
display: table;
content: ' ';
flex-basis: 0;
order: 1;
}
.row::after {
clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
padding-right: 0;
padding-left: 0;
}
.row .row {
margin-right: -0.625rem;
margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
.row .row {
margin-right: -0.9375rem;
margin-left: -0.9375rem;
}
}
@media print, screen and (min-width: 64em) {
.row .row {
margin-right: -0.9375rem;
margin-left: -0.9375rem;
}
}
.row .row.collapse {
margin-right: 0;
margin-left: 0;
}
.row.expanded {
max-width: none;
}
.row.expanded .row {
margin-right: auto;
margin-left: auto;
}
.row:not(.expanded) .row {
max-width: none;
}
.row.gutter-small > .column, .row.gutter-small > .columns {
padding-right: 0.625rem;
padding-left: 0.625rem;
}
.row.gutter-medium > .column, .row.gutter-medium > .columns {
padding-right: 0.9375rem;
padding-left: 0.9375rem;
}
.column, .columns {
padding-right: 0.625rem;
padding-left: 0.625rem;
width: 100%;
float: left;
}
@media print, screen and (min-width: 40em) {
.column, .columns {
padding-right: 0.9375rem;
padding-left: 0.9375rem;
}
}
.column, .columns, .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
float: left;
clear: none;
}
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
float: right;
}
.column.end:last-child:last-child, .end.columns:last-child:last-child {
float: left;
}
.column.row.row, .row.row.columns {
float: none;
}
.row .column.row.row, .row .row.row.columns {
margin-right: 0;
margin-left: 0;
padding-right: 0;
padding-left: 0;
}
.small-1 {
width: 8.33333%;
}
.small-push-1 {
position: relative;
left: 8.33333%;
}
.small-pull-1 {
position: relative;
left: -8.33333%;
}
.small-offset-0 {
margin-left: 0%;
}
.small-2 {
width: 16.66667%;
}
.small-push-2 {
position: relative;
left: 16.66667%;
}
.small-pull-2 {
position: relative;
left: -16.66667%;
}
.small-offset-1 {
margin-left: 8.33333%;
}
.small-3 {
width: 25%;
}
.small-push-3 {
position: relative;
left: 25%;
}
.small-pull-3 {
position: relative;
left: -25%;
}
.small-offset-2 {
margin-left: 16.66667%;
}
.small-4 {
width: 33.33333%;
}
.small-push-4 {
position: relative;
left: 33.33333%;
}
.small-pull-4 {
position: relative;
left: -33.33333%;
}
.small-offset-3 {
margin-left: 25%;
}
.small-5 {
width: 41.66667%;
}
.small-push-5 {
position: relative;
left: 41.66667%;
}
.small-pull-5 {
position: relative;
left: -41.66667%;
}
.small-offset-4 {
margin-left: 33.33333%;
}
.small-6 {
width: 50%;
}
.small-push-6 {
position: relative;
left: 50%;
}
.small-pull-6 {
position: relative;
left: -50%;
}
.small-offset-5 {
margin-left: 41.66667%;
}
.small-7 {
width: 58.33333%;
}
.small-push-7 {
position: relative;
left: 58.33333%;
}
.small-pull-7 {
position: relative;
left: -58.33333%;
}
.small-offset-6 {
margin-left: 50%;
}
.small-8 {
width: 66.66667%;
}
.small-push-8 {
position: relative;
left: 66.66667%;
}
.small-pull-8 {
position: relative;
left: -66.66667%;
}
.small-offset-7 {
margin-left: 58.33333%;
}
.small-9 {
width: 75%;
}
.small-push-9 {
position: relative;
left: 75%;
}
.small-pull-9 {
position: relative;
left: -75%;
}
.small-offset-8 {
margin-left: 66.66667%;
}
.small-10 {
width: 83.33333%;
}
.small-push-10 {
position: relative;
left: 83.33333%;
}
.small-pull-10 {
position: relative;
left: -83.33333%;
}
.small-offset-9 {
margin-left: 75%;
}
.small-11 {
width: 91.66667%;
}
.small-push-11 {
position: relative;
left: 91.66667%;
}
.small-pull-11 {
position: relative;
left: -91.66667%;
}
.small-offset-10 {
margin-left: 83.33333%;
}
.small-12 {
width: 100%;
}
.small-offset-11 {
margin-left: 91.66667%;
}
.small-up-1 > .column, .small-up-1 > .columns {
float: left;
width: 100%;
}
.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
clear: none;
}
.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
clear: both;
}
.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
float: left;
}
.small-up-2 > .column, .small-up-2 > .columns {
float: left;
width: 50%;
}
.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
clear: none;
}
.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
clear: both;
}
.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
float: left;
}
.small-up-3 > .column, .small-up-3 > .columns {
float: left;
width: 33.33333%;
}
.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
clear: none;
}
.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
clear: both;
}
.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
float: left;
}
.small-up-4 > .column, .small-up-4 > .columns {
float: left;
width: 25%;
}
.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
clear: none;
}
.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
clear: both;
}
.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
float: left;
}
.small-up-5 > .column, .small-up-5 > .columns {
float: left;
width: 20%;
}
.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
clear: none;
}
.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
clear: both;
}
.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
float: left;
}
.small-up-6 > .column, .small-up-6 > .columns {
float: left;
width: 16.66667%;
}
.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
clear: none;
}
.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
clear: both;
}
.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
float: left;
}
.small-up-7 > .column, .small-up-7 > .columns {
float: left;
width: 14.28571%;
}
.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
clear: none;
}
.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
clear: both;
}
.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
float: left;
}
.small-up-8 > .column, .small-up-8 > .columns {
float: left;
width: 12.5%;
}
.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
clear: none;
}
.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
clear: both;
}
.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
float: left;
}
.small-collapse > .column, .small-collapse > .columns {
padding-right: 0;
padding-left: 0;
}
.small-collapse .row {
margin-right: 0;
margin-left: 0;
}
.expanded.row .small-collapse.row {
margin-right: 0;
margin-left: 0;
}
.small-uncollapse > .column, .small-uncollapse > .columns {
padding-right: 0.625rem;
padding-left: 0.625rem;
}
.small-centered {
margin-right: auto;
margin-left: auto;
}
.small-centered, .small-centered:last-child:not(:first-child) {
float: none;
clear: both;
}
.small-uncentered, .small-push-0, .small-pull-0 {
position: static;
margin-right: 0;
margin-left: 0;
}
.small-uncentered, .small-uncentered:last-child:not(:first-child), .small-push-0, .small-push-0:last-child:not(:first-child), .small-pull-0, .small-pull-0:last-child:not(:first-child) {
float: left;
clear: none;
}
.small-uncentered:last-child:not(:first-child), .small-push-0:last-child:not(:first-child), .small-pull-0:last-child:not(:first-child) {
float: right;
}
@media print, screen and (min-width: 40em) {
.medium-1 {
width: 8.33333%;
}
.medium-push-1 {
position: relative;
left: 8.33333%;
}
.medium-pull-1 {
position: relative;
left: -8.33333%;
}
.medium-offset-0 {
margin-left: 0%;
}
.medium-2 {
width: 16.66667%;
}
.medium-push-2 {
position: relative;
left: 16.66667%;
}
.medium-pull-2 {
position: relative;
left: -16.66667%;
}
.medium-offset-1 {
margin-left: 8.33333%;
}
.medium-3 {
width: 25%;
}
.medium-push-3 {
position: relative;
left: 25%;
}
.medium-pull-3 {
position: relative;
left: -25%;
}
.medium-offset-2 {
margin-left: 16.66667%;
}
.medium-4 {
width: 33.33333%;
}
.medium-push-4 {
position: relative;
left: 33.33333%;
}
.medium-pull-4 {
position: relative;
left: -33.33333%;
}
.medium-offset-3 {
margin-left: 25%;
}
.medium-5 {
width: 41.66667%;
}
.medium-push-5 {
position: relative;
left: 41.66667%;
}
.medium-pull-5 {
position: relative;
left: -41.66667%;
}
.medium-offset-4 {
margin-left: 33.33333%;
}
.medium-6 {
width: 50%;
}
.medium-push-6 {
position: relative;
left: 50%;
}
.medium-pull-6 {
position: relative;
left: -50%;
}
.medium-offset-5 {
margin-left: 41.66667%;
}
.medium-7 {
width: 58.33333%;
}
.medium-push-7 {
position: relative;
left: 58.33333%;
}
.medium-pull-7 {
position: relative;
left: -58.33333%;
}
.medium-offset-6 {
margin-left: 50%;
}
.medium-8 {
width: 66.66667%;
}
.medium-push-8 {
position: relative;
left: 66.66667%;
}
.medium-pull-8 {
position: relative;
left: -66.66667%;
}
.medium-offset-7 {
margin-left: 58.33333%;
}
.medium-9 {
width: 75%;
}
.medium-push-9 {
position: relative;
left: 75%;
}
.medium-pull-9 {
position: relative;
left: -75%;
}
.medium-offset-8 {
margin-left: 66.66667%;
}
.medium-10 {
width: 83.33333%;
}
.medium-push-10 {
position: relative;
left: 83.33333%;
}
.medium-pull-10 {
position: relative;
left: -83.33333%;
}
.medium-offset-9 {
margin-left: 75%;
}
.medium-11 {
width: 91.66667%;
}
.medium-push-11 {
position: relative;
left: 91.66667%;
}
.medium-pull-11 {
position: relative;
left: -91.66667%;
}
.medium-offset-10 {
margin-left: 83.33333%;
}
.medium-12 {
width: 100%;
}
.medium-offset-11 {
margin-left: 91.66667%;
}
.medium-up-1 > .column, .medium-up-1 > .columns {
float: left;
width: 100%;
}
.medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
clear: none;
}
.medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
clear: both;
}
.medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
float: left;
}
.medium-up-2 > .column, .medium-up-2 > .columns {
float: left;
width: 50%;
}
.medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
clear: none;
}
.medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
clear: both;
}
.medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
float: left;
}
.medium-up-3 > .column, .medium-up-3 > .columns {
float: left;
width: 33.33333%;
}
.medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
clear: none;
}
.medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
clear: both;
}
.medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
float: left;
}
.medium-up-4 > .column, .medium-up-4 > .columns {
float: left;
width: 25%;
}
.medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
clear: none;
}
.medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
clear: both;
}
.medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
float: left;
}
.medium-up-5 > .column, .medium-up-5 > .columns {
float: left;
width: 20%;
}
.medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
clear: none;
}
.medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
clear: both;
}
.medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
float: left;
}
.medium-up-6 > .column, .medium-up-6 > .columns {
float: left;
width: 16.66667%;
}
.medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
clear: none;
}
.medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
clear: both;
}
.medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
float: left;
}
.medium-up-7 > .column, .medium-up-7 > .columns {
float: left;
width: 14.28571%;
}
.medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
clear: none;
}
.medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
clear: both;
}
.medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
float: left;
}
.medium-up-8 > .column, .medium-up-8 > .columns {
float: left;
width: 12.5%;
}
.medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
clear: none;
}
.medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
clear: both;
}
.medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
float: left;
}
.medium-collapse > .column, .medium-collapse > .columns {
padding-right: 0;
padding-left: 0;
}
.medium-collapse .row {
margin-right: 0;
margin-left: 0;
}
.expanded.row .medium-collapse.row {
margin-right: 0;
margin-left: 0;
}
.medium-uncollapse > .column, .medium-uncollapse > .columns {
padding-right: 0.9375rem;
padding-left: 0.9375rem;
}
.medium-centered {
margin-right: auto;
margin-left: auto;
}
.medium-centered, .medium-centered:last-child:not(:first-child) {
float: none;
clear: both;
}
.medium-uncentered, .medium-push-0, .medium-pull-0 {
position: static;
margin-right: 0;
margin-left: 0;
}
.medium-uncentered, .medium-uncentered:last-child:not(:first-child), .medium-push-0, .medium-push-0:last-child:not(:first-child), .medium-pull-0, .medium-pull-0:last-child:not(:first-child) {
float: left;
clear: none;
}
.medium-uncentered:last-child:not(:first-child), .medium-push-0:last-child:not(:first-child), .medium-pull-0:last-child:not(:first-child) {
float: right;
}
}
@media print, screen and (min-width: 64em) {
.large-1 {
width: 8.33333%;
}
.large-push-1 {
position: relative;
left: 8.33333%;
}
.large-pull-1 {
position: relative;
left: -8.33333%;
}
.large-offset-0 {
margin-left: 0%;
}
.large-2 {
width: 16.66667%;
}
.large-push-2 {
position: relative;
left: 16.66667%;
}
.large-pull-2 {
position: relative;
left: -16.66667%;
}
.large-offset-1 {
margin-left: 8.33333%;
}
.large-3 {
width: 25%;
}
.large-push-3 {
position: relative;
left: 25%;
}
.large-pull-3 {
position: relative;
left: -25%;
}
.large-offset-2 {
margin-left: 16.66667%;
}
.large-4 {
width: 33.33333%;
}
.large-push-4 {
position: relative;
left: 33.33333%;
}
.large-pull-4 {
position: relative;
left: -33.33333%;
}
.large-offset-3 {
margin-left: 25%;
}
.large-5 {
width: 41.66667%;
}
.large-push-5 {
position: relative;
left: 41.66667%;
}
.large-pull-5 {
position: relative;
left: -41.66667%;
}
.large-offset-4 {
margin-left: 33.33333%;
}
.large-6 {
width: 50%;
}
.large-push-6 {
position: relative;
left: 50%;
}
.large-pull-6 {
position: relative;
left: -50%;
}
.large-offset-5 {
margin-left: 41.66667%;
}
.large-7 {
width: 58.33333%;
}
.large-push-7 {
position: relative;
left: 58.33333%;
}
.large-pull-7 {
position: relative;
left: -58.33333%;
}
.large-offset-6 {
margin-left: 50%;
}
.large-8 {
width: 66.66667%;
}
.large-push-8 {
position: relative;
left: 66.66667%;
}
.large-pull-8 {
position: relative;
left: -66.66667%;
}
.large-offset-7 {
margin-left: 58.33333%;
}
.large-9 {
width: 75%;
}
.large-push-9 {
position: relative;
left: 75%;
}
.large-pull-9 {
position: relative;
left: -75%;
}
.large-offset-8 {
margin-left: 66.66667%;
}
.large-10 {
width: 83.33333%;
}
.large-push-10 {
position: relative;
left: 83.33333%;
}
.large-pull-10 {
position: relative;
left: -83.33333%;
}
.large-offset-9 {
margin-left: 75%;
}
.large-11 {
width: 91.66667%;
}
.large-push-11 {
position: relative;
left: 91.66667%;
}
.large-pull-11 {
position: relative;
left: -91.66667%;
}
.large-offset-10 {
margin-left: 83.33333%;
}
.large-12 {
width: 100%;
}
.large-offset-11 {
margin-left: 91.66667%;
}
.large-up-1 > .column, .large-up-1 > .columns {
float: left;
width: 100%;
}
.large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
clear: none;
}
.large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
clear: both;
}
.large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
float: left;
}
.large-up-2 > .column, .large-up-2 > .columns {
float: left;
width: 50%;
}
.large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
clear: none;
}
.large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
clear: both;
}
.large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
float: left;
}
.large-up-3 > .column, .large-up-3 > .columns {
float: left;
width: 33.33333%;
}
.large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
clear: none;
}
.large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
clear: both;
}
.large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
float: left;
}
.large-up-4 > .column, .large-up-4 > .columns {
float: left;
width: 25%;
}
.large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
clear: none;
}
.large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
clear: both;
}
.large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
float: left;
}
.large-up-5 > .column, .large-up-5 > .columns {
float: left;
width: 20%;
}
.large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
clear: none;
}
.large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
clear: both;
}
.large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
float: left;
}
.large-up-6 > .column, .large-up-6 > .columns {
float: left;
width: 16.66667%;
}
.large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
clear: none;
}
.large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
clear: both;
}
.large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
float: left;
}
.large-up-7 > .column, .large-up-7 > .columns {
float: left;
width: 14.28571%;
}
.large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
clear: none;
}
.large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
clear: both;
}
.large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
float: left;
}
.large-up-8 > .column, .large-up-8 > .columns {
float: left;
width: 12.5%;
}
.large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
clear: none;
}
.large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
clear: both;
}
.large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
float: left;
}
.large-collapse > .column, .large-collapse > .columns {
padding-right: 0;
padding-left: 0;
}
.large-collapse .row {
margin-right: 0;
margin-left: 0;
}
.expanded.row .large-collapse.row {
margin-right: 0;
margin-left: 0;
}
.large-uncollapse > .column, .large-uncollapse > .columns {
padding-right: 0.9375rem;
padding-left: 0.9375rem;
}
.large-centered {
margin-right: auto;
margin-left: auto;
}
.large-centered, .large-centered:last-child:not(:first-child) {
float: none;
clear: both;
}
.large-uncentered, .large-push-0, .large-pull-0 {
position: static;
margin-right: 0;
margin-left: 0;
}
.large-uncentered, .large-uncentered:last-child:not(:first-child), .large-push-0, .large-push-0:last-child:not(:first-child), .large-pull-0, .large-pull-0:last-child:not(:first-child) {
float: left;
clear: none;
}
.large-uncentered:last-child:not(:first-child), .large-push-0:last-child:not(:first-child), .large-pull-0:last-child:not(:first-child) {
float: right;
}
}
.column-block {
margin-bottom: 1.25rem;
}
.column-block > :last-child {
margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
.column-block {
margin-bottom: 1.875rem;
}
.column-block > :last-child {
margin-bottom: 0;
}
}
.button {
display: inline-block;
vertical-align: middle;
margin: 0 0 1rem 0;
padding: 0.85em 1em;
border: 1px solid transparent;
border-radius: 0;
transition: background-color 0.25s ease-out, color 0.25s ease-out;
font-family: inherit;
font-size: 0.9rem;
-webkit-appearance: none;
line-height: 1;
text-align: center;
cursor: pointer;
}
[data-whatinput='mouse'] .button {
outline: 0;
}
.button.tiny {
font-size: 0.6rem;
}
.button.small {
font-size: 0.75rem;
}
.button.large {
font-size: 1.25rem;
}
.button.expanded {
display: block;
width: 100%;
margin-right: 0;
margin-left: 0;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
background-color: #1779ba;
color: #fefefe;
}
.button:hover, .button:focus {
background-color: #14679e;
color: #fefefe;
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
background-color: #1779ba;
color: #fefefe;
}
.button.primary:hover, .button.primary:focus {
background-color: #126195;
color: #fefefe;
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
background-color: #767676;
color: #fefefe;
}
.button.secondary:hover, .button.secondary:focus {
background-color: #5e5e5e;
color: #fefefe;
}
.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus {
background-color: #3adb76;
color: #0a0a0a;
}
.button.success:hover, .button.success:focus {
background-color: #22bb5b;
color: #0a0a0a;
}
.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus {
background-color: #ffae00;
color: #0a0a0a;
}
.button.warning:hover, .button.warning:focus {
background-color: #cc8b00;
color: #0a0a0a;
}
.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
background-color: #cc4b37;
color: #fefefe;
}
.button.alert:hover, .button.alert:focus {
background-color: #a53b2a;
color: #fefefe;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
background-color: transparent;
}
.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
border: 1px solid #1779ba;
color: #1779ba;
}
.button.hollow:hover, .button.hollow:focus {
border-color: #0c3d5d;
color: #0c3d5d;
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
border: 1px solid #1779ba;
color: #1779ba;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
border-color: #0c3d5d;
color: #0c3d5d;
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
border: 1px solid #767676;
color: #767676;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
border-color: #3b3b3b;
color: #3b3b3b;
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
border: 1px solid #3adb76;
color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
border-color: #157539;
color: #157539;
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
border: 1px solid #ffae00;
color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
border-color: #805700;
color: #805700;
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
border: 1px solid #cc4b37;
color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
border-color: #67251a;
color: #67251a;
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
border-color: transparent;
background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
color: #1779ba;
}
.button.clear:hover, .button.clear:focus {
color: #0c3d5d;
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
color: #1779ba;
}
.button.clear.primary:hover, .button.clear.primary:focus {
color: #0c3d5d;
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
color: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
color: #3b3b3b;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
color: #157539;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
color: #805700;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
color: #67251a;
}
.button.disabled, .button[disabled] {
opacity: 0.25;
cursor: not-allowed;
}
.button.dropdown::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 0.4em;
content: '';
border-bottom-width: 0;
border-color: #fefefe transparent transparent;
position: relative;
top: 0.4em;
display: inline-block;
float: right;
margin-left: 1em;
}
.button.dropdown.hollow::after, .button.dropdown.clear::after {
border-top-color: #1779ba;
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
border-top-color: #1779ba;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
border-top-color: #767676;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
border-top-color: #cc4b37;
}
.button.arrow-only::after {
top: -0.1em;
float: none;
margin-left: 0;
}
a.button:hover, a.button:focus {
text-decoration: none;
}
.button-group {
margin-bottom: 1rem;
display: flex;
flex-wrap: wrap;
align-items: stretch;
flex-grow: 1;
}
.button-group::before, .button-group::after {
display: table;
content: ' ';
flex-basis: 0;
order: 1;
}
.button-group::after {
clear: both;
}
.button-group::before, .button-group::after {
display: none;
}
.button-group .button {
margin: 0;
margin-right: 1px;
margin-bottom: 1px;
font-size: 0.9rem;
flex: 0 0 auto;
}
.button-group .button:last-child {
margin-right: 0;
}
.button-group.tiny .button {
font-size: 0.6rem;
}
.button-group.small .button {
font-size: 0.75rem;
}
.button-group.large .button {
font-size: 1.25rem;
}
.button-group.expanded .button {
flex: 1 1 0px;
}
.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus {
background-color: #1779ba;
color: #fefefe;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
background-color: #126195;
color: #fefefe;
}
.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus {
background-color: #767676;
color: #fefefe;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
background-color: #5e5e5e;
color: #fefefe;
}
.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus {
background-color: #3adb76;
color: #0a0a0a;
}
.button-group.success .button:hover, .button-group.success .button:focus {
background-color: #22bb5b;
color: #0a0a0a;
}
.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus {
background-color: #ffae00;
color: #0a0a0a;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
background-color: #cc8b00;
color: #0a0a0a;
}
.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus {
background-color: #cc4b37;
color: #fefefe;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
background-color: #a53b2a;
color: #fefefe;
}
.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus {
background-color: transparent;
}
.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus {
border: 1px solid #1779ba;
color: #1779ba;
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
border-color: #0c3d5d;
color: #0c3d5d;
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
border: 1px solid #1779ba;
color: #1779ba;
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
border-color: #0c3d5d;
color: #0c3d5d;
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
border: 1px solid #767676;
color: #767676;
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
border-color: #3b3b3b;
color: #3b3b3b;
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
border: 1px solid #3adb76;
color: #3adb76;
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
border-color: #157539;
color: #157539;
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
border: 1px solid #ffae00;
color: #ffae00;
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
border-color: #805700;
color: #805700;
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
border: 1px solid #cc4b37;
color: #cc4b37;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
border-color: #67251a;
color: #67251a;
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
border-color: transparent;
background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
color: #1779ba;
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
color: #0c3d5d;
}
.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus {
color: #1779ba;
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
color: #0c3d5d;
}
.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus {
color: #767676;
}
.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus {
color: #3b3b3b;
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
color: #3adb76;
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
color: #157539;
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
color: #ffae00;
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
color: #805700;
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
color: #cc4b37;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
color: #67251a;
}
.button-group.no-gaps .button {
margin-right: -0.0625rem;
}
.button-group.no-gaps .button + .button {
border-left-color: transparent;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
flex: 1 1 0px;
}
@media print, screen and (min-width: 40em) {
.button-group.stacked-for-small .button {
flex: 0 0 auto;
margin-bottom: 0;
}
}
@media print, screen and (min-width: 64em) {
.button-group.stacked-for-medium .button {
flex: 0 0 auto;
margin-bottom: 0;
}
}
@media print, screen and (max-width: 39.99875em) {
.button-group.stacked-for-small.expanded {
display: block;
}
.button-group.stacked-for-small.expanded .button {
display: block;
margin-right: 0;
}
}
@media print, screen and (max-width: 63.99875em) {
.button-group.stacked-for-medium.expanded {
display: block;
}
.button-group.stacked-for-medium.expanded .button {
display: block;
margin-right: 0;
}
}
.close-button {
position: absolute;
z-index: 10;
color: #8a8a8a;
cursor: pointer;
}
[data-whatinput='mouse'] .close-button {
outline: 0;
}
.close-button:hover, .close-button:focus {
color: #0a0a0a;
}
.close-button.small {
right: 0.66rem;
top: 0.33em;
font-size: 1.5em;
line-height: 1;
}
.close-button, .close-button.medium {
right: 1rem;
top: 0.5rem;
font-size: 2em;
line-height: 1;
}
.label {
display: inline-block;
padding: 0.33333rem 0.5rem;
border-radius: 0;
font-size: 0.8rem;
line-height: 1;
white-space: nowrap;
cursor: default;
background: #1779ba;
color: #fefefe;
}
.label.primary {
background: #1779ba;
color: #fefefe;
}
.label.secondary {
background: #767676;
color: #fefefe;
}
.label.success {
background: #3adb76;
color: #0a0a0a;
}
.label.warning {
background: #ffae00;
color: #0a0a0a;
}
.label.alert {
background: #cc4b37;
color: #fefefe;
}
.progress {
height: 1rem;
margin-bottom: 1rem;
border-radius: 0;
background-color: #cacaca;
}
.progress.primary .progress-meter {
background-color: #1779ba;
}
.progress.secondary .progress-meter {
background-color: #767676;
}
.progress.success .progress-meter {
background-color: #3adb76;
}
.progress.warning .progress-meter {
background-color: #ffae00;
}
.progress.alert .progress-meter {
background-color: #cc4b37;
}
.progress-meter {
position: relative;
display: block;
width: 0%;
height: 100%;
background-color: #1779ba;
}
.progress-meter-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
font-size: 0.75rem;
font-weight: bold;
color: #fefefe;
white-space: nowrap;
}
.slider {
position: relative;
height: 0.5rem;
margin-top: 1.25rem;
margin-bottom: 2.25rem;
background-color: #e6e6e6;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
touch-action: none;
}
.slider-fill {
position: absolute;
top: 0;
left: 0;
display: inline-block;
max-width: 100%;
height: 0.5rem;
background-color: #cacaca;
transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
transition: all 0s linear;
}
.slider-handle {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
z-index: 1;
cursor: -webkit-grab;
cursor: grab;
display: inline-block;
width: 1.4rem;
height: 1.4rem;
border-radius: 0;
background-color: #1779ba;
transition: all 0.2s ease-in-out;
touch-action: manipulation;
}
[data-whatinput='mouse'] .slider-handle {
outline: 0;
}
.slider-handle:hover {
background-color: #14679e;
}
.slider-handle.is-dragging {
transition: all 0s linear;
cursor: -webkit-grabbing;
cursor: grabbing;
}
.slider.disabled,
.slider[disabled] {
opacity: 0.25;
cursor: not-allowed;
}
.slider.vertical {
display: inline-block;
width: 0.5rem;
height: 12.5rem;
margin: 0 1.25rem;
transform: scale(1, -1);
}
.slider.vertical .slider-fill {
top: 0;
width: 0.5rem;
max-height: 100%;
}
.slider.vertical .slider-handle {
position: absolute;
top: 0;
left: 50%;
width: 1.4rem;
height: 1.4rem;
transform: translateX(-50%);
}
.switch {
position: relative;
margin-bottom: 1rem;
outline: 0;
font-size: 0.875rem;
font-weight: bold;
color: #fefefe;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
height: 2rem;
}
.switch-input {
position: absolute;
margin-bottom: 0;
opacity: 0;
}
.switch-paddle {
position: relative;
display: block;
width: 4rem;
height: 2rem;
border-radius: 0;
background: #cacaca;
transition: all 0.25s ease-out;
font-weight: inherit;
color: inherit;
cursor: pointer;
}
input + .switch-paddle {
margin: 0;
}
.switch-paddle::after {
position: absolute;
top: 0.25rem;
left: 0.25rem;
display: block;
width: 1.5rem;
height: 1.5rem;
transform: translate3d(0, 0, 0);
border-radius: 0;
background: #fefefe;
transition: all 0.25s ease-out;
content: '';
}
input:checked ~ .switch-paddle {
background: #1779ba;
}
input:checked ~ .switch-paddle::after {
left: 2.25rem;
}
input:disabled ~ .switch-paddle {
cursor: not-allowed;
opacity: 0.5;
}
[data-whatinput='mouse'] input:focus ~ .switch-paddle {
outline: 0;
}
.switch-active, .switch-inactive {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.switch-active {
left: 8%;
display: none;
}
input:checked + label > .switch-active {
display: block;
}
.switch-inactive {
right: 15%;
}
input:checked + label > .switch-inactive {
display: none;
}
.switch.tiny {
height: 1.5rem;
}
.switch.tiny .switch-paddle {
width: 3rem;
height: 1.5rem;
font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
top: 0.25rem;
left: 0.25rem;
width: 1rem;
height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
left: 1.75rem;
}
.switch.small {
height: 1.75rem;
}
.switch.small .switch-paddle {
width: 3.5rem;
height: 1.75rem;
font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
top: 0.25rem;
left: 0.25rem;
width: 1.25rem;
height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
left: 2rem;
}
.switch.large {
height: 2.5rem;
}
.switch.large .switch-paddle {
width: 5rem;
height: 2.5rem;
font-size: 1rem;
}
.switch.large .switch-paddle::after {
top: 0.25rem;
left: 0.25rem;
width: 2rem;
height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
left: 2.75rem;
}
table {
border-collapse: collapse;
width: 100%;
margin-bottom: 1rem;
border-radius: 0;
}
thead,
tbody,
tfoot {
border: 1px solid #f1f1f1;
background-color: #fefefe;
}
caption {
padding: 0.5rem 0.625rem 0.625rem;
font-weight: bold;
}
thead {
background: #f8f8f8;
color: #0a0a0a;
}
tfoot {
background: #f1f1f1;
color: #0a0a0a;
}
thead tr,
tfoot tr {
background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
padding: 0.5rem 0.625rem 0.625rem;
font-weight: bold;
text-align: left;
}
tbody th,
tbody td {
padding: 0.5rem 0.625rem 0.625rem;
}
tbody tr:nth-child(even) {
border-bottom: 0;
background-color: #f1f1f1;
}
table.unstriped tbody {
background-color: #fefefe;
}
table.unstriped tbody tr {
border-bottom: 1px solid #f1f1f1;
background-color: #fefefe;
}
@media print, screen and (max-width: 63.99875em) {
table.stack thead {
display: none;
}
table.stack tfoot {
display: none;
}
table.stack tr,
table.stack th,
table.stack td {
display: block;
}
table.stack td {
border-top: 0;
}
}
table.scroll {
display: block;
width: 100%;
overflow-x: auto;
}
table.hover thead tr:hover {
background-color: #f3f3f3;
}
table.hover tfoot tr:hover {
background-color: #ececec;
}
table.hover tbody tr:hover {
background-color: #f9f9f9;
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
background-color: #ececec;
}
.table-scroll {
overflow-x: auto;
}
.badge {
display: inline-block;
min-width: 2.1em;
padding: 0.3em;
border-radius: 50%;
font-size: 0.6rem;
text-align: center;
background: #1779ba;
color: #fefefe;
}
.badge.primary {
background: #1779ba;
color: #fefefe;
}
.badge.secondary {
background: #767676;
color: #fefefe;
}
.badge.success {
background: #3adb76;
color: #0a0a0a;
}
.badge.warning {
background: #ffae00;
color: #0a0a0a;
}
.badge.alert {
background: #cc4b37;
color: #fefefe;
}
.breadcrumbs {
margin: 0 0 1rem 0;
list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
display: table;
content: ' ';
flex-basis: 0;
order: 1;
}
.breadcrumbs::after {
clear: both;
}
.breadcrumbs li {
float: left;
font-size: 0.6875rem;
color: #0a0a0a;
cursor: default;
text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
position: relative;
margin: 0 0.75rem;
opacity: 1;
content: "/";
color: #cacaca;
}
.breadcrumbs a {
color: #1779ba;
}
.breadcrumbs a:hover {
text-decoration: underline;
}
.breadcrumbs .disabled {
color: #cacaca;
cursor: not-allowed;
}
.callout {
position: relative;
margin: 0 0 1rem 0;
padding: 1rem;
border: 1px solid rgba(10, 10, 10, 0.25);
border-radius: 0;
background-color: white;
color: #0a0a0a;
}
.callout > :first-child {
margin-top: 0;
}
.callout > :last-child {
margin-bottom: 0;
}
.callout.primary {
background-color: #d7ecfa;
color: #0a0a0a;
}
.callout.secondary {
background-color: #eaeaea;
color: #0a0a0a;
}
.callout.success {
background-color: #e1faea;
color: #0a0a0a;
}
.callout.warning {
background-color: #fff3d9;
color: #0a0a0a;
}
.callout.alert {
background-color: #f7e4e1;
color: #0a0a0a;
}
.callout.small {
padding-top: 0.5rem;
padding-right: 0.5rem;
padding-bottom: 0.5rem;
padding-left: 0.5rem;
}
.callout.large {
padding-top: 3rem;
padding-right: 3rem;
padding-bottom: 3rem;
padding-left: 3rem;
}
.card {
display: flex;
flex-direction: column;
flex-grow: 1;
margin-bottom: 1rem;
border: 1px solid #e6e6e6;
border-radius: 0;
background: #fefefe;
box-shadow: none;
overflow: hidden;
color: #0a0a0a;
}
.card > :last-child {
margin-bottom: 0;
}
.card-divider {
display: flex;
flex: 0 1 auto;
padding: 1rem;
background: #e6e6e6;
}
.card-divider > :last-child {
margin-bottom: 0;
}
.card-section {
flex: 1 0 auto;
padding: 1rem;
}
.card-section > :last-child {
margin-bottom: 0;
}
.card-image {
min-height: 1px;
}
.dropdown-pane {
position: absolute;
z-index: 10;
display: none;
width: 300px;
padding: 1rem;
visibility: hidden;
border: 1px solid #cacaca;
border-radius: 0;
background-color: #fefefe;
font-size: 1rem;
}
.dropdown-pane.is-opening {
display: block;
}
.dropdown-pane.is-open {
display: block;
visibility: visible;
}
.dropdown-pane.tiny {
width: 100px;
}
.dropdown-pane.small {
width: 200px;
}
.dropdown-pane.large {
width: 400px;
}
.pagination {
margin-left: 0;
margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
display: table;
content: ' ';
flex-basis: 0;
order: 1;
}
.pagination::after {
clear: both;
}
.pagination li {
margin-right: 0.0625rem;
border-radius: 0;
font-size: 0.875rem;
display: none;
}
.pagination li:last-child, .pagination li:first-child {
display: inline-block;
}
@media print, screen and (min-width: 40em) {
.pagination li {
display: inline-block;
}
}
.pagination a,
.pagination button {
display: block;
padding: 0.1875rem 0.625rem;
border-radius: 0;
color: #0a0a0a;
}
.pagination a:hover,
.pagination button:hover {
background: #e6e6e6;
}
.pagination .current {
padding: 0.1875rem 0.625rem;
background: #1779ba;
color: #fefefe;
cursor: default;
}
.pagination .disabled {
padding: 0.1875rem 0.625rem;
color: #cacaca;
cursor: not-allowed;
}
.pagination .disabled:hover {
background: transparent;
}
.pagination .ellipsis::after {
padding: 0.1875rem 0.625rem;
content: '\2026';
color: #0a0a0a;
}
.pagination-previous a::before,
.pagination-previous.disabled::before {
display: inline-block;
margin-right: 0.5rem;
content: "«";
}
.pagination-next a::after,
.pagination-next.disabled::after {
display: inline-block;
margin-left: 0.5rem;
content: "»";
}
.has-tip {
position: relative;
display: inline-block;
border-bottom: dotted 1px #8a8a8a;
font-weight: bold;
cursor: help;
}
.tooltip {
position: absolute;
top: calc(100% + 0.6495rem);
z-index: 1200;
max-width: 10rem;
padding: 0.75rem;
border-radius: 0;
background-color: #0a0a0a;
font-size: 80%;
color: #fefefe;
}
.tooltip::before {
position: absolute;
}
.tooltip.bottom::before {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 0.75rem;
content: '';
border-top-width: 0;
border-color: transparent transparent #0a0a0a;
bottom: 100%;
}
.tooltip.bottom.align-center::before {
left: 50%;
transform: translateX(-50%);
}
.tooltip.top::before {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 0.75rem;
content: '';
border-bottom-width: 0;
border-color: #0a0a0a transparent transparent;
top: 100%;
bottom: auto;
}
.tooltip.top.align-center::before {
left: 50%;
transform: translateX(-50%);
}
.tooltip.left::before {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 0.75rem;
content: '';
border-right-width: 0;
border-color: transparent transparent transparent #0a0a0a;
left: 100%;
}
.tooltip.left.align-center::before {
bottom: auto;
top: 50%;
transform: translateY(-50%);
}
.tooltip.right::before {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 0.75rem;
content: '';
border-left-width: 0;
border-color: transparent #0a0a0a transparent transparent;
right: 100%;
left: auto;
}
.tooltip.right.align-center::before {
bottom: auto;
top: 50%;
transform: translateY(-50%);
}
.tooltip.align-top::before {
bottom: auto;
top: 10%;
}
.tooltip.align-bottom::before {
bottom: 10%;
top: auto;
}
.tooltip.align-left::before {
left: 10%;
right: auto;
}
.tooltip.align-right::before {
left: auto;
right: 10%;
}
.accordion {
margin-left: 0;
background: #fefefe;
list-style-type: none;
}
.accordion[disabled] .accordion-title {
cursor: not-allowed;
}
.accordion-item:first-child > :first-child {
border-radius: 0 0 0 0;
}
.accordion-item:last-child > :last-child {
border-radius: 0 0 0 0;
}
.accordion-title {
position: relative;
display: block;
padding: 1.25rem 1rem;
border: 1px solid #e6e6e6;
border-bottom: 0;
font-size: 0.75rem;
line-height: 1;
color: #1779ba;
}
:last-child:not(.is-active) > .accordion-title {
border-bottom: 1px solid #e6e6e6;
border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
background-color: #e6e6e6;
}
.accordion-title::before {
position: absolute;
top: 50%;
right: 1rem;
margin-top: -0.5rem;
content: "+";
}
.is-active > .accordion-title::before {
content: "–";
}
.accordion-content {
display: none;
padding: 1rem;
border: 1px solid #e6e6e6;
border-bottom: 0;
background-color: #fefefe;
color: #0a0a0a;
}
:last-child > .accordion-content:last-child {
border-bottom: 1px solid #e6e6e6;
}
.media-object {
display: flex;
margin-bottom: 1rem;
flex-wrap: nowrap;
}
.media-object img {
max-width: none;
}
@media print, screen and (max-width: 39.99875em) {
.media-object.stack-for-small {
flex-wrap: wrap;
}
}
.media-object-section {
flex: 0 1 auto;
}
.media-object-section:first-child {
padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
padding-left: 1rem;
}
.media-object-section > :last-child {
margin-bottom: 0;
}
@media print, screen and (max-width: 39.99875em) {
.stack-for-small .media-object-section {
padding: 0;
padding-bottom: 1rem;
flex-basis: 100%;
max-width: 100%;
}
.stack-for-small .media-object-section img {
width: 100%;
}
}
.media-object-section.main-section {
flex: 1 1 0px;
}
.orbit {
position: relative;
}
.orbit-container {
position: relative;
height: 0;
margin: 0;
list-style: none;
overflow: hidden;
}
.orbit-slide {
width: 100%;
position: absolute;
}
.orbit-slide.no-motionui.is-active {
top: 0;
left: 0;
}
.orbit-figure {
margin: 0;
}
.orbit-image {
width: 100%;
max-width: 100%;
margin: 0;
}
.orbit-caption {
position: absolute;
bottom: 0;
width: 100%;
margin-bottom: 0;
padding: 1rem;
background-color: rgba(10, 10, 10, 0.5);
color: #fefefe;
}
.orbit-previous, .orbit-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
padding: 1rem;
color: #fefefe;
}
[data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
outline: 0;
}
.orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
background-color: rgba(10, 10, 10, 0.5);
}
.orbit-previous {
left: 0;
}
.orbit-next {
left: auto;
right: 0;
}
.orbit-bullets {
position: relative;
margin-top: 0.8rem;
margin-bottom: 0.8rem;
text-align: center;
}
[data-whatinput='mouse'] .orbit-bullets {
outline: 0;
}
.orbit-bullets button {
width: 1.2rem;
height: 1.2rem;
margin: 0.1rem;
border-radius: 50%;
background-color: #cacaca;
}
.orbit-bullets button:hover {
background-color: #8a8a8a;
}
.orbit-bullets button.is-active {
background-color: #8a8a8a;
}
.responsive-embed,
.flex-video {
position: relative;
height: 0;
margin-bottom: 1rem;
padding-bottom: 75%;
overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
padding-bottom: 56.25%;
}
.tabs {
margin: 0;
border: 1px solid #e6e6e6;
background: #fefefe;
list-style-type: none;
}
.tabs::before, .tabs::after {
display: table;
content: ' ';
flex-basis: 0;
order: 1;
}
.tabs::after {
clear: both;
}
.tabs.vertical > li {
display: block;
float: none;
width: auto;
}
.tabs.simple > li > a {
padding: 0;
}
.tabs.simple > li > a:hover {
background: transparent;
}
.tabs.primary {
background: #1779ba;
}
.tabs.primary > li > a {
color: #fefefe;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
background: #1673b1;
}
.tabs-title {
float: left;
}
.tabs-title > a {
display: block;
padding: 1.25rem 1.5rem;
font-size: 0.75rem;
line-height: 1;
color: #1779ba;
}
[data-whatinput='mouse'] .tabs-title > a {
outline: 0;
}
.tabs-title > a:hover {
background: #fefefe;
color: #1468a0;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
background: #e6e6e6;
color: #1779ba;
}
.tabs-content {
border: 1px solid #e6e6e6;
border-top: 0;
background: #fefefe;
color: #0a0a0a;
transition: all 0.5s ease;
}
.tabs-content.vertical {
border: 1px solid #e6e6e6;
border-left: 0;
}
.tabs-panel {
display: none;
padding: 1rem;
}
.tabs-panel.is-active {
display: block;
}
.thumbnail {
display: inline-block;
max-width: 100%;
margin-bottom: 1rem;
border: 4px solid #fefefe;
border-radius: 0;
box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
line-height: 0;
}
a.thumbnail {
transition: box-shadow 200ms ease-out;
}
a.thumbnail:hover, a.thumbnail:focus {
box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
}
a.thumbnail image {
box-shadow: none;
}
.menu {
padding: 0;
margin: 0;
list-style: none;
position: relative;
display: flex;
flex-wrap: wrap;
}
[data-whatinput='mouse'] .menu li {
outline: 0;
}
.menu a,
.menu .button {
line-height: 1;
text-decoration: none;
display: block;
padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
margin-bottom: 0;
}
.menu input {
display: inline-block;
}
.menu, .menu.horizontal {
flex-wrap: wrap;
flex-direction: row;
}
.menu.vertical {
flex-wrap: nowrap;
flex-direction: column;
}
.menu.vertical.icon-top li a img,
.menu.vertical.icon-top li a i,
.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img,
.menu.vertical.icon-bottom li a i,
.menu.vertical.icon-bottom li a svg {
text-align: left;
}
.menu.expanded li {
flex: 1 1 0px;
}
.menu.expanded.icon-top li a img,
.menu.expanded.icon-top li a i,
.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img,
.menu.expanded.icon-bottom li a i,
.menu.expanded.icon-bottom li a svg {
text-align: left;
}
.menu.simple {
align-items: center;
}
.menu.simple li + li {
margin-left: 1rem;
}
.menu.simple a {
padding: 0;
}
@media print, screen and (min-width: 40em) {
.menu.medium-horizontal {
flex-wrap: wrap;
flex-direction: row;
}
.menu.medium-vertical {
flex-wrap: nowrap;
flex-direction: column;
}
.menu.medium-expanded li {
flex: 1 1 0px;
}
.menu.medium-simple li {
flex: 1 1 0px;
}
}
@media print, screen and (min-width: 64em) {
.menu.large-horizontal {
flex-wrap: wrap;
flex-direction: row;
}
.menu.large-vertical {
flex-wrap: nowrap;
flex-direction: column;
}
.menu.large-expanded li {
flex: 1 1 0px;
}
.menu.large-simple li {
flex: 1 1 0px;
}
}
.menu.nested {
margin-right: 0;
margin-left: 1rem;
}
.menu.icons a {
display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
display: flex;
}
.menu.icon-left li a, .menu.nested.icon-left li a {
flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg, .menu.nested.icon-left li a img,
.menu.nested.icon-left li a i,
.menu.nested.icon-left li a svg {
margin-right: 0.25rem;
}
.menu.icon-right li a, .menu.nested.icon-right li a {
flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg, .menu.nested.icon-right li a img,
.menu.nested.icon-right li a i,
.menu.nested.icon-right li a svg {
margin-left: 0.25rem;
}
.menu.icon-top li a, .menu.nested.icon-top li a {
flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg, .menu.nested.icon-top li a img,
.menu.nested.icon-top li a i,
.menu.nested.icon-top li a svg {
align-self: stretch;
margin-bottom: 0.25rem;
text-align: center;
}
.menu.icon-bottom li a, .menu.nested.icon-bottom li a {
flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img,
.menu.nested.icon-bottom li a i,
.menu.nested.icon-bottom li a svg {
align-self: stretch;
margin-bottom: 0.25rem;
text-align: center;
}
.menu .is-active > a {
background: #1779ba;
color: #fefefe;
}
.menu .active > a {
background: #1779ba;
color: #fefefe;
}
.menu.align-left {
justify-content: flex-start;
}
.menu.align-right li {
display: flex;
justify-content: flex-end;
}
.menu.align-right li .submenu li {
justify-content: flex-start;
}
.menu.align-right.vertical li {
display: block;
text-align: right;
}
.menu.align-right.vertical li .submenu li {
text-align: right;
}
.menu.align-right.icon-top li a img,
.menu.align-right.icon-top li a i,
.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img,
.menu.align-right.icon-bottom li a i,
.menu.align-right.icon-bottom li a svg {
text-align: right;
}
.menu.align-right .nested {
margin-right: 1rem;
margin-left: 0;
}
.menu.align-center li {
display: flex;
justify-content: center;
}
.menu.align-center li .submenu li {
justify-content: flex-start;
}
.menu .menu-text {
padding: 0.7rem 1rem;
font-weight: bold;
line-height: 1;
color: inherit;
}
.menu-centered > .menu {
justify-content: center;
}
.menu-centered > .menu li {
display: flex;
justify-content: center;
}
.menu-centered > .menu li .submenu li {
justify-content: flex-start;
}
.no-js [data-responsive-menu] ul {
display: none;
}
.menu-icon {
position: relative;
display: inline-block;
vertical-align: middle;
width: 20px;
height: 16px;
cursor: pointer;
}
.menu-icon::after {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 2px;
background: #fefefe;
box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
content: '';
}
.menu-icon:hover::after {
background: #cacaca;
box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
}
.menu-icon.dark {
position: relative;
display: inline-block;
vertical-align: middle;
width: 20px;
height: 16px;
cursor: pointer;
}
.menu-icon.dark::after {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 2px;
background: #0a0a0a;
box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
content: '';
}
.menu-icon.dark:hover::after {
background: #8a8a8a;
box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
}
.accordion-menu li {
width: 100%;
}
.accordion-menu a {
padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
margin-right: 0;
margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
margin-right: 1rem;
margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-bottom-width: 0;
border-color: #1779ba transparent transparent;
position: absolute;
top: 50%;
margin-top: -3px;
right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
right: 1rem;
left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
right: auto;
left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded='true'] > a::after {
transform: rotate(180deg);
transform-origin: 50% 50%;
}
.is-accordion-submenu-parent {
position: relative;
}
.has-submenu-toggle > a {
margin-right: 40px;
}
.submenu-toggle {
position: absolute;
top: 0;
right: 0;
width: 40px;
height: 40px;
cursor: pointer;
}
.submenu-toggle::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-bottom-width: 0;
border-color: #1779ba transparent transparent;
top: 0;
bottom: 0;
margin: auto;
}
.submenu-toggle[aria-expanded='true']::after {
transform: scaleY(-1);
transform-origin: 50% 50%;
}
.submenu-toggle-text {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.is-drilldown {
position: relative;
overflow: hidden;
}
.is-drilldown li {
display: block;
}
.is-drilldown.animate-height {
transition: height 0.5s;
}
.drilldown a {
padding: 0.7rem 1rem;
background: #fefefe;
}
.drilldown .is-drilldown-submenu {
position: absolute;
top: 0;
left: 100%;
z-index: -1;
width: 100%;
background: #fefefe;
transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
z-index: 1;
display: block;
transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
margin-right: 0;
margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-right-width: 0;
border-color: transparent transparent transparent #1779ba;
position: absolute;
top: 50%;
margin-top: -6px;
right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-right-width: 0;
border-color: transparent transparent transparent #1779ba;
right: 1rem;
left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-left-width: 0;
border-color: transparent #1779ba transparent transparent;
right: auto;
left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-left-width: 0;
border-color: transparent #1779ba transparent transparent;
display: inline-block;
vertical-align: middle;
margin-right: 0.75rem;
}
.dropdown.menu > li.opens-left > .is-dropdown-submenu {
top: 100%;
right: 0;
left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
top: 100%;
right: auto;
left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
position: relative;
padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-bottom-width: 0;
border-color: #1779ba transparent transparent;
right: 5px;
left: auto;
margin-top: -3px;
}
[data-whatinput='mouse'] .dropdown.menu a {
outline: 0;
}
.dropdown.menu > li > a {
padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
background: transparent;
color: #1779ba;
}
.no-js .dropdown.menu ul {
display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
margin-right: 0;
margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
top: 0;
right: 100%;
left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
right: auto;
left: 100%;
}
.dropdown.menu.vertical > li > a::after {
right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-left-width: 0;
border-color: transparent #1779ba transparent transparent;
right: auto;
left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-right-width: 0;
border-color: transparent transparent transparent #1779ba;
}
@media print, screen and (min-width: 40em) {
.dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
top: 100%;
right: 0;
left: auto;
}
.dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
top: 100%;
right: auto;
left: 0;
}
.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
position: relative;
padding-right: 1.5rem;
}
.dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-bottom-width: 0;
border-color: #1779ba transparent transparent;
right: 5px;
left: auto;
margin-top: -3px;
}
.dropdown.menu.medium-vertical > li .is-dropdown-submenu {
top: 0;
}
.dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
top: 0;
right: 100%;
left: auto;
}
.dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
right: auto;
left: 100%;
}
.dropdown.menu.medium-vertical > li > a::after {
right: 14px;
}
.dropdown.menu.medium-vertical > li.opens-left > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-left-width: 0;
border-color: transparent #1779ba transparent transparent;
right: auto;
left: 5px;
}
.dropdown.menu.medium-vertical > li.opens-right > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-right-width: 0;
border-color: transparent transparent transparent #1779ba;
}
}
@media print, screen and (min-width: 64em) {
.dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
top: 100%;
right: 0;
left: auto;
}
.dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
top: 100%;
right: auto;
left: 0;
}
.dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
position: relative;
padding-right: 1.5rem;
}
.dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-bottom-width: 0;
border-color: #1779ba transparent transparent;
right: 5px;
left: auto;
margin-top: -3px;
}
.dropdown.menu.large-vertical > li .is-dropdown-submenu {
top: 0;
}
.dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
top: 0;
right: 100%;
left: auto;
}
.dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
right: auto;
left: 100%;
}
.dropdown.menu.large-vertical > li > a::after {
right: 14px;
}
.dropdown.menu.large-vertical > li.opens-left > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-left-width: 0;
border-color: transparent #1779ba transparent transparent;
right: auto;
left: 5px;
}
.dropdown.menu.large-vertical > li.opens-right > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-right-width: 0;
border-color: transparent transparent transparent #1779ba;
}
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
top: 100%;
right: 0;
left: auto;
}
.is-dropdown-menu.vertical {
width: 100px;
}
.is-dropdown-menu.vertical.align-right {
float: right;
}
.is-dropdown-submenu-parent {
position: relative;
}
.is-dropdown-submenu-parent a::after {
position: absolute;
top: 50%;
right: 5px;
left: auto;
margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
top: 100%;
left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
right: 100%;
left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
right: auto;
left: 100%;
}
.is-dropdown-submenu {
position: absolute;
top: 0;
left: 100%;
z-index: 1;
display: none;
min-width: 200px;
border: 1px solid #cacaca;
background: #fefefe;
}
.dropdown .is-dropdown-submenu a {
padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-left-width: 0;
border-color: transparent #1779ba transparent transparent;
right: auto;
left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
display: block;
width: 0;
height: 0;
border-style: solid;
border-width: 6px;
content: '';
border-right-width: 0;
border-color: transparent transparent transparent #1779ba;
}
.is-dropdown-submenu .is-dropdown-submenu {
margin-top: -1px;
}
.is-dropdown-submenu > li {
width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
display: block;
}
.is-off-canvas-open {
overflow: hidden;
}
.js-off-canvas-overlay {
position: absolute;
top: 0;
left: 0;
z-index: 11;
width: 100%;
height: 100%;
transition: opacity 0.5s ease, visibility 0.5s ease;
background: rgba(254, 254, 254, 0.25);
opacity: 0;
visibility: hidden;
overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
opacity: 1;
visibility: visible;
}
.js-off-canvas-overlay.is-closable {
cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
position: fixed;
}
.off-canvas-wrapper {
position: relative;
overflow: hidden;
}
.off-canvas {
position: fixed;
z-index: 12;
transition: transform 0.5s ease;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
background: #e6e6e6;
}
[data-whatinput='mouse'] .off-canvas {
outline: 0;
}
.off-canvas.is-transition-push {
z-index: 12;
}
.off-canvas.is-closed {
visibility: hidden;
}
.off-canvas.is-transition-overlap {
z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas.is-open {
transform: translate(0, 0);
}
.off-canvas-absolute {
position: absolute;
z-index: 12;
transition: transform 0.5s ease;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
background: #e6e6e6;
}
[data-whatinput='mouse'] .off-canvas-absolute {
outline: 0;
}
.off-canvas-absolute.is-transition-push {
z-index: 12;
}
.off-canvas-absolute.is-closed {
visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas-absolute.is-open {
transform: translate(0, 0);
}
.position-left {
top: 0;
left: 0;
height: 100%;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
width: 250px;
transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left {
transform: translateX(-250px);
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
transform: translate(0, 0);
}
.off-canvas-content.is-open-left.has-transition-push {
transform: translateX(250px);
}
.position-left.is-transition-push {
box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25);
}
.position-right {
top: 0;
right: 0;
height: 100%;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
width: 250px;
transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right {
transform: translateX(250px);
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
transform: translate(0, 0);
}
.off-canvas-content.is-open-right.has-transition-push {
transform: translateX(-250px);
}
.position-right.is-transition-push {
box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25);
}
.position-top {
top: 0;
left: 0;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
height: 250px;
transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top {
transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
transform: translate(0, 0);
}
.off-canvas-content.is-open-top.has-transition-push {
transform: translateY(250px);
}
.position-top.is-transition-push {
box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25);
}
.position-bottom {
bottom: 0;
left: 0;
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
height: 250px;
transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom {
transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
transform: translate(0, 0);
}
.off-canvas-content.is-open-bottom.has-transition-push {
transform: translateY(-250px);
}
.position-bottom.is-transition-push {
box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25);
}
.off-canvas-content {
transform: none;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
transition: transform 0.5s ease;
}
.off-canvas-content.has-transition-push {
transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
transform: translate(0, 0);
}
@media print, screen and (min-width: 40em) {
.position-left.reveal-for-medium {
transform: none;
z-index: 12;
transition: none;
visibility: visible;
}
.position-left.reveal-for-medium .close-button {
display: none;
}
.off-canvas-content .position-left.reveal-for-medium {
transform: none;
}
.off-canvas-content.has-reveal-left {
margin-left: 250px;
}
.position-left.reveal-for-medium ~ .off-canvas-content {
margin-left: 250px;
}
.position-right.reveal-for-medium {
transform: none;
z-index: 12;
transition: none;
visibility: visible;
}
.position-right.reveal-for-medium .close-button {
display: none;
}
.off-canvas-content .position-right.reveal-for-medium {
transform: none;
}
.off-canvas-content.has-reveal-right {
margin-right: 250px;
}
.position-right.reveal-for-medium ~ .off-canvas-content {
margin-right: 250px;
}
.position-top.reveal-for-medium {
transform: none;
z-index: 12;
transition: none;
visibility: visible;
}
.position-top.reveal-for-medium .close-button {
display: none;
}
.off-canvas-content .position-top.reveal-for-medium {
transform: none;
}
.off-canvas-content.has-reveal-top {
margin-top: 250px;
}
.position-top.reveal-for-medium ~ .off-canvas-content {
margin-top: 250px;
}
.position-bottom.reveal-for-medium {
transform: none;
z-index: 12;
transition: none;
visibility: visible;
}
.position-bottom.reveal-for-medium .close-button {
display: none;
}
.off-canvas-content .position-bottom.reveal-for-medium {
transform: none;
}
.off-canvas-content.has-reveal-bottom {
margin-bottom: 250px;
}
.position-bottom.reveal-for-medium ~ .off-canvas-content {
margin-bottom: 250px;
}
}
@media print, screen and (min-width: 64em) {
.position-left.reveal-for-large {
transform: none;
z-index: 12;
transition: none;
visibility: visible;
}
.position-left.reveal-for-large .close-button {
display: none;
}
.off-canvas-content .position-left.reveal-for-large {
transform: none;
}
.off-canvas-content.has-reveal-left {
margin-left: 250px;
}
.position-left.reveal-for-large ~ .off-canvas-content {
margin-left: 250px;
}
.position-right.reveal-for-large {
transform: none;
z-index: 12;
transition: none;
visibility: visible;
}
.position-right.reveal-for-large .close-button {
display: none;
}
.off-canvas-content .position-right.reveal-for-large {
transform: none;
}
.off-canvas-content.has-reveal-right {
margin-right: 250px;
}
.position-right.reveal-for-large ~ .off-canvas-content {
margin-right: 250px;
}
.position-top.reveal-for-large {
transform: none;
z-index: 12;
transition: none;
visibility: visible;
}
.position-top.reveal-for-large .close-button {
display: none;
}
.off-canvas-content .position-top.reveal-for-large {
transform: none;
}
.off-canvas-content.has-reveal-top {
margin-top: 250px;
}
.position-top.reveal-for-large ~ .off-canvas-content {
margin-top: 250px;
}
.position-bottom.reveal-for-large {
transform: none;
z-index: 12;
transition: none;
visibility: visible;
}
.position-bottom.reveal-for-large .close-button {
display: none;
}
.off-canvas-content .position-bottom.reveal-for-large {
transform: none;
}
.off-canvas-content.has-reveal-bottom {
margin-bottom: 250px;
}
.position-bottom.reveal-for-large ~ .off-canvas-content {
margin-bottom: 250px;
}
}
@media print, screen and (min-width: 40em) {
.off-canvas.in-canvas-for-medium {
visibility: visible;
height: auto;
position: static;
background: none;
width: auto;
overflow: visible;
transition: none;
}
.off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
box-shadow: none;
transform: none;
}
.off-canvas.in-canvas-for-medium .close-button {
display: none;
}
}
@media print, screen and (min-width: 64em) {
.off-canvas.in-canvas-for-large {
visibility: visible;
height: auto;
position: static;
background: none;
width: auto;
overflow: visible;
transition: none;
}
.off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
box-shadow: none;
transform: none;
}
.off-canvas.in-canvas-for-large .close-button {
display: none;
}
}
html.is-reveal-open {
position: fixed;
width: 100%;
overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
html.is-reveal-open body {
overflow-y: hidden;
}
.reveal-overlay {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1005;
display: none;
background-color: rgba(10, 10, 10, 0.45);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
.reveal {
z-index: 1006;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
display: none;
padding: 1rem;
border: 1px solid #cacaca;
border-radius: 0;
background-color: #fefefe;
position: relative;
top: 100px;
margin-right: auto;
margin-left: auto;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
[data-whatinput='mouse'] .reveal {
outline: 0;
}
@media print, screen and (min-width: 40em) {
.reveal {
min-height: 0;
}
}
.reveal .column, .reveal .columns {
min-width: 0;
}
.reveal > :last-child {
margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
.reveal {
width: 600px;
max-width: 75rem;
}
}
.reveal.collapse {
padding: 0;
}
@media print, screen and (min-width: 40em) {
.reveal.tiny {
width: 30%;
max-width: 75rem;
}
}
@media print, screen and (min-width: 40em) {
.reveal.small {
width: 50%;
max-width: 75rem;
}
}
@media print, screen and (min-width: 40em) {
.reveal.large {
width: 90%;
max-width: 75rem;
}
}
.reveal.full {
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
max-width: none;
height: 100%;
min-height: 100%;
margin-left: 0;
border: 0;
border-radius: 0;
}
@media print, screen and (max-width: 39.99875em) {
.reveal {
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
max-width: none;
height: 100%;
min-height: 100%;
margin-left: 0;
border: 0;
border-radius: 0;
}
}
.reveal.without-overlay {
position: fixed;
}
.sticky-container {
position: relative;
}
.sticky {
position: relative;
z-index: 0;
transform: translate3d(0, 0, 0);
}
.sticky.is-stuck {
position: fixed;
z-index: 5;
width: 100%;
}
.sticky.is-stuck.is-at-top {
top: 0;
}
.sticky.is-stuck.is-at-bottom {
bottom: 0;
}
.sticky.is-anchored {
position: relative;
right: auto;
left: auto;
}
.sticky.is-anchored.is-at-bottom {
bottom: 0;
}
.title-bar {
padding: 0.5rem;
background: #0a0a0a;
color: #fefefe;
display: flex;
justify-content: flex-start;
align-items: center;
}
.title-bar .menu-icon {
margin-left: 0.25rem;
margin-right: 0.25rem;
}
.title-bar-left,
.title-bar-right {
flex: 1 1 0px;
}
.title-bar-right {
text-align: right;
}
.title-bar-title {
display: inline-block;
vertical-align: middle;
font-weight: bold;
}
.top-bar {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
padding: 0.5rem;
flex-wrap: wrap;
}
.top-bar,
.top-bar ul {
background-color: #e6e6e6;
}
.top-bar input {
max-width: 200px;
margin-right: 1rem;
}
.top-bar .input-group-field {
width: 100%;
margin-right: 0;
}
.top-bar input.button {
width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
flex: 0 0 100%;
max-width: 100%;
}
@media print, screen and (min-width: 40em) {
.top-bar {
flex-wrap: nowrap;
}
.top-bar .top-bar-left {
flex: 1 1 auto;
margin-right: auto;
}
.top-bar .top-bar-right {
flex: 0 1 auto;
margin-left: auto;
}
}
@media print, screen and (max-width: 63.99875em) {
.top-bar.stacked-for-medium {
flex-wrap: wrap;
}
.top-bar.stacked-for-medium .top-bar-left,
.top-bar.stacked-for-medium .top-bar-right {
flex: 0 0 100%;
max-width: 100%;
}
}
@media print, screen and (max-width: 74.99875em) {
.top-bar.stacked-for-large {
flex-wrap: wrap;
}
.top-bar.stacked-for-large .top-bar-left,
.top-bar.stacked-for-large .top-bar-right {
flex: 0 0 100%;
max-width: 100%;
}
}
.top-bar-title {
flex: 0 0 auto;
margin: 0.5rem 1rem 0.5rem 0;
}
.top-bar-left,
.top-bar-right {
flex: 0 0 auto;
}
.float-left {
float: left !important;
}
.float-right {
float: right !important;
}
.float-center {
display: block;
margin-right: auto;
margin-left: auto;
}
.clearfix::before, .clearfix::after {
display: table;
content: ' ';
flex-basis: 0;
order: 1;
}
.clearfix::after {
clear: both;
}
.align-left {
justify-content: flex-start;
}
.align-right {
justify-content: flex-end;
}
.align-center {
justify-content: center;
}
.align-justify {
justify-content: space-between;
}
.align-spaced {
justify-content: space-around;
}
.align-left.vertical.menu > li > a {
justify-content: flex-start;
}
.align-right.vertical.menu > li > a {
justify-content: flex-end;
}
.align-center.vertical.menu > li > a {
justify-content: center;
}
.align-top {
align-items: flex-start;
}
.align-self-top {
align-self: flex-start;
}
.align-bottom {
align-items: flex-end;
}
.align-self-bottom {
align-self: flex-end;
}
.align-middle {
align-items: center;
}
.align-self-middle {
align-self: center;
}
.align-stretch {
align-items: stretch;
}
.align-self-stretch {
align-self: stretch;
}
.align-center-middle {
justify-content: center;
align-items: center;
align-content: center;
}
.small-order-1 {
order: 1;
}
.small-order-2 {
order: 2;
}
.small-order-3 {
order: 3;
}
.small-order-4 {
order: 4;
}
.small-order-5 {
order: 5;
}
.small-order-6 {
order: 6;
}
@media print, screen and (min-width: 40em) {
.medium-order-1 {
order: 1;
}
.medium-order-2 {
order: 2;
}
.medium-order-3 {
order: 3;
}
.medium-order-4 {
order: 4;
}
.medium-order-5 {
order: 5;
}
.medium-order-6 {
order: 6;
}
}
@media print, screen and (min-width: 64em) {
.large-order-1 {
order: 1;
}
.large-order-2 {
order: 2;
}
.large-order-3 {
order: 3;
}
.large-order-4 {
order: 4;
}
.large-order-5 {
order: 5;
}
.large-order-6 {
order: 6;
}
}
.flex-container {
display: flex;
}
.flex-child-auto {
flex: 1 1 auto;
}
.flex-child-grow {
flex: 1 0 auto;
}
.flex-child-shrink {
flex: 0 1 auto;
}
.flex-dir-row {
flex-direction: row;
}
.flex-dir-row-reverse {
flex-direction: row-reverse;
}
.flex-dir-column {
flex-direction: column;
}
.flex-dir-column-reverse {
flex-direction: column-reverse;
}
@media print, screen and (min-width: 40em) {
.medium-flex-container {
display: flex;
}
.medium-flex-child-auto {
flex: 1 1 auto;
}
.medium-flex-child-grow {
flex: 1 0 auto;
}
.medium-flex-child-shrink {
flex: 0 1 auto;
}
.medium-flex-dir-row {
flex-direction: row;
}
.medium-flex-dir-row-reverse {
flex-direction: row-reverse;
}
.medium-flex-dir-column {
flex-direction: column;
}
.medium-flex-dir-column-reverse {
flex-direction: column-reverse;
}
}
@media print, screen and (min-width: 64em) {
.large-flex-container {
display: flex;
}
.large-flex-child-auto {
flex: 1 1 auto;
}
.large-flex-child-grow {
flex: 1 0 auto;
}
.large-flex-child-shrink {
flex: 0 1 auto;
}
.large-flex-dir-row {
flex-direction: row;
}
.large-flex-dir-row-reverse {
flex-direction: row-reverse;
}
.large-flex-dir-column {
flex-direction: column;
}
.large-flex-dir-column-reverse {
flex-direction: column-reverse;
}
}
.hide {
display: none !important;
}
.invisible {
visibility: hidden;
}
.visible {
visibility: visible;
}
@media print, screen and (max-width: 39.99875em) {
.hide-for-small-only {
display: none !important;
}
}
@media screen and (max-width: 0em), screen and (min-width: 40em) {
.show-for-small-only {
display: none !important;
}
}
@media print, screen and (min-width: 40em) {
.hide-for-medium {
display: none !important;
}
}
@media screen and (max-width: 39.99875em) {
.show-for-medium {
display: none !important;
}
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
.hide-for-medium-only {
display: none !important;
}
}
@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
.show-for-medium-only {
display: none !important;
}
}
@media print, screen and (min-width: 64em) {
.hide-for-large {
display: none !important;
}
}
@media screen and (max-width: 63.99875em) {
.show-for-large {
display: none !important;
}
}
@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
.hide-for-large-only {
display: none !important;
}
}
@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
.show-for-large-only {
display: none !important;
}
}
.show-for-sr,
.show-on-focus {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.show-on-focus:active, .show-on-focus:focus {
position: static !important;
width: auto !important;
height: auto !important;
overflow: visible !important;
clip: auto !important;
white-space: normal !important;
}
.show-for-landscape,
.hide-for-portrait {
display: block !important;
}
@media screen and (orientation: landscape) {
.show-for-landscape,
.hide-for-portrait {
display: block !important;
}
}
@media screen and (orientation: portrait) {
.show-for-landscape,
.hide-for-portrait {
display: none !important;
}
}
.hide-for-landscape,
.show-for-portrait {
display: none !important;
}
@media screen and (orientation: landscape) {
.hide-for-landscape,
.show-for-portrait {
display: none !important;
}
}
@media screen and (orientation: portrait) {
.hide-for-landscape,
.show-for-portrait {
display: block !important;
}
}
.show-for-dark-mode {
display: none;
}
.hide-for-dark-mode {
display: block;
}
@media screen and (prefers-color-scheme: dark) {
.show-for-dark-mode {
display: block !important;
}
.hide-for-dark-mode {
display: none !important;
}
}
.show-for-ie {
display: none;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.show-for-ie {
display: block !important;
}
.hide-for-ie {
display: none !important;
}
}
.show-for-sticky {
display: none;
}
.is-stuck .show-for-sticky {
display: block;
}
.is-stuck .hide-for-sticky {
display: none;
}
:root {
--primary-color: #265FB4;
--secondary-color: #c00;
--accent-color: #ff6a00;
--headings-color: #0d1d4e;
--text-color: #858585;
--secondary-text-color: #82868A;
--header-color: inherit;
--body-background-color: #fefefe;
--white-color: #fefefe;
--topbar-text: #fff;
--topbar-background: #e6e6e6;
--topbar-submenu-background: #e6e6e6;
--footer-background: #272727;
--footer-background-image: url(//shop.alumetsmetal.com/wp-content/themes/doors/images/footer-bg.jpg);
--footer-text-color: white;
--copyright-background: #858585;
--wd-btn-color-1: #265FB4;
--wd-btn-color-2: #F92245;
--wd-btn-color-3: #000;
--wd-btn-color-4: #A6AAB7;
--wd-btn-color-5: #FFF;
--wd-btn-color-6: #ffdd01;
--wd-acccordion-title-color: #265FB4;
--wd-acccordion-active-title-color: #ff6a00;
--wd-acccordion-active-panel-border: #ff6a00;
--wd-circle-size: 576px;
}   article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
} audio,
canvas,
video {
display: inline-block;
} audio:not([controls]) {
display: none;
height: 0;
} [hidden] {
display: none;
}  html {
background: #fff; color: #000; font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body {
margin: 0;
}  a:focus {
outline: thin dotted;
} a:active,
a:hover {
outline: 0;
}  h1 {
font-size: 2em;
margin: 0.67em 0;
} abbr[title] {
border-bottom: 1px dotted;
} b,
strong {
font-weight: bold;
} dfn {
font-style: italic;
} hr {
box-sizing: content-box;
height: 0;
} mark {
background: #ff0;
color: #000;
} code,
kbd,
pre,
samp {
font-family: monospace, serif;
font-size: 1em;
} pre {
white-space: pre-wrap;
} q {
quotes: "\201C" "\201D" "\2018" "\2019";
} small {
font-size: 80%;
} sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}  img {
border: 0;
} svg:not(:root) {
overflow: hidden;
}  figure {
margin: 0;
}  fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
} legend {
border: 0; padding: 0; } button,
input,
select,
textarea {
font-family: inherit; font-size: 100%; margin: 0; } button,
input {
line-height: normal;
} button,
select {
text-transform: none;
} button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button; cursor: pointer; } button[disabled],
html input[disabled] {
cursor: default;
} input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box; padding: 0; } input[type='search'] {
-webkit-appearance: textfield;  box-sizing: content-box;
} input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
} button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
} textarea {
overflow: auto; vertical-align: top; }  table {
border-collapse: collapse;
border-spacing: 0;
} @media print, screen and (min-width: 40em) {
.reveal, .reveal.tiny, .reveal.small, .reveal.large {
right: auto;
left: auto;
margin: 0 auto;
}
} h1, h2, h3, h4, h5, h6 {
font-weight: 300;
color: var(--headings-color);
}
pre {
border: 1px solid rgba(0, 0, 0, 0.32);
overflow: auto;
padding: 20px;
white-space: pre-wrap;
}
.p-t-30 {
padding-top: 30px;
}
.comment ul {
list-style: outside none none;
}
.row .row {
max-width: 85.71429rem;
}
.animated, .animation-parent {
overflow: hidden;
}
.collapse[class*="block-grid-"] > li {
padding: 0;
}
.wd-vertical-aligned {
position: absolute;
top: 50%;
transform: translateY(-50%) translateX(-50%);
left: 50%;
}
.row-delimiter {
width: 1px;
position: absolute;
bottom: 0px;
transform: translateY(100%) translateX(900px);
} .vc_responsive .wpb_row .full_section_container .vc_span12,
.vc_responsive .wpb_row .full_section_container .vc_col-sm-12 {
padding: 0;
}
div.wpb_row {
position: relative;
}
@media print, screen and (max-width: 39.99875em) {
main.l-main.row .main {
padding-left: 15px;
padding-right: 15px;
}
}
div.wpb_single_image .vc_single_image-wrapper.vc_box_shadow {
box-shadow: 0 20px 52px 0 rgba(0, 95, 178, 0.2);
}
div.wpb_single_image .vc_single_image-wrapper.vc_box_shadow img {
box-shadow: none;
border-radius: 10px;
}
.overflow-visible {
overflow: visible !important;
}
@media print, screen and (max-width: 63.99875em) {
.overflow-visible {
overflow: hidden !important;
}
}
.overflow-visible .moved-down-video {
position: absolute;
top: -43px;
}
@media print, screen and (max-width: 63.99875em) {
.overflow-visible .moved-down-video {
position: relative;
top: 0;
}
}
.moved-down-img-1 {
position: absolute;
top: -185px;
left: 110px;
z-index: 1;
}
@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
.moved-down-img-1 {
position: relative;
top: 0;
left: 0;
z-index: 1;
}
}
@media print, screen and (max-width: 63.99875em) {
.moved-down-img-1 {
bottom: unset;
position: relative;
top: 0;
left: 54px;
}
}
.moved-down-img-2 {
position: absolute;
bottom: -756px;
left: -60px;
}
@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
.moved-down-img-2 {
position: absolute;
bottom: unset;
left: 147px;
top: 0;
}
}
@media print, screen and (max-width: 63.99875em) {
.moved-down-img-2 {
bottom: unset;
top: 84px;
left: 0;
}
}
.compose-mode .vc_wd_empty_spaces .vc_controls > .vc_controls-out-tl,
.compose-mode .vc_wd_headings .vc_controls > .vc_controls-out-tl,
.compose-mode .vc_wd_icon_text .vc_controls > .vc_controls-out-tl,
.compose-mode .vc_wd_count_up .vc_controls > .vc_controls-out-tl,
.compose-mode .vc_wd_vc_portfolio .vc_controls > .vc_controls-out-tl,
.compose-mode .vc_wd_pricing_table .vc_controls > .vc_controls-out-tl,
.compose-mode .vc_digixon_button .vc_controls > .vc_controls-out-tl,
.compose-mode .vc_wd_team .vc_controls > .vc_controls-out-tl {
top: 15px !important;
}
.compose-mode .vc_element.vc_empty .vc_empty-element {
min-height: 20px;
}
.image_shadow .vc_single_image-wrapper {
box-shadow: 0 6px 26px rgba(0, 0, 0, 0.07);
}
.theme-default div.nivoSlider {
box-shadow: none;
}
.theme-default div.nivoSlider .nivo-caption {
display: none !important;
}
.shop-slider-section .wpb_column {
padding: 0;
}
.shop-carousel.owl-carousel {
margin: 0;
}
.shop-carousel.owl-carousel li {
list-style-type: none;
}
.shop-carousel.owl-carousel .shop-slider-text {
padding: 0;
background-color: #FFF;
padding: 124px 50px 0;
height: 469px;
}
.shop-carousel.owl-carousel .shop-slider-text h2 {
font-size: 48px;
}
.shop-carousel.owl-carousel .shop-slider-text p {
width: 67%;
font-size: 13px;
}
.shop-carousel.owl-carousel .shop-slider-text .button.wd-black.large {
margin-top: 45px;
}
.shop-carousel.owl-carousel .owl-dots {
bottom: 33px;
display: inline-block;
position: absolute;
right: 526px;
}
.shop-carousel.owl-carousel .owl-dots .owl-dot {
display: inline-block;
}
.shop-carousel.owl-carousel .owl-dots .owl-dot span {
background-color: #efefef;
display: block;
height: 3px;
margin: 5px 7px;
transition: opacity 200ms ease 0s;
width: 24px;
}
.shop-carousel.owl-carousel .owl-dots .owl-dot.active span, .shop-carousel.owl-carousel .owl-dots .owl-dot:hover span {
background-color: #282828;
}
.shop-carousel.owl-carousel .owl-nav > div {
background-color: transparent;
height: 60px;
top: 41%;
}
.shop-carousel.owl-carousel .owl-nav > div i {
color: #e9e9e7;
font-size: 60px;
}
.shop-carousel.owl-carousel .owl-nav .owl-next {
right: 46px;
}
.shop-carousel.owl-carousel .owl-nav .owl-prev {
left: 46px;
}
.shop-carousel.owl-carousel .owl-nav > div:hover {
background-color: transparent;
}
.owl-carousel.carousel_client .wd-clients-carousel-item img {
width: 140px;
}
.tp-rightarrow.tparrows.zeus,
.tp-leftarrow.tparrows.zeus {
background: transparent !important;
border: 1px solid var(--primary-color) !important;
opacity: 0.5;
transition: all ease-in-out 400ms;
}
.tp-rightarrow.tparrows.zeus .tp-title-wrap,
.tp-leftarrow.tparrows.zeus .tp-title-wrap {
background: none !important;
}
.tp-rightarrow.tparrows.zeus:hover,
.tp-leftarrow.tparrows.zeus:hover {
opacity: 1;
}
.tp-rightarrow.tparrows.zeus:hover .tp-arr-imgholder,
.tp-leftarrow.tparrows.zeus:hover .tp-arr-imgholder {
background: none !important;
}
.tp-bannertimer.tp-bottom {
top: auto;
bottom: 0px !important;
height: 3px !important;
transform-origin: left center;
transform: scale(1, 0.15) rotate(-90deg) translatey(33px) translatex(873px) !important;
background: #ff3a2d;
}
@media screen and (max-width: 1365px) {
.tp-bannertimer.tp-bottom {
display: none;
}
} .tp-static-layers .tp-parallax-wrap {
left: 15px !important;
}
@media (max-width: 1430px) {
.tp-static-layers .tp-parallax-wrap {
top: 150px !important;
}
}
.social-icons {
list-style: none !important;
margin-left: 9px !important;
}
.social-icons li {
text-align: center;
}
.social-icons a {
color: var(--primary-color);
}
.social-icons a:hover {
color: var(--accent-color);
} body {
overflow-x: hidden;
background: none !important;
}
ul {
list-style: none;
}
h1 {
font-size: 2.75rem;
margin-bottom: 0.5rem;
margin-top: 0.2rem;
}
#preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #fff; z-index: 99; }
p {
word-break: break-word;
}
#status {
width: 200px;
height: 200px;
position: absolute;
left: 50%; top: 50%; background-image: url(//shop.alumetsmetal.com/wp-content/themes/doors/images/big-preloader.gif); background-repeat: no-repeat;
background-position: center;
margin: -100px 0 0 -100px; }
.m-0, .square-row {
margin: 0 !important;
}
.m-t-50 {
margin-top: 50px !important;
}
.m-b-0 {
margin-bottom: 0 !important;
}
.p-0, .p-0-r-8, .p-0-l-8, .l-slider .block, .square-row, .square-img {
padding: 0 !important;
}
.p-0-15, .square-txt {
padding: 0 em-calc(15);
}
.p-0-20, .blog-info > div {
padding: 0 em-calc(20);
}
.p-t-0 {
padding-top: 0 !important;
}
.p-t-15 {
padding-top: 15px !important;
}
.p-t-20 {
padding-top: 20px !important;
}
.p-t-60 {
padding-top: 60px;
}
.p-t-150 {
padding-top: 150px;
}
.p-b-40 {
padding-bottom: 40px !important;
}
.p-b-15 {
padding-bottom: 15px !important;
}
.p-b-20 {
padding-bottom: 20px !important;
}
.p-0-r-8 {
padding-right: em-calc(8) !important;
}
.p-0-l-8 {
padding-left: em-calc(8) !important;
}
@media only screen and (max-width: 768px) {
html body.admin-menu {
margin-top: 80px !important;
}
}
.wpb_row.row {
margin: 0 auto;
clear: both;
}
div.vc_separator h4 {
font-size: 2.64286em;
padding-left: 0;
}
div.vc_separator.vc_separator_align_center h4 {
text-align: center;
}
.l-boxed .page {
margin: 0 auto;
max-width: 1140px;
}
.textwidget {
font-family: inherit;
font-size: 1em;
margin-bottom: 1.42857em;
}
div.view-blog.view-display-id-block_1.black-separateur ul li {
clear: both;
}
#main-menu li ul li {
background: none repeat scroll 0 0 #fff;
}
#main-menu .doors_mega-menu li ul li {
padding: 5px 25px 0px 8px;
}
.post-categories, .post-categories li {
display: inline;
margin: 0;
}
input.wpcf7-submit {
border: medium none;
border-radius: 5px;
color: #fff;
padding: 10px;
}
#content-body {
margin-top: 50px;
}
.body.field .vc_responsive .wpb_row .vc_span12 {
padding-left: 0;
padding-right: 0;
}
.vc_separator h4 {
color: inherit;
}
.wp-caption {
max-width: 100%;
}
.wp-caption-text {
box-sizing: border-box;
font-size: 12px;
font-style: italic;
line-height: 1.5;
margin: 9px 0;
}
.gallery-caption {
background-color: rgba(0, 0, 0, 0.7);
box-sizing: border-box;
color: #fff;
font-size: 12px;
line-height: 1.5;
margin: 0;
max-height: 50%;
opacity: 0;
padding: 6px 8px;
position: absolute;
bottom: 0;
left: 0;
text-align: left;
width: 100%;
}
.bypostauthor > article .fn:before,
.comment-edit-link:before,
.comment-reply-link:before,
.comment-reply-login:before,
.comment-reply-title small a:before,
.contributor-posts-link:before,
.menu-toggle:before,
.search-toggle:before,
.slider-direction-nav a:before,
.widget_twentyfourteen_ephemera .widget-title:before {
-webkit-font-smoothing: antialiased;
display: inline-block;
font: normal 16px/1 Genericons;
text-decoration: inherit;
vertical-align: text-bottom;
}
.alignright {
float: right;
}
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.alignleft {
float: left;
}
h2.heading {
color: inherit;
} .alignnone {
margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
display: block;
margin: 5px auto 5px auto;
}
.alignright {
float: right;
margin: 5px 0 20px 20px;
}
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.alignright {
float: right;
margin: 5px 0 20px 20px;
}
a img.alignnone {
margin: 5px 20px 20px 0;
}
a img.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption {
background: #fff;
border: 1px solid #f0f0f0;
max-width: 96%; padding: 5px 3px 10px;
text-align: center;
clear: both;
}
.wp-caption.alignnone {
margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
margin: 5px 0 20px 20px;
}
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 98.5%;
padding: 0;
width: auto;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
}
.wp-block-button {
margin: 20px 0;
}
.wp-block-button.alignleft {
margin-top: 0;
margin-right: 15px;
}
.wp-block-button.alignright {
margin-top: 0;
margin-left: 15px;
}
.wp-block-cover p:not(.has-text-color) {
color: #fff;
}
.wp-block-cover {
margin: 15px 0;
}
.wp-block-cover.alignleft {
margin-right: 15px;
}
.wp-block-cover .wp-block-cover-text {
font-size: 36px;
line-height: 1.8;
padding: 0 40px;
} .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; }
.wd-glass {
overflow: hidden;
}
.wd-glass:after {
background: #fff none repeat scroll 0 0;
content: "";
display: block;
height: 50px;
position: absolute;
top: -70px;
transform: translateX(-50%) rotate(-45deg);
transition: all 0.6s ease-in-out 0s;
width: 200%;
}
.wd-glass:hover:after {
position: absolute;
top: 80%;
transform: translateX(50%) rotate(-45deg);
}
.social-icons.inline-list {
margin: 0 auto 0.3em auto;
}
.social-icons li {
margin-left: 0;
margin-right: .375em;
margin-top: .6em;
}
.social-icons li i {
padding: 4px 5px;
width: 22px;
text-align: center;
}
@media only screen and (max-width: 574px) {
.header_top_right {
margin-top: -30px;
}
}
.header-top {
line-height: 36px;
}
.contact-info {
margin-right: 20px;
}
.contact-info i {
padding-left: 10px;
}
.icon-header {
position: relative;
bottom: 36px;
float: right;
display: flex;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
.icon-header {
position: inherit;
float: none;
justify-content: space-evenly;
}
}
.icon-header .min-search {
font-size: 20px;
color: #999797;
font-weight: 100;
padding-top: 4px;
}
.icon-header .min-search .show-search a {
color: #999797;
font-weight: 100;
}
.icon-header .min-search .overlay-search {
position: absolute;
}
.icon-header .min-search .search-form label span {
display: none;
}
.icon-header .min-search .search-form .search-field {
width: 235px;
border: 1px solid #c0c0c0;
height: 0.7em;
}
.icon-header .min-search .search-submit {
display: none;
}
.icon-header .show-cart-btn {
padding: 4px 30px 0px 30px;
}
.icon-header .fixed .show-cart-btn {
display: none;
}
.top-bar .title-bar {
padding-left: 13px;
padding-top: 0;
}
.top-bar .title-bar .name {
font-size: 16px;
margin: 0;
}
.top-bar .title-bar .name h2 {
font-size: 25px;
font-weight: 400;
margin: 5px 0;
}
.fixed {
z-index: 210;
}
@media print, screen and (max-width: 39.99875em) {
.top-bar {
height: 100px;
}
}
@media print, screen and (max-width: 39.99875em) and (max-width: 39.99875em) {
.fixed .top-bar {
height: 70px;
}
}
@media print, screen and (max-width: 39.99875em) {
.top-bar .name h1 a {
line-height: 80px;
}
}
@media print, screen and (max-width: 39.99875em) and (max-width: 39.99875em) {
.fixed .top-bar .name h1 a {
line-height: 70px;
}
}
@media only screen and (max-width: 768px) {
.fixed .top-bar {
transition: all .5s ease;
}
.fixed .top-bar .name h1 a {
font-size: 2em;
line-height: 43px;
}
}
.top-bar-section .main-nav {
float: right;
}
.top-bar-section .dropdown {
left: 0;
right: auto;
min-width: 160px;
}
.top-bar-section .dropdown li a {
padding: 3px 20px;
line-height: 30px;
}
@media only screen and (max-width: 768px) {
.top-bar-section .dropdown {
left: 100%;
}
}
.top-bar-section .right li .dropdown {
left: 0;
right: auto;
}
.top-bar-section > ul > li > a {
height: 70px;
}
@media print, screen and (max-width: 39.99875em) {
.top-bar-section > ul > li > a {
height: 80px;
}
}
@media print, screen and (max-width: 39.99875em) {
.fixed .top-bar-section > ul > li > a {
height: 70px;
}
}
.top-bar-section .main-nav > li > a:not(.button) {
line-height: 100px;
font-size: 0.92857em;
min-width: 100px;
}
.top-bar-section .main-nav > li > a:not(.button).has-icon {
line-height: 25px;
}
@media print, screen and (max-width: 39.99875em) {
.top-bar-section .main-nav > li > a:not(.button).has-icon {
text-align: center;
}
}
@media print, screen and (max-width: 39.99875em) {
.fixed .top-bar-section .main-nav > li > a:not(.button).has-icon {
line-height: 70px;
}
}
.top-bar-section .main-nav > li > a:not(.button) i {
display: block;
font-size: 24px;
padding: 10px 10px 0 30px;
}
@media print, screen and (max-width: 39.99875em) {
.top-bar-section .main-nav > li > a:not(.button) i {
display: block;
padding: 16px 0 0 0;
}
}
@media print, screen and (max-width: 39.99875em) {
.fixed .top-bar-section .main-nav > li > a:not(.button) i {
display: none;
}
}
.top-bar-section .main-nav > .has-dropdown > a.has-icon {
padding-right: 15px !important;
}
.top-bar-section .main-nav > .has-dropdown > a.has-icon:after {
border: none;
}
.top-bar-section .has-dropdown > a:after {
content: "\f0d7";
font-family: "FontAwesome";
font-size: 12px;
margin: 0 8px;
position: absolute;
}
.vertical.menu.on .menu-item-has-children > a:after {
content: "\f0d7";
font-family: "FontAwesome";
font-size: 12px;
margin: 0 8px;
position: absolute;
}
.top-bar-section ul li > a {
font-size: 16px;
}
.titlebar .button.secondary {
margin: 2px;
}
.titlebar .title {
margin: 1.5em 0;
}
.titlebar .subtitle {
color: #DDD;
margin-bottom: 30px;
}
.breadcrumbs {
float: right;
margin-top: 70px;
color: #FFF;
}
.breadcrumbs li {
color: #FFF;
}
.breadcrumbs > * {
font-size: 0.9rem;
color: #FFF;
}
@media print, screen and (max-width: 39.99875em) {
.doors_mega-menu:hover > .sub-menu.dropdown > li > .sub-menu.dropdown {
display: block !important;
}
.doors_mega-menu .sub-menu li li > a {
padding: 0 5px !important;
}
}
.doors_mega-menu > .sub-menu.dropdown > li:hover > .sub-menu.dropdown {
display: block !important;
}
@media print, screen and (max-width: 39.99875em) { .doors_mega-menu:hover > .sub-menu.dropdown {
border: 1px solid #eee;
box-shadow: none;
height: auto !important;
left: auto;
position: relative !important;
width: 100%;
}
.doors_mega-menu:hover > .sub-menu.dropdown > li {
display: table-cell;
padding-left: 15px;
padding-right: 15px;
padding-top: 20px;
}
}
@media print, screen and (max-width: 39.99875em) and (max-width: 39.99875em) {
.doors_mega-menu:hover > .sub-menu.dropdown > li {
width: auto;
display: block;
float: none;
}
}
@media print, screen and (max-width: 39.99875em) {
.doors_mega-menu:hover > .sub-menu.dropdown > li > .sub-menu.dropdown {
position: unset !important;
box-shadow: none;
padding-bottom: 10px;
height: auto;
display: none !important;
}
.doors_mega-menu > .sub-menu.dropdown > li {
transition: all .5s ease;
}
.doors_mega-menu > .sub-menu.dropdown > li:hover > .sub-menu.dropdown {
display: block !important;
width: 100%;
}
}
.top-bar-section .doors_mega-menu .has-dropdown > a {
padding-right: 10.188rem !important;
}
.doors_mega-menu > .dropdown > li > a {
font-weight: bold;
}
.top-bar-section .has-dropdown .dropdown li.has-dropdown > a::after {
content: "";
}
.top-bar-section .doors_mega-menu > .dropdown > li:not(.has-form):not(.active) > a:not(.button) {
background: transparent;
color: #000;
text-transform: uppercase;
}
.top-bar-section .doors_mega-menu > .dropdown > li:hover:not(.has-form):not(.active) > a:not(.button) {
background: transparent;
color: #000;
}
.top-bar-section .doors_mega-menu .dropdown .dropdown > li:not(.has-form) a:not(.button) {
line-height: 2em;
}
.empty-menu {
float: right;
}
.has-dropdown.not-click.dropdown_dropped .sub-menu.dropdown {
display: block;
position: static !important;
height: auto;
width: auto;
overflow: visible;
clip: auto;
position: absolute !important;
}
.sidebar .block-title {
font-size: 1.5em;
margin-bottom: 10px;
margin-top: 50px;
font-weight: 700;
}
.sidebar #searchform {
position: relative;
}
.sidebar-second {
margin-top: 60px;
} .sidebar #searchsubmit, .l-footer-columns #searchsubmit {
background-color: var(--primary-color);
border: 0 none;
box-shadow: none;
color: #fff;
display: inline;
font-size: 12px;
font-weight: 300;
position: absolute;
right: 0;
top: 0;
transition: all 0.3s ease-in-out 0s;
width: auto;
border-radius: 0 15px 15px 0;
padding: 12px 13px 13px;
}
.sidebar #s, .l-footer-columns #s {
font-size: 0.9em;
height: 40px;
padding-right: 59px;
box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1) inset;
border-color: transparent transparent #e7e7e7;
border-style: none none solid;
border-width: medium medium 1px;
background: #fafafa;
}
.sidebar #s:focus, .l-footer-columns #s:focus {
background: #aaa;
color: #fff;
}
.sidebar #prev a {
color: #fff;
}
.sidebar #next a {
color: #fff;
}
.sidebar section > ul > li {
padding: 10px 0;
border-bottom: 1px solid #eee;
}
.sidebar-second a {
color: #333;
}
.sidebar-second.sidebar-left {
margin-top: 0;
width: 100%;
padding: 0px 0.7rem;
}
@media print, screen and (max-width: 39.99875em) {
.sidebar-second.sidebar-left {
width: 25%;
}
}
.sidebar-second.sidebar-left h2 {
font-weight: 600;
}
.sidebar-second.sidebar-left ul li::before {
content: "";
margin: 0;
}
.sidebar-second.sidebar-left ul li {
line-height: 39px;
margin: 0;
padding: 6px 0px 6px 20px;
transition: all .3s ease 0s;
}
.sidebar-second.sidebar-left ul li:hover {
padding-left: 25px;
}
.sidebar-second.sidebar-left ul li a {
font-size: 14px;
font-weight: 400;
}
.sidebar-second.sidebar-left ul li:first-child {
padding-top: 10px;
}
.sidebar-second.sidebar-left ul li:hover a {
color: #fea026;
}
.sidebar-second.sidebar-left .widget-documents .widget-subtitle {
color: #666;
font-size: 15px;
font-weight: 600;
}
.sidebar-second.sidebar-left .widget-documents ul {
margin-top: 20px;
}
.sidebar-second.sidebar-left .widget-documents ul li {
box-shadow: 0 0 3px 0 #bbb;
margin: 12px 0;
padding: 0;
color: #787b7f;
}
.sidebar-second.sidebar-left .widget-documents ul li a {
font-size: 13px;
font-weight: 600;
padding: 8px 10px;
}
.sidebar-second.sidebar-left .widget-documents ul li i {
margin-top: 0;
font-size: 15px;
margin-right: 10px;
}
.sidebar-second.sidebar-left .widget-documents ul li:hover {
background-color: #FFF;
}
.sidebar-second.sidebar-left .widget-documents ul li:hover a {
color: #787b7f;
}
.sidebar-second.sidebar.sidebar-left {
margin-top: 0;
width: 100%;
padding: 0px 17px 0 15px;
}
@media print, screen and (min-width: 64em) {
.sidebar-second.sidebar.sidebar-left {
width: 25%;
}
}
.sidebar-second.sidebar.sidebar-left h2 {
font-weight: 600;
}
.sidebar-second.sidebar.sidebar-left ul.menu {
margin: 0;
}
.sidebar-second.sidebar.sidebar-left ul li::before {
content: "";
margin: 0;
}
.sidebar-second.sidebar.sidebar-left ul li {
border-bottom: 1px solid rgba(255, 255, 255, 0.28);  margin: 0;
padding: 13px 0px 11px 0px;
transition: all .3s ease 0s;
width: 92%;
margin-left: 28px;
}
.sidebar-second.sidebar.sidebar-left ul li:hover a, .sidebar-second.sidebar.sidebar-left ul li.current-menu-item a, .sidebar-second.sidebar.sidebar-left ul li.current-menu-item:hover a {
color: #93AFD9;
}
.sidebar-second.sidebar.sidebar-left ul li a {
font-size: 15px;
font-weight: 500;
color: #fff;
}
.sidebar-second.sidebar.sidebar-left ul li:last-child {
padding-top: 10px;
border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.sidebar-second.sidebar.sidebar-left .widget-documents {
padding-left: 28px;
}
.sidebar-second.sidebar.sidebar-left .widget-documents .widget-subtitle {
color: #fff;
font-size: 15px;
font-weight: 600;
}
.sidebar-second.sidebar.sidebar-left .widget-documents ul {
margin: 20px 0 0;
}
.sidebar-second.sidebar.sidebar-left .widget-documents ul li {
box-shadow: 0 0 2px 0 rgba(187, 187, 187, 0.53);
margin: 15px 0;
padding: 8px 5px 8px 10px;
color: #787b7f;
border: none;
}
.sidebar-second.sidebar.sidebar-left .widget-documents ul li a {
font-size: 13px;
font-weight: 600;
padding: 8px 10px;
}
.sidebar-second.sidebar.sidebar-left .widget-documents ul li i {
margin-top: 0;
font-size: 15px;
margin-right: 10px;
}
.sidebar-second.sidebar.sidebar-left .widget-documents ul li:hover {
background-color: #FFF;
box-shadow: 0 0 3px 3px rgba(187, 187, 187, 0.53);
}
.sidebar-second.sidebar.sidebar-left .widget-documents ul li:hover a {
color: #555;
}
.sidebar-left {
background-color: var(--footer-background);
position: sticky;
top: 165px;
}
.sidebar-left .block-title {
font-size: 33px;
font-weight: 300;
color: #fff;
padding-left: 28px;
}
.textwidget img {
width: 90%;
}
.sidebar #wp-calendar {
width: 100%;
}
.sidebar #wp-calendar #next {
text-align: right;
}
.sidebar #wp-calendar th {
color: #fff;
}
.l-footer-columns {
background: #272727;
padding: 34px 0 0 0;
color: #FFF;
margin-top: 40px;
}
.l-footer-columns .block-title {
margin-top: 30px;
text-transform: capitalize;
color: #fff;
letter-spacing: 1px;
font-family: "Segoe UI";
font-size: 24px;
margin-bottom: 30px;
padding-bottom: 0;
font-weight: 700;
}
.l-footer-columns a {
color: #FFF;
}
.l-footer-columns a:hover {
text-decoration: underline;
}
.l-footer-columns ul {
display: grid;
}
.l-footer-columns .searchform {
position: relative;
}
.l-footer-columns .wp-caption-text, .l-footer-columns .calendar_wrap tbody {
color: #000;
}
.l-footer {
padding-top: 1em;
background: #020c1b;
border: none;
color: #ddd;
}
.l-footer a {
color: #FFF;
}
.l-footer a:hover {
text-decoration: underline;
}
.l-footer .footer {
padding: 0.7em;
}
.l-footer h1, .l-footer h2, .l-footer h3, .l-footer h4, .l-footer h5, .l-footer h6 {
color: #FFF;
}
.l-footer .copyright {
color: #93a1a7;
opacity: 0.5;
padding: 0.7em;
}
.front .block {
padding: 50px 40px;
}
.l-footer-columns .block {
padding: 15px 0 25px;
}
@media print, screen and (min-width: 64em) {
.l-footer-columns .block {
display: flex;
}
}
.header-top .block {
padding: 0;
}
.square-row {
overflow: hidden;
}
.square-txt {
position: absolute;
width: 60%;
height: 100%;
z-index: 5;
transition: all .5s ease-in-out .1s;
}
@media print, screen and (min-width: 40em) {
.square-txt {
width: 41%;
}
}
.square-txt .arrow {
position: absolute;
transition: all .5s ease-in-out .1s;
width: 0;
height: 0;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
}
.square-txt .post-read-more {
margin-top: 10px;
}
.square-bottom .square-txt {
height: 37%;
width: 100%;
top: 50%;
}
@media print, screen and (min-width: 40em) {
.square-bottom .square-txt {
top: 56%;
}
}
.square-bottom .square-txt .arrow {
left: calc(50% - 20px);
top: -20px;
border-top: 0 solid #94e107;
border-bottom: 20px solid #94e107;
border-right: 20px solid transparent;
border-left: 20px solid transparent;
}
.square-left .square-txt {
position: absolute;
left: 0;
transition: all .5s ease-in-out;
}
.square-left .square-txt .arrow {
right: -20px;
top: calc(50% - 20px);
border-left: 20px solid #009ae7;
border-right: 0 solid #009ae7;
}
.square-right .square-txt {
position: absolute;
right: 0;
width: 60%;
}
@media print, screen and (min-width: 40em) {
.square-right .square-txt {
width: 43%;
}
}
.square-right .square-txt .arrow {
left: -20px;
top: calc(50% - 20px);
border-left: 0 solid #fbb820;
border-right: 20px solid #fbb820;
}
.square-row img {
transition: all .5s ease-in-out .1s;
}
.square-img {
overflow: hidden;
}
.square-row:hover img {
transform: scale(1.1);
}
.square-img {
position: absolute;
right: 0;
text-align: center;
transition: all .5s ease-in-out .1s;
}
@media (max-width: 767px) {
.square-img, .square-img img {
width: 100%;
}
}
.square-img > a:before {
bottom: 100%;
content: "";
display: block;
height: 100%;
opacity: 0;
position: absolute;
top: 0;
width: 100%;
transition: all .2s ease-in;
}
.square-row:hover .square-img > a:before {
height: 100%;
opacity: 0.3;
transform: scale(1.2);
}
.square-left .square-img {
left: auto;
right: 0;
}
.square-right .square-img {
left: 0;
right: auto;
overflow: hidden;
}
.square-row .square-img .fa {
left: 48%;
left: calc(50% - 26px);
top: 50%;
top: calc(50% - 30px);
position: absolute;
opacity: 0;
transition: all .6s ease-in-out 0;
padding: 0;
border-radius: 50%;
z-index: 9;
}
.square-row:hover .square-img .fa {
font-size: 60px;
padding: 5px 11px;
}
.square-bottom.square-row .square-img {
top: 0;
}
.square-right:hover .square-img {
right: auto;
}
.boxes.colored .columns {
padding: 0;
}
.boxes.colored .box-container {
padding: em-calc(10) 0;
}
.boxes .box {
margin-bottom: 16px;
position: relative;
min-height: 146px;
min-height: 196px;
}
.boxes .box > a:before,
.boxes .box .flipper a:before {
bottom: 100%;
content: "";
display: block;
height: 0%;
opacity: 0.5;
position: absolute;
top: 0;
width: 100%;
transition: all .2s ease-in;
}
.boxes .box:hover > a:before,
.boxes .box:hover .flipper a:before {
height: 100%;
}
.boxes .box img {
width: 100%;
}
.boxes .box .box-txt {
background: #000;
background: rgba(var(--primary-color), 0.8);
bottom: 10px;
left: 15px;
position: absolute;
padding: em-calc(10);
text-transform: uppercase;
transition: all 0.1s ease-in;
}
.boxes .box .box-txt a {
color: #FFF;
}
.boxes.small {
text-align: center;
padding-top: en-calc(15);
}
.boxes.small .block-title {
padding-bottom: 0.6em;
}
.boxes.small .box-container {
text-align: left;
}
.boxes.small .box-icon {
border: none;
float: left;
padding: 3px 5px;
text-align: center;
}
.boxes.small .box-body {
clear: both;
padding-top: 10px;
}
.boxes.small .box-title {
padding: 7px 0 5px 55px;
}
.box:hover .box-txt {
bottom: 0;
}
.large-12 .box {
overflow: hidden;
}/*/*/.horiz-scroll li {
display: block;
float: left;
}
.horiz-scroll li div {
border: 1px solid;
float: left;
height: 28px;
}/*/*/.div-hr {
height: 1px;
margin: em-calc(25) auto em-calc(20);
}
.div-hr.small {
width: 30%;
}
.div-hr span {
display: block;
margin-top: -5px;
position: absolute;
right: 43%;
right: calc(50% - 20px);
width: 40px;
}
.block-views-clients-block {
padding: em-calc(70) 0;
}
.block-views-clients-block .view-content {
padding-top: 30px;
}
.block-views-clients-block .everslider {
padding: 0 0 60px;
margin: 0;
}
.block-views-clients-block .everslider .es-next, .block-views-clients-block .everslider .es-prev {
top: 104px;
outline: none;
}
.block-views-clients-block .everslider .es-next {
right: 47.5%;
right: calc(50% - 30px);
}
.block-views-clients-block .everslider .es-prev {
left: 47.5%;
left: calc(50% - 30px);
}/**/.before-footer .block-block-17 {
margin-top: 40px;
padding: 35px 40px 0;
} .block-flickr a {
display: inline-block;
margin: 2px;
} .block-search-form .container-inline .form-type-textfield {
float: left;
margin: 1em 0 0;
width: 200px;
width: calc(100% - 60px);
}
.block-search-form .container-inline .form-submit {
float: right;
margin: 1em 0 0;
width: 60px;
} .contact-details {
margin: 0;
}
.contact-details li {
list-style: none;
padding-bottom: 16px;
}
.contact-details .fa {
font-size: 1.4em;
line-height: 32px;
text-align: center;
margin-right: 15px;
} .view-blog.view-display-id-block .jcarousel li {
width: 390px;
margin: 10px 0 20px;
}
.boxed .view-blog.view-display-id-block .jcarousel li {
max-width: 328px;
margin: 10px 15px 20px 0;
}
.view-blog.view-display-id-block .jcarousel li:first-child {
padding-right: 5px;
}
.view-blog.view-display-id-block .blog-title {
margin: 8px 0 2px;
}
.view-blog.view-display-id-block .blog-title a {
color: #222;
font-size: 20px;
font-weight: 500;
}
.view-blog.view-display-id-block p {
font-size: 15px;
line-height: 1.57em;
}
.view-blog.view-display-id-block .blog-body {
padding-right: 20px;
} .sidebar .latest-posts ul li {
list-style: none;
padding: 10px 0;
min-height: 6.5em;
}
.latest-posts ul li {
list-style: none;
padding: 10px 0;
min-height: 6.5em;
}
.latest-posts ul li:first-child {
padding-top: 0;
min-height: 5.6em;
}
.latest-posts ul li:last-child {
border: none;
}
.latest-posts .blog-image img {
margin-right: 10px;
}
.sidebar .latest-posts .blog-image img {
width: 70px;
}
.latest-posts .blog-title, .latest-posts .subheader {
margin: 0;
line-height: 20px;
}
.latest-posts .blog-title a {
color: #333;
font-size: 14px;
font-weight: 400;
letter-spacing: .5px;
line-height: 22px;
}
.latest-posts .blog-image {
padding-right: 6px;
padding-top: 10px;
display: flex;
}
.latest-posts .subheader {
margin: -18px 80px;
}
.l-footer-columns .latest-posts .blog-title a {
color: #eee;
}
.latest-posts ul {
margin-left: 0;
} .portfolio-drag .es-slides {
cursor: move;
}
.portfolio-drag .es-slides > li.es-after-slide {
height: 450px;
cursor: move;
}
.portfolio-drag .es-slides > li.es-after-slide h4 {
margin-bottom: 2px;
line-height: 1.3em;
}
.portfolio-drag .es-slides > li.es-after-slide .item-description > span {
display: block;
margin-bottom: 0.5em;
text-transform: uppercase;
}
.portfolio-drag .es-slides > li.es-after-slide .item-description div,
.portfolio-drag .es-slides > li.es-after-slide .item-description .read-more {
font-size: 0.932em;
}
.masque li {
overflow: hidden;
} .flexslider {
border: 4px solid #FFFFFF;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
border-radius: none;
}
@media print, screen and (min-width: 40em) {
.negative-margin {
position: relative;
top: -61px;
z-index: 100;
}
}
.wd-btn {
text-align: center;
font-weight: bold;
display: inline-block;
transition: .4s all ease-in-out;
text-transform: uppercase;
cursor: pointer;
will-change: background;
}
.button.small {
color: #fff;
}
.btn-color-1.btn-solid,
.hover-color-1:hover.btn-solid {
color: #fff;
background: var(--primary-color);
}
.btn-color-1.btn-border,
.hover-color-1:hover.btn-border {
color: var(--primary-color);
border: 4px solid var(--primary-color);
}
.btn-color-1.btn-border:hover,
.hover-color-1:hover.btn-border:hover {
background: var(--primary-color);
color: #fff;
}
.btn-color-1.btn-underline,
.hover-color-1:hover.btn-underline {
color: var(--primary-color);
}
.btn-color-1.btn-shadow,
.hover-color-1:hover.btn-shadow {
color: #fff;
background: var(--primary-color);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn-color-1.btn-shadow:hover,
.hover-color-1:hover.btn-shadow:hover {
background: var(--primary-color);
color: #fff;
}
.btn-color-2.btn-solid,
.hover-color-2:hover.btn-solid {
color: #fff;
background: #c00;
}
.btn-color-2.btn-border,
.hover-color-2:hover.btn-border {
color: #c00;
border: 4px solid #c00;
}
.btn-color-2.btn-border:hover,
.hover-color-2:hover.btn-border:hover {
background: #c00;
color: #fff;
}
.btn-color-2.btn-underline,
.hover-color-2:hover.btn-underline {
color: #c00;
}
.btn-color-2.btn-shadow,
.hover-color-2:hover.btn-shadow {
color: #fff;
background: #c00;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn-color-2.btn-shadow:hover,
.hover-color-2:hover.btn-shadow:hover {
background: #c00;
color: #fff;
}
.btn-color-3.btn-solid,
.hover-color-3:hover.btn-solid {
color: #fff;
background: #0d1d4e;
}
.btn-color-3.btn-border,
.hover-color-3:hover.btn-border {
color: #0d1d4e;
border: 4px solid #0d1d4e;
}
.btn-color-3.btn-border:hover,
.hover-color-3:hover.btn-border:hover {
background: #0d1d4e;
}
.btn-color-3.btn-underline,
.hover-color-3:hover.btn-underline {
color: #0d1d4e;
}
.btn-color-3.btn-shadow,
.hover-color-3:hover.btn-shadow {
color: #fff;
background: #0d1d4e;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn-color-3.btn-shadow:hover,
.hover-color-3:hover.btn-shadow:hover {
background: #0d1d4e;
}
.btn-color-4.btn-solid,
.hover-color-4:hover.btn-solid {
color: #fff;
background: #262626;
}
.btn-color-4.btn-border,
.hover-color-4:hover.btn-border {
color: #262626;
border: 4px solid #262626;
}
.btn-color-4.btn-border:hover,
.hover-color-4:hover.btn-border:hover {
background: #262626;
}
.btn-color-4.btn-underline,
.hover-color-4:hover.btn-underline {
color: #262626;
}
.btn-color-4.btn-shadow,
.hover-color-4:hover.btn-shadow {
color: #fff;
background: #262626;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn-color-4.btn-shadow:hover,
.hover-color-4:hover.btn-shadow:hover {
background: #262626;
}
.btn-color-5.btn-solid,
.hover-color-5:hover.btn-solid {
color: #262626;
background: #FFFFFF;
}
.btn-color-5.btn-border,
.hover-color-5:hover.btn-border {
color: #000000;
border: 1px solid #000000;
}
.btn-color-5.btn-border:hover,
.hover-color-5:hover.btn-border:hover {
background: #FFFFFF;
}
.btn-color-5.btn-underline,
.hover-color-5:hover.btn-underline {
color: #FFFFFF;
}
.btn-color-5.btn-shadow,
.hover-color-5:hover.btn-shadow {
color: var(--primary-color);
background: #FFFFFF;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn-color-5.btn-shadow:hover,
.hover-color-5:hover.btn-shadow:hover {
background: #FFFFFF;
}
.btn-color-6.btn-solid,
.hover-color-6:hover.btn-solid {
color: #262626;
background: #ffdd01;
}
.btn-color-6.btn-border,
.hover-color-6:hover.btn-border {
color: #000;
border: 1px solid #000;
}
.btn-color-6.btn-border:hover,
.hover-color-6:hover.btn-border:hover {
background: #ffdd01;
}
.btn-color-6.btn-underline,
.hover-color-6:hover.btn-underline {
color: #FFFFFF;
}
.btn-color-6.btn-shadow,
.hover-color-6:hover.btn-shadow {
color: var(--primary-color);
background: #FFFFFF;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn-color-6.btn-shadow:hover,
.hover-color-6:hover.btn-shadow:hover {
background: #ffdd01;
}
a.wd-btn.btn-underline {
padding: 0;
line-height: unset;
height: auto;
border-bottom: 2px solid;
border-radius: 0;
}
.wd-btn.btn-big {
line-height: 2;
font-size: 15px;
padding: 18px 48px 13px;
}
.wd-btn.btn-big.btn-border {
padding: 14px 48px 9px;
}
.wd-btn.btn-medium {
line-height: 2em;
font-size: 13px;
padding: 10px 50px 10px;
}
.wd-btn.btn-medium.btn-border {
padding: 7px 36px 5px;
}
.wd-btn.btn-small {
line-height: 2;
font-size: 12px;
padding: 9px 30px 7px;
}
.wd-btn.btn-small, .wd-btn.btn-small:hover {
border-width: 3px;
}
.wd-btn.btn-small.btn-border {
padding: 6px 30px 4px;
}
.wd-btn.btn-round {
border-radius: 32px 32px 32px 32px;
}
.wd-btn.btn-radius {
border-radius: 5px;
}
.wd-btn.btn-none {
border-radius: 0;
}
.wd-btn i.after {
margin-left: 10px;
transition: all ease-in-out 400ms;
transform: translateX(0);
}
.wd-btn i.before {
margin-right: 10px;
transition: all ease-in-out 400ms;
transform: translateX(0);
}
.wd-btn.icon-hs-2.icon-after .button-wrp {
position: relative;
padding-right: 25px;
display: block;
transition: all .35s ease-in-out;
}
.wd-btn.icon-hs-2.icon-after .button-wrp i {
position: absolute;
top: 48%;
transform: translateY(-50%);
}
.wd-btn.icon-hs-2.icon-after .button-wrp i.after {
opacity: 1;
right: 0;
}
.wd-btn.icon-hs-2.icon-after .button-wrp i.before {
opacity: 0;
left: -100px;
}
.wd-btn.icon-hs-2.icon-before {
position: relative;
padding-left: 0;
padding-right: 0;
}
.wd-btn.icon-hs-2.icon-before .button-wrp {
position: relative;
padding-left: 30px;
display: block;
transition: all .35s ease-in-out;
}
.wd-btn.icon-hs-2.icon-before i {
position: relative;
top: 0;
}
.wd-btn.icon-hs-2.icon-before i.after {
opacity: 0;
right: -100px;
}
.wd-btn.icon-hs-2.icon-before i.before {
opacity: 1;
left: 0;
}
.wd-btn:hover.icon-hs-1 i.after {
transform: translateX(5px);
}
.wd-btn:hover.icon-hs-1 i.before {
transform: translateX(-10px);
}
.wd-btn:hover.icon-hs-2.icon-after .button-wrp {
padding-right: 0;
padding-left: 25px;
}
.wd-btn:hover.icon-hs-2.icon-after i.after {
opacity: 0;
right: -100px;
}
.wd-btn:hover.icon-hs-2.icon-after i.before {
opacity: 1 !important;
left: 0;
}
.wd-btn:hover.icon-hs-2.icon-before .button-wrp {
padding-right: 30px;
padding-left: 0;
}
.wd-btn:hover.icon-hs-2.icon-before i.after {
opacity: 1 !important;
right: 0;
}
.wd-btn:hover.icon-hs-2.icon-before i.before {
opacity: 0;
left: -100px;
}
.wd-btn.icon-hs-1 .before {
display: none;
}
.section-container.auto > section > .title a,
.section-container.auto > .section > .title a,
.section-container.vertical-tabs > section > .title a,
.section-container.vertical-tabs > .section > .title a,
.section-container.vertical-nav > section > .title a,
.section-container.vertical-nav > .section > .title a,
.section-container.horizontal-nav > section > .title a,
.section-container.horizontal-nav > .section > .title a,
.section-container.accordion > section > .title a,
.section-container.accordion > .section > .title a {
padding: 0.7em 1.07143em;
}
.section-container.vertical-tabs > section.active,
.section-container.vertical-tabs > .section.active {
padding-left: 1.75em;
}
.section-container.vertical-tabs section .content,
.section-container.vertical-tabs .section .content {
width: 79%;
width: calc(100% - 12.5em);
}
.offices-map {
padding-left: 50px;
padding-top: 88px;
padding-bottom: 50px;
}
.offices-map h2 {
color: #fff;
font-size: 24px;
font-weight: 500;
}
.offices-map ul {
width: 400px;
margin: 0 0 50px;
}
.offices-map ul li {
color: #fff;
display: inline-block;
list-style-type: none;
padding: 14px 0;
width: 100px;
font-weight: 700;
}
.offices-map ul li a {
color: #FFF;
}
.offices-map .map-markers-container {
position: relative;
}
.offices-map .map-markers-container .map-marker {
background: #fff none repeat scroll 0 0;
padding: 20px;
position: absolute;
top: 60px;
width: 300px;
}
.offices-map .map-markers-container span.marker-icon {
background-color: #f0d228;
border-radius: 50%;
height: 15px;
position: absolute;
right: 80px;
top: 80px;
width: 15px;
}
.map-offices {
text-align: center;
}
.map-offices h3 {
color: #fff !important;
font-size: 24px;
font-weight: 500;
margin-bottom: 40px;
}
.map-offices .offices-locations {
position: relative;
margin: 0 auto;
width: 730px;
}
@media print, screen and (max-width: 39.99875em) {
.map-offices .offices-locations {
width: 100%;
}
}
.map-offices .offices-locations .office-location-point {
min-height: 7px;
min-width: 7px;
padding-bottom: 20px;
position: absolute;
z-index: 1;
}
.map-offices .offices-locations .office-location-point:hover {
z-index: 2;
}
.map-offices .offices-locations .office-location-point::before {
background: #fffc03;
border-radius: 50%;
bottom: 0;
content: "";
cursor: pointer;
display: block;
height: 7px;
left: 0;
margin-top: 0;
position: absolute;
width: 7px;
z-index: 0;
}
.map-offices .offices-locations .office-location-point:hover::before, .map-offices .offices-locations .office-location-point.selected::before {
box-shadow: 0 0 0 3px #FBF504;
transform: scale(1.5);
}
.map-offices .offices-locations .location-infos {
color: #7b7b7b;
font-size: 12px;
font-weight: 600;
left: -3999px;
min-width: 310px;
opacity: 0;
padding-bottom: 30px;
position: absolute;
top: -140px;
transition: opacity 0.3s ease-in 0s, visibility 0.3s ease-in 0s;
visibility: hidden;
}
.map-offices .offices-locations .location-infos p {
float: right;
margin: 0;
max-width: 152px;
}
.map-offices .offices-locations .location-infos p img {
margin: 0;
}
.map-offices .offices-locations .office-location-point:hover .location-infos, .map-offices .offices-locations .office-location-point.selected .location-infos {
left: -118px;
opacity: 1;
visibility: visible;
}
.map-offices .offices-locations .location-infos::before {
border-left: 12px solid rgba(0, 0, 0, 0);
border-top: 12px solid #fff;
bottom: 19px;
content: "";
left: 110px;
position: absolute;
}
.map-offices .offices-locations .location-infos-content {
background: #fff none repeat scroll 0 0;
border-radius: 0 2px 2px 0;
height: 130px;
overflow: hidden;
padding: 20px 25px 0;
position: relative;
text-align: left;
}
.map-offices .offices-locations .location-infos-content h5 {
color: #1a1c25;
font-size: 13px;
font-weight: bold;
margin-bottom: 7px;
text-transform: uppercase;
margin-top: 0;
}
.map-offices .offices-locations .location-infos-content p {
font-size: 12px;
}
.map-offices .offices-locations .location-infos-content p:last-child {
margin-bottom: 0;
}
.map-offices .offices-locations .location-infos > a {
float: left;
}
.map-offices .offices-locations .location-infos > a img {
border-radius: 2px 0 0 2px;
margin: 0;
}
.map-offices .offices-locations .location-img::after {
color: #fff;
content: "";
font-family: "icomoon";
left: 0;
opacity: 0;
position: absolute;
text-align: center;
top: 50%;
transform: translateY(-50%);
width: 100%;
z-index: 2;
}
.map-offices .offices-locations .location-infos > a {
float: left;
}
.map-offices .offices-locations .location-img {
overflow: hidden;
position: relative;
}
.map-offices .offices-locations .location-img img {
margin: 0 !important;
}
.map-offices .offices-locations > img {
opacity: 0.2;
}
.map-offices .offices-list {
margin-bottom: 30px;
}
.map-offices .offices-list .location-name {
border: 1px solid transparent;
border-radius: 3px;
color: #fff;
display: inline-block;
font-size: 13px;
font-weight: 600;
line-height: 30px;
margin-bottom: 5px;
padding: 0 15px;
text-decoration: none;
}
.map-offices .offices-list .location-name.selected, .map-offices .offices-list .location-name:hover {
border-bottom-color: var(--primary-color);
}
.map-offices ul li {
display: inline-block;
list-style-type: none;
width: 120px;
}
.hero-title h2 {
font-size: 40px;
font-weight: 300;
}
.hero-title p {
font-size: 18px;
line-height: 1.4em;
}
.text-with-button h4 {
font-size: 24px;
font-weight: 400;
}
.text-with-button p {
font-size: 16px;
padding-right: 80px;
line-height: 1.5em;
}
.text-with-button a.button.success {
background-color: #a5ca52;
border-color: #a5ca52;
margin-top: 46px;
padding: 14px 43px 14px 39px;
font-size: 14px;
}
.text-with-button a.button.success:after {
padding-left: 38px;
}
.clients-section {
border-top: 4px solid #f5f5f5;
}
.image-hero-text h2 {
font-size: 41px;
color: #FFF;
}
.image-hero-text h3 {
font-size: 34px;
color: #FFF;
}
.vc_row.wpb_row.vc_row-fluid.icons-image-section {
background-position: center center !important;
}
.home-text-icon .home-text-icon .boxes.layout-1 .box-body {
padding-bottom: 10px;
}
.home-text-icon .boxes .box-container {
margin-bottom: 0;
}
.home-text-icon .wpb_text_column {
background-color: #fff;
padding: 0 10px 30px 32px;
margin-top: -2px;
}
.newslettre-section .newslettre-text {
float: left;
width: 29%;
}
.newslettre-section .newslettre-text h3 {
font-size: 20px;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 0;
}
.newslettre-section .newslettre-text p {
font-size: 13px;
}
.newslettre-section .newslettre-input {
float: left;
width: 28%;
padding-top: 10px;
}
.newslettre-section .newslettre-input input.newslettre-field {
height: 37px;
width: 156px;
padding: 10px;
}
.newslettre-section .button.large.wd-black {
padding: 9px 14px;
width: 104px;
height: 37px;
}
.newslettre-section .button.large.wd-black:hover {
padding: 9px 14px;
}
.wd-large-title h2 {
font-size: 36px;
text-transform: uppercase;
color: #282828;
}
.calendar-calendar .month-view .full td.multi-day div.monthview,
.calendar-calendar .week-view .full td.multi-day div.weekview,
.calendar-calendar .day-view .full td.multi-day div.dayview {
background: #74A5D7;
border-radius: 0;
}
.calendar-calendar td {
border: 1px solid #EEEEEE;
color: #777777;
margin: 0;
padding: 0;
text-align: right;
vertical-align: top;
width: 14%;
}
.calendar-calendar table tr.even,
.calendar-calendar table tr.alt,
.calendar-calendar table tr:nth-of-type(2n) {
background: none;
}
.calendar-calendar th.days {
padding: 14px 5px;
}
.table {
background: #fff;
box-shadow: 0, 1px, 3px, rgba(0, 0, 0, 0.12);
border-radius: 2px;
font-size: .875em; width: 100%; }
.table th {
background: #000;
color: #fff;
padding: .5em .5em .5em 0;
text-transform: uppercase;
font-weight: 300;
}
.table th:first-child {
padding-left: 1.2em;
border-radius: 2px 0 0 0;
}
.table th:last-child {
border-radius: 0 2px 0 0;
}
.table tr td {
border-bottom: 1px dashed #e9e9e9;
padding: .7em 3em .7em 0;
}
.table tr td:first-child {
padding-left: 1.2em;
}
.table tr td:last-child {
padding-right: .7em;
}
.table tr:last-child td {
border-bottom: none;
}
@media (max-width: 54em) {
.table {
font-size: .8em;
}
.table tr td {
padding-right: 2em;
}
}
.pricing-table {
border: 1px solid #d2d2d2;
padding: 33px 35px 48px;
}
.pricing-table .price {
font-size: 37px;
font-family: lato;
font-weight: 400;
padding: 0 0 15px;
text-align: left;
color: #000;
background: none;
}
.pricing-table .title {
font-weight: 400;
padding: 0 0 10px;
color: #d94136;
font-family: lato;
font-size: 20px;
background: none;
text-align: left;
}
.pricing-table .description {
font-family: lato;
font-size: 16px;
font-weight: 100;
border: none;
text-align: left;
padding: 0 0 70px;
background: transparent;
color: #333;
}
.pricing-table .cta-button {
padding: 30px 0 0;
text-align: center;
background: transparent;
}
.pricing-table .cta-button a {
background: none;
border: 1px solid #797979;
color: #797979;
width: 100%;
}
.pricing-table ul,
.pricing-table p {
margin: 0;
}
.pricing-table li.bullet-item {
background: rgba(0, 0, 0, 0) url(//shop.alumetsmetal.com/wp-content/themes/doors/images/Pricing-table.png) no-repeat scroll left 5px;
border: none;
padding: 0 0 25px 25px;
}
.pricing-table .bullet-item,
.pricing-table ul li {
background-color: #ffffff;
color: #333333;
font-size: 16px;
font-weight: lighter;
padding: 0;
text-align: left;
font-family: lato;
}
.pricing-table.featured {
border-color: var(--primary-color);
background: var(--primary-color);
transition: all 0.4s ease-in-out 0s;
position: relative;
z-index: 1000;
box-shadow: 0 0 0 rgba(0, 0, 0, 0.35);
}
.pricing-table.featured:hover {
transform: scale(1.05);
box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
}
.pricing-table.featured .price {
color: #fff;
}
.pricing-table.featured .title {
color: rgba(254, 252, 252, 0.9);
}
.pricing-table.featured .description {
color: #fff;
}
.pricing-table.featured li.bullet-item {
color: #fff;
background: rgba(0, 0, 0, 0) url(//shop.alumetsmetal.com/wp-content/themes/doors/images/Pricing-table2.png) no-repeat scroll left 5px;
}
.pricing-table.featured .cta-button {
background-color: transparent;
}
.pricing-table.featured .cta-button a {
background-color: opacity var(--primary-color), 0.9;
border-color: #fff;
color: #fff;
}
.pricing-table-background .pricing-table:not(.featured) {
background: rgba(255, 255, 255, 0.9);
}
.pricing-table-background .pricing-table:not(.featured) .cta-button a {
background: #fff;
}
.main {
padding-top: 155px;
}
@media print, screen and (max-width: 63.99875em) {
.main {
padding-top: 0;
}
}
.list-icon li {
list-style: none;
}
.list-icon li i {
padding-right: 8px;
}
.wd-lists.wd-list-1 li:before {
font-family: 'FontAwesome';
content: '\f058';
margin: 0 12px 0 -15px;
color: #DC494F;
line-height: 2.3em;
}
.wd-partenaire li {
padding-bottom: 2px;
border: solid 1px #eee;
}
.fixed section.corporate .menu-item .sub-menu {
margin-top: 14px;
}
section.corporate .menu-menu-container {
position: relative;
}
.fixed section.corporate #menu-menu {
margin-bottom: 14px;
margin-top: 0;
}
@media print, screen and (max-width: 39.99875em) {
section.corporate .menu-item {
float: none;
}
}
@media print, screen and (min-width: 40em) {
section.corporate .menu-item {
float: left;
}
}
section.corporate .menu-item .sub-menu {
background: #FFF;
padding: 12px 0;
box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
@media print, screen and (max-width: 39.99875em) {
section.corporate .menu-item .sub-menu {
padding-left: 14px;
}
}
@media print, screen and (min-width: 40em) {
section.corporate .menu-item .sub-menu {
position: absolute;
left: auto;
}
section.corporate .menu-item .sub-menu a {
padding: 5px 20px;
font-size: 1.1rem;
font-weight: 400;
}
}
section.corporate .menu-item .sub-menu li {
float: none;
}
@media print, screen and (min-width: 40em) {
section.corporate .menu-item .sub-menu .sub-menu {
left: 100%;
margin-top: 0;
top: 0;
}
}
section.corporate .menu-item a {
padding: 10px;
}
section.corporate .menu-item a i {
color: #FF0000;
}
section.corporate .menu-item > .sub-menu {
visibility: hidden;
opacity: 0;
transform: translateY(20px);
transition: all .3s ease-in-out;
}
section.corporate .menu-item:hover .sub-menu {
opacity: 1;
transform: translateY(0);
visibility: visible;
}
.corporate-layout .contain-to-grid, .corporate-layout .top-bar {
background: none repeat scroll 0 0 transparent;
box-shadow: none;
display: block;
margin: 0 auto;
width: 100%;
z-index: 1001;
}
.corporate-layout .sticky {
position: fixed;
top: 0;
left: 0;
z-index: 10;
padding: 0;
}
.corporate-layout .header-top {
background-color: #FAFAFA;
color: #D6D6D6;
}
.corporate-layout .header-top .contact-info {
font-size: 13px;
color: #a6a6a6;
}
.corporate-layout .header-top .contact-info .fa {
margin-right: 4px;
}
.corporate-layout .header-top .contact-info .fa-phone {
margin-left: 10px;
}
.corporate-layout .header-top i {
font-size: 1.4em;
color: #db4436;
padding-right: 4px;
}
.corporate-layout .header-top .social-icons li i {
border-radius: 0;
color: #D6D6D6;
font-size: 1.4em;
margin: 0 2px;
}
.corporate-layout .header-top .social-icons.accent li i {
border: none;
color: #D6D6D6;
}
.corporate-layout .contain-to-grid.sticky {
background-color: #FFF;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}
.corporate-layout .top-bar-section li:not(.has-form) a:hover:not(.button), .corporate-layout .top-bar-section ul li:hover:not(.has-form) > a {
background-color: transparent;
color: #1A80D6;
}
.corporate-layout .top-bar-section ul li:hover:not(.has-form) > a {
color: #9d9d9d;
}
.corporate-layout .top-bar .toggle-topbar.menu-icon a span {
box-shadow: none;
}
.corporate-layout .top-bar {
position: relative;
transition: all 0.4s ease 0s;
}
@media print, screen and (max-width: 63.99875em) {
.corporate-layout .top-bar .menu {
justify-content: space-evenly;
}
}
.corporate-layout .top-bar ul {
background-color: transparent;
margin: 0 15px;
}
.corporate-layout .top-bar-section ul.menu > li > a:not(.button) {
font-size: 16px;
font-weight: 600;
padding: 10px 20px;
text-transform: capitalize;
line-height: 22px;
color: #222;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
.corporate-layout .top-bar-section ul.menu > li > a:not(.button) {
padding: 10px 15px 20px;
}
}
@media screen and (min-width: 1024px) and (max-width: 1150px) {
.corporate-layout .top-bar-section ul.menu > li > a:not(.button) {
padding: 10px 14px;
}
}
.corporate-layout .top-bar-section ul.menu > li.has-dropdown > a:not(.button) {
padding-right: 35px;
}
.corporate-layout .top-bar-section ul.menu > li:first-child > a:not(.button) {
padding-left: 5px;
}
.corporate-layout .top-bar-section ul li {
background-color: transparent;
border-bottom: solid 2px transparent;
}
.corporate-layout .top-bar-section ul li i {
color: #FF0000;
margin-right: 4px;
}
@media print, screen and (max-width: 39.99875em) {
.corporate-layout .top-bar .title-bar .name {
margin-top: 0;
}
}
.corporate-layout .corporate-layout .top-bar .title-bar .name {
margin-top: 0;
}
.corporate-layout .top-bar-section ul.menu > li > a:not(.button) {
color: var(--topbar-text);
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
.corporate-layout .top-bar-section ul.menu > li > a:not(.button) {
-webkit-padding-start: 5px;
padding-inline-start: 5px;
-webkit-padding-end: 15px;
padding-inline-end: 15px;
}
}
.corporate-layout .top-bar-section ul li:hover {
border-bottom: solid 2px var(--topbar-hover-text);
color: var(--topbar-hover-text);
}
.corporate-layout .top-bar-section li:not(.has-form) a:hover:not(.button), .corporate-layout .top-bar-section ul li:hover:not(.has-form) > a {
background-color: transparent;
color: var(--topbar-hover-text);
}
.corporate-layout .sticky .top-bar-section ul.menu > li > a:not(.button) {
color: var(--topbar-sticky-text);
}
.corporate-layout .sticky .top-bar-section ul li:hover {
border-bottom: solid 2px var(--topbar-hover-sticky-text);
color: var(--topbar-hover-sticky-text);
}
.corporate-layout .sticky .top-bar-section li:not(.has-form) a:hover:not(.button),
.corporate-layout .sticky .top-bar-section ul li:hover:not(.has-form) > a {
background-color: transparent;
color: var(--topbar-hover-sticky-text);
}
.top-bar .toggle-topbar.menu-icon a span {
box-shadow: none !important;
}
.modern-layout .top-bar-section ul li {
float: none !important;
}
.orange_bar {
background-color: linear-gradient(to left, #f95b5d 0%, #fbad5b 100%);
height: 10px;
}
.top-bar .toggle-topbar.menu-icon a span::after {
box-shadow: 0 0 0 1px #000, 0 7px 0 1px #000, 0 14px 0 1px #000;
}
nav.top-bar.expanded {
height: auto;
}
@media print, screen and (max-width: 39.99875em) {
.doors_mega-menu > .sub-menu.dropdown {
width: -moz-max-content;
padding: 30px 150px 20px 20px;
background-color: #FFF;
padding-bottom: 40px;
left: calc(-50% - 75px) !important;
right: auto !important;
}
.doors_mega-menu > .sub-menu.dropdown > li {
width: auto;
display: block;
float: none;
border-right: 1px solid #eee;
}
}
@media print, screen and (max-width: 39.99875em) and (max-width: 39.99875em) {
.doors_mega-menu > .sub-menu.dropdown > li {
display: table-cell;
}
}
@media print, screen and (max-width: 39.99875em) {
.doors_mega-menu > .sub-menu.dropdown > li > .sub-menu.dropdown {
box-shadow: none;
height: auto;
padding: 0 10px 0 0;
position: unset !important;
width: 100%;
}
.top-bar-section .doors_mega-menu .dropdown li:not(.has-form):not(.active) > a:not(.button) {
background: none;
}
.doors_mega-menu > .dropdown > li > a {
font-weight: bold;
}
.top-bar-section .has-dropdown .dropdown li.has-dropdown > a::after {
content: "";
}
.top-bar-section .doors_mega-menu > .dropdown > li:not(.has-form):not(.active) > a:not(.button) {
background: transparent;
color: #000;
text-transform: uppercase;
}
.top-bar-section .dropdown li:hover:not(.has-form):not(.active) > a:not(.button) {
background-color: transparent;
color: #999;
}
.top-bar-section .doors_mega-menu > .dropdown > li:hover:not(.has-form):not(.active) > a:not(.button) {
background: transparent;
color: #000;
}
.top-bar-section .doors_mega-menu .dropdown .dropdown > li:not(.has-form) a:not(.button) {
line-height: 2em;
}
.title.back.js-generated {
display: none !important;
}
}
.corporate-layout .header-info {
border-bottom: solid 1px rgba(93, 85, 85, 0.23);
}
@media print, screen and (max-width: 39.99875em) {
.corporate-layout .header-info {
border-bottom: none;
}
}
.corporate-layout .header-info .top-bar-left {
float: left;
}
.corporate-layout .header-info .top-bar-right {
float: right;
margin-top: 15px;
}
@media print, screen and (max-width: 63.99875em) {
.corporate-layout .header-info .top-bar-right {
display: flex;
justify-content: space-evenly;
}
}
.corporate-layout .top-bar-section ul.sub-menu.dropdown li {
border-bottom: solid 2px transparent;
color: #1A80D6;
}
.corporate-layout .top-bar-section ul.sub-menu.dropdown li,
.corporate-layout .top-bar-section ul.sub-menu.dropdown li a {
transition: all 0.35s ease-in-out;
}
.corporate-layout .top-bar-section ul.sub-menu.dropdown li:hover {
background: rgba(136, 136, 136, 0.06);
}
.corporate-layout .top-bar-section ul.sub-menu.dropdown li:hover > a:not(.button) {
color: var(--primary-color);
}
.corporate-layout .top-bar-section ul li a:hover {
color: #1A80D6;
}
.corporate.top-bar-section {
position: relative;
}
.fixed section.creative .menu-item .sub-menu {
margin-top: 14px;
}
section.creative .menu-menu-container {
position: relative;
top: 7px;
margin-bottom: -32px;
}
.fixed section.creative #menu-menu {
margin-bottom: 14px;
margin-top: 0;
}
@media print, screen and (max-width: 39.99875em) {
section.creative .menu-item {
float: none;
}
}
@media print, screen and (min-width: 40em) {
section.creative .menu-item {
float: left;
}
}
section.creative .menu-item .sub-menu {
border: 1px solid #eeeeee;
background: #FFF;
}
@media print, screen and (max-width: 39.99875em) {
section.creative .menu-item .sub-menu {
padding-left: 14px;
}
}
@media print, screen and (min-width: 40em) {
section.creative .menu-item .sub-menu {
padding-left: 0;
position: absolute;
left: auto;
top: auto;
}
section.creative .menu-item .sub-menu a {
padding: 0 20px;
font-size: 13px;
}
}
section.creative .menu-item .sub-menu li {
float: none;
}
@media print, screen and (min-width: 40em) {
section.creative .menu-item .sub-menu .sub-menu {
left: 100%;
margin-top: 0;
top: 0;
}
}
section.creative .menu-item a {
padding: 10px;
text-transform: uppercase;
}
section.creative .menu-item a i {
color: #FF0000;
}
section.creative .menu-item > .sub-menu {
display: none;
}
.creative-layout .contain-to-grid {
padding-bottom: 76px;
}
.creative-layout .contain-to-grid, .creative-layout .top-bar {
background: none repeat scroll 0 0 transparent;
box-shadow: none;
display: block;
margin: 0 auto;
width: 100%;
z-index: 1001;
}
.creative-layout .contain-to-grid .text-right .address_bar .address, .creative-layout .top-bar .text-right .address_bar .address {
color: #000 !important;
}
.creative-layout .contain-to-grid .text-right .address_bar .text_add, .creative-layout .top-bar .text-right .address_bar .text_add {
color: #999797;
}
.creative-layout .sticky {
position: fixed;
top: 0;
left: 0;
z-index: 2;
padding: 0;
}
.creative-layout .sticky .top-bar ul {
top: 0;
}
.creative-layout .header-top {
background-color: #FAFAFA;
color: #D6D6D6;
}
.creative-layout .header-top .contact-info {
font-size: 13px;
color: #a6a6a6;
}
.creative-layout .header-top .contact-info .fa {
margin-right: 4px;
}
.creative-layout .header-top .contact-info .fa-phone {
margin-left: 10px;
}
.creative-layout .header-top i {
font-size: 1.4em;
color: #db4436;
padding-right: 4px;
}
.creative-layout .header-top .social-icons li i {
border-radius: 0;
color: #D6D6D6;
font-size: 1.4em;
margin: 0 2px;
}
.creative-layout .header-top .social-icons.accent li i {
border: none;
color: #D6D6D6;
}
.creative-layout .contain-to-grid.sticky {
background-color: #FFF;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}
.creative-layout .top-bar-section li:not(.has-form) a:hover:not(.button), .creative-layout .top-bar-section ul li:hover:not(.has-form) > a {
background-color: transparent;
color: #1A80D6;
}
.creative-layout .top-bar-section ul li:hover:not(.has-form) > a {
border-bottom: solid 2px #1A80D6;
color: #1A80D6;
}
.creative-layout .top-bar .toggle-topbar.menu-icon a span {
box-shadow: none;
}
.creative-layout .top-bar {
position: relative;
transition: all 0.4s ease 0s;
}
.creative-layout .top-bar ul {
background-color: transparent;
top: 77px;
}
.creative-layout .top-bar-section ul.menu > li > a {
color: #303030;
font-size: 16px;
font-weight: 400;
padding: 10px 16px !important;
text-transform: uppercase;
line-height: 22px;
}
.creative-layout .top-bar-section ul li {
background-color: transparent;
height: 46px;
}
.creative-layout .top-bar-section ul li i {
color: #FF0000;
margin-right: 4px;
}
@media print, screen and (max-width: 39.99875em) {
.creative-layout .top-bar .title-bar .name {
margin-top: 0;
}
}
.creative-layout .creative-layout .top-bar .title-bar .name {
margin-top: 0;
}
.top-bar .toggle-topbar.menu-icon a span {
box-shadow: none !important;
}
.modern-layout .top-bar-section ul li {
float: none !important;
}
.orange_bar {
background-color: linear-gradient(to left, #f95b5d 0%, #fbad5b 100%);
height: 10px;
}
.top-bar .toggle-topbar.menu-icon a span::after {
box-shadow: 0 0 0 1px #000, 0 7px 0 1px #000, 0 14px 0 1px #000;
}
nav.top-bar.expanded {
height: auto;
}
@media print, screen and (max-width: 39.99875em) {
nav.top-bar {
height: 50px;
}
}
@media print, screen and (max-width: 39.99875em) {
.doors_mega-menu > .sub-menu.dropdown {
width: -moz-max-content;
padding: 30px 150px 20px 20px;
background-color: #FFF;
padding-bottom: 40px;
left: calc(-50% - 75px) !important;
right: auto !important;
}
.doors_mega-menu > .sub-menu.dropdown > li {
width: auto;
display: block;
float: none;
border-right: 1px solid #eee;
}
}
@media print, screen and (max-width: 39.99875em) and (max-width: 39.99875em) {
.doors_mega-menu > .sub-menu.dropdown > li {
display: table-cell;
}
}
@media print, screen and (max-width: 39.99875em) {
.doors_mega-menu > .sub-menu.dropdown > li > .sub-menu.dropdown {
box-shadow: none;
height: auto;
padding: 0 10px 0 0;
position: unset !important;
width: 100%;
}
.top-bar-section .doors_mega-menu .dropdown li:not(.has-form):not(.active) > a:not(.button) {
background: none;
}
.doors_mega-menu > .dropdown > li > a {
font-weight: bold;
}
.top-bar-section .has-dropdown .dropdown li.has-dropdown > a::after {
content: "";
}
.top-bar-section .doors_mega-menu > .dropdown > li:not(.has-form):not(.active) > a:not(.button) {
background: transparent;
color: #000;
text-transform: uppercase;
}
.top-bar-section .dropdown li:hover:not(.has-form):not(.active) > a:not(.button) {
background-color: transparent;
color: #999;
}
.top-bar-section .doors_mega-menu > .dropdown > li:hover:not(.has-form):not(.active) > a:not(.button) {
background: transparent;
color: #000;
}
.top-bar-section .doors_mega-menu .dropdown .dropdown > li:not(.has-form) a:not(.button) {
line-height: 2em;
}
.title.back.js-generated {
display: none !important;
}
}
.contain-to-grid .top-bar {
margin-top: 6px;
}
@media print, screen and (max-width: 63.99875em) {
.contain-to-grid .top-bar {
margin-top: 0;
}
}
@media print, screen and (max-width: 39.99875em) {
.contain-to-grid .top-bar .name h2 {
line-height: 0;
}
}
@media print, screen and (max-width: 39.99875em) {
.contain-to-grid .top-bar .text-right {
display: none;
}
}
.contain-to-grid .top-bar .text-right .address_bar {
display: inline-flex;
position: relative;
padding-left: 72px;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
.contain-to-grid .top-bar .text-right .address_bar {
padding-left: 25px;
}
}
.contain-to-grid .top-bar .text-right .address_bar .address_icon {
position: absolute;
left: 48px;
top: 8px;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
.contain-to-grid .top-bar .text-right .address_bar .address_icon {
left: 10px;
}
}
.contain-to-grid .top-bar .text-right .address_bar .address_icon i {
font-size: 25px;
color: rgba(0, 0, 0, 0.46);
}
.contain-to-grid .top-bar .text-right .address_bar .address_icon path {
fill: var(--primary-color);
}
.contain-to-grid .top-bar .text-right .address_bar .bar .address {
color: var(--headings-color);
font-weight: 600;
font-size: 16px;
text-align: left;
}
.contain-to-grid .top-bar .text-right .address_bar .bar .text_add {
font-weight: 500;
font-size: 13px;
text-align: left;
color: #777;
font-family: "Roboto";
}
.contain-to-grid.fixed {
padding-bottom: 0;
margin-top: -65px;
}
.top-bar-section .menu {
margin-top: 5px;
}
@media print, screen and (max-width: 39.99875em) {
.top-bar-section .menu {
margin-top: 0;
}
}
#menu-button > li > a {
color: #fff;
}
ul.title-bar {
z-index: 99;
}
.request-quote {
padding: 0;
border: none;
position: relative;
top: -9px;
height: 40px;
padding-left: 30px;
}
@media print, screen and (max-width: 39.99875em) {
.request-quote {
display: none;
}
}
.request-quote a {
background: var(--primary-color);
color: #fff;
border-radius: 20px;
font-size: 15px;
padding: 10px 35px 9px;
display: inline-block;
transition: all 0.25s cubic-bezier(0.65, 0.05, 0.36, 1);
}
@media print, screen and (max-width: 39.99875em) {
.request-quote a {
width: 100%;
text-align: center;
}
}
.request-quote a:hover {
background: var(--accent-color);
color: #fff;
}
.top-bar .toggle-topbar.menu-icon {
top: 63%;
display: none;
}
@media print, screen and (max-width: 39.99875em) {
.top-bar .toggle-topbar.menu-icon {
display: block;
}
}
.top-bar .title-bar {
top: -3px;
}
@media print, screen and (max-width: 39.99875em) {
.top-bar .title-bar {
top: 0;
height: 53px;
}
}
.contain-to-grid #mobile-menu {
display: none;
}
@media print, screen and (max-width: 39.99875em) {
.contain-to-grid #responsive-menu {
max-height: 60px;
}
.contain-to-grid #mobile-menu {
display: block;
}
.contain-to-grid #mobile-menu .vertical.menu li a {
color: #000;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
}
.contain-to-grid #mobile-menu .vertical.menu li a:hover {
color: #1A80D6;
border-bottom: solid 2px #1A80D6;
width: 450px;
}
.contain-to-grid #mobile-menu .title-bar-title {
left: auto;
position: absolute;
}
.contain-to-grid #mobile-menu .menu-icon {
color: #777777;
}
.contain-to-grid #mobile-menu .menu-icon:hover {
color: #777777;
}
.contain-to-grid #mobile-menu .menu-icon:after {
color: #777777;
}
.contain-to-grid #mobile-menu .menu-icon button {
display: none;
}
.contain-to-grid .top-bar-section {
display: none;
}
.contain-to-grid .mobile-menu .menu {
display: none;
}
.contain-to-grid .on {
display: block !important;
margin-top: 10px;
}
.contain-to-grid .on .sub-menu {
display: none;
}
.contain-to-grid .mobile-menu .title-bar {
margin-bottom: 0;
display: block;
}
.contain-to-grid .mobile-menu .title-bar .menu-icon {
position: absolute;
bottom: 50%;
transform: translate(-50%, -50%);
padding-left: 50px;
left: 75%;
}
.contain-to-grid .mobile-menu .title-bar .toggle-topbar {
position: absolute;
bottom: 100%;
}
.contain-to-grid .request-quote {
display: none;
width: 100%;
}
}
div.wd-item-title.text-center h4, .title-center div.wd-item-title.block-title h4 {
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/images/wd-title-bg.png) no-repeat center bottom;
font-size: 2.3em;
padding-bottom: 30px;
}
.wpb_wrapper > h4 {
color: inherit;
}
.team-member-item h4, .team-member-item h3 {
display: inline;
}
.team-member-item h4 {
font-size: 13px;
font-weight: 500;
}
.team-member-item h3 {
font-size: 14px;
font-weight: 500;
color: #fff;
}
.team-member-desc p {
color: #717171;
font-size: 13px;
margin-top: 18px;
padding: 0px 6px 15px;
text-align: center;
}
.team-member-name-job-title {
background-color: #31aae1;
color: #fff;
margin-top: -17px;
margin-left: auto;
margin-right: auto;
padding: 6px 0;
position: relative;
width: 80%;
text-transform: uppercase;
}
.team-member-name-job-title:before {
border-bottom: 20px solid transparent;
border-left: 15px solid #31a9e5;
border-top: 16px solid transparent;
content: " ";
position: absolute;
right: -14px;
top: 0;
}
.team-member-name-job-title:after {
border-bottom: 19px solid transparent;
border-right: 14px solid #31a9e5;
border-top: 17px solid transparent;
content: " ";
position: absolute;
left: -14px;
top: 0;
}
li .team-member-item {
background-color: #ffffff;
margin: 0;
padding: 0;
}
li .team-member-item:hover {
background-color: #ffffff;
}
.team-membre-social-icons ul {
margin: 0;
}
.team-membre-social-icons ul li {
display: inline-block;
margin: 0;
}
.team-membre-social-icons ul li a {
color: #d8d8d8;
transition: color 0.2s;
padding: 14px 10px;
display: inline-block;
}
.team-membre-social-icons ul li a:hover {
color: #35a6e2;
}
.team-list-style2 > li {
list-style: none;
}
@media print, screen and (max-width: 39.99875em) {
.team-list-style2 > li {
padding: 0 5px;
}
}
.team-list-style2 .team-member {
border-radius: unset;
transition: all 0.35s cubic-bezier(0.45, 0.05, 0.55, 0.95);
overflow: hidden;
position: relative;
box-shadow: 0 5px 20px rgba(99, 98, 97, 0.08);
margin-bottom: 15px;
}
@media print, screen and (min-width: 40em) {
.team-list-style2 .team-member {
margin-bottom: 40px;
}
}
.team-list-style2 .team-member:hover { transform: translate3d(0, -20px, 0);
}
.team-list-style2 .team-member__picture {
padding: 0;
}
.team-list-style2 .team-member__picture img {
border-bottom: 4px solid #FDB900;
}
.team-list-style2 .team-member__info {
text-align: center;
padding: 24px 30px 10px 30px;
}
@media print, screen and (max-width: 39.99875em) {
.team-list-style2 .team-member__info {
padding: 30px 15px 6px 15px;
}
}
.team-list-style2 .team-member__name {
margin: 0;
font-weight: 500;
font-size: 22px;
}
.team-list-style2 .team-member__job {
color: #FDB900;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
padding: 3px;
}
.team-list-style2 .team-member__socialmedia {
display: flex;
flex-direction: row;
justify-content: center;
padding-bottom: 20px;
margin-top: -10px;
}
.team-list-style2 .team-member__socialmedia ul {
margin: 0;
}
.team-list-style2 .team-member__socialmedia ul li {
display: inline;
padding: 0 6px;
}
.team-list-style2 .team-member__socialmedia ul li a {
color: #BDBAC2;
font-weight: 400;
padding: 3px 8px;
background: #F5F5F5;
border-radius: 50%;
font-size: 17px;
min-width: 34px;
display: inline-block;
text-align: center;
min-height: 34px;
}
.team-list-style2 .team-member__socialmedia .fa-twitter {
color: #000;
}
.wpb-js-composer {  }
.wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title {
margin-bottom: 20px;
border-radius: 30px 30px 0 30px !important;
box-shadow: 0 3px 14px rgba(64, 124, 191, 0.2);
border: none;
}
.wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
transition: background 0.5s;
background: #fff;
color: #666;
font-weight: 300;
padding: 20px 35px 20px 45px;
}
.wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a i:before {
border-color: #666;
}
.wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a {
background: var(--primary-color);
color: #fff;
}
.wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a i:after, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:before, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading .vc_tta-panel-title a i:after {
border-color: #fff;
}
.wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body {
background: #fff;
margin: 20px 0;
border-radius: 30px 30px 0 30px !important;
box-shadow: 0 3px 20px rgba(64, 124, 191, 0.2);
padding: 40px 50px 80px 50px;
}
.wpb-js-composer .vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p {
line-height: 1.9;
}
.wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading {
background: transparent;
margin-bottom: 20px;
border: none;
border-bottom: 1px solid var(--primary-color);
}
.wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a {
color: #0d1d4e;
font-weight: 300;
}
.wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-heading a i:before {
border-color: #666;
}
.wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading {
background: transparent;
}
.wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading a, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading a {
color: var(--primary-color);
}
.wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel.vc_active .vc_tta-panel-heading i:before, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel:hover .vc_tta-panel-heading i:before {
border-color: var(--primary-color);
}
.wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body {
background: #fff;
border: none;
margin: 20px 0;
padding: 15px 35px 20px 35px;
}
.wpb-js-composer .vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p, .wpb-js-composer .vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels div.vc_tta-panel .vc_tta-panel-body p {
line-height: 1.9;
}
.social-icons .boxes.small.layout-1 .box-title-1 {
padding: 0 0 5px 90px;
}
.social-icons .boxes.small.layout-1 .box-body {
clear: none;
padding: 0 0 5px 90px;
}
.social-icons .boxes.small.layout-1 .box-icon {
padding: 20px 25px;
width: 80px;
color: #FFF;
}
.facebook .box-icon {
background: #25579e;
}
.twitter .box-icon {
background: #0cbce3;
}
.instagram .box-icon {
background: #a9c511;
}
.youtube .box-icon {
background: #e31b1b;
}
.progress .meter {
background: #DF7292;
}
.newslettre-section {
background-color: #dfe7eb;
background-color: linear-gradient(to left, #dfe7eb 0%, #e7dbdf 100%);
}
.newslettre-form {
margin: 0 auto;
width: 400px;
position: relative;
}
.newslettre-form .wpcf7-form-control.wpcf7-submit.wd-submit-bnt {
background-color: transparent;
background-image: url(//shop.alumetsmetal.com/wp-content/themes/doors/images/pen-icon.png);
background-position: center center;
background-repeat: no-repeat;
height: 43px;
padding: 0 19px;
position: absolute;
right: 0;
text-indent: -999em;
top: 1px;
} .newslettre-section {
margin-bottom: 0 !important;
}
div.wd-item-title {
margin-bottom: 40px !important;
}
.theme-default div.nivoSlider {
box-shadow: none;
}
.theme-default div.nivoSlider .nivo-caption {
display: none !important;
}
.shop-slider-section .wpb_column {
padding: 0;
}
.shop-carousel.owl-carousel {
margin: 0;
}
.shop-carousel.owl-carousel li {
list-style-type: none;
}
.shop-carousel.owl-carousel .shop-slider-text {
padding: 0;
background-color: #FFF;
padding: 124px 50px 0;
height: 469px;
}
.shop-carousel.owl-carousel .shop-slider-text h2 {
font-size: 48px;
}
.shop-carousel.owl-carousel .shop-slider-text p {
width: 67%;
font-size: 13px;
}
.shop-carousel.owl-carousel .shop-slider-text .button.wd-black.large {
margin-top: 45px;
}
.shop-carousel.owl-carousel .owl-dots {
bottom: 33px;
display: inline-block;
position: absolute;
right: 526px;
}
.shop-carousel.owl-carousel .owl-dots .owl-dot {
display: inline-block;
}
.shop-carousel.owl-carousel .owl-dots .owl-dot span {
background-color: #efefef;
display: block;
height: 3px;
margin: 5px 7px;
transition: opacity 200ms ease 0s;
width: 24px;
}
.shop-carousel.owl-carousel .owl-dots .owl-dot.active span, .shop-carousel.owl-carousel .owl-dots .owl-dot:hover span {
background-color: #282828;
}
.shop-carousel.owl-carousel .owl-nav > div {
background-color: transparent;
height: 60px;
top: 41%;
}
.shop-carousel.owl-carousel .owl-nav > div i {
color: #e9e9e7;
font-size: 60px;
}
.shop-carousel.owl-carousel .owl-nav .owl-next {
right: 46px;
}
.shop-carousel.owl-carousel .owl-nav .owl-prev {
left: 46px;
}
.shop-carousel.owl-carousel .owl-nav > div:hover {
background-color: transparent;
}
.wpb_revslider_element #rev_slider_2_1_wrapper .tparrows {
right: auto;
left: 70px !important;
}
.wpb_revslider_element #rev_slider_2_1_wrapper .hermes .tp-bullet:before {
font-weight: 500;
font-family: "Roboto";
}
#lang_sel_list {
display: inline-block;
font-size: 11px;
height: auto !important;
line-height: 12px;
margin: 0;
vertical-align: middle;
text-align: left;
}
#lang_sel_list ul li {
display: inline-block;
float: none;
list-style: none;
padding: 3px 1px 8px !important;
position: relative;
position: relative;
vertical-align: middle;
}
#lang_sel_list img.iclflag {
margin: 0 5px 0 0;
top: -1px;
}
#lang_sel_list a.lang_sel_sel, #lang_sel_list > ul > li a {
background: none !important;
color: #888;
padding: 4px 8px;
}
#lang_sel_list a.lang_sel_sel:hover, #lang_sel_list a:hover {
color: #555;
}
#lang_sel_list a.lang_sel_sel {
padding: 4px 26px 4px 12px;
position: relative;
font-size: 13px;
color: #444;
font-family: 'Roboto';
font-weight: 500;
}
#lang_sel_list a.lang_sel_sel:after {
border-radius: 14px;
content: "\f0dd";
font-family: "FontAwesome";
font-size: 13px;
height: 14px;
line-height: 16px;
margin: -10px 0 0;
position: absolute;
right: 4px;
text-align: center;
text-shadow: none;
top: 50%;
width: 14px;
}
#lang_sel_list ul li:hover ul {
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
-webkit-transform: translateX(0);
opacity: 1;
transform: translateX(0);
visibility: visible;
}
#lang_sel_list ul {
margin: 0;
}
#lang_sel_list ul ul {
-moz-transform: translateX(-20px);
-moz-transition: all 0.3s ease-in;
-ms-transform: translateX(-20px);
-ms-transition: all 0.3s ease-in;
-o-transform: translateX(-20px);
-o-transition: all 0.3s ease-in;
-webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.17); -webkit-transform: translateX(-20px);
-webkit-transition: all 0.3s ease-in;
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.17);
left: 0;
margin: 0px;
opacity: 0;
position: absolute;
top: 111%;
transform: translateX(-20px);
transition: all 0.3s ease-in;
visibility: hidden;
width: 100%;
z-index: 9999;
}
#lang_sel_list ul ul li:first-child {
border-top: none;
}
#lang_sel_list ul ul li {
background: #fff;
border-top: 1px solid #f2f2f2;
display: block;
float: none;
font-size: 12px;
line-height: 15px;
padding: 0px !important;
text-shadow: none;
}
#lang_sel_list ul ul li a {
-moz-transition: all 0.3s ease-in;
-ms-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
-webkit-transition: all 0.3s ease-in;
color: #686868 !important;
display: block;
padding: 8px 10px 8px 15px;
transition: all 0.3s ease-in;
}
#lang_sel_list ul ul li a:hover {
background: rgba(0, 0, 0, 0.2) !important;
color: #fff !important;
}
.icl_lang_sel_translated {
display: none;
}
.wpb-js-composer .vc_tta.vc_general .vc_tta-panels-container .vc_tta-panels {
border: none !important;
background: transparent !important;
}
.wpb-js-composer .vc_tta-tabs .vc_tta-tabs-list {
overflow: visible !important;
padding: 20px 15px 15px 20px !important;
}
.wpb-js-composer {  }
.wpb-js-composer div.vc_tta-style-modern.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab > a {
background: #fff;
border-radius: 30px 30px 0 30px !important;
margin-right: 20px;
border: none;
box-shadow: 0 4px 25px rgba(64, 124, 191, 0.15);
padding: 15px 40px 10px 40px;
}
.wpb-js-composer div.vc_tta-style-modern.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab > a:hover,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab > a:hover {
box-shadow: 0 3px 14px rgba(64, 124, 191, 0.2);
background: #fff;
color: var(--secondary-color);
}
.wpb-js-composer div.vc_tta-style-modern.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab.vc_active > a,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab.vc_active > a {
background: var(--primary-color);
color: #fff;
border-radius: 30px 30px 0 30px !important;
margin-right: 20px;
border: none;
}
.wpb-js-composer div.vc_tta-style-modern.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern .vc_tta-color-pink .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-black .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-green .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-modern.vc_tta-color-white .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat .vc_tta-color-pink .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-black .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-green .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panel-body,
.wpb-js-composer div.vc_tta-style-flat.vc_tta-color-white .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline .vc_tta-color-pink .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-black .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-green .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-outline.vc_tta-color-white .vc_tta-panels-container .vc_tta-panel-body {
background: #fff;
margin: 20px 0;
border-radius: 30px 30px 0 30px !important;
box-shadow: 0 3px 30px rgba(64, 124, 191, 0.1);
padding: 40px 50px 80px 50px;
}
.wpb-js-composer div.vc_tta-style-classic.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab > a {
background: #fff;
margin-right: 20px;
border: none;
border-bottom: 1px solid var(--primary-color);
}
.wpb-js-composer div.vc_tta-style-classic.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab > a:hover, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab > a:hover {
background: #fff;
color: var(--primary-color);
}
.wpb-js-composer div.vc_tta-style-classic.vc_tta-color-grey .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-blue .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic .vc_tta-color-pink .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-violet .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-chino .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-black .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-orange .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-sky .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-green .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-purple .vc_tta-tabs-container .vc_tta-tab.vc_active > a, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-white .vc_tta-tabs-container .vc_tta-tab.vc_active > a {
color: var(--primary-color);
margin-right: 20px;
border: none;
border-bottom: 1px solid var(--primary-color) !important;
}
.wpb-js-composer div.vc_tta-style-classic.vc_tta-color-grey .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-blue .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-turquoise .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic .vc_tta-color-pink .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-violet .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-peacoc .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-chino .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-mulled-wine .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-vista-blue .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-black .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-orange .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-sky .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-green .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-juicy-pink .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-sandy-brown .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-purple .vc_tta-panels-container .vc_tta-panel-body, .wpb-js-composer div.vc_tta-style-classic.vc_tta-color-white .vc_tta-panels-container .vc_tta-panel-body {
background: #fff;
border: none;
margin: 20px 0;
padding: 0px 40px 40px 35px;
}
p {
line-height: 1.55;
font-size: 15px;
}
div.wpb_wrapper ul li.ui-state-default {
padding: 5px 10px;
}
.ui-tabs-active {
background: none repeat scroll 0 0 #fff;
border-top: 2px solid #d0029a;
}
.ui-accordion-header-active {
background: none repeat scroll 0 0 #fff;
border-top: 2px solid #d0029a;
border-bottom: 1px solid #EFEFEF;
}
div.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
padding: 5px 0;
}
div.collapsed-title {
margin-bottom: 40px !important;
}
.collapsed-title,
.collapsed-title h2 {
font-size: 1.95em;
font-weight: bolder;
line-height: 0.95em;
margin: 0;
}
.collapsed-title h2:nth-child(2) {
color: #f55a60;
}
blockquote cite {
font-style: normal;
font-weight: bold;
padding-left: 25px;
}
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea {
box-shadow: none;
border-radius: 30px;
padding: 10px 0 10px 20px;
background: rgba(255, 255, 255, 0.79);
height: 3.7em;
}
input.wpcf7-submit {
box-shadow: none;
border-radius: 30px;
padding: 13px 40px 13px 40px;
transition: .5s ease;
}
input.wpcf7-submit:hover {
padding: 13px 50px 13px 50px;
}
label {
padding: 6px 0;
}
label input[type="password"] {
margin-top: 6px;
}
form.post-password-form input[type="submit"] {
border-radius: 15px;
} @font-face {
font-family: "foundation-icons";
src: url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/foundation-icons/foundation-icons.eot);
src: url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/foundation-icons/foundation-icons.eot?#iefix) format("embedded-opentype"), url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/foundation-icons/foundation-icons.woff) format("woff"), url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/foundation-icons/foundation-icons.ttf) format("truetype"), url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/foundation-icons/foundation-icons.svg#fontcustom) format("svg");
font-weight: normal;
font-style: normal;
}
.fi-address-book:before,
.fi-alert:before,
.fi-align-center:before,
.fi-align-justify:before,
.fi-align-left:before,
.fi-align-right:before,
.fi-anchor:before,
.fi-annotate:before,
.fi-archive:before,
.fi-arrow-down:before,
.fi-arrow-left:before,
.fi-arrow-right:before,
.fi-arrow-up:before,
.fi-arrows-compress:before,
.fi-arrows-expand:before,
.fi-arrows-in:before,
.fi-arrows-out:before,
.fi-asl:before,
.fi-asterisk:before,
.fi-at-sign:before,
.fi-background-color:before,
.fi-battery-empty:before,
.fi-battery-full:before,
.fi-battery-half:before,
.fi-bitcoin-circle:before,
.fi-bitcoin:before,
.fi-blind:before,
.fi-bluetooth:before,
.fi-bold:before,
.fi-book-bookmark:before,
.fi-book:before,
.fi-bookmark:before,
.fi-braille:before,
.fi-burst-new:before,
.fi-burst-sale:before,
.fi-burst:before,
.fi-calendar:before,
.fi-camera:before,
.fi-check:before,
.fi-checkbox:before,
.fi-clipboard-notes:before,
.fi-clipboard-pencil:before,
.fi-clipboard:before,
.fi-clock:before,
.fi-closed-caption:before,
.fi-cloud:before,
.fi-comment-minus:before,
.fi-comment-quotes:before,
.fi-comment-video:before,
.fi-comment:before,
.fi-comments:before,
.fi-compass:before,
.fi-contrast:before,
.fi-credit-card:before,
.fi-crop:before,
.fi-crown:before,
.fi-css3:before,
.fi-database:before,
.fi-die-five:before,
.fi-die-four:before,
.fi-die-one:before,
.fi-die-six:before,
.fi-die-three:before,
.fi-die-two:before,
.fi-dislike:before,
.fi-dollar-bill:before,
.fi-dollar:before,
.fi-download:before,
.fi-eject:before,
.fi-elevator:before,
.fi-euro:before,
.fi-eye:before,
.fi-fast-forward:before,
.fi-female-symbol:before,
.fi-female:before,
.fi-filter:before,
.fi-first-aid:before,
.fi-flag:before,
.fi-folder-add:before,
.fi-folder-lock:before,
.fi-folder:before,
.fi-foot:before,
.fi-foundation:before,
.fi-graph-bar:before,
.fi-graph-horizontal:before,
.fi-graph-pie:before,
.fi-graph-trend:before,
.fi-guide-dog:before,
.fi-hearing-aid:before,
.fi-heart:before,
.fi-home:before,
.fi-html5:before,
.fi-indent-less:before,
.fi-indent-more:before,
.fi-info:before,
.fi-italic:before,
.fi-key:before,
.fi-laptop:before,
.fi-layout:before,
.fi-lightbulb:before,
.fi-like:before,
.fi-link:before,
.fi-list-bullet:before,
.fi-list-number:before,
.fi-list-thumbnails:before,
.fi-list:before,
.fi-lock:before,
.fi-loop:before,
.fi-magnifying-glass:before,
.fi-mail:before,
.fi-male-female:before,
.fi-male-symbol:before,
.fi-male:before,
.fi-map:before,
.fi-marker:before,
.fi-megaphone:before,
.fi-microphone:before,
.fi-minus-circle:before,
.fi-minus:before,
.fi-mobile-signal:before,
.fi-mobile:before,
.fi-monitor:before,
.fi-mountains:before,
.fi-music:before,
.fi-next:before,
.fi-no-dogs:before,
.fi-no-smoking:before,
.fi-page-add:before,
.fi-page-copy:before,
.fi-page-csv:before,
.fi-page-delete:before,
.fi-page-doc:before,
.fi-page-edit:before,
.fi-page-export-csv:before,
.fi-page-export-doc:before,
.fi-page-export-pdf:before,
.fi-page-export:before,
.fi-page-filled:before,
.fi-page-multiple:before,
.fi-page-pdf:before,
.fi-page-remove:before,
.fi-page-search:before,
.fi-page:before,
.fi-paint-bucket:before,
.fi-paperclip:before,
.fi-pause:before,
.fi-paw:before,
.fi-paypal:before,
.fi-pencil:before,
.fi-photo:before,
.fi-play-circle:before,
.fi-play-video:before,
.fi-play:before,
.fi-plus:before,
.fi-pound:before,
.fi-power:before,
.fi-previous:before,
.fi-price-tag:before,
.fi-pricetag-multiple:before,
.fi-print:before,
.fi-prohibited:before,
.fi-projection-screen:before,
.fi-puzzle:before,
.fi-quote:before,
.fi-record:before,
.fi-refresh:before,
.fi-results-demographics:before,
.fi-results:before,
.fi-rewind-ten:before,
.fi-rewind:before,
.fi-rss:before,
.fi-safety-cone:before,
.fi-save:before,
.fi-share:before,
.fi-sheriff-badge:before,
.fi-shield:before,
.fi-shopping-bag:before,
.fi-shopping-cart:before,
.fi-shuffle:before,
.fi-skull:before,
.fi-social-500px:before,
.fi-social-adobe:before,
.fi-social-amazon:before,
.fi-social-android:before,
.fi-social-apple:before,
.fi-social-behance:before,
.fi-social-bing:before,
.fi-social-blogger:before,
.fi-social-delicious:before,
.fi-social-designer-news:before,
.fi-social-deviant-art:before,
.fi-social-digg:before,
.fi-social-dribbble:before,
.fi-social-drive:before,
.fi-social-dropbox:before,
.fi-social-evernote:before,
.fi-social-facebook:before,
.fi-social-flickr:before,
.fi-social-forrst:before,
.fi-social-foursquare:before,
.fi-social-game-center:before,
.fi-social-github:before,
.fi-social-google-plus:before,
.fi-social-hacker-news:before,
.fi-social-hi5:before,
.fi-social-instagram:before,
.fi-social-joomla:before,
.fi-social-lastfm:before,
.fi-social-linkedin:before,
.fi-social-medium:before,
.fi-social-myspace:before,
.fi-social-orkut:before,
.fi-social-path:before,
.fi-social-picasa:before,
.fi-social-pinterest:before,
.fi-social-rdio:before,
.fi-social-reddit:before,
.fi-social-skillshare:before,
.fi-social-skype:before,
.fi-social-smashing-mag:before,
.fi-social-snapchat:before,
.fi-social-spotify:before,
.fi-social-squidoo:before,
.fi-social-stack-overflow:before,
.fi-social-steam:before,
.fi-social-stumbleupon:before,
.fi-social-treehouse:before,
.fi-social-tumblr:before,
.fi-social-twitter:before,
.fi-social-vimeo:before,
.fi-social-windows:before,
.fi-social-xbox:before,
.fi-social-yahoo:before,
.fi-social-yelp:before,
.fi-social-youtube:before,
.fi-social-zerply:before,
.fi-social-zurb:before,
.fi-sound:before,
.fi-star:before,
.fi-stop:before,
.fi-strikethrough:before,
.fi-subscript:before,
.fi-superscript:before,
.fi-tablet-landscape:before,
.fi-tablet-portrait:before,
.fi-target-two:before,
.fi-target:before,
.fi-telephone-accessible:before,
.fi-telephone:before,
.fi-text-color:before,
.fi-thumbnails:before,
.fi-ticket:before,
.fi-torso-business:before,
.fi-torso-female:before,
.fi-torso:before,
.fi-torsos-all-female:before,
.fi-torsos-all:before,
.fi-torsos-female-male:before,
.fi-torsos-male-female:before,
.fi-torsos:before,
.fi-trash:before,
.fi-trees:before,
.fi-trophy:before,
.fi-underline:before,
.fi-universal-access:before,
.fi-unlink:before,
.fi-unlock:before,
.fi-upload-cloud:before,
.fi-upload:before,
.fi-usb:before,
.fi-video:before,
.fi-volume-none:before,
.fi-volume-strike:before,
.fi-volume:before,
.fi-web:before,
.fi-wheelchair:before,
.fi-widget:before,
.fi-wrench:before,
.fi-x-circle:before,
.fi-x:before,
.fi-yen:before,
.fi-zoom-in:before,
.fi-zoom-out:before {
font-family: "foundation-icons";
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
display: inline-block;
text-decoration: inherit;
}
.fi-address-book:before {
content: "\f100";
}
.fi-alert:before {
content: "\f101";
}
.fi-align-center:before {
content: "\f102";
}
.fi-align-justify:before {
content: "\f103";
}
.fi-align-left:before {
content: "\f104";
}
.fi-align-right:before {
content: "\f105";
}
.fi-anchor:before {
content: "\f106";
}
.fi-annotate:before {
content: "\f107";
}
.fi-archive:before {
content: "\f108";
}
.fi-arrow-down:before {
content: "\f109";
}
.fi-arrow-left:before {
content: "\f10a";
}
.fi-arrow-right:before {
content: "\f10b";
}
.fi-arrow-up:before {
content: "\f10c";
}
.fi-arrows-compress:before {
content: "\f10d";
}
.fi-arrows-expand:before {
content: "\f10e";
}
.fi-arrows-in:before {
content: "\f10f";
}
.fi-arrows-out:before {
content: "\f110";
}
.fi-asl:before {
content: "\f111";
}
.fi-asterisk:before {
content: "\f112";
}
.fi-at-sign:before {
content: "\f113";
}
.fi-background-color:before {
content: "\f114";
}
.fi-battery-empty:before {
content: "\f115";
}
.fi-battery-full:before {
content: "\f116";
}
.fi-battery-half:before {
content: "\f117";
}
.fi-bitcoin-circle:before {
content: "\f118";
}
.fi-bitcoin:before {
content: "\f119";
}
.fi-blind:before {
content: "\f11a";
}
.fi-bluetooth:before {
content: "\f11b";
}
.fi-bold:before {
content: "\f11c";
}
.fi-book-bookmark:before {
content: "\f11d";
}
.fi-book:before {
content: "\f11e";
}
.fi-bookmark:before {
content: "\f11f";
}
.fi-braille:before {
content: "\f120";
}
.fi-burst-new:before {
content: "\f121";
}
.fi-burst-sale:before {
content: "\f122";
}
.fi-burst:before {
content: "\f123";
}
.fi-calendar:before {
content: "\f124";
}
.fi-camera:before {
content: "\f125";
}
.fi-check:before {
content: "\f126";
}
.fi-checkbox:before {
content: "\f127";
}
.fi-clipboard-notes:before {
content: "\f128";
}
.fi-clipboard-pencil:before {
content: "\f129";
}
.fi-clipboard:before {
content: "\f12a";
}
.fi-clock:before {
content: "\f12b";
}
.fi-closed-caption:before {
content: "\f12c";
}
.fi-cloud:before {
content: "\f12d";
}
.fi-comment-minus:before {
content: "\f12e";
}
.fi-comment-quotes:before {
content: "\f12f";
}
.fi-comment-video:before {
content: "\f130";
}
.fi-comment:before {
content: "\f131";
}
.fi-comments:before {
content: "\f132";
}
.fi-compass:before {
content: "\f133";
}
.fi-contrast:before {
content: "\f134";
}
.fi-credit-card:before {
content: "\f135";
}
.fi-crop:before {
content: "\f136";
}
.fi-crown:before {
content: "\f137";
}
.fi-css3:before {
content: "\f138";
}
.fi-database:before {
content: "\f139";
}
.fi-die-five:before {
content: "\f13a";
}
.fi-die-four:before {
content: "\f13b";
}
.fi-die-one:before {
content: "\f13c";
}
.fi-die-six:before {
content: "\f13d";
}
.fi-die-three:before {
content: "\f13e";
}
.fi-die-two:before {
content: "\f13f";
}
.fi-dislike:before {
content: "\f140";
}
.fi-dollar-bill:before {
content: "\f141";
}
.fi-dollar:before {
content: "\f142";
}
.fi-download:before {
content: "\f143";
}
.fi-eject:before {
content: "\f144";
}
.fi-elevator:before {
content: "\f145";
}
.fi-euro:before {
content: "\f146";
}
.fi-eye:before {
content: "\f147";
}
.fi-fast-forward:before {
content: "\f148";
}
.fi-female-symbol:before {
content: "\f149";
}
.fi-female:before {
content: "\f14a";
}
.fi-filter:before {
content: "\f14b";
}
.fi-first-aid:before {
content: "\f14c";
}
.fi-flag:before {
content: "\f14d";
}
.fi-folder-add:before {
content: "\f14e";
}
.fi-folder-lock:before {
content: "\f14f";
}
.fi-folder:before {
content: "\f150";
}
.fi-foot:before {
content: "\f151";
}
.fi-foundation:before {
content: "\f152";
}
.fi-graph-bar:before {
content: "\f153";
}
.fi-graph-horizontal:before {
content: "\f154";
}
.fi-graph-pie:before {
content: "\f155";
}
.fi-graph-trend:before {
content: "\f156";
}
.fi-guide-dog:before {
content: "\f157";
}
.fi-hearing-aid:before {
content: "\f158";
}
.fi-heart:before {
content: "\f159";
}
.fi-home:before {
content: "\f15a";
}
.fi-html5:before {
content: "\f15b";
}
.fi-indent-less:before {
content: "\f15c";
}
.fi-indent-more:before {
content: "\f15d";
}
.fi-info:before {
content: "\f15e";
}
.fi-italic:before {
content: "\f15f";
}
.fi-key:before {
content: "\f160";
}
.fi-laptop:before {
content: "\f161";
}
.fi-layout:before {
content: "\f162";
}
.fi-lightbulb:before {
content: "\f163";
}
.fi-like:before {
content: "\f164";
}
.fi-link:before {
content: "\f165";
}
.fi-list-bullet:before {
content: "\f166";
}
.fi-list-number:before {
content: "\f167";
}
.fi-list-thumbnails:before {
content: "\f168";
}
.fi-list:before {
content: "\f169";
}
.fi-lock:before {
content: "\f16a";
}
.fi-loop:before {
content: "\f16b";
}
.fi-magnifying-glass:before {
content: "\f16c";
}
.fi-mail:before {
content: "\f16d";
}
.fi-male-female:before {
content: "\f16e";
}
.fi-male-symbol:before {
content: "\f16f";
}
.fi-male:before {
content: "\f170";
}
.fi-map:before {
content: "\f171";
}
.fi-marker:before {
content: "\f172";
}
.fi-megaphone:before {
content: "\f173";
}
.fi-microphone:before {
content: "\f174";
}
.fi-minus-circle:before {
content: "\f175";
}
.fi-minus:before {
content: "\f176";
}
.fi-mobile-signal:before {
content: "\f177";
}
.fi-mobile:before {
content: "\f178";
}
.fi-monitor:before {
content: "\f179";
}
.fi-mountains:before {
content: "\f17a";
}
.fi-music:before {
content: "\f17b";
}
.fi-next:before {
content: "\f17c";
}
.fi-no-dogs:before {
content: "\f17d";
}
.fi-no-smoking:before {
content: "\f17e";
}
.fi-page-add:before {
content: "\f17f";
}
.fi-page-copy:before {
content: "\f180";
}
.fi-page-csv:before {
content: "\f181";
}
.fi-page-delete:before {
content: "\f182";
}
.fi-page-doc:before {
content: "\f183";
}
.fi-page-edit:before {
content: "\f184";
}
.fi-page-export-csv:before {
content: "\f185";
}
.fi-page-export-doc:before {
content: "\f186";
}
.fi-page-export-pdf:before {
content: "\f187";
}
.fi-page-export:before {
content: "\f188";
}
.fi-page-filled:before {
content: "\f189";
}
.fi-page-multiple:before {
content: "\f18a";
}
.fi-page-pdf:before {
content: "\f18b";
}
.fi-page-remove:before {
content: "\f18c";
}
.fi-page-search:before {
content: "\f18d";
}
.fi-page:before {
content: "\f18e";
}
.fi-paint-bucket:before {
content: "\f18f";
}
.fi-paperclip:before {
content: "\f190";
}
.fi-pause:before {
content: "\f191";
}
.fi-paw:before {
content: "\f192";
}
.fi-paypal:before {
content: "\f193";
}
.fi-pencil:before {
content: "\f194";
}
.fi-photo:before {
content: "\f195";
}
.fi-play-circle:before {
content: "\f196";
}
.fi-play-video:before {
content: "\f197";
}
.fi-play:before {
content: "\f198";
}
.fi-plus:before {
content: "\f199";
}
.fi-pound:before {
content: "\f19a";
}
.fi-power:before {
content: "\f19b";
}
.fi-previous:before {
content: "\f19c";
}
.fi-price-tag:before {
content: "\f19d";
}
.fi-pricetag-multiple:before {
content: "\f19e";
}
.fi-print:before {
content: "\f19f";
}
.fi-prohibited:before {
content: "\f1a0";
}
.fi-projection-screen:before {
content: "\f1a1";
}
.fi-puzzle:before {
content: "\f1a2";
}
.fi-quote:before {
content: "\f1a3";
}
.fi-record:before {
content: "\f1a4";
}
.fi-refresh:before {
content: "\f1a5";
}
.fi-results-demographics:before {
content: "\f1a6";
}
.fi-results:before {
content: "\f1a7";
}
.fi-rewind-ten:before {
content: "\f1a8";
}
.fi-rewind:before {
content: "\f1a9";
}
.fi-rss:before {
content: "\f1aa";
}
.fi-safety-cone:before {
content: "\f1ab";
}
.fi-save:before {
content: "\f1ac";
}
.fi-share:before {
content: "\f1ad";
}
.fi-sheriff-badge:before {
content: "\f1ae";
}
.fi-shield:before {
content: "\f1af";
}
.fi-shopping-bag:before {
content: "\f1b0";
}
.fi-shopping-cart:before {
content: "\f1b1";
}
.fi-shuffle:before {
content: "\f1b2";
}
.fi-skull:before {
content: "\f1b3";
}
.fi-social-500px:before {
content: "\f1b4";
}
.fi-social-adobe:before {
content: "\f1b5";
}
.fi-social-amazon:before {
content: "\f1b6";
}
.fi-social-android:before {
content: "\f1b7";
}
.fi-social-apple:before {
content: "\f1b8";
}
.fi-social-behance:before {
content: "\f1b9";
}
.fi-social-bing:before {
content: "\f1ba";
}
.fi-social-blogger:before {
content: "\f1bb";
}
.fi-social-delicious:before {
content: "\f1bc";
}
.fi-social-designer-news:before {
content: "\f1bd";
}
.fi-social-deviant-art:before {
content: "\f1be";
}
.fi-social-digg:before {
content: "\f1bf";
}
.fi-social-dribbble:before {
content: "\f1c0";
}
.fi-social-drive:before {
content: "\f1c1";
}
.fi-social-dropbox:before {
content: "\f1c2";
}
.fi-social-evernote:before {
content: "\f1c3";
}
.fi-social-facebook:before {
content: "\f1c4";
}
.fi-social-flickr:before {
content: "\f1c5";
}
.fi-social-forrst:before {
content: "\f1c6";
}
.fi-social-foursquare:before {
content: "\f1c7";
}
.fi-social-game-center:before {
content: "\f1c8";
}
.fi-social-github:before {
content: "\f1c9";
}
.fi-social-google-plus:before {
content: "\f1ca";
}
.fi-social-hacker-news:before {
content: "\f1cb";
}
.fi-social-hi5:before {
content: "\f1cc";
}
.fi-social-instagram:before {
content: "\f1cd";
}
.fi-social-joomla:before {
content: "\f1ce";
}
.fi-social-lastfm:before {
content: "\f1cf";
}
.fi-social-linkedin:before {
content: "\f1d0";
}
.fi-social-medium:before {
content: "\f1d1";
}
.fi-social-myspace:before {
content: "\f1d2";
}
.fi-social-orkut:before {
content: "\f1d3";
}
.fi-social-path:before {
content: "\f1d4";
}
.fi-social-picasa:before {
content: "\f1d5";
}
.fi-social-pinterest:before {
content: "\f1d6";
}
.fi-social-rdio:before {
content: "\f1d7";
}
.fi-social-reddit:before {
content: "\f1d8";
}
.fi-social-skillshare:before {
content: "\f1d9";
}
.fi-social-skype:before {
content: "\f1da";
}
.fi-social-smashing-mag:before {
content: "\f1db";
}
.fi-social-snapchat:before {
content: "\f1dc";
}
.fi-social-spotify:before {
content: "\f1dd";
}
.fi-social-squidoo:before {
content: "\f1de";
}
.fi-social-stack-overflow:before {
content: "\f1df";
}
.fi-social-steam:before {
content: "\f1e0";
}
.fi-social-stumbleupon:before {
content: "\f1e1";
}
.fi-social-treehouse:before {
content: "\f1e2";
}
.fi-social-tumblr:before {
content: "\f1e3";
}
.fi-social-twitter:before {
content: "\f1e4";
}
.fi-social-vimeo:before {
content: "\f1e5";
}
.fi-social-windows:before {
content: "\f1e6";
}
.fi-social-xbox:before {
content: "\f1e7";
}
.fi-social-yahoo:before {
content: "\f1e8";
}
.fi-social-yelp:before {
content: "\f1e9";
}
.fi-social-youtube:before {
content: "\f1ea";
}
.fi-social-zerply:before {
content: "\f1eb";
}
.fi-social-zurb:before {
content: "\f1ec";
}
.fi-sound:before {
content: "\f1ed";
}
.fi-star:before {
content: "\f1ee";
}
.fi-stop:before {
content: "\f1ef";
}
.fi-strikethrough:before {
content: "\f1f0";
}
.fi-subscript:before {
content: "\f1f1";
}
.fi-superscript:before {
content: "\f1f2";
}
.fi-tablet-landscape:before {
content: "\f1f3";
}
.fi-tablet-portrait:before {
content: "\f1f4";
}
.fi-target-two:before {
content: "\f1f5";
}
.fi-target:before {
content: "\f1f6";
}
.fi-telephone-accessible:before {
content: "\f1f7";
}
.fi-telephone:before {
content: "\f1f8";
}
.fi-text-color:before {
content: "\f1f9";
}
.fi-thumbnails:before {
content: "\f1fa";
}
.fi-ticket:before {
content: "\f1fb";
}
.fi-torso-business:before {
content: "\f1fc";
}
.fi-torso-female:before {
content: "\f1fd";
}
.fi-torso:before {
content: "\f1fe";
}
.fi-torsos-all-female:before {
content: "\f1ff";
}
.fi-torsos-all:before {
content: "\f200";
}
.fi-torsos-female-male:before {
content: "\f201";
}
.fi-torsos-male-female:before {
content: "\f202";
}
.fi-torsos:before {
content: "\f203";
}
.fi-trash:before {
content: "\f204";
}
.fi-trees:before {
content: "\f205";
}
.fi-trophy:before {
content: "\f206";
}
.fi-underline:before {
content: "\f207";
}
.fi-universal-access:before {
content: "\f208";
}
.fi-unlink:before {
content: "\f209";
}
.fi-unlock:before {
content: "\f20a";
}
.fi-upload-cloud:before {
content: "\f20b";
}
.fi-upload:before {
content: "\f20c";
}
.fi-usb:before {
content: "\f20d";
}
.fi-video:before {
content: "\f20e";
}
.fi-volume-none:before {
content: "\f20f";
}
.fi-volume-strike:before {
content: "\f210";
}
.fi-volume:before {
content: "\f211";
}
.fi-web:before {
content: "\f212";
}
.fi-wheelchair:before {
content: "\f213";
}
.fi-widget:before {
content: "\f214";
}
.fi-wrench:before {
content: "\f215";
}
.fi-x-circle:before {
content: "\f216";
}
.fi-x:before {
content: "\f217";
}
.fi-yen:before {
content: "\f218";
}
.fi-zoom-in:before {
content: "\f219";
}
.fi-zoom-out:before {
content: "\f21a";
}
.blog-info {
min-height: 510px;
width: 11.667%;
margin-right: 2%;
padding: 0;
}
@media print, screen and (max-width: 39.99875em) {
.blog-info {
min-height: 70px;
padding-top: 10px;
width: 100%;
}
}
.blog-info .arrow {
border-style: solid;
border-width: 15px 0 15px 15px;
position: absolute;
right: -50px;
top: 35px;
width: 20px;
}
@media print, screen and (max-width: 39.99875em) {
.blog-info br {
display: none;
}
}
.blog-info .author {
text-align: center;
word-break: break-all;
}
.blog-info .date {
padding: 15px;
margin-top: 100px;
text-align: center;
}
.blog-info .date a:hover {
color: #fff;
}
@media print, screen and (max-width: 39.99875em) {
.blog-info .date {
float: left;
margin: 0 0 0 90px;
padding: 7px 0 0 7px;
width: 130px;
}
}
.blog-info .date .day {
padding-bottom: 10px;
display: block;
}
@media print, screen and (max-width: 39.99875em) {
.blog-info .date .day {
float: left;
}
}
.blog-info .date .year {
display: block;
padding: 2px;
}
@media print, screen and (max-width: 39.99875em) {
.blog-info .author {
float: left;
}
}
.blog-info .author div {
padding-top: 5px;
}
.blog-info .comment-count {
margin-top: 100px;
}
@media print, screen and (max-width: 39.99875em) {
.blog-info .comment-count {
float: right;
margin: 0;
}
}
.blog-info .comment-count div {
padding-bottom: 6px;
}
.blog-info {
min-height: 320px;
}
.blog-info .date, .blog-info .comment-count {
margin-top: 20px;
}
.has-post-thumbnail .blog-info {
min-height: 510px;
}
.has-post-thumbnail .blog-info .date, .has-post-thumbnail .blog-info .comment-count {
margin-top: 100px;
}
.blog-posts {
padding-top: 15px;
width: 85.333%;
margin-right: 1%;
}
@media print, screen and (max-width: 39.99875em) {
.blog-posts {
width: 100%;
}
}
.blog-posts article > div {
position: relative;
}
.blog-posts .post-info {
margin-bottom: 20px;
}
.blog-posts .fa-image {
font-size: 3em;
right: 10px;
position: absolute;
top: 10px;
z-index: 2;
}
.blog-posts .read-more {
margin-top: 20px;
}
.blog-posts .read-more a:hover {
color: #fff;
}
.post-author, .post-categories {
margin-left: 15px;
}
.blog-posts .body {
line-height: 1.6em;
margin-top: 10px;
}
#respond, #comments {
margin-top: 80px;
}
.blog-posts .body.field {
margin-top: 15px;
}
.page h1 {
font-size: 50px;
}
.page .wp-block-quote.is-large cite {
text-align: left;
font-size: 11px;
}
.single .blog-posts .body .wp-block-cover__inner-container p {
padding: 0 30px;
}
.single .blog-posts .body .wp-block-pullquote.alignleft p,
.single .blog-posts .body .wp-block-pullquote .alignright p {
font-size: 20px;
}
.single .blog-posts .body .has-large-font-size,
.single .blog-posts .body ul {
font-size: 16px;
}
.single .blog-posts .body h1, .single .blog-posts .body h2, .single .blog-posts .body h3, .single .blog-posts .body h4, .single .blog-posts .body h5, .single .blog-posts .body h6 {
line-height: 1.4;
margin: 40px 0 10px;
}
.single .blog-posts .body ul {
margin-left: 1.3em;
padding-left: 1.3em;
}
.single .blog-posts .body .wp-block-gallery {
margin-left: 0;
padding-left: 0;
}
.single .blog-posts .body .wp-block-separator {
border: none;
border-bottom: 2px solid #8f98a1;
margin: 1.65em auto;
}
.single .blog-posts .body .wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 100%;
}
.single .blog-posts .body .wp-block-quote:not(.is-large):not(.is-style-large) {
border-left: 1px solid #ddd;
padding-left: 1em;
color: red;
}
.single .blog-posts .body .wp-block-pullquote {
border-bottom: 4px solid #555d66;
border-top: 4px solid #555d66;
color: #40464d;
}
.single .blog-posts .body .wp-block-pullquote blockquote {
border: none;
padding: 0;
}
.single .blog-posts .body .wp-block-pullquote p {
font-size: 28px;
}
.single .blog-posts .body .wp-block-pullquote cite {
font-weight: 700;
font-family: "lato";
font-style: normal;
font-size: 11px;
text-transform: capitalize;
color: #6f6f6f;
padding: 0;
}
.single .blog-posts .body .wp-block-pullquote cite:before {
content: "\2014 \0020";
}
code {
background: none;
border: none;
}
.wd-pagination {
padding: 20px;
text-align: center;
}
.simple-blog .wd-carousel-container {
overflow: hidden;
}
.blog-post .sticky {
background: rgba(238, 238, 238, 0.49);
border-top: 2px solid;
margin-bottom: 60px;
padding: 20px 10px 40px;
position: static;
}
.blog-post .sticky .blog-info {
border-left: 5px solid #83c77a;
}
.page-links {
text-align: center;
margin: 20px 0;
}
.blog .blog-post {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
@media print, screen and (min-width: 40em) {
.blog .large-up-2 > .column, .blog .large-up-2 > .columns {
width: calc(100%/2 - 30px);
padding: 0;
margin-bottom: 30px;
}
.blog .large-up-3 > .column, .blog .large-up-3 > .columns {
width: calc(100%/3 - 30px);
padding: 0;
margin-bottom: 30px;
}
.blog .large-up-4 > .column, .blog .large-up-4 > .columns {
width: calc(100%/4 - 30px);
padding: 0;
margin-bottom: 30px;
}
}
.blog .type-post:hover .read-more {
visibility: visible;
opacity: 1;
transform: translateY(0);
}
.blog .post-title {
font-size: 25px;
font-weight: bold;
padding-right: 60px;
line-height: 1.3;
}
.blog .post-title a {
color: var(--headings-color);
}
.blog .has-post-thumbnail .post-title {
padding-right: 0;
}
.blog .post-thmbnail {
margin-bottom: 20px;
position: relative;
}
.blog .post-thmbnail .date {
background: var(--primary-color);
bottom: 0;
color: #fff;
padding: 10px 10px;
position: absolute;
right: 0;
}
.blog .post-info {
margin-bottom: 10px;
margin-right: 10px;
color: #666;
font-size: 14px;
opacity: .8;
}
.blog .post-info > ul {
margin-left: 0;
}
.blog .post-info > ul:before, .blog .post-info > ul:after {
content: "|";
margin: 0 10px;
}
.blog .body {
color: #666;
}
.blog .read-more {
color: #999999;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
visibility: hidden;
opacity: 0;
transform: translateY(20px);
transition: all .3s;
}
.blog .read-more i {
margin-left: 10px;
}
.blog .format-quote {
background: var(--primary-color);
padding: 45px 10px 20px;
}
.blog .format-quote p, .blog .format-quote h2 {
color: #fff;
}
.blog-post .post_format-post-format-link {
padding: 30px 10px;
background: var(--primary-color);
text-align: center;
}
.blog-post .post_format-post-format-link a {
color: #fff;
}
.blog-post .post_format-post-format-link .link i {
color: #fff;
font-size: 20px;
margin-bottom: 20px;
margin-top: 10px;
}
.single-post .wp-block-gallery, .blog-posts .page .wp-block-gallery {
margin-left: 0;
padding-left: 0;
}
.single-post ul.wp-block-latest-posts, .blog-posts .page ul.wp-block-latest-posts {
list-style-type: circle;
}
.single-post .wp-block-quote cite, .blog-posts .page .wp-block-quote cite {
font-size: 11px;
text-align: left;
}
.doors_multi_post_top_image {
border-top: none;
border-bottom: 3px solid var(--primary-color);
position: relative;
}
.doors_multi_post_top_image:before {
content: "";
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-color: var(--primary-color);
opacity: 0.04;
z-index: -1;
}
.doors_multi_post_top_image .doors_multi_post_top_image_info {
padding-left: 28px;
padding-right: 15px;
}
.doors_multi_post_top_image .doors_multi_post_top_image_info h2 {
padding: 24px 0px 0;
line-height: 1;
font-size: 25px;
}
.doors_multi_post_top_image .doors_multi_post_top_image_info h2 a {
color: var(--headings-color);
font-size: inherit;
font-weight: 700;
}
.doors_multi_post_top_image .doors_multi_post_top_image_info span {
color: #636D80;
}
.doors_multi_post_top_image .doors_multi_post_top_image_info ul li a {
color: #636D80;
}
.doors_multi_post_top_image .doors_multi_post_top_image_info p {
max-width: 322px;
color: #636363;
font-size: 16px !important;
line-height: 24px !important;
padding-top: 12px;
}
.doors_multi_post_top_image .doors_multi_post_top_image_info .wd-redmore {
visibility: hidden;
} .latest-posts li {
margin-bottom: 10px;
border-bottom: 1px dashed rgba(237, 237, 237, 0.2);
padding-bottom: 10px;
}
.latest-posts li:last-child {
border: none;
}
.latest-posts .blog-image {
float: left;
width: 30%;
margin-top: 5px;
}
.latest-posts .recent-post-details.has-image {
float: right;
width: 60%;
}
.latest-posts .recent-post-details .blog-title {
margin-bottom: 0;
line-height: 1px;
}
.latest-posts .recent-post-details .blog-title a {
font-size: 16px;
}
.latest-posts .recent-post-details .subheader {
margin: 0;
}
div.wpb_row {
margin: 0;
}
.vc_responsive .wpb_row .full_section_container .vc_span12,
.vc_responsive .wpb_row .full_section_container .vc_col-sm-12 {
padding: 0;
}
.portfolio [class*="block-grid-"] > li {
padding: 0;
}
.portfolio .carousel-details h3 a {
color: #f55a60;
font-weight: 500;
}
.portfolio .wd-carousel-container {
background: #000;
}
.portfolio .wd-carousel-container:hover > img {
opacity: 0.6;
}
.single-portfolio .main {
padding-top: 40px;
padding-bottom: 40px;
}
.portfolio-grid li.wd-carousel-container:after {
content: "";
display: block;
width: 100%;
height: 100%;
background: transparentize var(--primary-color), 0.7;
top: 0;
position: absolute;
opacity: 0;
transition: .4s ease;
}
.portfolio-grid li.wd-carousel-container:hover:after {
opacity: 1;
}
.portfolio-grid .wd-carousel-container .info,
.portfolio-grid .wd-carousel-container .carousel-icon {
z-index: 2;
}
.vc_gitem-animate-slideInRight div.vc_gitem-zone-b {
transition: all 0.4s cubic-bezier(0.86, 0, 0.07, 1) 0s;
}
.vc_gitem-row-position-middle.vc_gitem_row {
height: 100%;
}
.vc_gitem-row-position-middle.vc_gitem_row div.vc_gitem-col {
width: 100%;
height: 100%;
opacity: .8;
background: var(--primary-color) !important;
}
.single-portfolio .flexslider {
margin-top: 11px;
}
.wd-hero-image {
height: 800px;
width: 100%;
position: relative;
text-align: center;
color: #FFF;
}
.wd-hero-image .wd-overlay {
background-color: rgba(38, 51, 60, 0.95);
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.27) 20%, rgba(10, 10, 10, 0.21) 30%, rgba(6, 6, 6, 0.3) 100%);
background-color: transparent;
z-index: 1;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.wd-hero-image .wd-image {
background-size: cover;
position: absolute;
width: 100%;
height: 100%;
}
.wd-hero-image .wd-text-wrapper {
position: absolute;
width: 100%;
bottom: 25%;
right: 0;
left: 0;
margin: 0 auto;
max-width: 50rem;
text-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.2);
z-index: 2;
}
.wd-hero-image .hero-title {
font-family: "Lato", "Open Sans", "Roboto", sans-serif;
line-height: 1.3;
font-size: 3.75rem;
font-weight: 300;
margin: 0 0 1rem;
}
.wd-hero-image .hero-subtitle {
font-family: "Roboto", sans-serif;
font-size: 1.5em;
font-weight: 300;
margin: 1rem 0px 3.75rem;
line-height: 1.3;
opacity: .85;
}
.wd-hero-image h1, .wd-hero-image h2, .wd-hero-image h3, .wd-hero-image h4, .wd-hero-image h5, .wd-hero-image h6 {
color: #FFF;
}
.wd-heading hr {
display: inline-block;
border-top: none;
border-right: none;
border-left: none;
border-bottom: 2px solid var(--primary-color);
}
.wd-heading h2 span, .wd-heading h3 span, .wd-heading h4 span, .wd-heading h5 span, .wd-heading h6 span {
display: inline-block;
position: relative;
z-index: 1;
}
.wd-heading h2 span:after, .wd-heading h3 span:after, .wd-heading h4 span:after, .wd-heading h5 span:after, .wd-heading h6 span:after {
content: '';
display: block;
background-color: #ffdd01;
height: 13px;
width: 100%;
position: absolute;
bottom: 7px;
z-index: -1;
}
.wd-heading h2 span br, .wd-heading h3 span br, .wd-heading h4 span br, .wd-heading h5 span br, .wd-heading h6 span br {
line-height: 0;
}
@media print, screen and (min-width: 64em) {
.wd-heading h2, .wd-heading h3, .wd-heading h4, .wd-heading h5, .wd-heading h6 {
margin: 17px 0;
}
}
.wd-heading.s-behind-t {
position: relative;
}
.wd-heading.s-behind-t h2 {
z-index: 3;
position: relative;
font-size: 48px;
color: #0b1d4f;
line-height: 54px;
font-weight: 900;
font-family: "Nunito Sans";
text-transform: capitalize;
color: var(--headings-color);
}
@media print, screen and (max-width: 39.99875em) {
.wd-heading.s-behind-t h2 {
font-size: 34px;
padding-left: 12px;
}
html[dir="rtl"] .wd-heading.s-behind-t h2 {
padding-right: 12px;
}
}
.wd-heading.s-behind-t p {
position: absolute;
bottom: -33px;
left: -20px;
z-index: 0;
margin: 0;
font-weight: 900;
font-size: 178px;
width: 100vw;
opacity: 0.05;
color: #313132;
max-width: 900px;
}
@media print, screen and (max-width: 39.99875em) {
.wd-heading.s-behind-t p {
font-size: 100px;
}
}
.wd-heading-box {
width: 200px;
min-height: 175px;
background: #005FFF 0% 0% no-repeat padding-box;
opacity: 1;
position: absolute;
top: calc(71% - 60px);
right: calc(90% - 60px);
}
@media print, screen and (max-width: 39.99875em) {
.wd-heading-box {
right: auto;
}
}
.wd-heading-box h2 {
font-size: 22px;
text-align: center;
letter-spacing: 0;
color: #FFFFFF;
font-family: Roboto;
position: absolute;
top: 35px;
left: 34px;
width: 139px;
height: 27px;
font-weight: lighter;
}
.wd-heading-box h2 span {
font-size: 26px;
font-weight: bold;
line-height: 39px;
background: none;
}
.wd-heading-box h2 span:after {
background: unset;
}
.box-bleue .wd-btn-wrap .wd-btn {
background: #ebebeb;
position: relative;
bottom: 160px;
right: 30px;
}
@media print, screen and (max-width: 39.99875em) {
.box-bleue .wd-btn-wrap .wd-btn {
bottom: 140px;
right: 80px;
}
}
.wd-heading-box2 {
width: 622px;
height: 484px;
background: #003287 0% 0% no-repeat padding-box;
opacity: 1;
}
.wd-heading-box2.s-behind-t p {
top: 9%;
left: 17%;
font-size: 80px !important;
}
.wd-heading-box2 h2 {
color: #fff !important;
position: relative;
left: calc(36% - 100px);
top: calc(40% - 100px);
max-width: 66%;
height: 128px;
z-index: 99;
font-size: 48px;
}
html[dir="rtl"] .wd-heading-box2 h2 {
right: calc(36% - 100px);
left: unset;
}
@media print, screen and (max-width: 39.99875em) {
.wd-heading-box2 h2 {
left: calc(25% - 134px);
max-width: 48%;
}
html[dir="rtl"] .wd-heading-box2 h2 {
right: calc(25% - 134px);
left: unset;
}
}
.wd-heading-box2 p {
text-align: left;
color: #FFFFFFE6;
font-size: 16px;
max-width: 413px;
left: calc(36% - 100px);
top: calc(35% - 100px);
position: relative;
}
.box2-p p {
position: absolute;
top: calc(51% - 20px);
min-width: 114%;
padding-left: 125px;
}
html[dir="rtl"] .box2-p p {
padding-right: 125px;
padding-left: unset;
}
@media print, screen and (max-width: 39.99875em) {
.box2-p p {
min-width: unset;
padding-left: 25px;
}
html[dir="rtl"] .box2-p p {
padding-right: 25px;
padding-left: 15px;
}
}
.btn-box {
background: #FFFFFF 0% 0% no-repeat padding-box;
border: 1px solid #FFFFFF;
position: absolute;
left: calc(56% - 100px);
top: calc(69% - 20px);
} .wd-testimonail {
margin: 0;
}
.wd-testimonail blockquote {
border: none;
color: inherit;
text-align: center;
}
@media print, screen and (max-width: 39.99875em) {
.wd-testimonail blockquote {
margin: 0 !important;
}
}
.wd-testimonail blockquote img {
border-radius: 0;
margin: 40px 0;
height: 100px;
width: 100px;
margin-bottom: 14px;
border-radius: 50%;
}
.wd-testimonail blockquote cite {
text-align: center;
padding-left: 0;
font-size: 16px;
color: var(--primary-color);
font-weight: 600;
}
.wd-testimonail blockquote .job-title {
color: #000000;
font-size: 14px;
text-align: center;
}
.wd-testimonail .testimonial-text {
margin-top: 15px;
font-style: inherit;
font-size: inherit;
color: inherit;
line-height: inherit;
font-family: inherit;
text-align: inherit;
font-style: inherit;
text-decoration: inherit;
text-transform: inherit;
position: relative;
padding: 0 87px;
}
@media print, screen and (max-width: 39.99875em) {
.wd-testimonail .testimonial-text {
padding: 0 !important;
}
}
.wd-testimonail .testimonial-text:before {
content: "\f10d";
font-family: "FontAwesome";
color: rgba(255, 255, 255, 0.4);
font-size: 18px;
left: 0;
position: absolute;
top: -20px;
}
.wd-testimonail .testimonial-text:after {
content: "\f10e";
font-family: "FontAwesome";
color: rgba(255, 255, 255, 0.4);
font-size: 18px;
position: absolute;
right: 0;
}
.wd-testimonail .quote {
display: none;
}
.wd-testimonail.carousel-s2 {
background: #2061D1;
border-radius: 15px;
position: relative;
}
.wd-testimonail.carousel-s2 .testimonial-text::before {
left: -40px;
top: -40px;
}
.wd-testimonail.carousel-s2 .testimonial-text::after {
right: -40px;
bottom: -40px;
}
.wd-testimonail.carousel-s2 .owl-controls .owl-nav {
width: 100px !important;
left: unset;
top: unset;
position: absolute;
bottom: 40px;
right: 0;
}
.wd-testimonail.carousel-s2 .owl-controls .owl-nav > div {
background: unset;
}
.wd-testimonail.carousel-s2 .owl-controls .owl-nav > div i {
opacity: 1;
}
.wd-testimonail.carousel-s2 .owl-controls .owl-nav .owl-prev i::before {
content: "Prev";
color: #fff;
font-weight: 700;
font-family: Lato;
text-transform: uppercase;
font-size: 15px;
letter-spacing: 1px;
}
.wd-testimonail.carousel-s2 .owl-controls .owl-nav .owl-next i::before {
content: "Next";
color: #fff;
font-weight: 700;
font-family: Lato;
text-transform: uppercase;
font-size: 15px;
letter-spacing: 1px;
}
.carousel-s2 .owl-thumb-navigation .owl-thumbs .owl-thumb-item {
display: inline-block;
list-style-type: none;
margin: 0 16px;
position: absolute;
left: 0;
top: 0;
width: 100px;
z-index: 0;
}
.carousel-s2 .owl-thumb-navigation .owl-thumbs .owl-thumb-item.active {
z-index: 9;
}
.owl-carousel.testimonial-slider .testimonial-text-container {
margin-top: 180px;
}
.owl-carousel.testimonial-slider .testimonial-text-container .testimonial-name h1,
.owl-carousel.testimonial-slider .testimonial-text-container .testimonial-name h2,
.owl-carousel.testimonial-slider .testimonial-text-container .testimonial-name h3,
.owl-carousel.testimonial-slider .testimonial-text-container .testimonial-name h4,
.owl-carousel.testimonial-slider .testimonial-text-container .testimonial-name h5,
.owl-carousel.testimonial-slider .testimonial-text-container .testimonial-name h6 {
display: inline-block;
}
.owl-carousel.testimonial-slider .testimonial-text-container .testimonial-name:after {
content: " - ";
padding: 6px;
}
.owl-carousel.testimonial-slider .testimonial-text-container p {
font-style: inherit;
font-size: inherit;
color: inherit;
line-height: inherit;
font-family: inherit;
text-align: inherit;
font-style: inherit;
text-decoration: inherit;
text-transform: inherit;
}
.owl-carousel.testimonial-slider .owl-nav > div {
height: 33px;
padding: 6px 4px;
width: 33px;
background-color: #999;
}
.owl-carousel.testimonial-slider .owl-nav > div i {
color: #fff;
font-size: 12px;
margin-left: 5px;
display: table;
margin-top: 6px;
}
.owl-carousel.testimonial-slider .owl-nav > div:hover {
background-color: #cb9904;
}
.owl-carousel.testimonial-slider .owl-nav > div.owl-next {
left: 37px;
}
.owl-carousel.testimonial-slider .owl-nav {
left: 51.4%;
position: absolute;
bottom: 156px;
width: 69px;
} .wd-sly-carousel {
overflow: hidden;
}
.wd-sly-carousel ul {
list-style: none;
margin: 0;
padding: 0;
height: 100%;
}
.wd-sly-carousel ul li {
float: left;
width: 430px;
height: 100%;
margin: 10px 35px;
padding: 0;
color: #000;
cursor: -webkit-grab;
cursor: grab;
}
@media print, screen and (max-width: 39.99875em) {
.wd-sly-carousel ul li {
width: 320px;
}
}
.wd-sly-carousel ul li img {
position: absolute;
border-radius: 50%;
top: 14px;
margin-left: 30px;
}
.wd-sly-carousel ul li .sly-text {
background-color: #fff;
margin-top: 50px;
padding: 105px 38px 26px;
}
.wd-sly-carousel ul li:first-child {
margin-right: 0;
}
.wd-sly-carousel ul li:last-child {
margin-left: 0;
}
.wd-sly-carousel-container { }
.wd-sly-carousel-container .scrollbar {
margin: 49px 26% 0 0;
height: 6px;
background: #FFF;
line-height: 0;
}
.wd-sly-carousel-container .scrollbar .handle {
width: 100px;
height: 100%;
background: #cc9900;
cursor: pointer;
}
.wd-sly-carousel-container .scrollbar .handle .mousearea {
position: absolute;
top: -9px;
left: 0;
width: 100%;
height: 20px;
}
.owl-testimonail .owl-controls {
position: relative;
}
.owl-testimonail .owl-controls .owl-nav {
position: absolute;
width: 400px;
left: 50%;
transform: translate(-50%);
top: 6px;
}
.owl-testimonail .owl-controls .owl-nav > div {
position: relative;
top: auto;
display: inline-block;
transition: opacity .6s;
}
.owl-testimonail .owl-controls .owl-nav > div i {
color: #000;
opacity: .3;
}
.owl-testimonail .owl-controls .owl-nav > div.owl-prev, .owl-testimonail .owl-controls .owl-nav > div.owl-next {
opacity: 1;
}
.owl-testimonail h6 {
margin: 0 0 25px 0;
}
a.testimonial-prev, a.testimonial-next {
color: #000;
opacity: .3;
display: inline-table;
font-size: 36px;
padding: 10px;
vertical-align: middle;
transition: opacity .6s;
}
a.testimonial-prev:hover, a.testimonial-next:hover {
opacity: 1;
color: #FFF;
}
.owl-thumb-navigation {
display: inline-block;
position: absolute;
left: 50%;
transform: translate(-50%);
}
.owl-thumb-navigation .owl-thumbs {
position: relative;
z-index: 2;
margin: 0;
text-align: center;
}
.owl-thumb-navigation .owl-thumbs .owl-thumb-item {
display: inline-block;
list-style-type: none;
margin: 0 16px;
}
.owl-thumb-navigation .owl-thumbs .owl-thumb-item img {
border-radius: 50%;
transition: all .2s;
}
.owl-thumb-navigation .owl-thumbs .owl-thumb-item:hover img {
box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.25);
}
.owl-thumb-navigation .owl-thumbs .owl-thumb-item.active img {
box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.25);
} .wd-testimonial.wd-testimonial_style_2 {
padding-bottom: 0;
padding-right: 20px;
position: relative;
}
.wd-testimonial.wd-testimonial_style_2 .slick-slide {
padding: 30px 15px;
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__item {
border: none;
display: flex !important;
transition: all ease-in-out 400ms;
padding: 40px 30px;
margin: 0;
box-shadow: none;
position: relative;
}
@media print, screen and (max-width: 39.99875em) {
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__item {
padding-bottom: 253px;
}
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__item::after {
content: "";
display: block;
background-image: url(//shop.alumetsmetal.com/wp-content/themes/doors/images/quote.svg);
background-repeat: no-repeat;
background-size: 90%;
background-position: 5px;
position: absolute;
right: 20px;
bottom: 30px;
width: 105px;
height: 97px;
}
@media print, screen and (max-width: 39.99875em) {
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__item::after {
right: -5px;
bottom: 0;
z-index: -1;
}
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__item::before {
display: none;
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__thumbnail {
min-width: 195px;
padding-right: 58px;
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__thumbnail img {
max-width: 170px;
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__info {
position: relative;
top: 20px;
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__info .title {
font-size: 20px;
font-weight: 700;
color: #0B1D4F;
margin-bottom: 4px;
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__info .job {
font-size: 16px;
font-weight: 400;
color: var(--primary-color);
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__info .excerpt {
color: var(--text-color);
margin-bottom: 20px;
}
@media print, screen and (min-width: 64em) {
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__info .excerpt {
max-width: 80%;
}
}
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__info .excerpt p {
font-size: 18px;
font-family: 'Open sans';
}
@media print, screen and (max-width: 39.99875em) {
.wd-testimonial.wd-testimonial_style_2 .wd-testimonial__info {
position: absolute;
top: 77vw;
}
}
@media print, screen and (max-width: 39.99875em) {
.wd-testimonial.wd-testimonial_style_2 .owl-controls {
right: 20px;
}
}
.wd-testimonial.wd-testimonial_style_2 .owl-controls .owl-nav {
position: absolute;
width: 60px;
text-align: center;
line-height: 20px;
z-index: 99;
cursor: pointer;
bottom: unset;
right: -15%;
left: unset;
transform: rotate(90deg) translate(-50%);
top: -100px;
}
@media print, screen and (max-width: 39.99875em) {
.wd-testimonial.wd-testimonial_style_2 .owl-controls .owl-nav {
right: 0;
left: 100%;
top: -60vw;
}
}
.wd-testimonial.wd-testimonial_style_2 .owl-controls .owl-nav .owl-prev {
bottom: 50%;
transform: translate(45%);
}
.wd-testimonial.wd-testimonial_style_2 .owl-controls .owl-nav .owl-prev .fa-chevron-left {
position: relative;
left: calc(50% - 156px);
top: 38px;
}
.wd-testimonial.wd-testimonial_style_2 .owl-controls .owl-nav .owl-prev::after {
content: '';
display: block;
width: 2px;
height: 61%;
background: #000;
position: absolute;
top: 53px;
right: 125px;
}
.wd-testimonial.wd-testimonial_style_2 .owl-controls .owl-nav .owl-next {
bottom: 50%;
transform: translate(-100%);
}
.wd-testimonial.wd-testimonial_style_2 .owl-controls .owl-nav > div {
left: unset;
padding: 0;
border: none;
border-radius: 0;
top: unset;
background: none;
margin: 0;
right: unset;
height: unset;
width: 60px;
}
.wd-testimonial.wd-testimonial_style_2 .owl-controls .owl-nav svg {
height: 20px;
}
#comments {
margin-top: 60px;
}
#comments ul.commentlist, #comments ol.commentlist {
list-style-type: none !important;
}
#comments ul.commentlist li.comment, #comments ol.commentlist li.comment {
margin-bottom: 30px;
list-style-type: none;
}
#comments ul.commentlist li.comment .comment-author img, #comments ol.commentlist li.comment .comment-author img {
float: left;
margin-right: 12px;
}
#comments ul.commentlist li.comment .author-meta a, #comments ol.commentlist li.comment .author-meta a {
color: #777;
font-size: 12px;
font-family: "Open Sans", sans-serif;
}
#comments ul.commentlist li.comment section.comment, #comments ol.commentlist li.comment section.comment {
background-color: #fafafa;
border: 1px solid #ecf0f1;
margin-top: 20px;
padding: 20px 30px;
margin-bottom: 20px;
}
#comments ul.commentlist li.comment section.comment p, #comments ol.commentlist li.comment section.comment p {
font-family: "open sans", sans-serif;
color: #666;
font-size: 16px;
line-height: 29px;
}
#comments ul.commentlist li.comment section.comment .comment-reply-link, #comments ol.commentlist li.comment section.comment .comment-reply-link {
border-radius: 3px;
color: #fff;
float: right;
font-size: 14px;
padding: 3px 10px;
}
.commentlist .pingback {
border-bottom: 1px solid #eee;
margin-bottom: 20px;
padding-bottom: 20px;
}
.commentlist .pingback .author-meta a {
display: block;
}
.wd-image-text h4 {
padding: 25px 15px 0px 5px;
font-weight: 600;
line-height: 1;
font-size: 19px;
color: var(--headings-color);
}
.wd-image-text p {
padding: 5px 15px 20px 5px;
color: #999;
}
.wd-image-text a {
display: block;
margin-bottom: 20px;
padding: 0 35px;
}
.wd-image-text.style-2 h4:after {
content: " ";
display: block;
background-color: var(--primary-color);
height: 1px;
width: 40px;
margin: 8px 0 0;
}
.wd-image-text.style-2 a {
margin: 0;
padding: 0;
}
.wd-image-text.style-3 .picture-div {
padding: 0 20px 0 0;
}
.wd-image-text.style-3 .wd-title-element {
font-weight: bold;
font-size: 15px;
margin: 0;
}
.wd-image-text.style-3 .text-div p {
margin-bottom: 25px;
padding: 0;
}
.wd-image-text.style-4 .service-img-box {
border: 1px solid #ddd;
transition: .3s;
}
.wd-image-text.style-4 .service-img-box #Polygon_1 {
transform: translate(691px, 2523px) rotate(212deg);
transition: .35s ease-in-out;
}
.wd-image-text.style-4 .service-img-box #Polygon_1 path.next1 {
display: none;
}
.wd-image-text.style-4 .service-img-box line, .wd-image-text.style-4 .service-img-box path {
stroke: #707070;
}
.wd-image-text.style-4 .service-img-box:hover {
box-shadow: 0 3px 30px rgba(110, 122, 182, 0.1);
}
.wd-image-text.style-4 .service-img-box:hover h4 {
color: var(--primary-color);
margin-left: 30px;
}
.wd-image-text.style-4 .service-img-box:hover p {
padding: 0 11px 5px 70px;
}
.wd-image-text.style-4 .service-img-box:hover line, .wd-image-text.style-4 .service-img-box:hover path {
stroke: var(--primary-color);
}
.wd-image-text.style-4 .service-img-box:hover svg {
margin-right: -35px;
}
html[dir="rtl"] .wd-image-text.style-4 .service-img-box:hover svg {
margin-right: 70px;
margin-left: -28px;
}
.wd-image-text.style-4 .service-img-box svg {
float: right;
margin-top: -30px;
padding-right: 10px;
margin-right: -10px;
transition: .5s;
}
html[dir="rtl"] .wd-image-text.style-4 .service-img-box svg {
padding-left: 10px;
padding-right: unset;
margin-right: unset;
margin-left: -10px;
transform: rotate(180deg);
}
.wd-image-text.style-4 .service-img-box h4 {
font-size: 28px;
transition: .5s;
font-weight: 700;
letter-spacing: 2px;
}
.wd-image-text.style-4 .service-img-box h4:before {
content: unset;
}
.wd-image-text.style-4 .service-img-box p {
font-size: 16px;
color: #61647D;
padding: 0 11px 5px 40px;
margin-top: -18px;
transition: .5s;
}
.boxes.box-style-2 {
padding: 0 15px 15px;
}
.boxes.box-style-2 .box-container {
padding: 50px 40px 30px;
background-image: linear-gradient(to bottom right, #fff, #fff);
box-shadow: 0 6px 26px #eee;
border-radius: 23px;
transition: .5s background-image ease-in-out;
will-change: background;
}
.boxes.box-style-2 .box-container:hover {
background-image: linear-gradient(to bottom right, #2061D1, #915AF1);
}
.boxes.box-style-2 .box-container:hover .box-icon i {
color: #fff;
}
.boxes.box-style-2 .box-container:hover .box-title-1 {
color: #fff;
}
.boxes.box-style-2 .box-container:hover .box-body {
color: #fff;
}
.boxes.box-style-2 .box-container .box-icon i {
color: #915AF1;
transition: .5s all ease-in-out;
will-change: color;
}
.boxes.box-style-2 .box-container .box-title-1 {
font-size: 22px;
font-weight: 700;
letter-spacing: 1px;
color: #000;
margin: 20px 0;
transition: .5s all ease-in-out;
will-change: color;
}
.boxes.box-style-2 .box-container .box-body {
color: #000;
font-size: 14px;
transition: .5s all ease-in-out;
will-change: color;
}
.pricing-table {
list-style: none;
margin: 0;
}
.pricing-table .title {
text-transform: uppercase;
color: #fff;
padding: 40px 10px;
text-align: center;
font-weight: 700;
background: var(--primary-color);
font-size: 25px;
}
.pricing-table .price {
background-color: var(--secondary-color);
color: #fff;
text-align: center;
padding: 20px 10px;
}
.pricing-table .description, .pricing-table .bullet-item {
padding: 20px;
text-align: center;
border: 1px solid #eee;
}
.pricing-table .cta-button {
text-align: center;
border: 1px solid #eee;
padding: 20px;
}
.doors-pricing-table .table-title {
position: relative;
}
.doors-pricing-table .table-title h2 {
font-size: 25px;
border-bottom: 1px solid var(--primary-color);
padding-bottom: 10px;
margin-bottom: 20px;
}
.doors-pricing-table .table-title i {
position: absolute;
right: 10px;
top: 5px;
font-size: 30px;
color: #7b7b7b;
}
.doors-pricing-table .details {
float: left;
}
.doors-pricing-table .details h5 {
font-weight: 500;
margin-bottom: 0;
}
.doors-pricing-table .price {
float: right;
}
.doors-pricing-table .price span {
font-weight: 700;
}
.wd-section-portfolio .image-wrapper {
width: 100%;
height: 100%;
border: 1px solid rgba(0, 0, 0, 0.04);
overflow: hidden;
position: relative;
text-align: center;
border-radius: 4px;
}
.wd-section-portfolio .image-overlay-content {
width: 100%;
height: 100%;
position: absolute;
overflow: hidden;
top: 0;
left: 0;
}
.overlay-fade-in p {
letter-spacing: 0.15em;
color: #f4f4f4;
font-size: 28px;
opacity: 0;
transition: all 0.2s linear;
}
.overlay-fade-in img {
transition: all 0.2s linear;
}
.overlay-fade-in .image-overlay-content {
opacity: 0;
background-color: rgba(0, 0, 0, 0.4);
transition: all 0.4s ease-in-out;
}
.overlay-fade-in h2 {
color: #f2f2f2;
font-size: 1.8rem;
margin-top: 40%;
opacity: 0;
transition: all 0.2s ease-in-out;
background: rgba(0, 0, 0, 0.7);
}
.overlay-fade-in .button {
display: inline-block;
text-decoration: none;
padding: 7px 14px;
background: #FFF;
color: #222;
text-transform: uppercase;
box-shadow: 0 0 1px #000;
position: relative;
border: 1px solid #999;
opacity: 0;
transition: all 0.2s ease-in-out;
}
.overlay-fade-in .button:hover {
box-shadow: 0 0 5px #000;
}
.overlay-fade-in:hover img {
transform: scale(1.2);
}
.overlay-fade-in:hover .image-overlay-content {
opacity: 1;
}
.overlay-fade-in:hover h2, .overlay-fade-in p, .overlay-fade-in .button {
opacity: 1;
}
.overlay-fade-in:hover p {
transition-delay: 0.1s;
}
.overlay-fade-in:hover .button {
transition-delay: 0.2s;
}
.collapsed-title, .collapsed-title h1 {
font-size: 1.6em;
font-weight: bolder;
line-height: 1.2em;
margin: 0;
}
.corporate-layout .top-bar.expanded {
height: auto;
}
.corporate.top-bar-section {
margin-top: 10px;
}
@media print, screen and (max-width: 39.99875em) {
.corporate.top-bar-section {
margin-top: 0;
}
}
.corporate-layout .fixed .top-bar {
height: 50px;
}
@media print, screen and (max-width: 39.99875em) {
.show-cart-btn {
display: none;
}
}
@media print, screen and (max-width: 39.99875em) {
.corporate-layout .top-bar {
height: 100px;
}
}
.doors_onepost {
text-align: center;
}
.doors_onepost .title-block h2 {
margin-bottom: 10px;
}
.doors_onepost .title-block span {
width: 12px;
height: 12px;
display: block;
margin: 0 auto;
}
.doors_onepost .title-block .description {
font-size: 1.2em;
margin-bottom: 20px !important;
margin-top: 17px;
opacity: 0.5;
}
.one_post_box {
height: 400px;
position: relative;
}
.one_post_box .box_image {
margin: 0;
padding: 0;
max-height: 400px;
overflow: hidden;
}
.one_post_box .box_image > img {
height: 400px;
max-width: none;
width: auto;
}
.one_post_box .box_image .titel_icon {
width: 100%;
position: absolute;
text-align: left;
bottom: 0;
transition: all 0.3s ease-in;
height: 35%;
padding-top: 3%;
}
@media print, screen and (max-width: 39.99875em) {
.one_post_box .box_image .titel_icon {
bottom: -50%;
opacity: 0;
}
}
.one_post_box .box_image .titel_icon h3 {
margin-top: -7px;
margin-bottom: 2px;
color: #fff;
}
.one_post_box .box_image .titel_icon .box_icon {
float: left;
margin-right: 10px;
width: 10%;
padding: 10px 14px;
text-align: center;
}
.one_post_box .box_image .titel_icon .box_icon i {
font-size: 2em;
color: #fff;
}
.one_post_box .box_image:hover .titel_icon {
bottom: 0;
opacity: 1;
}
.one_post_box .more {
margin: 0;
padding: 0;
}
@media print, screen and (max-width: 39.99875em) {
.one_post_box .more {
height: 100%;
}
}
.one_post_box .more > div {
margin-top: 30px;
margin-bottom: 30px !important;
}
@media print, screen and (max-width: 39.99875em) {
.one_post_box .more > div {
margin-top: 41%;
}
}
.one_post_box .more i {
font-size: 1.6em;
margin-top: 26px;
}
.one_post_box .more h3 {
color: #fff;
}
.countto {
padding: 3em;
display: block;
}
div.icon {
text-align: center;
font-size: 50px;
padding: 20px;
}
.counter {
font-size: 4em;
font-weight: 200;
padding-top: 12px;
}
.style1 {
margin-bottom: 30px;
}
.style2, .style3 {
margin-bottom: 30px;
}
.style2 div.icon, .style3 div.icon {
display: inline;
}
.style2 .counter, .style3 .counter {
display: inline;
}
.style5 .counter-box {
padding: 20px 10px;
}
.layout-3 .box-title-3 {
text-align: center;
}
.circular-item {
float: left;
display: inline-block;
margin: 0 14px;
}
.circular-content {
display: inline-block;
height: auto;
text-align: center;
}
.circular-pie {
height: 310px;
width: 310px;
}
.easyPieChart {
margin: 0 auto;
position: relative;
text-align: center;
padding: 3em 0;
}
.circ_counter_desc {
font-size: 15px;
margin: 20px 0;
text-align: center;
}
.circular-pie-style-1 span, .circular-pie-style-2 span, .circular-pie-style-3 span {
border-radius: 100%;
bottom: 20px;
color: #284c66;
display: block;
font-size: 46px;
font-weight: 100;
height: 150px;
left: 41px;
letter-spacing: -3px;
line-height: 150px;
position: absolute;
right: 20px;
text-align: center;
top: 41px;
width: 150px;
z-index: 10;
}
.easyPieChart canvas {
left: 0;
position: absolute;
top: 0;
}
.circ_counter_desc .lead {
font-weight: 600;
font-size: 29px;
}
.counter-block h2 {
font-weight: 600;
}
.counter-block .counter {
font-weight: 700;
}
.boxes.small.layout-3 {
padding-top: 30px;
padding-bottom: 30px;
}
.boxes.colored .columns {
padding: 0px;
}
.boxes.colored .box-container {
padding: em-calc(10) 0;
}
.boxes .box-container {
margin-bottom: 16px;
position: relative;
}
@media print, screen and (max-width: 39.99875em) {
.boxes .box-container {
min-height: 165px;
}
}
.boxes .box-container > a:before,
.boxes .box-container .flipper a:before {
bottom: 100%;
content: "";
display: block;
height: 0%;
opacity: 0.5;
position: absolute;
top: 0;
width: 100%;
transition: all .2s ease-in;
}
.boxes .box-container:hover > a:before,
.boxes .box-container:hover .flipper a:before {
height: 100%;
}
.boxes .box-container .box-txt {
background: #000;
background: rgba(var(--primary-color), 0.8);
bottom: 10px;
left: 15px;
position: absolute;
padding: em-calc(10);
text-transform: uppercase;
transition: all 0.1s ease-in;
}
.boxes .box-container .box-txt a {
color: #FFF;
}
.boxes.small {
text-align: center;
padding-top: en-calc(15);
}
.boxes.small .block-title {
padding-bottom: 0.6em;
}
.boxes.small .box-container {
text-align: left;
}
.boxes.small .box-icon {
border: none;
float: left;
padding: 3px 5px;
text-align: center;
}
.boxes.small .box-icon i {
font-size: 36px;
}
.boxes.small .box-body {
clear: both;
padding-top: 10px;
}
.boxes.small .box-title-1 {
padding: 0 0 5px 55px;
}
.boxes.layout-2.box-icon i {
font-size: 60px;
}
.boxes.layout-2 .box-icon, .boxes.layout-3 .box-icon {
border: 1px solid;
border-radius: 50%;
height: 80px;
margin: 0 auto;
width: 80px;
float: none;
padding: 0 5px;
text-align: center;
background: rgba(255, 255, 255, 0.3);
transition: .4s ease-out;
}
.boxes.layout-2 .box-icon i, .boxes.layout-3 .box-icon i {
line-height: 80px;
}
.boxes.layout-2:hover .box-icon, .boxes.layout-3:hover .box-icon {
background: var(--primary-color);
color: #fff;
}
.boxes.layout-2:hover .box-icon i, .boxes.layout-3:hover .box-icon i {
color: #fff;
}
.boxes.layout-2 .box-title-3, .boxes.layout-2 .box-title-2, .boxes.layout-3 .box-title-3, .boxes.layout-3 .box-title-2 {
display: block;
float: none;
margin-bottom: 0;
padding: 5px 0;
text-align: center;
}
.boxes.layout-2 .box-title-3, .boxes.layout-3 .box-title-3 {
color: #000;
font-weight: 500;
}
.boxes.layout-2 .box-body, .boxes.layout-3 .box-body {
clear: both;
padding-top: 10px;
text-align: center;
}
.boxes.layout-2 hr, .boxes.layout-3 hr {
margin: 15px 25% 5px;
width: 50%;
border-color: opacity var(--primary-color), 0.2;
border-style: dashed;
}
.boxes.small.layout-3 .box-container {
position: relative;
overflow: hidden;
}
.boxes.small.layout-3 .box-container::after {
content: "";
display: block;
background: #fff;
height: 50px;
width: 200%;
top: -20px;
transform: translateX(-50%) rotate(-45deg);
position: absolute;
transition: .6s ease-in-out;
}
.boxes.small.layout-3 .box-container:hover:after {
top: 80%;
position: absolute;
transform: translateX(50%) rotate(-45deg);
}
.layout-4 .box-container {
padding: 8px;
color: #000;
}
.layout-4 .box-container h3.box-title-4 {
font-size: 21px;
font-weight: 600;
color: #0d1d4e;
line-height: 36px;
}
.layout-4 .box-container p.box-body {
clear: none;
font-size: 14px;
width: 100%;
padding: 0 1em;
color: #666;
margin-top: -4px;
line-height: 26px;
}
.layout-4 div.box-icon {
margin: 3px 30px 20px 0;
}
.layout-4 div.box-icon i.fa {
color: var(--primary-color);
font-size: 3.3em;
padding: 0;
border-radius: 0;
}
.boxes.small.layout-5 .box-icon,
.boxes.small.layout-5-inverse .box-icon {
bottom: 0;
float: none;
padding: 0;
position: absolute;
top: 0;
}
.boxes.small.layout-5 .box-icon i.fa,
.boxes.small.layout-5-inverse .box-icon i.fa {
color: #FFF;
padding: 1em 0.2em;
width: 2em;
font-size: 3.5em;
}
.boxes.small.layout-5 .box-text-5,
.boxes.small.layout-5-inverse .box-text-5 {
padding-left: 8em;
}
.boxes.small.layout-5 .box-text-5 .box-title-5,
.boxes.small.layout-5-inverse .box-text-5 .box-title-5 {
margin-top: 0;
}
.boxes.small.layout-5-inverse .box-icon {
right: 0;
}
.boxes.small.layout-5-inverse .box-text-5-inverse {
padding-right: 8em;
}
.boxes.small.layout-5-inverse .box-text-5-inverse .box-title-5-inverse {
margin-top: 0;
}
.boxes.small.layout-6 .box-icon {
float: none;
height: 100%;
padding-top: 3.5em;
width: 19%;
position: absolute;
}
.boxes.small.layout-6 .box-icon i.fa {
color: #FFF;
padding: 0.7em 0.3em;
}
.boxes.small.layout-6 .box-text-6 {
padding-left: 22%;
}
.boxes.small.layout-7 .box-icon {
float: none;
height: 100%;
position: absolute;
}
.boxes.small.layout-7 .box-icon i.fa {
background-color: #f55a60;
border-radius: 0;
font-size: 2.2em;
padding: 0.6em;
color: #FFF;
}
.boxes.small.layout-7 .box-text-7 {
padding-left: 7em;
}
.boxes.small.layout-7 .box-text-7 h3.box-title-7 {
margin-bottom: 4px;
font-weight: 800;
}
.boxes.small.layout-7 .box-body {
padding-top: 0;
color: #999;
}
.boxes.small.layout-8 .box-icon {
border-right: 1px solid rgba(89, 89, 89, 0.12);
margin-right: 1em;
padding: 0 1em 0 0.3em;
}
.boxes.small.layout-8 .box-title-8 {
line-height: 1em;
}
.boxes.small.layout-9 {
border: 1px solid rgba(238, 238, 238, 0.75);
padding: 40px;
margin-bottom: 30px;
transition: .35s;
}
.boxes.small.layout-9:not(.no-hover):hover {
box-shadow: 0 3px 30px rgba(110, 122, 182, 0.1);
border-bottom-color: var(--primary-color);
}
.boxes.small.layout-9 .box-icon {
padding: 0 35px 0 0;
border-bottom-width: 2px;
}
.boxes.small.layout-9 .box-icon img, .boxes.small.layout-9 .box-icon i {
border-radius: 0;
width: unset;
height: unset;
padding: 0 35px 0 0;
}
.boxes.small.layout-9 .box-icon i {
color: #fff;
font-size: 3.5em;
padding: 39px 65px;
}
.boxes.small.layout-9 h3.box-title-9 {
float: left;
padding: 11px 0 8px;
font-size: 20px;
color: #363636;
margin: 0;
transition: all 0.3s ease 0s;
}
.boxes.small.layout-9 p.box-body {
color: #858585;
font-family: Open Sans;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}
.box:hover .box-txt {
bottom: 0;
}
.large-12 .box {
overflow: hidden;
}
.home .section_container .vc_col-sm-3 {
transition: 0.1s;
padding: 5px;
}
.box-container.clearfix {
height: auto;
min-height: 0;
}
.box-container h3 {
font-size: 1.4em;
}
p.large-text {
font-size: 26px;
color: #999999;
line-height: 30px;
margin-bottom: 30px;
}
a.features-bnt {
color: #777;
padding: 6px 10px;
border: 1px solid #777;
transition: 0.1s;
}
a.features-bnt:hover {
color: #000;
border-color: #000;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(1) {
background-color: #01cfe7;
background-image: linear-gradient(to left, #01cfe7 0%, #00d1e5 100%);
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(1) .boxes.layout-2 .box-body, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(1) .boxes.layout-3 .box-body {
padding-right: 14px;
padding-left: 14px;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(1) .boxes.layout-2 .box-icon, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(1) .boxes.layout-3 .box-icon {
background: none repeat scroll 0 0 #fff;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(1) .boxes.layout-2 .box-icon i, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(1) .boxes.layout-3 .box-icon i {
color: #00d1e5;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(2) {
background-color: #01cfe7;
background-image: linear-gradient(to left, #01b3e9 0%, #00b5e3 100%);
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(2) .boxes.layout-2 .box-body, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(2) .boxes.layout-3 .box-body {
padding-right: 14px;
padding-left: 14px;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(2) .boxes.layout-2 .box-icon, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(2) .boxes.layout-3 .box-icon {
background: none repeat scroll 0 0 #fff;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(2) .boxes.layout-2 .box-icon i, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(2) .boxes.layout-3 .box-icon i {
color: #00b5e3;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(3) {
background-color: #01cfe7;
background-image: linear-gradient(to left, #0199e7 0%, #009be5 100%);
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(3) .boxes.layout-2 .box-body, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(3) .boxes.layout-3 .box-body {
padding-right: 14px;
padding-left: 14px;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(3) .boxes.layout-2 .box-icon, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(3) .boxes.layout-3 .box-icon {
background: none repeat scroll 0 0 #fff;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(3) .boxes.layout-2 .box-icon i, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(3) .boxes.layout-3 .box-icon i {
color: #009be5;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(4) {
background-color: #01cfe7;
background-image: linear-gradient(to left, #007de9 0%, #017de7 100%);
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(4) .boxes.layout-2 .box-body, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(4) .boxes.layout-3 .box-body {
padding-right: 14px;
padding-left: 14px;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(4) .boxes.layout-2 .box-icon, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(4) .boxes.layout-3 .box-icon {
background: none repeat scroll 0 0 #fff;
}
.home .fancy-blue .section_container .vc_col-sm-3:nth-child(4) .boxes.layout-2 .box-icon i, .home .fancy-blue .section_container .vc_col-sm-3:nth-child(4) .boxes.layout-3 .box-icon i {
color: #017de7;
}
.boxes.layout-1 .box-icon {
float: none;
padding-bottom: 11px;
text-align: left;
}
.boxes.layout-1 .box-title-1 {
text-align: left;
font-size: 18px;
padding: 0;
margin: 0;
font-weight: 500;
color: black;
}
.boxes.layout-1 .box-body {
font-size: 16px;
color: #777;
line-height: 21px;
padding-top: 10px;
}
.home-text-icon .box-container {
background: #fff;
}
.home-text-icon .boxes.layout-1 .box-icon {
padding: 0;
}
.home-text-icon .boxes.layout-1 .box-title-1 {
padding: 51px 40px 25px 32px;
font-size: 23px;
}
.home-text-icon .boxes.layout-1 .box-body {
padding: 0 40px 16px 32px;
font-size: 14px;
margin-bottom: 4px;
}
.image-box-item {
margin-top: 2em;
}
.image-box-item img {
box-shadow: 0px 0px 3px 0px rgba(237, 237, 237, 0.46);
padding: 4px;
border: 1px solid #E7E7E7;
}
.image-box-text, .scene {
padding: 3px;
}
.image-box-text h5, .scene h5 {
font-family: 'Open Sans', sans-serif;
font-weight: 600;
}
.image-box-text h5 a, .scene h5 a {
color: #3C3F43;
}
.image-box-text p, .scene p {
font-size: 12px;
font-family: 'Open Sans', sans-serif;
color: #737373;
}
h3.title {
color: #5A53DD;
}
.scene {
padding: 0;
width: 100%;
overflow: hidden;
height: 200px;
perspective: 600px;
margin: 20px auto;
}
.flip {
transform-style: preserve-3d;
}
.flip,
.flip > div {
width: inherit;
height: inherit;
transition: transform 1s;
}
.flip > div {
line-height: 200px;
position: absolute;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.arriere {
padding: 3px;
background-color: #F7F7F7;
transform: rotateY(-180deg);
}
.scene:hover .flip {
transform: rotateY(-180deg);
}
.image-box-style3 .arriere {
transform: rotateX(180deg);
}
.image-box-style3 .scene:hover .flip {
transform: rotateX(180deg);
}
iframe {
width: 100%;
}
div.map-popup {
display: inline-block;
}
div.map-img {
display: inline-block;
float: left;
width: 320px;
}
div.map-text {
display: inline-block;
width: 10em;
margin-left: 0.5em;
}
.parallax {
background-size: 100%;
background-position: 50% auto;
background-attachment: fixed;
}
#bg_video {
position: relative;
width: 100%;
overflow: hidden;
background: none;
} #bg_video * {
position: relative;
z-index: 10; }
#bg_video * .video {
position: absolute;
z-index: 1;
}
.carousel {
width: 500px;
min-height: 315px;
margin: 0 auto;
position: relative;
padding-bottom: 30px;
overflow: hidden;
}
.carousel h2 {
color: #736861;
margin: 15px 0 5px;
text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.carousel h6 {
color: #928566;
margin: 0;
}
.carousel blockquote {
margin: 0;
padding: 30px;
background-color: #DB532B;
color: white;
box-shadow: 0 5px 2px rgba(0, 0, 0, 0.1);
position: relative;
transition: background-color 0.6s linear;
}
.carousel blockquote:after {
content: " ";
height: 0;
width: 0;
position: absolute;
top: 100%;
border: solid transparent;
border-top-color: #DA532B;
border-left-color: #DA532B;
border-width: 10px;
left: 10%;
z-index: 200;
}
.two blockquote:after {
border: solid transparent;
border-top-color: purple;
border-left-color: purple;
border-width: 10px;
}
.quotes {
position: absolute;
color: rgba(255, 255, 255, 0.5);
font-size: 5em;
}
.leftq {
top: -50px;
left: 5px;
}
.rightq {
bottom: -10px;
right: 5px;
}
.quote-format {
background: var(--primary-color);
}
.quote-format .leftq, .quote-format .rightq {
color: #eee;
}
.quote-format a {
color: #fff;
}
.quote-format a:hover {
color: #fff;
}
.quote-format blockquote {
border: none;
position: relative;
text-align: center;
}
.quote-format h2 {
font-size: 15px;
}
.quote-format i, .quote-format .quotes.link {
font-size: 50px;
padding-top: 10px;
}
.carousel img {
float: left;
margin-right: 20px;
width: 170px !important;
height: auto;
}
.owl-carousel {
cursor: -moz-grab;
}
.owl-carousel .owl-nav > div {
background: rgba(255, 255, 255, 0.3);
height: 20%;
position: absolute;
top: 38%;
width: 35px;
opacity: 0;
height: 46%;
transition: opacity 0.6s;
}
.owl-carousel .owl-nav > div:hover {
background: rgba(255, 255, 255, 0.78);
}
.owl-carousel .owl-nav > div i {
margin-left: 9px;
margin-top: 17px;
color: #333;
font-size: 1.3em;
}
.owl-carousel .owl-nav .owl-next {
float: right;
right: 0;
}
.owl-carousel:hover .owl-nav > div {
opacity: 1;
}
.owl-carousel.carousel_portfolio .owl-nav > div {
height: 20%;
}
.carousel_blog span.tag a {
border-radius: 2px;
color: #fff;
font-size: 0.9em;
padding: 0 7px;
}
.wd-carousel-container {
list-style: none;
position: relative;
text-align: center;
}
.wd-carousel-container .info {
position: absolute;
bottom: 0px;
width: 100%;
}
.wd-carousel-container .carousel-icon {
position: absolute;
width: 100%;
top: 45%;
top: calc(50% - 15px);
opacity: 0;
transition: all 0.6s, opacity 0.3s;
}
.wd-carousel-container .carousel-icon i {
border-radius: 50%;
color: #fff;
font-size: 2em;
line-height: 29px;
padding: 10px 10px 7px;
width: 48px;
}
.wd-carousel-container > img {
transition: transform 0.6s, opacity 0.5s;
}
.wd-carousel-container .carousel-details {
transition: transform 0.4s, opacity 0.1s 0.3s;
background: #FFF;
width: 100%;
padding: 5px 10px;
transform: translateY(100%);
}
.wd-carousel-container:hover > img {
transform: translatey(-30px);
opacity: .9;
}
.wd-carousel-container:hover .carousel-icon {
top: 100px;
top: calc(50% - 32px);
opacity: 1;
}
.wd-carousel-container:hover .carousel-details {
transform: translateY(0);
}
.carousel_client.owl-carousel .owl-item .wd-item {
text-align: center;
}
.carousel_client.owl-carousel .owl-item img {
display: inline;
float: none;
text-align: center;
width: auto;
}
.masque {
height: 100%;
overflow: hidden;
}
.owl-carousel .owl-item img {
width: auto !important;
}
.team-member-slider .owl-dots .owl-dot, .team-member-carousel .owl-dots .owl-dot {
display: inline-block;
}
.team-member-slider .owl-dots .owl-dot span, .team-member-carousel .owl-dots .owl-dot span {
background: #d6d6d6 none repeat scroll 0 0;
border-radius: 30px;
display: block;
height: 10px;
margin: 5px 7px;
transition: opacity 200ms ease 0s;
width: 10px;
}
.team-member-slider .owl-dots .owl-dot.active span, .team-member-slider .owl-theme .owl-dots .owl-dot:hover span, .team-member-carousel .owl-dots .owl-dot.active span, .team-member-carousel .owl-theme .owl-dots .owl-dot:hover span {
background: #869791 none repeat scroll 0 0;
}
.team-member-slider .owl-dots, .team-member-carousel .owl-dots {
bottom: 1px;
margin: 0 auto;
position: absolute;
text-align: center;
width: 100%;
}
#page-wrap {
position: relative;
}
.corp {
background: #444;
padding-bottom: 10em;
padding-top: 10em;
}
.oops {
width: 100%;
}
.oops h2 {
border-bottom: 1px solid #aaa;
box-shadow: 0 1px 0 #727272;
font-size: 5em;
margin-bottom: 30px;
padding-bottom: 15px;
color: #fff;
}
.message {
color: #fff;
font-size: 2em;
margin-bottom: 30px;
width: 40%;
}
.oops-footer {
margin-top: 20px;
}
.oops-footer .social-icons {
text-align: center;
}
.oops-footer .social-icons li {
width: auto;
padding: 14px 13px;
border: medium solid;
display: inline-block;
float: none;
margin-right: 10px;
}
.oops-footer .social-icons li:hover {
border-color: #f74a13;
}
.oops-footer .social-icons li:hover i {
border: none;
color: #f74a13;
}
.oops-footer .social-icons li i {
color: #090909;
}
.oops-footer .social-icons li i:hover {
border: none;
}
#serch {
position: relative;
}
#serch .text-input {
border-radius: 30px;
height: 50px;
padding-left: 20px;
}
#serch .submit-input {
background: #aaa none repeat scroll 0 0;
border: medium none;
border-radius: 0 20px 20px 0;
color: #fff;
padding: 17px 12px;
position: absolute;
right: 0;
top: 0;
}
@media screen and (max-width: 900px) {
.message {
width: 100%;
text-align: center;
}
.oops-footer .inline-list > li {
float: none;
}
}
.block-content p {
color: #666666;
}
.block-content .progress {
background-color: transparent;
height: 0.78em;
margin-bottom: 1.58em;
padding: 0;
border: 1px solid #f3f3f3;
}
.block-content .progress_title {
font-size: 1em;
font-weight: 700;
margin: 5px 5px 5px 2px;
}
.team-member-container .team-member-slider .owl-nav > div {
height: 33px;
padding: 6px 4px;
width: 33px;
background-color: #999;
}
.team-member-container .team-member-slider .team-member-text {
padding-left: 60px;
padding-top: 144px;
}
.team-member-container .team-member-slider .team-member-text .team-member-about {
margin-bottom: 28px;
}
.team-member-container .team-member-slider .team-member-text .team-member-job-title.second {
margin-bottom: 43px;
}
.team-member-container .team-member-slider .team-member-text .team-member-job-title.second h4 {
font-size: 14px;
color: #6B6B6B;
}
.team-member-container .team-member-slider .team-member-text .team-member-name h2 {
color: #000000;
font-family: "Lato";
font-size: 26px;
font-style: normal;
font-weight: 900;
letter-spacing: 1px;
line-height: 34px;
text-transform: uppercase;
}
.team-member-container .team-member-slider .team-member-text .website {
padding-left: 15px;
margin-top: 84px;
}
.team-member-container .team-member-slider .team-member-skills .wd-progress-bar-container ul.wd-progress-bar {
padding: 0;
margin-top: 20px;
}
.team-member-container .team-member-slider .team-member-skills .circular-pie-style-team.easyPieChart {
width: 105px;
height: 105px;
}
.team-member-container .team-member-slider .team-member-skills .skill-name {
margin-top: 37px;
margin-left: 12px;
}
.team-member-container .team-member-slider .team-member-skills .percent {
position: absolute;
left: calc(80px - 50%);
top: calc(86px - 50%);
}
.team-member-container .team-member-slider .owl-nav > div i {
color: #fff;
font-size: 12px;
margin-left: 5px;
display: table;
margin-top: 6px;
}
.team-member-container .team-member-slider .owl-nav > div:hover {
background-color: #cb9904;
}
.team-member-container .team-member-slider.image_left .team-member-text .website {
padding-left: 0;
}
.team-member-container .hide-skills.image_left .wd-team-member-item .team-member-text {
padding-top: 244px;
}
.team-member-container .hide-skills.image_left .owl-nav {
left: 53%;
position: absolute;
top: 520px;
width: 69px;
}
.team-member-container .hide-skills.image_right .wd-team-member-item .team-member-text {
padding-top: 244px;
}
.team-member-container .hide-skills.image_right .owl-nav {
left: 53%;
position: absolute;
top: 520px;
width: 69px;
}
.team-member-container .team-member-picture {
text-align: center;
padding-top: 42px;
}
.team-member-container .team-member-picture img {
margin: 0 auto;
}
.team-member-carousel .owl-item img {
width: 100% !important;
}
.team-member-carousel .team-member-carousel-item .team-member-carousel-text {
bottom: -140px;
transition: all 300ms ease;
position: absolute;
width: 100%;
padding-top: 80px;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
}
.team-member-carousel .team-member-carousel-item .team-member-carousel-text .team-member-name, .team-member-carousel .team-member-carousel-item .team-member-carousel-text .team-member-job-title {
padding-left: 12px;
margin: 0;
}
.team-member-carousel .team-member-carousel-item:hover .team-member-carousel-text {
bottom: 0;
opacity: 1;
}
.team-member-carousel .team-member-social-medias {
margin-bottom: 30px;
}
.team-member-carousel .team-member-social-medias ul {
border-bottom: 1px dotted #fff;
margin: 0;
padding: 4px 10px;
margin: 0 auto;
display: table;
}
.team-member-carousel .team-member-social-medias ul li {
display: inline-block;
list-style-type: none;
}
.team-member-carousel .team-member-social-medias ul li a {
padding: 4px;
transition: all 300ms ease;
}
.team-member-carousel .team-member-social-medias ul li a:hover {
color: #D00500;
}
.team-member-carousel .owl-dots {
position: relative;
margin-top: 56px;
}
.team-member-grid .team-member-grid-item {
padding: 0;
position: relative;
overflow: hidden;
}
.team-member-grid .team-member-grid-item .team-member-grid-text {
opacity: 0;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
bottom: -525px;
height: 100%;
padding: 210px 60px;
position: absolute;
text-align: center;
width: 100%;
transition: all 300ms ease;
}
.team-member-grid .team-member-grid-item .team-member-grid-text .team-member-social-medias ul {
list-style-type: none;
margin: 0;
}
.team-member-grid .team-member-grid-item .team-member-grid-text .team-member-social-medias ul li {
display: inline-block;
padding: 10px;
}
.team-member-grid .team-member-grid-item:hover .team-member-grid-text {
opacity: 1;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
}
.team-member-grid-item.static-html {
height: 525px;
}
.team-member-grid-item.static-html .static-html-content {
font-family: "open sans";
font-size: 31px;
font-weight: 900;
line-height: 34px;
padding: 200px 110px;
text-align: center;
text-transform: uppercase;
}
.widget {
padding: 20px 30px 30px 15px;
margin-bottom: 35px;
}
.widget .widget-title {
position: relative;
line-height: 30px;
margin-bottom: 25px;
font-size: 23px;
}
.widget .widget-title:after {
content: " ";
display: block;
width: 100%;
height: 1px;
background: var(--secondary-color);
bottom: -5px;
position: absolute;
}
.widget.widget_text {
padding: 0;
}
.wd-latest-posts-widget ul {
margin: 0;
}
.wd-latest-posts-widget__post {
display: flex;
padding: 14px 0;
}
.wd-latest-posts-widget__image {
flex: 0 0 120px;
margin-right: 20px;
}
.wd-latest-posts-widget__image img {
border-radius: 10px;
border: 1px solid rgba(0, 82, 255, 0.15);
}
.wd-latest-posts-widget__title a {
color: var(--headings-color);
}
.wd-latest-posts-widget__meta {
color: #82868A;
}
.footer_social_icons {
display: flex;
flex-direction: row;
flex-wrap: wrap;
list-style: none;
margin: 15px 0;
}
.footer_social_icons li {
padding-right: 20px;
}
.footer_social_icons li i {
font-size: 20px;
} .woocommerce-product-search {
position: relative;
}
.searchform button[type='submit'],
.woocommerce-product-search button[type='submit'] {
border: 0 none;
box-shadow: none;
position: absolute;
right: 25px;
top: 15px;
transition: all 0.3s ease-in-out 0s;
background: transparent url(//shop.alumetsmetal.com/wp-content/themes/doors/images/icon/search-icon.svg) no-repeat;
width: 25px;
height: 25px;
cursor: pointer;
background-size: cover;
color: transparent;
}
.searchform button[type='submit']:after,
.woocommerce-product-search button[type='submit']:after {
display: none;
}
.searchform button[type='submit']:hover,
.woocommerce-product-search button[type='submit']:hover {
padding: 0;
transform: scale(1.2);
}
.first-footer #searchsubmit i {
color: #fff;
} .tag-cloud-link {
display: inline-block;
border-radius: 28px;
margin-right: 5px;
margin-bottom: 15px;
padding: 10px 25px 6px;
background: var(--primary-color);
color: #fff !important;
text-transform: uppercase;
font-size: 12px !important;
}
.tag-cloud-link:hover {
background-color: #ff3b33;
background-color: var(--accent-color);
} .menu-services-menu-container ul li {
padding: 0px 0px 0px 26px;
}
.menu-services-menu-container ul li a {
padding: 0 5px;
} .widget_calendar tbody th,
.widget_calendar tbody td {
padding: 0.5rem 0.55rem 0.55rem;
}
.woocommerce {     }
.woocommerce .woocommerce-result-count {
margin: 20px 0 0 0;
color: #403d3d;
}
.woocommerce .woocommerce-ordering .orderby {
padding: 15px 30px;
background-color: #f4f4f4;
background-image: url(//shop.alumetsmetal.com/wp-content/themes/doors/images/down-icon.png);
background-origin: content-box;
background-position: right 0 center;
background-repeat: no-repeat;
background-size: 9px 6px;
border: none;
min-height: 60px;
min-width: 270px;
color: #919191;
}
.woocommerce .products .product.type-product {
position: relative;
}
.woocommerce .products .product.type-product .button {
position: absolute;
top: calc(50% - 50px);
left: calc(50% - 70px);
margin: 0;
background-color: var(--primary-color);
color: #fff;
opacity: 0;
border-radius: 2px;
transition: all 0.4s cubic-bezier(0.42, 0, 0.41, 1.29);
transform: translateY(50px);
letter-spacing: 1px;
padding: 13px 25px;
}
.woocommerce .products .product.type-product:hover .button {
opacity: 1;
transform: translateY(0px);
}
.woocommerce .products .product.type-product .onsale {
border-radius: 0;
padding: 5px 10px;
background: #d19a20;
top: 6px;
right: 7px;
}
.woocommerce .products .product.type-product .product-image-wrapper a img {
border-bottom: 3px solid #E4E4E4;
}
.woocommerce .products .product.type-product .woocommerce-loop-product__title {
text-align: center;
}
.woocommerce .products .product.type-product .woocommerce-loop-product__title a {
color: #000;
font-size: 1.1em;
}
.woocommerce .products .product.type-product .star-rating {
margin: 10px auto;
}
.woocommerce .products .product.type-product .price {
text-align: center;
}
.woocommerce .products .product.type-product .price .woocommerce-Price-amount {
font-size: 1em;
font-weight: 700;
color: #0a0a0a;
}
.woocommerce .products .product.type-product .price del {
font-weight: 400;
margin-right: 20px;
}
.woocommerce .woocommerce-pagination .page-numbers {
border: none;
margin-bottom: 20px;
}
.woocommerce .woocommerce-pagination .page-numbers li {
border: none;
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers {
padding: 15px 19px;
border: 1px solid transparent;
margin-right: 13px;
border-radius: 3px;
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.next, .woocommerce .woocommerce-pagination .page-numbers .page-numbers.prev {
border: 1px solid #fbfbfb;
background: transparent;
border-radius: 3px;
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.next:hover, .woocommerce .woocommerce-pagination .page-numbers .page-numbers.prev:hover {
background: #292d2e;
color: #fff;
}
.woocommerce .woocommerce-pagination .page-numbers .page-numbers.current {
background: var(--primary-color);
color: #fff;
}
@media screen and (max-width: 1380px) {
.woocommerce.single-product .content-wrapper {
padding: 15px;
}
}
.woocommerce.single-product .product .onsale {
border-radius: 0;
padding: 10px 20px;
background: #d19a20;
top: 50px;
left: 0px;
}
.woocommerce.single-product .product .woocommerce-product-gallery {
display: flex;
}
@media print, screen and (min-width: 64em) {
.woocommerce.single-product .product .woocommerce-product-gallery {
width: 56%;
margin-top: 50px;
margin-bottom: 100px;
}
}
.woocommerce.single-product .product .woocommerce-product-gallery .flex-viewport {
order: 2;
}
.woocommerce.single-product .product .woocommerce-product-gallery .flex-control-nav {
flex: 0 0 135px;
margin-right: 15px;
}
.woocommerce.single-product .product .woocommerce-product-gallery .flex-control-nav li {
margin-bottom: 18px;
float: none;
width: auto;
margin-right: 3px;
}
@media print, screen and (min-width: 64em) {
.woocommerce.single-product .product .summary {
width: 40%;
margin-top: 80px;
}
}
.woocommerce.single-product .product .summary .woocommerce-product-rating .star-rating span:before {
color: #fdd443;
}
.woocommerce.single-product .product .summary .product_title {
font-size: 27px;
}
.woocommerce.single-product .product .summary .price {
color: #000;
font-weight: 500;
}
.woocommerce.single-product .product .summary .woocommerce-product-details__short-description {
margin-bottom: 40px;
}
.woocommerce.single-product .product .summary .cart .quantity .qty {
min-width: 100px;
margin-right: 20px;
border-radius: 0;
padding: 0 10px;
}
.woocommerce.single-product .product .summary .cart .woocommerce-grouped-product-list {
border-collapse: unset;
}
.woocommerce.single-product .product .summary .cart .button {
background-color: var(--primary-color);
padding: 16px 25px;
border-radius: 0;
}
.woocommerce.single-product .product .woocommerce-tabs {
margin-bottom: 100px;
}
.woocommerce.single-product .product .woocommerce-tabs .wc-tabs {
padding: 0;
border: 0;
}
.woocommerce.single-product .product .woocommerce-tabs .wc-tabs:before {
border-color: #E0E0E0;
}
.woocommerce.single-product .product .woocommerce-tabs .wc-tabs .description_tab, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .reviews_tab, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .additional_information_tab {
padding: 0 35px 0 5px;
border: none;
background: transparent;
color: #000;
font-size: 1.3em;
}
.woocommerce.single-product .product .woocommerce-tabs .wc-tabs .description_tab:before, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .description_tab:after, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .reviews_tab:before, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .reviews_tab:after, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .additional_information_tab:before, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .additional_information_tab:after {
display: none;
}
.woocommerce.single-product .product .woocommerce-tabs .wc-tabs .description_tab.active, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .reviews_tab.active, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .additional_information_tab.active {
background: transparent;
}
.woocommerce.single-product .product .woocommerce-tabs .wc-tabs .description_tab.active:before, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .description_tab.active:after, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .reviews_tab.active:before, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .reviews_tab.active:after, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .additional_information_tab.active:before, .woocommerce.single-product .product .woocommerce-tabs .wc-tabs .additional_information_tab.active:after {
display: none;
}
.woocommerce.single-product .product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
font-size: 20px;
}
.woocommerce.single-product .product .woocommerce-tabs .woocommerce-Tabs-panel #comments {
margin-top: 10px;
}
.woocommerce.single-product .product .woocommerce-tabs .woocommerce-Tabs-panel #respond input#submit {
background: var(--primary-color);
color: #fff;
}
.woocommerce.single-product .product .related.products > h2, .woocommerce.single-product .product .up-sells > h2 {
font-size: 30px;
position: relative;
display: inline-block;
margin-bottom: 35px;
}
.woocommerce.single-product .product .related.products > h2:after, .woocommerce.single-product .product .up-sells > h2:after {
content: "";
display: block;
width: 100%;
height: 10px;
background: var(--primary-color);
position: absolute;
bottom: 5px;
left: 0;
z-index: -1;
}
.woocommerce .woocommerce-notices-wrapper {
width: 100%;
}
.woocommerce .woocommerce-notices-wrapper .button {
background-color: var(--primary-color);
color: #fff;
}
.woocommerce .woocommerce-notices-wrapper .button:hover {
background-color: var(--primary-color);
color: #fff;
}
.woocommerce .widget-area .button {
background: var(--primary-color);
color: #fff;
} .woocommerce-cart .woocommerce-cart-form .coupon #coupon_code {
width: 100%;
margin-bottom: 10px;
}
.woocommerce-cart .woocommerce-cart-form .coupon .button {
background-color: var(--primary-color);
color: #fff;
}
.woocommerce-cart .cart-collaterals .cart_totals .button {
background-color: var(--primary-color);
color: #fff;
}
.woocommerce-cart .cart-collaterals .cart_totals .button:hover {
background-color: var(--secondary-color);
color: #fff;
}
.nav-layout-metro .top-bar-section ul li:hover:not(.has-form) > a,
.nav-layout-metro .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
background: none;
}
.color-1, .boxes.colored .columns:nth-child(1) .box-container:hover, ul li.color-1, ul .boxes.colored .columns:nth-child(1) li.box-container:hover, .boxes.colored .columns:nth-child(1) ul li.box-container:hover {
background: #e60000;
}
.color-2, .boxes.colored .columns:nth-child(2) .box-container:hover, ul li.color-2, ul .boxes.colored .columns:nth-child(2) li.box-container:hover, .boxes.colored .columns:nth-child(2) ul li.box-container:hover, .nav-layout-metro .top-bar-section li.has-dropdown.color-2 ul.sub-menu.dropdown a:hover, .nav-layout-metro .top-bar-section .boxes.colored .columns:nth-child(2) li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover, .boxes.colored .columns:nth-child(2) .nav-layout-metro .top-bar-section li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover {
background: #ff751a;
}
.color-3, .boxes.colored .columns:nth-child(3) .box-container:hover, ul li.color-3, ul .boxes.colored .columns:nth-child(3) li.box-container:hover, .boxes.colored .columns:nth-child(3) ul li.box-container:hover, .nav-layout-metro .top-bar-section li.has-dropdown.color-3 ul.sub-menu.dropdown a:hover, .nav-layout-metro .top-bar-section .boxes.colored .columns:nth-child(3) li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover, .boxes.colored .columns:nth-child(3) .nav-layout-metro .top-bar-section li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover {
background: #fbb820;
}
.color-4, .boxes.colored .columns:nth-child(4) .box-container:hover, ul li.color-4, ul .boxes.colored .columns:nth-child(4) li.box-container:hover, .boxes.colored .columns:nth-child(4) ul li.box-container:hover,
.nav-layout-metro .top-bar-section li.has-dropdown.color-4 ul.sub-menu.dropdown a:hover,
.nav-layout-metro .top-bar-section .boxes.colored .columns:nth-child(4) li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover,
.boxes.colored .columns:nth-child(4) .nav-layout-metro .top-bar-section li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover {
background: #94e107;
}
.color-4, .boxes.colored .columns:nth-child(4) .box-container:hover,
.nav-layout-metro .top-bar-section li.has-dropdown.color-4 ul.sub-menu.dropdown a:hover,
.nav-layout-metro .top-bar-section .boxes.colored .columns:nth-child(4) li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover,
.boxes.colored .columns:nth-child(4) .nav-layout-metro .top-bar-section li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover {
background: #94e107;
}
.color-5, .boxes.colored .columns:nth-child(5) .box-container:hover, ul li.color-5, ul .boxes.colored .columns:nth-child(5) li.box-container:hover, .boxes.colored .columns:nth-child(5) ul li.box-container:hover,
.nav-layout-metro .top-bar-section li.has-dropdown.color-5 ul.sub-menu.dropdown a:hover,
.nav-layout-metro .top-bar-section .boxes.colored .columns:nth-child(5) li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover,
.boxes.colored .columns:nth-child(5) .nav-layout-metro .top-bar-section li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover {
background: #009ae7;
}
.color-5, .boxes.colored .columns:nth-child(5) .box-container:hover, ul li.color-5, ul .boxes.colored .columns:nth-child(5) li.box-container:hover, .boxes.colored .columns:nth-child(5) ul li.box-container:hover,
.nav-layout-metro .top-bar-section li.has-dropdown.color-5 ul.sub-menu.dropdown a:hover,
.nav-layout-metro .top-bar-section .boxes.colored .columns:nth-child(5) li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover,
.boxes.colored .columns:nth-child(5) .nav-layout-metro .top-bar-section li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover {
background: #009ae7;
}
.color-6, .boxes.colored .columns:nth-child(6) .box-container:hover, ul li.color-6, ul .boxes.colored .columns:nth-child(6) li.box-container:hover, .boxes.colored .columns:nth-child(6) ul li.box-container:hover,
.nav-layout-metro .top-bar-section li.has-dropdown.color-6 ul.sub-menu.dropdown a:hover,
.nav-layout-metro .top-bar-section .boxes.colored .columns:nth-child(6) li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover,
.boxes.colored .columns:nth-child(6) .nav-layout-metro .top-bar-section li.has-dropdown.box-container:hover ul.sub-menu.dropdown a:hover {
background: #653fc8;
}
.color-7, ul li.color-7,
.nav-layout-metro .top-bar-section li.has-dropdown.color-7 ul.sub-menu.dropdown a:hover {
background: #9b59b6;
}
.color-8, ul li.color-8,
.nav-layout-metro .top-bar-section li.has-dropdown.color-8 ul.sub-menu.dropdown a:hover {
background: #34495e;
}
.color-9, ul li.color-9,
.nav-layout-metro .top-bar-section li.has-dropdown.color-9 ul.sub-menu.dropdown a:hover {
background: #FF00FF;
}
.color-10, ul li.color-10,
.nav-layout-metro .top-bar-section li.has-dropdown.color-10 ul.sub-menu.dropdown a:hover {
background: #000;
}
.color-11, ul li.color-11,
.nav-layout-metro .top-bar-section li.has-dropdown.color-11 ul.sub-menu.dropdown a:hover {
background: #fff;
}
.black, .black .top-bar-section .dropdown, .black .top-bar-section .dropdown li a, .black .top-bar-section .dropdown li.title h5 a, .black .div-hr span,
.black .page,
.black .top-bar-section .dropdown .page,
.black .top-bar-section .dropdown li.title h5 a .page,
.black .div-hr span .page {
background: #222;
color: #FFF;
}
body.black, .black .top-bar-section body.dropdown {
background: #FFF;
}
.black h1, .black .top-bar-section .dropdown h1, .black .top-bar-section .dropdown li a h1, .black .top-bar-section .dropdown li.title h5 a h1, .black .div-hr span h1, .black h2, .black .top-bar-section .dropdown h2, .black .top-bar-section .dropdown li a h2, .black .top-bar-section .dropdown li.title h5 a h2, .black .div-hr span h2, .black h3, .black .top-bar-section .dropdown h3, .black .top-bar-section .dropdown li a h3, .black .top-bar-section .dropdown li.title h5 a h3, .black .div-hr span h3, .black h4, .black .top-bar-section .dropdown h4, .black .top-bar-section .dropdown li a h4, .black .top-bar-section .dropdown li.title h5 a h4, .black .div-hr span h4, .black h5, .black .top-bar-section .dropdown h5, .black .top-bar-section .dropdown li a h5, .black .top-bar-section .dropdown li.title h5 a h5, .black .div-hr span h5, .black h6, .black .top-bar-section .dropdown h6, .black .top-bar-section .dropdown li a h6, .black .top-bar-section .dropdown li.title h5 a h6, .black .div-hr span h6 {
color: #FFF;
}
.wpb_column h3 {
color: inherit;
}
.l-boxed .page {
box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
div.vc_separator h4 {
font-size: 2em;
}
.nav-layout-metro .top-bar-section li.has-dropdown ul.sub-menu.dropdown a:hover {
color: #fff;
}
.wd-section-title-black h2 {
font-size: 36px;
color: #333;
}
.wd-section-title-black h3 {
font-size: 24px;
color: #777;
}
.wd-section-title-with h1, .wd-section-title-with h2, .wd-section-title-with h3, .wd-section-title-with h4 {
color: #fff;
}
.wd-section-title-with h2 {
font-size: 36px;
}
.wd-section-title-with h3 {
font-size: 24px;
color: #fff;
}
.wd-section-title-m-black h2,
.wd-section-title-m-black h2:last-child {
font-size: 36px;
color: #222;
}
.wd-section-title-m-black h3,
.wd-section-title-m-black h3:last-child {
font-weight: 400;
color: #222;
margin-bottom: 17px;
display: block;
}
.bg-1 {
background: #1B1A1C;
background-size: cover;
color: #fff;
}
.bg-2 {
background: #333 url(//shop.alumetsmetal.com/wp-content/themes/doors/img/blackboard.jpg) no-repeat center center;
background-size: cover;
color: #fff;
}
.bg-3 {
color: #fff;
background: #A2E29E;
}
.bg-4 {
background: #30353c;
color: #4e5154;
}
.bg-5 {
background: #514B48;
color: #7D746F;
}
.bg-6 {
background: #1d211f;
color: #6ed19f;
}
.bg-7 {
color: #C3E9F5;
background: linear-gradient(45deg, #7e67e5, #02cbdf);
}
.bg-8 {
background: #383e4c;
color: #fff;
}
.bg-9 {
background: #efb7b7;
color: #382628;
}
.bg-10 {
color: #eaebed;
}
.bg-11 {
background: #f7faf9;
}
.bg-12 {
background: #647df9;
color: #7a90ff;
}
.bg-12 p {
color: #fff;
text-align: center;
}
.bg-12 a {
color: #fff;
font-weight: bold;
}
.bg-12 a:hover,
.bg-12 a:focus {
color: rgba(0, 0, 0, 0.3);
}
.section-container.auto > section > .title,
.section-container.auto > .section > .title {
background-color: #FAFAFA;
border: 1px solid #EEEEEE;
}
.black .section-container.auto > section > .title, .black .top-bar-section .dropdown .section-container.auto > section > .title, .black .top-bar-section .dropdown li a .section-container.auto > section > .title, .black .div-hr span .section-container.auto > section > .title, .black .section-container.auto > .section > .title, .black .top-bar-section .dropdown .section-container.auto > .section > .title, .black .top-bar-section .dropdown li a .section-container.auto > .section > .title, .black .div-hr span .section-container.auto > .section > .title {
background-color: #444;
border: 1px solid #333;
}
.section-container.auto > section > .title:hover,
.section-container.auto > .section > .title:hover {
background-color: #F2F2F2;
}
.section-container.auto > section > .title a,
.section-container.auto > .section > .title a {
padding: 0.7em 1.07143em;
}
.section-container.auto > section.active .title,
.section-container.auto > .section.active .title {
border-top: 2px solid var(--primary-color);
}
.section-container.auto > section:last-child .title,
.section-container.auto > .section:last-child .title {
border-right: 1px solid #EEEEEE;
}
.black .section-container.auto > section:last-child .title, .black .top-bar-section .dropdown .section-container.auto > section:last-child .title, .black .top-bar-section .dropdown li a .section-container.auto > section:last-child .title, .black .div-hr span .section-container.auto > section:last-child .title, .black .section-container.auto > .section:last-child .title, .black .top-bar-section .dropdown .section-container.auto > .section:last-child .title, .black .top-bar-section .dropdown li a .section-container.auto > .section:last-child .title, .black .div-hr span .section-container.auto > .section:last-child .title {
border-right: 1px solid #333;
}
.section-container.auto > section > .content,
.section-container.auto > section > .content,
.section-container.auto > .section > .content,
.section-container.auto > .section > .content {
background-color: #FFFFFF;
border: 1px solid #EEE;
padding: 1.07143em;
}
.black .section-container.auto > section > .content, .black .top-bar-section .dropdown .section-container.auto > section > .content, .black .top-bar-section .dropdown li a .section-container.auto > section > .content, .black .div-hr span .section-container.auto > section > .content, .black .section-container.auto > section > .content, .black .top-bar-section .dropdown .section-container.auto > section > .content, .black .top-bar-section .dropdown li a .section-container.auto > section > .content, .black .div-hr span .section-container.auto > section > .content, .black .section-container.auto > .section > .content, .black .top-bar-section .dropdown .section-container.auto > .section > .content, .black .top-bar-section .dropdown li a .section-container.auto > .section > .content, .black .div-hr span .section-container.auto > .section > .content, .black .section-container.auto > .section > .content, .black .top-bar-section .dropdown .section-container.auto > .section > .content, .black .top-bar-section .dropdown li a .section-container.auto > .section > .content, .black .div-hr span .section-container.auto > .section > .content {
background-color: #272727;
border: 1px solid #333;
}
.section-container.auto > section > .title,
.section-container.auto > .section > .title,
.section-container.vertical-tabs > section > .title,
.section-container.vertical-tabs > .section > .title,
.section-container.vertical-nav > section > .title,
.section-container.vertical-nav > .section > .title,
.section-container.horizontal-nav > section > .title,
.section-container.horizontal-nav > .section > .title,
.section-container.accordion > section > .title,
.section-container.accordion > .section > .title {
background-color: #FAFAFA;
}
.black .section-container.auto > section > .title, .black .top-bar-section .dropdown .section-container.auto > section > .title, .black .top-bar-section .dropdown li a .section-container.auto > section > .title, .black .div-hr span .section-container.auto > section > .title, .black .section-container.auto > .section > .title, .black .top-bar-section .dropdown .section-container.auto > .section > .title, .black .top-bar-section .dropdown li a .section-container.auto > .section > .title, .black .div-hr span .section-container.auto > .section > .title, .black .section-container.vertical-tabs > section > .title, .black .top-bar-section .dropdown .section-container.vertical-tabs > section > .title, .black .top-bar-section .dropdown li a .section-container.vertical-tabs > section > .title, .black .div-hr span .section-container.vertical-tabs > section > .title, .black .section-container.vertical-tabs > .section > .title, .black .top-bar-section .dropdown .section-container.vertical-tabs > .section > .title, .black .top-bar-section .dropdown li a .section-container.vertical-tabs > .section > .title, .black .div-hr span .section-container.vertical-tabs > .section > .title, .black .section-container.vertical-nav > section > .title, .black .top-bar-section .dropdown .section-container.vertical-nav > section > .title, .black .top-bar-section .dropdown li a .section-container.vertical-nav > section > .title, .black .div-hr span .section-container.vertical-nav > section > .title, .black .section-container.vertical-nav > .section > .title, .black .top-bar-section .dropdown .section-container.vertical-nav > .section > .title, .black .top-bar-section .dropdown li a .section-container.vertical-nav > .section > .title, .black .div-hr span .section-container.vertical-nav > .section > .title, .black .section-container.horizontal-nav > section > .title, .black .top-bar-section .dropdown .section-container.horizontal-nav > section > .title, .black .top-bar-section .dropdown li a .section-container.horizontal-nav > section > .title, .black .div-hr span .section-container.horizontal-nav > section > .title, .black .section-container.horizontal-nav > .section > .title, .black .top-bar-section .dropdown .section-container.horizontal-nav > .section > .title, .black .top-bar-section .dropdown li a .section-container.horizontal-nav > .section > .title, .black .div-hr span .section-container.horizontal-nav > .section > .title, .black .section-container.accordion > section > .title, .black .top-bar-section .dropdown .section-container.accordion > section > .title, .black .top-bar-section .dropdown li a .section-container.accordion > section > .title, .black .div-hr span .section-container.accordion > section > .title, .black .section-container.accordion > .section > .title, .black .top-bar-section .dropdown .section-container.accordion > .section > .title, .black .top-bar-section .dropdown li a .section-container.accordion > .section > .title, .black .div-hr span .section-container.accordion > .section > .title {
background-color: #444;
}
.black .section-container.auto > section > .title a, .black .top-bar-section .dropdown .section-container.auto > section > .title a, .black .top-bar-section .dropdown li a .section-container.auto > section > .title a, .black .div-hr span .section-container.auto > section > .title a, .black .section-container.auto > .section > .title a, .black .top-bar-section .dropdown .section-container.auto > .section > .title a, .black .top-bar-section .dropdown li a .section-container.auto > .section > .title a, .black .div-hr span .section-container.auto > .section > .title a, .black .section-container.vertical-tabs > section > .title a, .black .top-bar-section .dropdown .section-container.vertical-tabs > section > .title a, .black .top-bar-section .dropdown li a .section-container.vertical-tabs > section > .title a, .black .div-hr span .section-container.vertical-tabs > section > .title a, .black .section-container.vertical-tabs > .section > .title a, .black .top-bar-section .dropdown .section-container.vertical-tabs > .section > .title a, .black .top-bar-section .dropdown li a .section-container.vertical-tabs > .section > .title a, .black .div-hr span .section-container.vertical-tabs > .section > .title a, .black .section-container.vertical-nav > section > .title a, .black .top-bar-section .dropdown .section-container.vertical-nav > section > .title a, .black .top-bar-section .dropdown li a .section-container.vertical-nav > section > .title a, .black .div-hr span .section-container.vertical-nav > section > .title a, .black .section-container.vertical-nav > .section > .title a, .black .top-bar-section .dropdown .section-container.vertical-nav > .section > .title a, .black .top-bar-section .dropdown li a .section-container.vertical-nav > .section > .title a, .black .div-hr span .section-container.vertical-nav > .section > .title a, .black .section-container.horizontal-nav > section > .title a, .black .top-bar-section .dropdown .section-container.horizontal-nav > section > .title a, .black .top-bar-section .dropdown li a .section-container.horizontal-nav > section > .title a, .black .div-hr span .section-container.horizontal-nav > section > .title a, .black .section-container.horizontal-nav > .section > .title a, .black .top-bar-section .dropdown .section-container.horizontal-nav > .section > .title a, .black .top-bar-section .dropdown li a .section-container.horizontal-nav > .section > .title a, .black .div-hr span .section-container.horizontal-nav > .section > .title a, .black .section-container.accordion > section > .title a, .black .top-bar-section .dropdown .section-container.accordion > section > .title a, .black .top-bar-section .dropdown li a .section-container.accordion > section > .title a, .black .div-hr span .section-container.accordion > section > .title a, .black .section-container.accordion > .section > .title a, .black .top-bar-section .dropdown .section-container.accordion > .section > .title a, .black .top-bar-section .dropdown li a .section-container.accordion > .section > .title a, .black .div-hr span .section-container.accordion > .section > .title a {
color: #FFF;
}
.section-container.auto,
.section-container.vertical-tabs,
.section-container.vertical-nav,
.section-container.horizontal-nav,
.section-container.accordion {
border: none;
}
.section-container.accordion > section > .title,
.section-container.accordion > .section > .title {
border: none;
}
.section-container.auto > section.active > .title,
.section-container.auto > .section.active > .title,
.section-container.vertical-tabs > section.active > .title,
.section-container.vertical-tabs > .section.active > .title,
.section-container.vertical-nav > section.active > .title,
.section-container.vertical-nav > .section.active > .title,
.section-container.horizontal-nav > section.active > .title,
.section-container.horizontal-nav > .section.active > .title,
.section-container.accordion > section.active > .title,
.section-container.accordion > .section.active > .title {
background: #FFF;
border-top: 2px solid var(--primary-color);
}
.black .section-container.auto > section.active > .title, .black .top-bar-section .dropdown .section-container.auto > section.active > .title, .black .top-bar-section .dropdown li a .section-container.auto > section.active > .title, .black .div-hr span .section-container.auto > section.active > .title, .black .section-container.auto > .section.active > .title, .black .top-bar-section .dropdown .section-container.auto > .section.active > .title, .black .top-bar-section .dropdown li a .section-container.auto > .section.active > .title, .black .div-hr span .section-container.auto > .section.active > .title, .black .section-container.vertical-tabs > section.active > .title, .black .top-bar-section .dropdown .section-container.vertical-tabs > section.active > .title, .black .top-bar-section .dropdown li a .section-container.vertical-tabs > section.active > .title, .black .div-hr span .section-container.vertical-tabs > section.active > .title, .black .section-container.vertical-tabs > .section.active > .title, .black .top-bar-section .dropdown .section-container.vertical-tabs > .section.active > .title, .black .top-bar-section .dropdown li a .section-container.vertical-tabs > .section.active > .title, .black .div-hr span .section-container.vertical-tabs > .section.active > .title, .black .section-container.vertical-nav > section.active > .title, .black .top-bar-section .dropdown .section-container.vertical-nav > section.active > .title, .black .top-bar-section .dropdown li a .section-container.vertical-nav > section.active > .title, .black .div-hr span .section-container.vertical-nav > section.active > .title, .black .section-container.vertical-nav > .section.active > .title, .black .top-bar-section .dropdown .section-container.vertical-nav > .section.active > .title, .black .top-bar-section .dropdown li a .section-container.vertical-nav > .section.active > .title, .black .div-hr span .section-container.vertical-nav > .section.active > .title, .black .section-container.horizontal-nav > section.active > .title, .black .top-bar-section .dropdown .section-container.horizontal-nav > section.active > .title, .black .top-bar-section .dropdown li a .section-container.horizontal-nav > section.active > .title, .black .div-hr span .section-container.horizontal-nav > section.active > .title, .black .section-container.horizontal-nav > .section.active > .title, .black .top-bar-section .dropdown .section-container.horizontal-nav > .section.active > .title, .black .top-bar-section .dropdown li a .section-container.horizontal-nav > .section.active > .title, .black .div-hr span .section-container.horizontal-nav > .section.active > .title, .black .section-container.accordion > section.active > .title, .black .top-bar-section .dropdown .section-container.accordion > section.active > .title, .black .top-bar-section .dropdown li a .section-container.accordion > section.active > .title, .black .div-hr span .section-container.accordion > section.active > .title, .black .section-container.accordion > .section.active > .title, .black .top-bar-section .dropdown .section-container.accordion > .section.active > .title, .black .top-bar-section .dropdown li a .section-container.accordion > .section.active > .title, .black .div-hr span .section-container.accordion > .section.active > .title {
background-color: #272727;
}
.section-container.accordion > section > .content,
.section-container.accordion > .section > .content {
border: none;
border-top: 1px solid #EEE;
}
.black .section-container.accordion > section > .content, .black .top-bar-section .dropdown .section-container.accordion > section > .content, .black .top-bar-section .dropdown li a .section-container.accordion > section > .content, .black .div-hr span .section-container.accordion > section > .content, .black .section-container.accordion > .section > .content, .black .top-bar-section .dropdown .section-container.accordion > .section > .content, .black .top-bar-section .dropdown li a .section-container.accordion > .section > .content, .black .div-hr span .section-container.accordion > .section > .content {
background-color: #272727;
border-top: 1px solid #888;
}
.wd-all-image-detail ul {
list-style: none;
}
.wd-all-image-detail i {
border: 1px solid #eee;
padding: 15px;
border-radius: 50%;
margin-right: 10px;
font-size: 1.5em;
background: #fff;
color: #db4436;
}
.wd-all-image-detail .active i {
background: var(--primary-color);
border-color: var(--primary-color);
color: #fff;
}
.wd-all-image-detail li {
margin-bottom: 20px;
}
.wd-all-image {
height: 400px;
overflow: hidden;
position: relative;
width: 50%;
}
.wd-all-image > div img {
transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
display: block;
position: absolute;
}
.wd-all-image > div img:nth-child(2) {
transition-delay: 0.5s;
z-index: 100;
right: 0;
}
.wd-hide img {
opacity: 0;
transform: translateX(360px);
}
.wd-all-image-detail ul li:last-child .box-icon:after {
display: none;
}
.wd-all-image-detail .box-icon {
float: left;
position: relative;
}
.wd-all-image-detail .box-icon:after {
background: #eee none repeat scroll 0 0;
content: " ";
display: inline-block;
height: 55px;
left: 25px;
position: absolute;
top: 55px;
width: 1px;
}
.wd-all-image-detail .box-text {
padding-left: 80px;
cursor: pointer;
}
.wd-all-image-detail .box-text p {
color: #777;
}
.calendar-calendar th.days {
background-color: #D0029A;
border: 0 solid #CCCCCC;
color: #FFFFFF;
font-weight: bold;
padding: 14px 5px;
}
#admin-menu,
#toolbar {
box-shadow: none;
}
.top-bar .toggle-topbar.menu-icon a span {
box-shadow: 0 10px 0 1px #000000, 0 16px 0 1px #000000, 0 22px 0 1px #000000;
color: #777777;
}
.social-icons li i {
font-size: 1em;
border-radius: 50%;
border: 1px solid #ddd;
color: #ddd;
}
.social-icons li i:hover {
border: 1px solid #fff;
color: #fff;
}
.social-icons.accent li i {
border: 1px solid #fff;
color: #fff;
}
.social-icons.accent li i:hover {
border: 1px solid #aaa;
color: #aaa;
}
.header-top {
background: #999;
color: #FFF;
}
.black .header-top, .black .top-bar-section .dropdown .header-top, .black .top-bar-section .dropdown li.title h5 a .header-top, .black .div-hr span .header-top {
background: #333;
color: #FFF;
}
.header-top .columns > * {
font-size: em-calc(13);
}
.contain-to-grid, .top-bar {
background: #FFF;
}
.black .contain-to-grid, .black .top-bar-section .dropdown .contain-to-grid, .black .top-bar-section .dropdown li.title h5 a .contain-to-grid, .black .div-hr span .contain-to-grid, .black .top-bar, .black .top-bar-section .dropdown .top-bar, .black .top-bar-section .dropdown li.title h5 a .top-bar, .black .div-hr span .top-bar {
background: #222;
}
.top-bar.expanded .title-bar {
background: #FFFFFF;
}
.top-bar .name h1 a {
background: #fff;
font-weight: 300;
font-size: em-calc(33);
color: #000;
}
.top-bar .name h1 a img {
transition: all 0.4s ease 0s;
max-height: 64px;
}
@media print, screen and (max-width: 39.99875em) {
.top-bar .name h1 a img {
max-height: 34px;
bottom: 0;
position: absolute;
}
}
.black .top-bar .name h1 a, .black .top-bar-section .dropdown li.title h5 a .top-bar .name h1 a {
background: #222;
color: #FFF;
}
@media only screen and (max-width: 768px) {
.top-bar li.name h1 a {
font-size: em-calc(18);
}
}
.top-bar-section, .top-bar-section ul, .top-bar-section li a:not(.button) {
background: transparent;
}
.top-bar-section .dropdown {
background: #FFF;
box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
.top-bar-section .dropdown li a,
.top-bar-section .dropdown li.title h5 a {
color: #000;
}
.top-bar-section .dropdown li a:hover {
color: #fff;
}
.top-bar-section ul li:hover > a,
.top-bar-section li a:not(.button):hover {
background: transparent;
}
.top-bar-section .main-nav > li > a:not(.button) {
font-weight: 400;
font-size: em-calc(13);
text-transform: uppercase;
}
.top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
color: black;
}
.black .top-bar-section .main-nav > li, .black .top-bar-section .dropdown .top-bar-section .main-nav > li {
background: #222;
}
.top-bar-section .color-1 li a:hover, .top-bar-section .boxes.colored .columns:nth-child(1) .box-container:hover li a:hover, .boxes.colored .columns:nth-child(1) .top-bar-section .box-container:hover li a:hover {
background: #c00;
}
.top-bar-section .color-2 li a:hover, .top-bar-section .boxes.colored .columns:nth-child(2) .box-container:hover li a:hover, .boxes.colored .columns:nth-child(2) .top-bar-section .box-container:hover li a:hover {
background: #ff751a;
}
.top-bar-section .color-3 li a:hover, .top-bar-section .boxes.colored .columns:nth-child(3) .box-container:hover li a:hover, .boxes.colored .columns:nth-child(3) .top-bar-section .box-container:hover li a:hover {
background: #fbb820;
}
.top-bar-section .color-4 li a:hover, .top-bar-section .boxes.colored .columns:nth-child(4) .box-container:hover li a:hover, .boxes.colored .columns:nth-child(4) .top-bar-section .box-container:hover li a:hover {
background: #94e107;
}
.top-bar-section .color-5 li a:hover, .top-bar-section .boxes.colored .columns:nth-child(5) .box-container:hover li a:hover, .boxes.colored .columns:nth-child(5) .top-bar-section .box-container:hover li a:hover {
background: #009ae7;
}
.top-bar-section .color-6 li a:hover, .top-bar-section .boxes.colored .columns:nth-child(6) .box-container:hover li a:hover, .boxes.colored .columns:nth-child(6) .top-bar-section .box-container:hover li a:hover {
background: #653fc8;
}
.top-bar-section .color-7 li a:hover {
background: #9b59b6;
}
.top-bar-section .color-8 li a:hover {
background: #34495e;
}
.top-bar-section .color-9 li a:hover {
background: #FF00FF;
}
.top-bar-section .color-10 li a:hover {
background: #000;
}
.top-bar-section .color-11 li a:hover {
background: #fff;
} .titlebar {
background: #265FB4 url(//shop.alumetsmetal.com/wp-content/themes/doors/images/title-bg.jpg);
position: relative;
border-top: 1px solid #ebeded;
border-bottom: 1px solid #ebeded;
position: relative;
margin-bottom: 60px;
padding-top: 30px;
}
@media print, screen and (min-width: 64em) {
.titlebar {
padding-top: 180px;
}
}
.titlebar > .row {
z-index: 1;
position: relative;
}
.titlebar:after {
content: '';
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.black .titlebar, .black .top-bar-section .dropdown .titlebar, .black .top-bar-section .dropdown li.title h5 a .titlebar, .black .div-hr span .titlebar {
background: #292929;
}
.titlebar .button.secondary {
font-size: em-calc(12);
padding: 2px 4px;
}
.titlebar .title {
font-size: 2.714em;
line-height: 1.265em;
color: #FFF;
}
.titlebar .title:after {
content: "";
display: block;
width: 10%;
height: 10px;
background: #FFDD01;
position: absolute;
bottom: 61px;
left: 5px;
z-index: -1;
}
@media print, screen and (max-width: 39.99875em) {
.titlebar .title:after {
bottom: auto;
}
}
.black .titlebar .title, .black .top-bar-section .dropdown li a .titlebar .title {
color: #EEE;
}
.titlebar .subtitle {
color: #DDD;
}
.breadcrumbs {
background: none;
border: none;
}
.breadcrumbs > li {
line-height: 15px;
margin-bottom: 5px;
color: #FFF;
}
.breadcrumbs, .breadcrumbs a, .breadcrumbs > .current a {
color: rgba(255, 255, 255, 0.85);
}
.breadcrumbs:hover, .breadcrumbs a:hover, .breadcrumbs > .current a:hover {
color: #FFF;
}
.black .breadcrumbs, .black .top-bar-section .dropdown .breadcrumbs, .black .top-bar-section .dropdown li.title h5 a .breadcrumbs, .black .div-hr span .breadcrumbs, .black .breadcrumbs a, .black .top-bar-section .dropdown .breadcrumbs a, .black .top-bar-section .dropdown li.title h5 a .breadcrumbs a, .black .breadcrumbs > .current a, .black .top-bar-section .dropdown .breadcrumbs > .current a, .black .top-bar-section .dropdown li a .breadcrumbs > .current a, .black .div-hr span .breadcrumbs > .current a {
color: #ccc;
}
.right nav.woocommerce-breadcrumb {
margin-top: 80px;
}
.right nav.woocommerce-breadcrumb a {
color: rgba(255, 255, 255, 0.85);
}
.hidden-cart {
background-color: #FFF;
padding: 15px;
position: absolute;
right: 0;
top: 65px;
width: 320px;
z-index: 1;
border-radius: 3px;
border: 1px solid #EEE;
}
.hidden-cart li img {
border: 1px solid #eee;
}
.hidden-cart .woocommerce-mini-cart li.mini_cart_item {
margin-left: 0 !important;
padding: 0;
position: relative;
width: 100%;
margin-bottom: 10px;
}
.hidden-cart .woocommerce-mini-cart li.mini_cart_item .remove_from_cart_button {
left: auto;
right: 0;
color: #333 !important;
border: 1px solid #333;
line-height: 15px;
text-align: center;
width: 15px;
height: 15px;
}
.hidden-cart .woocommerce-mini-cart li.mini_cart_item .remove_from_cart_button:hover {
background-color: #FFF;
}
.hidden-cart .widget_shopping_cart ul.cart_list li.empty {
padding: 0;
}
.hidden-cart .widget_shopping_cart {
overflow: hidden;
}
.hidden-cart .widget_shopping_cart .woocommerce-mini-cart__buttons a {
background-color: var(--primary-color);
color: #FFF !important;
}
.styleswitcher {
background: none repeat scroll 0 0 #FFFFFF;
box-shadow: 0 0 0 1px #CCCCCC;
padding: 18px 20px;
position: fixed;
top: 185px;
width: 160px;
z-index: 99;
}
.title-styleswitcher {
padding: 0 0 8px;
color: #222222;
}
.styleswitcher-contener .selector {
background: #FFFFFF;
color: #222222;
border-radius: 0 3px 3px 0;
box-shadow: 1px 0 0 1px #CCCCCC;
height: 30px;
position: absolute;
right: -30px;
font-size: 1.5em;
padding: 5px;
top: 0;
width: 30px;
z-index: 99;
}
.styleswitcher .colors {
height: 45px;
}
.styleswitcher .schemas li {
display: inline-block;
float: left;
margin: 5px;
width: 20px;
}
.styleswitcher .schemas a {
float: left;
height: 20px;
text-indent: -9999%;
width: 20px;
}
.styleswitcher hr {
margin-bottom: 8px;
}
.styleswitcher .schemas.headers li {
width: 90px;
}
.styleswitcher .schemas.headers a {
text-indent: 0;
width: 70px;
} .box-container {
transition: all .3s ease-in;
}
.box-title {
padding: 18px 0 15px;
margin: 0;
font-size: em-calc(22);
font-weight: 300;
transition: all 0.3s ease 0s;
}
.colored .box-container:hover .box-title {
color: #FFFFFF;
}  .square-txt {
color: #fff;
padding-top: 15px;
}
.square-txt h2 {
font-size: em-calc(24);
font-weight: 300;
}
.square-txt .post_text {
font-size: em-calc(14);
}
.square-txt a {
color: #FFF;
font-size: inherit;
}
.square-txt a:hover {
text-decoration: underline;
}
.square-row .square-img .fa {
color: #FFF;
border: 2px solid;
}
.square-row:hover .square-img .fa {
opacity: 1;
} .wide-region .block-views-clients-block {
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/images/bg-3.jpg);
background-size: cover;
color: #FFF;
}
.wide-region .block-views-clients-block, .wide-region .block-views-clients-block .block-title {
color: #FFF;
}
.wide-region .block-views-clients-block .block-title {
font-size: em-calc(40);
}
.wide-region .block-views-clients-block .es-slides li {
opacity: .7;
}
#project-info {
background: #FFF;
left: 0;
position: fixed;
top: 0;
z-index: 999;
width: 100%;
padding: 4em 3em 2em;
transition: all .5s ease;
}
#project-info.small {
border-radius: 50%;
box-shadow: 0 0 200px 0 #555555;
height: 150px;
min-height: 150px !important;
left: calc(50% - 150px);
overflow: hidden;
top: calc(50% - 150px);
width: 150px;
}
.project-head-title {
border-bottom: 1px dashed #EEEEEE;
margin-bottom: 2em;
padding-bottom: 5px;
padding-top: 2em;
}
.page.frozen {
display: none;
height: 0;
overflow: hidden;
position: fixed;
transform: translate3d(0px, 0px, 0px);
}
#project-info i.fa-plus {
cursor: pointer;
font-size: 2em;
transition: all .5s ease;
transform: rotate(45deg);
}
#project-info i.fa-plus:hover {
font-size: 2.5em;
transform: rotate(-45deg);
}/*/*/.horiz-scroll li div {
background: #CCCCCC;
}/*/*/.div-hr {
background: #D5D5D5;
}
.div-hr span {
background: #FFFFFF;
color: #BBBBBB;
}/**/.block-block-17,
.row.call-action {
color: #FFF;
}
.block-block-17 .block-content p.p-t-15,
.row.call-action .block-content p.p-t-15 {
font-size: em-calc(18);
}
.row.call-action {
margin: 50px 0;
padding: 20px 10px 0;
}
.row.call-action .large-8 {
font-size: em-calc(18);
} .block-comment-recent ul li {
list-style: square;
} .carousel-details h3 {
font-size: 1.2em;
}
.table-div, .table-div .full_section_container, .table-div .section_container {
height: 100%;
min-height: 500px;
}
.table-div > div .wpb_column {
height: 100%;
vertical-align: middle;
padding: 0 6%;
min-height: 500px;
} .testimonials {
margin: 0;
}
.testimonials blockquote {
border: none;
color: inherit;
}
.testimonials blockquote img {
border-radius: 0;
margin: 24px 20px 30px;
margin: 0 auto;
height: 100px;
margin-bottom: 14px;
border-radius: 50%;
}
.testimonials blockquote cite {
text-align: center;
padding-left: 0;
font-size: 16px;
color: #666;
font-weight: 600;
}
.testimonials blockquote cite:before {
content: "";
}
.testimonials blockquote .job-title {
color: #000000;
font-size: 14px;
text-align: center;
}
.testimonials p {
margin-top: 15px;
line-height: 1.714;
color: #636363;
color: inherit;
text-align: center;
font-family: 'Lora', serif;
font-style: italic;
margin-bottom: 5px;
}
.testimonials p:after {
content: "\f10e";
font-family: "FontAwesome";
color: #d2d2d2;
font-size: 18px;
margin: 10px 51px 0px;
display: block;
}
.testimonials .quote {
display: none;
}
.testimonials.owl-carousel .owl-item img {
width: 100px;
}
.blog-page .quote-format blockquote {
background-color: #fff;
box-shadow: none;
border-left: none;
padding: 30px;
position: relative;
margin: 80px 0 50px;
}
.blog-page .quote-format p {
color: #222;
font-size: 1.7em;
font-style: normal;
}
.blog-page .quote-format p a {
color: #222;
font-weight: 600;
}
.blog-page .quote-format h2 {
font-size: 0.8em;
margin-left: 20px;
float: right;
}
.blog-page .quote-format .quotes {
color: rgba(0, 0, 0, 0.2);
font-size: 4em;
position: absolute;
}
.blog-page .quote-format .leftq {
left: 10px;
top: -20px;
color: #ddd;
font-family: "FontAwesome";
}
.blog-page .quote-format .rightq {
bottom: 15px;
right: 15px;
color: #ddd;
}
.blog-page .format-link .quote-format .leftq {
left: 0;
top: 6px;
color: #BEBEBE;
font-size: 2em;
transform: rotate(-45deg) translateX(-8px);
padding: 15px 0px;
} iframe {
width: 100%;
}
div.map-popup {
display: inline-block;
}
div.map-img {
display: inline-block;
float: left;
width: 320px;
}
div.map-text {
display: inline-block;
width: 10em;
margin-left: 0.5em;
}
div#map-canvas .gm-style-iw div {
overflow: hidden !important;
}
.doors_wrapper {
background: none repeat scroll 0 0 #fff;
margin: 0 auto;
max-width: 79em;
position: relative;
}
.bg_body_color {
background: #aaa;
padding-top: 15px;
padding-bottom: 15px;
}
img.bg_image_body {
height: auto;
left: 0;
min-height: 100%;
min-width: 1024px;
position: fixed;
top: 0;
width: 100%;
}
@font-face {
font-weight: normal;
font-style: normal;
font-family: 'feathericons';
}
.grid_hover {
position: relative;
margin: 0 auto;
padding: 1em 0 4em;
max-width: 1000px;
list-style: none;
text-align: center;
} .grid_hover figure {
position: relative;
float: left;
overflow: hidden;
margin: 10px 1%;
min-width: 320px;
max-width: 480px;
max-height: 250px;
width: 100%;
background: #3085a3;
text-align: center;
cursor: pointer;
}
.grid_hover figure img {
position: relative;
display: block;
min-height: 100%;
max-width: inherit;
opacity: 0.8;
}
.grid_hover figure figcaption {
padding: 2em;
color: #fff;
text-transform: uppercase;
font-size: 1.25em;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.grid_hover figure h2 {
color: inherit;
}
.grid_hover figure figcaption::before,
.grid_hover figure figcaption::after {
pointer-events: none;
}
.grid_hover figure figcaption,
.grid_hover figure figcaption > a {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}  .grid_hover figure figcaption > a {
z-index: 1000;
text-indent: 200%;
white-space: nowrap;
font-size: 0;
opacity: 0;
}
.grid_hover figure h2 {
word-spacing: -0.15em;
font-weight: 300;
font-size: 30px;
}
.grid_hover figure h2 span {
font-weight: 900;
}
.grid_hover figure h2,
.grid_hover figure p {
margin: 0;
}
.grid_hover figure p {
letter-spacing: 1px;
font-size: 68.5%;
}    figure.effect-lily img {
max-width: none;
width: calc(100% + 50px);
opacity: 0.7;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(-40px, 0, 0);
}
figure.effect-lily figcaption {
text-align: left;
}
figure.effect-lily figcaption > div {
position: absolute;
bottom: 0;
left: 0;
padding: 2em;
width: 100%;
height: 50%;
}
figure.effect-lily h2,
figure.effect-lily p {
transform: translate3d(0, 40px, 0);
}
figure.effect-lily h2 {
transition: transform 0.35s;
font-size: 24px;
}
figure.effect-lily p {
color: rgba(255, 255, 255, 0.8);
opacity: 0;
transition: opacity 0.2s, transform 0.35s;
}
figure.effect-lily:hover img,
figure.effect-lily:hover p {
opacity: 1;
}
figure.effect-lily:hover img,
figure.effect-lily:hover h2,
figure.effect-lily:hover p {
transform: translate3d(0, 0, 0);
}
figure.effect-lily:hover p {
transition-delay: 0.05s;
transition-duration: 0.35s;
}   figure.effect-sadie figcaption::before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgba(72, 76, 97, 0) 0%, rgba(72, 76, 97, 0.8) 75%);
content: '';
opacity: 0;
transform: translate3d(0, 50%, 0);
}
figure.effect-sadie h2 {
position: absolute;
top: 50%;
left: 0;
width: 100%;
color: #484c61;
transition: transform 0.35s, color 0.35s;
transform: translate3d(0, -50%, 0);
}
figure.effect-sadie figcaption::before,
figure.effect-sadie p {
transition: opacity 0.35s, transform 0.35s;
}
figure.effect-sadie p {
position: absolute;
bottom: 0;
left: 0;
padding: 2em;
width: 100%;
opacity: 0;
transform: translate3d(0, 10px, 0);
}
figure.effect-sadie:hover h2 {
color: #fff;
transform: translate3d(0, -50%, 0) translate3d(0, -40px, 0);
}
figure.effect-sadie:hover figcaption::before,
figure.effect-sadie:hover p {
opacity: 1;
transform: translate3d(0, 0, 0);
}   figure.effect-roxy {
background: linear-gradient(45deg, #ff89e9 0%, #05abe0 100%);
}
figure.effect-roxy img {
max-width: none;
width: calc(100% + 60px);
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(-50px, 0, 0);
}
figure.effect-roxy figcaption::before {
position: absolute;
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
border: 1px solid #fff;
content: '';
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(-20px, 0, 0);
}
figure.effect-roxy figcaption {
padding: 3em;
text-align: left;
}
figure.effect-roxy h2 {
padding: 30% 0 10px 0;
}
figure.effect-roxy p {
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(-10px, 0, 0);
}
figure.effect-roxy:hover img {
opacity: 0.7;
transform: translate3d(0, 0, 0);
}
figure.effect-roxy:hover figcaption::before,
figure.effect-roxy:hover p {
opacity: 1;
transform: translate3d(0, 0, 0);
}   figure.effect-bubba {
background: #9e5406;
}
figure.effect-bubba img {
opacity: 0.7;
transition: opacity 0.35s;
}
figure.effect-bubba:hover img {
opacity: 0.4;
}
figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
position: absolute;
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
content: '';
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
}
figure.effect-bubba figcaption::before {
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
transform: scale(0, 1);
}
figure.effect-bubba figcaption::after {
border-right: 1px solid #fff;
border-left: 1px solid #fff;
transform: scale(1, 0);
}
figure.effect-bubba h2 {
padding-top: 30%;
transition: transform 0.35s;
transform: translate3d(0, -20px, 0);
}
figure.effect-bubba p {
padding: 20px 2.5em;
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(0, 20px, 0);
}
figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
opacity: 1;
transform: scale(1);
}
figure.effect-bubba:hover h2,
figure.effect-bubba:hover p {
opacity: 1;
transform: translate3d(0, 0, 0);
}   figure.effect-romeo {
perspective: 1000px;
}
figure.effect-romeo img {
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(0, 0, 300px);
}
figure.effect-romeo:hover img {
opacity: 0.6;
transform: translate3d(0, 0, 0);
}
figure.effect-romeo figcaption::before,
figure.effect-romeo figcaption::after {
position: absolute;
top: 50%;
left: 50%;
width: 80%;
height: 1px;
background: #fff;
content: '';
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(-50%, -50%, 0);
}
figure.effect-romeo:hover figcaption::before {
opacity: 0.5;
transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
figure.effect-romeo:hover figcaption::after {
opacity: 0.5;
transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
figure.effect-romeo h2,
figure.effect-romeo p {
position: absolute;
top: 50%;
left: 0;
width: 100%;
transition: transform 0.35s;
}
figure.effect-romeo h2 {
transform: translate3d(0, -50%, 0) translate3d(0, -150%, 0);
}
figure.effect-romeo p {
padding: 0.25em 2em;
transform: translate3d(0, -50%, 0) translate3d(0, 150%, 0);
}
figure.effect-romeo:hover h2 {
transform: translate3d(0, -50%, 0) translate3d(0, -100%, 0);
}
figure.effect-romeo:hover p {
transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
}   figure.effect-layla {
background: #18a367;
height: 330px;
}
figure.effect-layla img {
height: 360px;
}
figure.effect-layla figcaption {
padding: 2em;
}
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after {
position: absolute;
content: '';
opacity: 0;
}
figure.effect-layla figcaption::before {
top: 50px;
right: 30px;
bottom: 50px;
left: 30px;
border-top: 1px solid #fff;
border-bottom: 1px solid #fff;
transform: scale(0, 1);
transform-origin: 0 0;
}
figure.effect-layla figcaption::after {
top: 30px;
right: 50px;
bottom: 30px;
left: 50px;
border-right: 1px solid #fff;
border-left: 1px solid #fff;
transform: scale(1, 0);
transform-origin: 100% 0;
}
figure.effect-layla h2 {
padding-top: 26%;
transition: transform 0.35s;
}
figure.effect-layla p {
padding: 0.5em 2em;
text-transform: none;
opacity: 0;
transform: translate3d(0, -10px, 0);
}
figure.effect-layla img,
figure.effect-layla h2 {
transform: translate3d(0, -30px, 0);
}
figure.effect-layla img,
figure.effect-layla figcaption::before,
figure.effect-layla figcaption::after,
figure.effect-layla p {
transition: opacity 0.35s, transform 0.35s;
}
figure.effect-layla:hover img {
opacity: 0.7;
transform: translate3d(0, 0, 0);
}
figure.effect-layla:hover figcaption::before,
figure.effect-layla:hover figcaption::after {
opacity: 1;
transform: scale(1);
}
figure.effect-layla:hover h2,
figure.effect-layla:hover p {
opacity: 1;
transform: translate3d(0, 0, 0);
}
figure.effect-layla:hover figcaption::after,
figure.effect-layla:hover h2,
figure.effect-layla:hover p,
figure.effect-layla:hover img {
transition-delay: 0.15s;
}   figure.effect-honey {
background: #4a3753;
}
figure.effect-honey img {
opacity: 0.9;
transition: opacity 0.35s;
}
figure.effect-honey:hover img {
opacity: 0.5;
}
figure.effect-honey figcaption::before {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 10px;
background: #fff;
content: '';
transform: translate3d(0, 10px, 0);
}
figure.effect-honey h2 {
position: absolute;
bottom: 0;
left: 0;
padding: 1em 1.5em;
width: 100%;
text-align: left;
transform: translate3d(0, -30px, 0);
}
figure.effect-honey h2 i {
font-style: normal;
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(0, -30px, 0);
}
figure.effect-honey figcaption::before,
figure.effect-honey h2 {
transition: transform 0.35s;
}
figure.effect-honey:hover figcaption::before,
figure.effect-honey:hover h2,
figure.effect-honey:hover h2 i {
opacity: 1;
transform: translate3d(0, 0, 0);
color: #fff;
}   figure.effect-oscar {
background: linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
}
figure.effect-oscar img {
opacity: 0.9;
transition: opacity 0.35s;
}
figure.effect-oscar figcaption {
padding: 3em;
background-color: rgba(58, 52, 42, 0.7);
transition: background-color 0.35s;
}
figure.effect-oscar figcaption::before {
position: absolute;
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
border: 1px solid #fff;
content: '';
}
figure.effect-oscar h2 {
margin: 20% 0 10px 0;
transition: transform 0.35s;
transform: translate3d(0, 100%, 0);
}
figure.effect-oscar figcaption::before,
figure.effect-oscar p {
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
transform: scale(0);
}
figure.effect-oscar:hover h2 {
transform: translate3d(0, 0, 0);
}
figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
opacity: 1;
transform: scale(1);
}
figure.effect-oscar:hover figcaption {
background-color: rgba(58, 52, 42, 0);
}
figure.effect-oscar:hover img {
opacity: 0.4;
}   figure.effect-marley figcaption {
text-align: right;
}
figure.effect-marley h2,
figure.effect-marley p {
position: absolute;
right: 30px;
left: 30px;
padding: 10px 0;
}
figure.effect-marley p {
bottom: 30px;
line-height: 1.5;
transform: translate3d(0, 100%, 0);
}
figure.effect-marley h2 {
top: 30px;
transition: transform 0.35s;
transform: translate3d(0, 20px, 0);
}
figure.effect-marley:hover h2 {
transform: translate3d(0, 0, 0);
}
figure.effect-marley h2::after {
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 4px;
background: #fff;
content: '';
transform: translate3d(0, 40px, 0);
}
figure.effect-marley h2::after,
figure.effect-marley p {
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
}
figure.effect-marley:hover h2::after,
figure.effect-marley:hover p {
opacity: 1;
transform: translate3d(0, 0, 0);
}   figure.effect-ruby {
background-color: #17819c;
}
figure.effect-ruby img {
opacity: 0.7;
transition: opacity 0.35s, transform 0.35s;
transform: scale(1.15);
}
figure.effect-ruby:hover img {
opacity: 0.5;
transform: scale(1);
}
figure.effect-ruby h2 {
margin-top: 20%;
transition: transform 0.35s;
transform: translate3d(0, 20px, 0);
}
figure.effect-ruby p {
margin: 1em 0 0;
padding: 3em;
border: 1px solid #fff;
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(0, 20px, 0) scale(1.1);
}
figure.effect-ruby:hover h2 {
transform: translate3d(0, 0, 0);
}
figure.effect-ruby:hover p {
opacity: 1;
transform: translate3d(0, 0, 0) scale(1);
}   figure.effect-milo {
background: #2e5d5a;
}
figure.effect-milo img {
max-width: none;
width: calc(100% + 60px);
opacity: 1;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(-30px, 0, 0) scale(1.12);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
figure.effect-milo:hover img {
opacity: 0.5;
transform: translate3d(0, 0, 0) scale(1);
}
figure.effect-milo h2 {
position: absolute;
right: 0;
bottom: 0;
padding: 1em 1.2em;
}
figure.effect-milo p {
padding: 0 10px 0 0;
width: 50%;
border-right: 1px solid #fff;
text-align: right;
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(-40px, 0, 0);
}
figure.effect-milo:hover p {
opacity: 1;
transform: translate3d(0, 0, 0);
}   figure.effect-dexter {
background: linear-gradient(to bottom, #258dc8 0%, #683c13 100%);
}
figure.effect-dexter img {
transition: opacity 0.35s;
}
figure.effect-dexter:hover img {
opacity: 0.4;
}
figure.effect-dexter figcaption::after {
position: absolute;
right: 30px;
bottom: 30px;
left: 30px;
height: calc(50% - 30px);
border: 7px solid #fff;
content: '';
transition: transform 0.35s;
transform: translate3d(0, -100%, 0);
}
figure.effect-dexter:hover figcaption::after {
transform: translate3d(0, 0, 0);
}
figure.effect-dexter figcaption {
padding: 2em;
text-align: left;
}
.grid_hover figure h2 span::first-word {
font-weight: 300;
}
.grid_hover .effect-dexter h2, .grid_hover figure p {
margin: 0;
}
figure.effect-dexter p {
position: absolute;
right: 60px;
bottom: 60px;
left: 60px;
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(0, -100px, 0);
}
figure.effect-dexter:hover p {
opacity: 1;
transform: translate3d(0, 0, 0);
}   figure.effect-sarah {
background: #42b078;
}
figure.effect-sarah img {
max-width: none;
width: calc(100% + 20px);
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(-10px, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
figure.effect-sarah:hover img {
opacity: 0.4;
transform: translate3d(0, 0, 0);
}
figure.effect-sarah figcaption {
text-align: left;
}
figure.effect-sarah h2 {
position: relative;
overflow: hidden;
padding: 0.5em 0;
}
figure.effect-sarah h2::after {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
background: #fff;
content: '';
transition: transform 0.35s;
transform: translate3d(-100%, 0, 0);
}
figure.effect-sarah:hover h2::after {
transform: translate3d(0, 0, 0);
}
figure.effect-sarah p {
padding: 1em 0;
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
transform: translate3d(100%, 0, 0);
}
figure.effect-sarah:hover p {
opacity: 1;
transform: translate3d(0, 0, 0);
}   figure.effect-zoe figcaption {
top: auto;
bottom: 0;
padding: 1em;
height: 3.75em;
background: #fff;
color: #3c4a50;
transition: transform 0.35s;
transform: translate3d(0, 100%, 0);
}
figure.effect-zoe h2 {
float: left;
}
figure.effect-zoe p.icon-links a {
float: right;
color: #3c4a50;
font-size: 1.4em;
}
figure.effect-zoe:hover p.icon-links a:hover,
figure.effect-zoe:hover p.icon-links a:focus {
color: #252d31;
}
figure.effect-zoe p.description {
position: absolute;
bottom: 8em;
padding: 2em;
color: #fff;
text-transform: none;
font-size: 90%;
opacity: 0;
transition: opacity 0.35s;
-webkit-backface-visibility: hidden; }
figure.effect-zoe h2,
figure.effect-zoe p.icon-links a {
transition: transform 0.35s;
transform: translate3d(0, 200%, 0);
}
figure.effect-zoe p.icon-links a span::before {
display: inline-block;
padding: 8px 10px;
font-family: 'feathericons';
speak: none;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-eye::before {
content: '\e000';
}
.icon-paper-clip::before {
content: '\e001';
}
.icon-heart::before {
content: '\e024';
}
figure.effect-zoe h2 {
display: inline-block;
}
figure.effect-zoe:hover p.description {
opacity: 1;
}
figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h2,
figure.effect-zoe:hover p.icon-links a {
transform: translate3d(0, 0, 0);
}
figure.effect-zoe:hover h2 {
transition-delay: 0.05s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(3) {
transition-delay: 0.1s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(2) {
transition-delay: 0.15s;
}
figure.effect-zoe:hover p.icon-links a:first-child {
transition-delay: 0.2s;
}   figure.effect-chico img {
transition: opacity 0.35s, transform 0.35s;
transform: scale(1.12);
}
figure.effect-chico:hover img {
opacity: 0.5;
transform: scale(1);
}
figure.effect-chico figcaption {
padding: 3em;
}
figure.effect-chico figcaption::before {
position: absolute;
top: 30px;
right: 30px;
bottom: 30px;
left: 30px;
border: 1px solid #fff;
content: '';
transform: scale(1.1);
}
figure.effect-chico figcaption::before,
figure.effect-chico p {
opacity: 0;
transition: opacity 0.35s, transform 0.35s;
}
figure.effect-chico h2 {
padding: 20% 0 20px 0;
}
figure.effect-chico p {
margin: 0 auto;
max-width: 200px;
transform: scale(1.5);
}
figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover p {
opacity: 1;
transform: scale(1);
}
@media screen and (max-width: 50em) {
.content {
padding: 0 10px;
text-align: center;
}
.grid_hover figure {
display: inline-block;
float: none;
margin: 10px auto;
width: 100%;
}
}
.blog-info {
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.blog-info a, .blog-info {
color: #EEE;
}
.blog-info .arrow {
border-color: rgba(0, 0, 0, 0) var(--primary-color);
}
.blog-info .date {
background: rgba(0, 0, 0, 0.15);
}
.blog-info .date .day {
font-size: 2.3em;
color: #FFF;
}
.blog-info .author div {
font-size: 1.3em;
}
.blog-info .author div a {
color: #FFF;
}
.blog-info .comment-count div {
font-size: 1em;
color: #FFF;
}
.blog-posts .node-title {
font-size: 2.05em;
margin: 15px 0 10px;
}
.blog-posts .wp-post-image {
padding: 10px 0;
}
.custom-pagination {
padding: 50px 0;
}
.blog .wd-gallery-images-holder {
margin-left: 0;
}
.prev.page-numbers, .next.page-numbers {
border: none;
}
.page-numbers, .page-links a {
border: 1px solid;
padding: 5px 10px;
}
.page-numbers.dots {
border: none;
}
.page-numbers.current {
background: var(--primary-color);
color: #fff;
}
.post-password-form input[type='submit'] {
display: inline-block;
vertical-align: middle;
margin: 0 0 1rem 0;
padding: 0.85em 1em;
border: 1px solid transparent;
border-radius: 0;
transition: background-color 0.25s ease-out, color 0.25s ease-out;
font-family: inherit;
font-size: 0.9rem;
-webkit-appearance: none;
line-height: 1;
text-align: center;
cursor: pointer;
}
[data-whatinput='mouse'] .post-password-form input[type='submit'] {
outline: 0;
}
.post-password-form input[type='submit'], .post-password-form input[type='submit'].disabled, .post-password-form input[type='submit'][disabled], .post-password-form input[type='submit'].disabled:hover, .post-password-form input[type='submit'][disabled]:hover, .post-password-form input[type='submit'].disabled:focus, .post-password-form input[type='submit'][disabled]:focus {
background-color: #265FB4;
color: #fefefe;
}
.post-password-form input[type='submit']:hover, .post-password-form input[type='submit']:focus {
background-color: #205199;
color: #fefefe;
}
.blog-post .sticky .blog-info {
background: var(--primary-color) repeating-linear-gradient(-55deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 10px, rgba(0, 0, 0, 0) 10px, rgba(0, 0, 0, 0) 20px) repeat scroll 0 0;
border-left: none;
}
.simple-blog .wd-blog-post {
background: rgba(255, 255, 255, 0.89);
}
.simple-blog .wd-blog-post .wd-blog-post-detail {
padding: 5px 20px 10px 25px;
}
.simple-blog .wd-blog-post .wd-blog-post-detail img {
width: 100%;
}
.simple-blog .wd-blog-post .wd-blog-post-detail h3 {
margin-bottom: 10px;
}
.simple-blog .wd-blog-post .wd-blog-post-detail h3 a {
font-size: 18px;
font-weight: 600;
color: #333;
line-height: 28px;
}
.simple-blog .wd-blog-post .wd-blog-post-detail p {
color: #777;
padding-bottom: 20px;
}
button,
.button {
color: #555;
border: 1px solid #cfcfd0;
transition: .4s;
text-transform: uppercase;
font-size: 13px;
background-color: var(--primary-color);
border-color: var(--primary-color);
}
button:hover, button:focus,
.button:hover,
.button:focus {
background-color: var(--secondary-color);
border-color: var(--secondary-color);
padding-left: 30px;
padding-right: 30px;
}
button.disabled, button.disabled:hover, button[disabled], button[disabled]:hover,
.button.disabled,
.button.disabled:hover,
.button[disabled],
.button[disabled]:hover {
background-color: #EDEDED;
border-color: #E4E4E4;
color: #7B7B7B;
}
button.large,
.button.large {
font-size: 14px;
}
button.large:hover,
.button.large:hover {
padding-left: 40px;
padding-right: 40px;
}
button.small,
.button.small {
font-size: 12px;
}
button.small:hover,
.button.small:hover {
padding-left: 30px;
padding-right: 30px;
}
button.tiny,
.button.tiny {
font-size: 11px;
}
button.tiny:hover,
.button.tiny:hover {
padding-left: 20px;
padding-right: 20px;
}
button:after,
.button:after {
font-family: FontAwesome;
content: "\f178";
padding-left: 10px;
}
.wd-outline-button {
border: 1px solid #333;
color: #333;
font-size: 11px;
padding: 14px 18px;
}
.button.large.wd-black {
background-color: #282828;
color: #fff;
font-size: 12px;
font-weight: 700;
padding: 6px 11px;
}
.button.large.wd-black:after {
content: "";
}
.button.large.wd-black:hover {
padding: 6px 11px;
color: #282828;
background-color: transparent;
border-color: #282828;
}
div.wpb_call_to_action {
background: none;
border: none;
}
div.wpb_call_to_action h2 {
color: #fff;
font-size: 1.5em;
}
span.wpb_button {
border-top: 1px solid #fff;
border-right: 1px solid #9d0275;
border-bottom: 1px solid #9d0275;
background-color: #d0029a;
padding: 10px 20px;
font-size: 1.14286em;
font-weight: bold;
line-height: normal;
}
span.wpb_button:hover, span.wpb_button:focus {
border-top: none;
}
header .button.home-cta {
background: var(--primary-color);
padding: 14px 30px;
margin-top: 20px;
height: 46px;
border: medium none;
border-radius: 2px;
margin-left: 115px;
color: white;
font-weight: 800;
}
@media only screen and (max-width: 900px) {
header .button.home-cta {
display: none;
}
}
.primary-color_bg, input.wpcf7-submit, .square-img > a:before, .boxes .box > a:before,
.boxes .box .flipper a:before, .doors_onepost .title-block span, .one_post_box .box_image .titel_icon .box_icon, .one_post_box .more, .boxes .box-container > a:before,
.boxes .box-container .flipper a:before, .layout-4 div.box-icon i.fa, .boxes.small.layout-5 .box-icon,
.boxes.small.layout-5-inverse .box-icon, .boxes.small.layout-6 .box-icon i.fa, .carousel_blog span.tag a, .wd-carousel-container .carousel-icon i, table thead,
table tfoot, .block-block-17,
.row.call-action, .blog-info, span.wpb_button:hover, span.wpb_button:focus {
background: var(--primary-color);
}
.primary-color_color, a, a:focus, a.active,
a:active,
a:hover, .boxes.small .box-icon i, .box-container:hover .box-title {
color: var(--primary-color);
}
.primary-color_border {
border-color: var(--primary-color);
}
.l-header {
width: 100%;
z-index: 11;
}
@media print, screen and (min-width: 64em) {
.l-header {
position: absolute;
}
}
.l-header .contain-to-grid {
background-color: #FFF;
box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
max-height: 157px;
}
@media print, screen and (max-width: 63.99875em) {
.l-header .contain-to-grid {
max-height: 376px;
}
}
@media print, screen and (max-width: 39.99875em) {
.l-header .contain-to-grid {
max-height: inherit;
}
}
.l-header .contain-to-grid #responsive-menu {
cursor: pointer;
}
@media print, screen and (max-width: 39.99875em) {
.l-header .contain-to-grid #responsive-menu {
max-height: 43px;
}
}
@media print, screen and (max-width: 39.99875em) {
.l-header .contain-to-grid .title-bar {
background: unset;
}
.l-header .contain-to-grid .title-bar .menu-icon:after {
content: "";
display: block;
height: 0;
position: absolute;
margin-top: -8px;
top: 13px;
right: .9375rem;
left: 100px;
width: 16px;
box-shadow: 0 0 0 1px #000, 0 7px 0 1px #000, 0 14px 0 1px #000;
}
}.flip-container {
-moz-perspective: 1000;
-webkit-perspective: 1000;
perspective: 1000;
}  .flip-container.hover .flipper {
-moz-transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
} .flipper {
-moz-transition: 0.6s;
-webkit-transition: 0.6s;
transition: 0.6s;
-moz-transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
position: relative;
} .front-face, .back-face {
-moz-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
position: absolute;
top: 0;
left: 0;
} .front-face {
z-index: 2;
} .back-face {
-moz-transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}.owl-carousel .animated {
-webkit-animation-duration: 1000ms;
animation-duration: 1000ms;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
z-index: 0;
}
.owl-carousel .owl-animated-out {
z-index: 1;
}
.owl-carousel .fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
} .owl-height {
-webkit-transition: height 500ms ease-in-out;
-moz-transition: height 500ms ease-in-out;
-ms-transition: height 500ms ease-in-out;
-o-transition: height 500ms ease-in-out;
transition: height 500ms ease-in-out;
} .owl-carousel {
display: none;
width: 100%;
-webkit-tap-highlight-color: transparent; position: relative;
z-index: 1;
}
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
}
.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(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
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-loaded {
display: block;
}
.owl-carousel.owl-loading {
opacity: 0;
display: block;
}
.owl-carousel.owl-hidden {
opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
display: none;
}
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.owl-carousel .owl-item img {
display: block;
width: 100%;
-webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
-webkit-user-select: auto;
-moz-user-select: auto;
-ms-user-select: auto;
user-select: auto;
}
.owl-carousel .owl-grab {
cursor: move;
cursor: -webkit-grab;
cursor: -o-grab;
cursor: -ms-grab;
cursor: grab;
}
.owl-carousel.owl-rtl {
direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
float: right;
} .no-js .owl-carousel {
display: block;
} .owl-carousel .owl-item .owl-lazy {
opacity: 0;
-webkit-transition: opacity 400ms ease;
-moz-transition: opacity 400ms ease;
-ms-transition: opacity 400ms ease;
-o-transition: opacity 400ms ease;
transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
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(//shop.alumetsmetal.com/wp-content/themes/doors/css/owl.video.play.png) no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
-webkit-transition: scale 100ms ease;
-moz-transition: scale 100ms ease;
-ms-transition: scale 100ms ease;
-o-transition: scale 100ms ease;
transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
-webkit-transition: scale(1.3, 1.3);
-moz-transition: scale(1.3, 1.3);
-ms-transition: scale(1.3, 1.3);
-o-transition: scale(1.3, 1.3);
transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
display: none;
}
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
-webkit-background-size: contain;
-moz-background-size: contain;
-o-background-size: contain;
background-size: contain;
-webkit-transition: opacity 400ms ease;
-moz-transition: opacity 400ms ease;
-ms-transition: opacity 400ms ease;
-o-transition: opacity 400ms ease;
transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
}.mejs-offscreen { position: absolute !important;
top: -10000px;
overflow: hidden;
width: 1px;
height: 1px;
}
.mejs-container {
position: relative;
background: #000;
font-family: Helvetica, Arial;
text-align: left;
vertical-align: top;
text-indent: 0;
}
.me-plugin {
position: absolute;
}
.mejs-embed, .mejs-embed body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: #000;
overflow: hidden;
}
.mejs-fullscreen { overflow: hidden !important;
}
.mejs-container-fullscreen {
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 1000;
}
.mejs-container-fullscreen .mejs-mediaelement,
.mejs-container-fullscreen video {
width: 100%;
height: 100%;
}
.mejs-clear {
clear: both;
} .mejs-background {
position: absolute;
top: 0;
left: 0;
}
.mejs-mediaelement {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.mejs-poster {
position: absolute;
top: 0;
left: 0;
background-size: contain;
background-position: 50% 50%;
background-repeat: no-repeat;
}
:root .mejs-poster img {
display: none;
}
.mejs-poster img {
border: 0;
padding: 0;
border: 0;
}
.mejs-overlay {
position: absolute;
top: 0;
left: 0;
}
.mejs-overlay-play {
cursor: pointer;
}
.mejs-overlay-button {
position: absolute;
top: 50%;
left: 50%;
width: 100px;
height: 100px;
margin: -50px 0 0 -50px;
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/mediaelement-icon/bigplay.svg) no-repeat;
}
.no-svg .mejs-overlay-button {
background-image: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/bigplay.png);
}
.mejs-overlay:hover .mejs-overlay-button {
background-position: 0 -100px;
}
.mejs-overlay-loading {
position: absolute;
top: 50%;
left: 50%;
width: 80px;
height: 80px;
margin: -40px 0 0 -40px;
background: #333;
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/background.png);
background: rgba(0, 0, 0, 0.9);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.9)), to(rgba(0, 0, 0, 0.9)));
background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
background: -o-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
background: linear-gradient(rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
}
.mejs-overlay-loading span {
display: block;
width: 80px;
height: 80px;
background: transparent url(//shop.alumetsmetal.com/wp-content/themes/doors/css/mediaelement-icon/loading.gif) 50% 50% no-repeat;
}  .mejs-container .mejs-controls {
position: absolute;
list-style-type: none;
margin: 0;
padding: 0;
bottom: 0;
left: 0;
background: rgba(231, 231, 231, 0.35);
height: 30px;
width: 100%;
}
.mejs-container .mejs-controls div {
list-style-type: none;
background-image: none;
display: block;
float: left;
margin: 0;
padding: 0;
width: 26px;
height: 26px;
font-size: 11px;
line-height: 11px;
font-family: Helvetica, Arial;
border: 0;
}
.mejs-controls .mejs-button button {
cursor: pointer;
display: block;
font-size: 0;
line-height: 0;
text-decoration: none;
margin: 7px 5px;
padding: 0;
position: absolute;
height: 16px;
width: 16px;
border: 0;
background: transparent url(//shop.alumetsmetal.com/wp-content/themes/doors/css/mediaelement-icon/controls.svg) no-repeat;
}
.no-svg .mejs-controls .mejs-button button {
background-image: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/mediaelement-icon/controls.png);
} .mejs-controls .mejs-button button:focus {
outline: dotted 1px #999;
}  .mejs-container .mejs-controls .mejs-time {
color: #fff;
display: block;
height: 17px;
width: auto;
padding: 10px 3px 0 3px;
overflow: hidden;
text-align: center;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.mejs-container .mejs-controls .mejs-time a {
color: #fff;
font-size: 11px;
line-height: 12px;
display: block;
float: left;
margin: 1px 2px 0 0;
width: auto;
}  .mejs-controls .mejs-play button {
background-position: 0 0;
}
.mejs-controls .mejs-pause button {
background-position: 0 -16px;
}
.mejs-controls .mejs-stop button {
background-position: -112px 0;
}  .mejs-controls div.mejs-time-rail {
direction: ltr;
width: 200px;
padding-top: 5px;
}
.mejs-controls .mejs-time-rail span, .mejs-controls .mejs-time-rail a {
display: block;
position: absolute;
width: 180px;
height: 10px;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
cursor: pointer;
}
.mejs-controls .mejs-time-rail .mejs-time-total {
margin: 5px;
background: #333;
background: rgba(29, 29, 29, 0.53);
}
.mejs-controls .mejs-time-rail .mejs-time-buffering {
width: 100%;
background-image: -o-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-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
background-image: -webkit-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-image: -moz-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-image: -ms-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-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);
-webkit-background-size: 15px 15px;
-moz-background-size: 15px 15px;
-o-background-size: 15px 15px;
background-size: 15px 15px;
-webkit-animation: buffering-stripes 2s linear infinite;
-moz-animation: buffering-stripes 2s linear infinite;
-ms-animation: buffering-stripes 2s linear infinite;
-o-animation: buffering-stripes 2s linear infinite;
animation: buffering-stripes 2s linear infinite;
}
@-webkit-keyframes buffering-stripes {
from {
background-position: 0 0;
}
to {
background-position: 30px 0;
}
}
@-moz-keyframes buffering-stripes {
from {
background-position: 0 0;
}
to {
background-position: 30px 0;
}
}
@-ms-keyframes buffering-stripes {
from {
background-position: 0 0;
}
to {
background-position: 30px 0;
}
}
@-o-keyframes buffering-stripes {
from {
background-position: 0 0;
}
to {
background-position: 30px 0;
}
}
@keyframes buffering-stripes {
from {
background-position: 0 0;
}
to {
background-position: 30px 0;
}
}
.mejs-controls .mejs-time-rail .mejs-time-loaded {
background: #3caac8;
background: rgba(60, 170, 200, 0.8);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(44, 124, 145, 0.8)), to(rgba(78, 183, 212, 0.8)));
background: -webkit-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
background: -moz-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
background: -o-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
background: -ms-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
background: linear-gradient(rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
width: 0;
}
.mejs-controls .mejs-time-rail .mejs-time-current {
background: #fff;
background: rgba(255, 255, 255, 0.8);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.9)), to(rgba(200, 200, 200, 0.8)));
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
width: 0;
}
.mejs-controls .mejs-time-rail .mejs-time-handle {
display: none;
position: absolute;
margin: 0;
width: 10px;
background: #fff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
cursor: pointer;
border: solid 2px #333;
top: -2px;
text-align: center;
}
.mejs-controls .mejs-time-rail .mejs-time-float {
position: absolute;
display: none;
background: #eee;
width: 36px;
height: 17px;
border: solid 1px #333;
top: -26px;
margin-left: -18px;
text-align: center;
color: #111;
}
.mejs-controls .mejs-time-rail .mejs-time-float-current {
margin: 2px;
width: 30px;
display: block;
text-align: center;
left: 0;
}
.mejs-controls .mejs-time-rail .mejs-time-float-corner {
position: absolute;
display: block;
width: 0;
height: 0;
line-height: 0;
border: solid 5px #eee;
border-color: #eee transparent transparent transparent;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
top: 15px;
left: 13px;
}
.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float {
width: 48px;
}
.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current {
width: 44px;
}
.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner {
left: 18px;
}   .mejs-controls .mejs-fullscreen-button button {
background-position: -32px 0;
}
.mejs-controls .mejs-unfullscreen button {
background-position: -32px -16px;
}  .mejs-controls .mejs-volume-button {
}
.mejs-controls .mejs-mute button {
background-position: -16px -16px;
}
.mejs-controls .mejs-unmute button {
background-position: -16px 0;
}
.mejs-controls .mejs-volume-button {
position: relative;
}
.mejs-controls .mejs-volume-button .mejs-volume-slider {
display: none;
height: 115px;
width: 25px;
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/background.png);
background: rgba(50, 50, 50, 0.7);
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
top: -115px;
left: 0;
z-index: 1;
position: absolute;
margin: 0;
}
.mejs-controls .mejs-volume-button:hover {
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
} .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
position: absolute;
left: 11px;
top: 8px;
width: 2px;
height: 100px;
background: #ddd;
background: rgba(255, 255, 255, 0.5);
margin: 0;
}
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
position: absolute;
left: 11px;
top: 8px;
width: 2px;
height: 100px;
background: #ddd;
background: rgba(255, 255, 255, 0.9);
margin: 0;
}
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
position: absolute;
left: 4px;
top: -3px;
width: 16px;
height: 6px;
background: #ddd;
background: rgba(255, 255, 255, 0.9);
cursor: N-resize;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
margin: 0;
} .mejs-controls a.mejs-horizontal-volume-slider {
height: 26px;
width: 56px;
position: relative;
display: block;
float: left;
vertical-align: middle;
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
position: absolute;
left: 0;
top: 11px;
width: 50px;
height: 8px;
margin: 0;
padding: 0;
font-size: 1px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: #333;
background: rgba(50, 50, 50, 0.8);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30, 30, 30, 0.8)), to(rgba(60, 60, 60, 0.8)));
background: -webkit-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
background: -moz-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
background: -o-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
background: -ms-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
position: absolute;
left: 0;
top: 11px;
width: 50px;
height: 8px;
margin: 0;
padding: 0;
font-size: 1px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background: #fff;
background: rgba(255, 255, 255, 0.8);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.9)), to(rgba(200, 200, 200, 0.8)));
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
}
.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
display: none;
}  .mejs-controls .mejs-captions-button {
position: relative;
}
.mejs-controls .mejs-captions-button button {
background-position: -48px 0;
}
.mejs-controls .mejs-captions-button .mejs-captions-selector {
visibility: hidden;
position: absolute;
bottom: 26px;
right: -51px;
width: 85px;
height: 100px;
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/background.png);
background: rgba(50, 50, 50, 0.7);
border: solid 1px transparent;
padding: 10px 10px 0 10px;
overflow: hidden;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
} .mejs-controls .mejs-captions-button .mejs-captions-selector ul {
margin: 0;
padding: 0;
display: block;
list-style-type: none !important;
overflow: hidden;
}
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li {
margin: 0 0 6px 0;
padding: 0;
list-style-type: none !important;
display: block;
color: #fff;
overflow: hidden;
}
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input {
clear: both;
float: left;
margin: 3px 3px 0 5px;
}
.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label {
width: 55px;
float: left;
padding: 4px 0 0 0;
line-height: 15px;
font-family: helvetica, arial;
font-size: 10px;
}
.mejs-controls .mejs-captions-button .mejs-captions-translations {
font-size: 10px;
margin: 0 0 5px 0;
}
.mejs-chapters {
position: absolute;
top: 0;
left: 0;
-xborder-right: solid 1px #fff;
width: 10000px;
z-index: 1;
}
.mejs-chapters .mejs-chapter {
position: absolute;
float: left;
background: #222;
background: rgba(0, 0, 0, 0.7);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.7)), to(rgba(0, 0, 0, 0.7)));
background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
background: -o-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#323232, endColorstr=#000000);
overflow: hidden;
border: 0;
}
.mejs-chapters .mejs-chapter .mejs-chapter-block {
font-size: 11px;
color: #fff;
padding: 5px;
display: block;
border-right: solid 1px #333;
border-bottom: solid 1px #333;
cursor: pointer;
}
.mejs-chapters .mejs-chapter .mejs-chapter-block-last {
border-right: none;
}
.mejs-chapters .mejs-chapter .mejs-chapter-block:hover {
background: #666;
background: rgba(102, 102, 102, 0.7);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(102, 102, 102, 0.7)), to(rgba(50, 50, 50, 0.6)));
background: -webkit-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
background: -moz-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
background: -o-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
background: -ms-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
background: linear-gradient(rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#666666, endColorstr=#323232);
}
.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title {
font-size: 12px;
font-weight: bold;
display: block;
white-space: nowrap;
text-overflow: ellipsis;
margin: 0 0 3px 0;
line-height: 12px;
}
.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan {
font-size: 12px;
line-height: 12px;
margin: 3px 0 4px 0;
display: block;
white-space: nowrap;
text-overflow: ellipsis;
}
.mejs-captions-layer {
position: absolute;
bottom: 0;
left: 0;
text-align: center;
line-height: 20px;
font-size: 16px;
color: #fff;
}
.mejs-captions-layer a {
color: #fff;
text-decoration: underline;
}
.mejs-captions-layer[lang=ar] {
font-size: 20px;
font-weight: normal;
}
.mejs-captions-position {
position: absolute;
width: 100%;
bottom: 15px;
left: 0;
}
.mejs-captions-position-hover {
bottom: 35px;
}
.mejs-captions-text {
padding: 3px 5px;
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/background.png);
background: rgba(20, 20, 20, 0.5);
white-space: pre-wrap;
}  .me-cannotplay {
}
.me-cannotplay a {
color: #fff;
font-weight: bold;
}
.me-cannotplay span {
padding: 15px;
display: block;
}  .mejs-controls .mejs-loop-off button {
background-position: -64px -16px;
}
.mejs-controls .mejs-loop-on button {
background-position: -64px 0;
}  .mejs-controls .mejs-backlight-off button {
background-position: -80px -16px;
}
.mejs-controls .mejs-backlight-on button {
background-position: -80px 0;
}  .mejs-controls .mejs-picturecontrols-button {
background-position: -96px 0;
}  .mejs-contextmenu {
position: absolute;
width: 150px;
padding: 10px;
border-radius: 4px;
top: 0;
left: 0;
background: #fff;
border: solid 1px #999;
z-index: 1001; }
.mejs-contextmenu .mejs-contextmenu-separator {
height: 1px;
font-size: 0;
margin: 5px 6px;
background: #333;
}
.mejs-contextmenu .mejs-contextmenu-item {
font-family: Helvetica, Arial;
font-size: 12px;
padding: 4px 6px;
cursor: pointer;
color: #333;
}
.mejs-contextmenu .mejs-contextmenu-item:hover {
background: #2C7C91;
color: #fff;
} .mejs-controls .mejs-sourcechooser-button {
position: relative;
}
.mejs-controls .mejs-sourcechooser-button button {
background-position: -128px 0;
}
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector {
visibility: hidden;
position: absolute;
bottom: 26px;
right: -10px;
width: 130px;
height: 100px;
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/background.png);
background: rgba(50, 50, 50, 0.7);
border: solid 1px transparent;
padding: 10px;
overflow: hidden;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul {
margin: 0;
padding: 0;
display: block;
list-style-type: none !important;
overflow: hidden;
}
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li {
margin: 0 0 6px 0;
padding: 0;
list-style-type: none !important;
display: block;
color: #fff;
overflow: hidden;
}
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input {
clear: both;
float: left;
margin: 3px 3px 0 5px;
}
.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label {
width: 100px;
float: left;
padding: 4px 0 0 0;
line-height: 15px;
font-family: helvetica, arial;
font-size: 10px;
}  .mejs-postroll-layer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/background.png);
background: rgba(50, 50, 50, 0.7);
z-index: 1000;
overflow: hidden;
}
.mejs-postroll-layer-content {
width: 100%;
height: 100%;
}
.mejs-postroll-close {
position: absolute;
right: 0;
top: 0;
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/background.png);
background: rgba(50, 50, 50, 0.7);
color: #fff;
padding: 4px;
z-index: 100;
cursor: pointer;
}  div.mejs-speed-button {
width: 46px !important;
position: relative;
}
.mejs-controls .mejs-button.mejs-speed-button button {
background: transparent;
width: 36px;
font-size: 11px;
line-height: normal;
color: #ffffff;
}
.mejs-controls .mejs-speed-button .mejs-speed-selector {
visibility: hidden;
position: absolute;
top: -100px;
left: -10px;
width: 60px;
height: 100px;
background: url(//shop.alumetsmetal.com/wp-content/themes/doors/css/background.png);
background: rgba(50, 50, 50, 0.7);
border: solid 1px transparent;
padding: 0;
overflow: hidden;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.mejs-controls .mejs-speed-button:hover > .mejs-speed-selector {
visibility: visible;
}
.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected {
color: rgba(33, 248, 248, 1);
}
.mejs-controls .mejs-speed-button .mejs-speed-selector ul {
margin: 0;
padding: 0;
display: block;
list-style-type: none !important;
overflow: hidden;
}
.mejs-controls .mejs-speed-button .mejs-speed-selector ul li {
margin: 0 0 6px 0;
padding: 0 10px;
list-style-type: none !important;
display: block;
color: #fff;
overflow: hidden;
}
.mejs-controls .mejs-speed-button .mejs-speed-selector ul li input {
clear: both;
float: left;
margin: 3px 3px 0 5px;
display: none;
}
.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label {
width: 60px;
float: left;
padding: 4px 0 0 0;
line-height: 15px;
font-family: helvetica, arial;
font-size: 11.5px;
color: white;
margin-left: 5px;
cursor: pointer;
}
.mejs-controls .mejs-speed-button .mejs-speed-selector ul li:hover {
background-color: rgb(200, 200, 200) !important;
background-color: rgba(255, 255, 255, .4) !important;
}  .mejs-controls .mejs-button.mejs-skip-back-button {
background: transparent url(//shop.alumetsmetal.com/wp-content/themes/doors/css/skipback.png) no-repeat;
background-position: 3px 3px;
}
.mejs-controls .mejs-button.mejs-skip-back-button button {
background: transparent;
font-size: 9px;
line-height: normal;
color: #ffffff;
}@font-face{font-family:'FontAwesome';src:url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/fontawesome-webfont.eot?v=4.3.0);src:url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0) format('embedded-opentype'),url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/fontawesome-webfont.woff2?v=4.3.0) format('woff2'),url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/fontawesome-webfont.woff?v=4.3.0) format('woff'),url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/fontawesome-webfont.ttf?v=4.3.0) format('truetype'),url(//shop.alumetsmetal.com/wp-content/themes/doors/fonts/fontawesome-webfont.svg?v=4.3.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;transform:translate(0, 0)}.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>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}.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{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{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{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-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: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-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.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-genderless:before,.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-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-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"}