@charset "utf-8";
body {  }
.animate { visibility:hidden; }
.hold-animations .animate, .hold-animations.animate { visibility:visible; }
.animate {
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
-o-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
}
.animate.hinge {
-webkit-animation-duration: 2s;
-moz-animation-duration: 2s;
-o-animation-duration: 2s;
animation-duration: 2s;
}
@-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;}
}
.animate.flash {
-webkit-animation-name: flash;
-moz-animation-name: flash;
-o-animation-name: flash;
animation-name: flash;
visibility: visible !important;
}
@-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);}
}
.animate.shake {
-webkit-animation-name: shake;
-moz-animation-name: shake;
-o-animation-name: shake;
animation-name: shake;
visibility: visible !important;
}
@-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);}
}
.animate.bounce {
-webkit-animation-name: bounce;
-moz-animation-name: bounce;
-o-animation-name: bounce;
animation-name: bounce;
visibility: visible !important;
}
@-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);}
}
.animate.tada {
-webkit-animation-name: tada;
-moz-animation-name: tada;
-o-animation-name: tada;
animation-name: tada;
visibility: visible !important;
}
@-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); }
}
.animate.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;
visibility: visible !important;
} @-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%); }
}
.animate.wobble {
-webkit-animation-name: wobble;
-moz-animation-name: wobble;
-o-animation-name: wobble;
animation-name: wobble;
visibility: visible !important;
} @-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); }
}
.animate.pulse {
-webkit-animation-name: pulse;
-moz-animation-name: pulse;
-o-animation-name: pulse;
animation-name: pulse;
visibility: visible !important;
}
@-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;
}
}
.animate.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;
visibility: visible !important;
}
@-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;
}
}
.animate.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;
visibility: visible !important;
}
@-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;
}
}
.animate.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;
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;
}
}
.animate.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;
visibility: visible !important;
}
@-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;
}
}
.animate.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;
visibility: visible !important;
}
@-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;}
}
.animate.fadeIn {
-webkit-animation-name: fadeIn;
-moz-animation-name: fadeIn;
-o-animation-name: fadeIn;
animation-name: fadeIn;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeInUp {
-webkit-animation-name: fadeInUp;
-moz-animation-name: fadeInUp;
-o-animation-name: fadeInUp;
animation-name: fadeInUp;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeInDown {
-webkit-animation-name: fadeInDown;
-moz-animation-name: fadeInDown;
-o-animation-name: fadeInDown;
animation-name: fadeInDown;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeInLeft {
-webkit-animation-name: fadeInLeft;
-moz-animation-name: fadeInLeft;
-o-animation-name: fadeInLeft;
animation-name: fadeInLeft;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeInRight {
-webkit-animation-name: fadeInRight;
-moz-animation-name: fadeInRight;
-o-animation-name: fadeInRight;
animation-name: fadeInRight;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
-moz-animation-name: fadeInUpBig;
-o-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
-moz-animation-name: fadeInDownBig;
-o-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
-moz-animation-name: fadeInLeftBig;
-o-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
-moz-animation-name: fadeInRightBig;
-o-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
visibility: visible !important;
}
@-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;}
}
.animate.fadeOut {
-webkit-animation-name: fadeOut;
-moz-animation-name: fadeOut;
-o-animation-name: fadeOut;
animation-name: fadeOut;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeOutUp {
-webkit-animation-name: fadeOutUp;
-moz-animation-name: fadeOutUp;
-o-animation-name: fadeOutUp;
animation-name: fadeOutUp;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeOutDown {
-webkit-animation-name: fadeOutDown;
-moz-animation-name: fadeOutDown;
-o-animation-name: fadeOutDown;
animation-name: fadeOutDown;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
-moz-animation-name: fadeOutLeft;
-o-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeOutRight {
-webkit-animation-name: fadeOutRight;
-moz-animation-name: fadeOutRight;
-o-animation-name: fadeOutRight;
animation-name: fadeOutRight;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
-moz-animation-name: fadeOutUpBig;
-o-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
-moz-animation-name: fadeOutDownBig;
-o-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
-moz-animation-name: fadeOutLeftBig;
-o-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
visibility: visible !important;
}
@-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);
}
}
.animate.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
-moz-animation-name: fadeOutRightBig;
-o-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceIn {
-webkit-animation-name: bounceIn;
-moz-animation-name: bounceIn;
-o-animation-name: bounceIn;
animation-name: bounceIn;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceInUp {
-webkit-animation-name: bounceInUp;
-moz-animation-name: bounceInUp;
-o-animation-name: bounceInUp;
animation-name: bounceInUp;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceInDown {
-webkit-animation-name: bounceInDown;
-moz-animation-name: bounceInDown;
-o-animation-name: bounceInDown;
animation-name: bounceInDown;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceInLeft {
-webkit-animation-name: bounceInLeft;
-moz-animation-name: bounceInLeft;
-o-animation-name: bounceInLeft;
animation-name: bounceInLeft;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceInRight {
-webkit-animation-name: bounceInRight;
-moz-animation-name: bounceInRight;
-o-animation-name: bounceInRight;
animation-name: bounceInRight;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceOut {
-webkit-animation-name: bounceOut;
-moz-animation-name: bounceOut;
-o-animation-name: bounceOut;
animation-name: bounceOut;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceOutUp {
-webkit-animation-name: bounceOutUp;
-moz-animation-name: bounceOutUp;
-o-animation-name: bounceOutUp;
animation-name: bounceOutUp;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceOutDown {
-webkit-animation-name: bounceOutDown;
-moz-animation-name: bounceOutDown;
-o-animation-name: bounceOutDown;
animation-name: bounceOutDown;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
-moz-animation-name: bounceOutLeft;
-o-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
visibility: visible !important;
}
@-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);
}
}
.animate.bounceOutRight {
-webkit-animation-name: bounceOutRight;
-moz-animation-name: bounceOutRight;
-o-animation-name: bounceOutRight;
animation-name: bounceOutRight;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateIn {
-webkit-animation-name: rotateIn;
-moz-animation-name: rotateIn;
-o-animation-name: rotateIn;
animation-name: rotateIn;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
-moz-animation-name: rotateInUpLeft;
-o-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
-moz-animation-name: rotateInDownLeft;
-o-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
-moz-animation-name: rotateInUpRight;
-o-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
-moz-animation-name: rotateInDownRight;
-o-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateOut {
-webkit-animation-name: rotateOut;
-moz-animation-name: rotateOut;
-o-animation-name: rotateOut;
animation-name: rotateOut;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
-moz-animation-name: rotateOutUpLeft;
-o-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
-moz-animation-name: rotateOutDownLeft;
-o-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
-moz-animation-name: rotateOutUpRight;
-o-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
visibility: visible !important;
}
@-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;
}
}
.animate.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
-moz-animation-name: rotateOutDownRight;
-o-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
visibility: visible !important;
}
@-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; }
}
.animate.hinge {
-webkit-animation-name: hinge;
-moz-animation-name: hinge;
-o-animation-name: hinge;
animation-name: hinge;
visibility: visible !important;
} @-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); }
}
.animate.rollIn {
-webkit-animation-name: rollIn;
-moz-animation-name: rollIn;
-o-animation-name: rollIn;
animation-name: rollIn;
visibility: visible !important;
} @-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);
}
}
.animate.rollOut {
-webkit-animation-name: rollOut;
-moz-animation-name: rollOut;
-o-animation-name: rollOut;
animation-name: rollOut;
visibility: visible !important;
} @-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; }
}
.animate.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;
visibility: visible !important;
}
.animate.lightSpeedIn {
-webkit-animation-duration: 0.5s;
-moz-animation-duration: 0.5s;
-o-animation-duration: 0.5s;
animation-duration: 0.5s;
} @-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; }
}
.animate.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;
visibility: visible !important;
}
.animate.lightSpeedOut {
-webkit-animation-duration: 0.25s;
-moz-animation-duration: 0.25s;
-o-animation-duration: 0.25s;
animation-duration: 0.25s;
} .slideDown{
animation-name: slideDown;
-webkit-animation-name: slideDown;
-moz-animation-name: slideDown;	
animation-duration: 1s;	
-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
animation-timing-function: ease;	
-webkit-animation-timing-function: ease;
-webkit-animation-timing-function: ease;
visibility: visible !important;
}
@keyframes slideDown {
0% {
transform: translateY(-100%);
}
50%{
transform: translateY(8%);
}
65%{
transform: translateY(-4%);
}
80%{
transform: translateY(4%);
}
95%{
transform: translateY(-2%);
}			
100% {
transform: translateY(0%);
}		
}
@-webkit-keyframes slideDown {
0% {
-webkit-transform: translateY(-100%);
}
50%{
-webkit-transform: translateY(8%);
}
65%{
-webkit-transform: translateY(-4%);
}
80%{
-webkit-transform: translateY(4%);
}
95%{
-webkit-transform: translateY(-2%);
}			
100% {
-webkit-transform: translateY(0%);
}	
} .slideUp{
animation-name: slideUp;
-webkit-animation-name: slideUp;	
animation-duration: 1s;	
-webkit-animation-duration: 1s;
animation-timing-function: ease;	
-webkit-animation-timing-function: ease;
visibility: visible !important;
}
@keyframes slideUp {
0% {
transform: translateY(100%);
}
50%{
transform: translateY(-8%);
}
65%{
transform: translateY(4%);
}
80%{
transform: translateY(-4%);
}
95%{
transform: translateY(2%);
}			
100% {
transform: translateY(0%);
}	
}
@-webkit-keyframes slideUp {
0% {
-webkit-transform: translateY(100%);
}
50%{
-webkit-transform: translateY(-8%);
}
65%{
-webkit-transform: translateY(4%);
}
80%{
-webkit-transform: translateY(-4%);
}
95%{
-webkit-transform: translateY(2%);
}			
100% {
-webkit-transform: translateY(0%);
}	
} .slideLeft{
animation-name: slideLeft;
-webkit-animation-name: slideLeft;	
animation-duration: 1s;	
-webkit-animation-duration: 1s;
animation-timing-function: ease-in-out;	
-webkit-animation-timing-function: ease-in-out;	
visibility: visible !important;
}
@keyframes slideLeft {
0% {
transform: translateX(150%);
}
50%{
ransform: translateX(-8%);
}
65%{
transform: translateX(4%);
}
80%{
transform: translateX(-4%);
}
95%{
transform: translateX(2%);
}			
100% {
transform: translateX(0%);
}
}
@-webkit-keyframes slideLeft {
0% {
-webkit-transform: translateX(150%);
}
50%{
-webkit-transform: translateX(-8%);
}
65%{
-webkit-transform: translateX(4%);
}
80%{
-webkit-transform: translateX(-4%);
}
95%{
-webkit-transform: translateX(2%);
}			
100% {
-webkit-transform: translateX(0%);
}
} .slideRight{
animation-name: slideRight;
-webkit-animation-name: slideRight;	
animation-duration: 1s;	
-webkit-animation-duration: 1s;
animation-timing-function: ease-in-out;	
-webkit-animation-timing-function: ease-in-out;		
visibility: visible !important;
}
@keyframes slideRight {
0% {
transform: translateX(-150%);
}
50%{
transform: translateX(8%);
}
65%{
transform: translateX(-4%);
}
80%{
transform: translateX(4%);
}
95%{
transform: translateX(-2%);
}			
100% {
transform: translateX(0%);
}	
}
@-webkit-keyframes slideRight {
0% {
-webkit-transform: translateX(-150%);
}
50%{
-webkit-transform: translateX(8%);
}
65%{
-webkit-transform: translateX(-4%);
}
80%{
-webkit-transform: translateX(4%);
}
95%{
-webkit-transform: translateX(-2%);
}			
100% {
-webkit-transform: translateX(0%);
}
} .slideExpandUp{
animation-name: slideExpandUp;
-webkit-animation-name: slideExpandUp;	
animation-duration: 1.6s;	
-webkit-animation-duration: 1.6s;
animation-timing-function: ease-out;	
-webkit-animation-timing-function: ease -out;
visibility: visible !important;
}
@keyframes slideExpandUp {
0% {
transform: translateY(100%) scaleX(0.5);
}
30%{
transform: translateY(-8%) scaleX(0.5);
}	
40%{
transform: translateY(2%) scaleX(0.5);
}
50%{
transform: translateY(0%) scaleX(1.1);
}
60%{
transform: translateY(0%) scaleX(0.9);		
}
70% {
transform: translateY(0%) scaleX(1.05);
}			
80%{
transform: translateY(0%) scaleX(0.95);		
}
90% {
transform: translateY(0%) scaleX(1.02);
}	
100%{
transform: translateY(0%) scaleX(1);		
}
}
@-webkit-keyframes slideExpandUp {
0% {
-webkit-transform: translateY(100%) scaleX(0.5);
}
30%{
-webkit-transform: translateY(-8%) scaleX(0.5);
}	
40%{
-webkit-transform: translateY(2%) scaleX(0.5);
}
50%{
-webkit-transform: translateY(0%) scaleX(1.1);
}
60%{
-webkit-transform: translateY(0%) scaleX(0.9);		
}
70% {
-webkit-transform: translateY(0%) scaleX(1.05);
}			
80%{
-webkit-transform: translateY(0%) scaleX(0.95);		
}
90% {
-webkit-transform: translateY(0%) scaleX(1.02);
}	
100%{
-webkit-transform: translateY(0%) scaleX(1);		
}
} .expandUp{
animation-name: expandUp;
-webkit-animation-name: expandUp;	
animation-duration: 0.7s;	
-webkit-animation-duration: 0.7s;
animation-timing-function: ease;	
-webkit-animation-timing-function: ease;	
visibility: visible !important;
}
@keyframes expandUp {
0% {
transform: translateY(100%) scale(0.6) scaleY(0.5);
}
60%{
transform: translateY(-7%) scaleY(1.12);
}
75%{
transform: translateY(3%);
}	
100% {
transform: translateY(0%) scale(1) scaleY(1);
}	
}
@-webkit-keyframes expandUp {
0% {
-webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
}
60%{
-webkit-transform: translateY(-7%) scaleY(1.12);
}
75%{
-webkit-transform: translateY(3%);
}	
100% {
-webkit-transform: translateY(0%) scale(1) scaleY(1);
}	
} .expandOpen{
animation-name: expandOpen;
-webkit-animation-name: expandOpen;	
animation-duration: 1.2s;	
-webkit-animation-duration: 1.2s;
animation-timing-function: ease-out;	
-webkit-animation-timing-function: ease-out;
visibility: visible !important;
}
@keyframes expandOpen {
0% {
transform: scale(1.8);		
}
50% {
transform: scale(0.95);
}	
80% {
transform: scale(1.05);
}
90% {
transform: scale(0.98);
}	
100% {
transform: scale(1);
}			
}
@-webkit-keyframes expandOpen {
0% {
-webkit-transform: scale(1.8);		
}
50% {
-webkit-transform: scale(0.95);
}	
80% {
-webkit-transform: scale(1.05);
}
90% {
-webkit-transform: scale(0.98);
}	
100% {
-webkit-transform: scale(1);
}					
} .bigEntrance{
animation-name: bigEntrance;
-webkit-animation-name: bigEntrance;	
animation-duration: 1.6s;	
-webkit-animation-duration: 1.6s;
animation-timing-function: ease-out;	
-webkit-animation-timing-function: ease-out;	
visibility: visible !important;
}
@keyframes bigEntrance {
0% {
transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
opacity: 0.2;
}
30% {
transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);		
opacity: 1;
}
45% {
transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
opacity: 1;
}
60% {
transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);		
opacity: 1;
}	
75% {
transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
opacity: 1;
}
90% {
transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);		
opacity: 1;
}	
100% {
transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
opacity: 1;
}		
}
@-webkit-keyframes bigEntrance {
0% {
-webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
opacity: 0.2;
}
30% {
-webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);		
opacity: 1;
}
45% {
-webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
opacity: 1;
}
60% {
-webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);		
opacity: 1;
}	
75% {
-webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
opacity: 1;
}
90% {
-webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);		
opacity: 1;
}	
100% {
-webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
opacity: 1;
}				
} .hatch{
animation-name: hatch;
-webkit-animation-name: hatch;	
animation-duration: 2s;	
-webkit-animation-duration: 2s;
animation-timing-function: ease-in-out;	
-webkit-animation-timing-function: ease-in-out;
transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-webkit-transform-origin: 50% 100%; 
visibility: visible !important;
}
@keyframes hatch {
0% {
transform: rotate(0deg) scaleY(0.6);
}
20% {
transform: rotate(-2deg) scaleY(1.05);
}
35% {
transform: rotate(2deg) scaleY(1);
}
50% {
transform: rotate(-2deg);
}	
65% {
transform: rotate(1deg);
}	
80% {
transform: rotate(-1deg);
}		
100% {
transform: rotate(0deg);
}									
}
@-webkit-keyframes hatch {
0% {
-webkit-transform: rotate(0deg) scaleY(0.6);
}
20% {
-webkit-transform: rotate(-2deg) scaleY(1.05);
}
35% {
-webkit-transform: rotate(2deg) scaleY(1);
}
50% {
-webkit-transform: rotate(-2deg);
}	
65% {
-webkit-transform: rotate(1deg);
}	
80% {
-webkit-transform: rotate(-1deg);
}		
100% {
-webkit-transform: rotate(0deg);
}		
} .floating{
animation-name: floating;
-webkit-animation-name: floating;
animation-duration: 1.5s;	
-webkit-animation-duration: 1.5s;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
visibility: visible !important;
}
@keyframes floating {
0% {
transform: translateY(0%);	
}
50% {
transform: translateY(8%);	
}	
100% {
transform: translateY(0%);
}			
}
@-webkit-keyframes floating {
0% {
-webkit-transform: translateY(0%);	
}
50% {
-webkit-transform: translateY(8%);	
}	
100% {
-webkit-transform: translateY(0%);
}			
} .tossing{
animation-name: tossing;
-webkit-animation-name: tossing;	
animation-duration: 2.5s;	
-webkit-animation-duration: 2.5s;
animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
visibility: visible !important;
}
@keyframes tossing {
0% {
transform: rotate(-4deg);	
}
50% {
transform: rotate(4deg);
}
100% {
transform: rotate(-4deg);	
}						
}
@-webkit-keyframes tossing {
0% {
-webkit-transform: rotate(-4deg);	
}
50% {
-webkit-transform: rotate(4deg);
}
100% {
-webkit-transform: rotate(-4deg);	
}				
} .pullUp{
animation-name: pullUp;
-webkit-animation-name: pullUp;	
animation-duration: 1.1s;	
-webkit-animation-duration: 1.1s;
animation-timing-function: ease-out;	
-webkit-animation-timing-function: ease-out;	
transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-webkit-transform-origin: 50% 100%; 		
visibility: visible !important;
}
@keyframes pullUp {
0% {
transform: scaleY(0.1);
}
40% {
transform: scaleY(1.02);
}
60% {
transform: scaleY(0.98);
}
80% {
transform: scaleY(1.01);
}
100% {
transform: scaleY(0.98);
}				
80% {
transform: scaleY(1.01);
}
100% {
transform: scaleY(1);
}							
}
@-webkit-keyframes pullUp {
0% {
-webkit-transform: scaleY(0.1);
}
40% {
-webkit-transform: scaleY(1.02);
}
60% {
-webkit-transform: scaleY(0.98);
}
80% {
-webkit-transform: scaleY(1.01);
}
100% {
-webkit-transform: scaleY(0.98);
}				
80% {
-webkit-transform: scaleY(1.01);
}
100% {
-webkit-transform: scaleY(1);
}		
} .pullDown{
animation-name: pullDown;
-webkit-animation-name: pullDown;	
animation-duration: 1.1s;	
-webkit-animation-duration: 1.1s;
animation-timing-function: ease-out;	
-webkit-animation-timing-function: ease-out;	
transform-origin: 50% 0%;
-ms-transform-origin: 50% 0%;
-webkit-transform-origin: 50% 0%; 
visibility: visible !important;
}
@keyframes pullDown {
0% {
transform: scaleY(0.1);
}
40% {
transform: scaleY(1.02);
}
60% {
transform: scaleY(0.98);
}
80% {
transform: scaleY(1.01);
}
100% {
transform: scaleY(0.98);
}				
80% {
transform: scaleY(1.01);
}
100% {
transform: scaleY(1);
}							
}
@-webkit-keyframes pullDown {
0% {
-webkit-transform: scaleY(0.1);
}
40% {
-webkit-transform: scaleY(1.02);
}
60% {
-webkit-transform: scaleY(0.98);
}
80% {
-webkit-transform: scaleY(1.01);
}
100% {
-webkit-transform: scaleY(0.98);
}				
80% {
-webkit-transform: scaleY(1.01);
}
100% {
-webkit-transform: scaleY(1);
}		
} .stretchLeft{
animation-name: stretchLeft;
-webkit-animation-name: stretchLeft;	
animation-duration: 1.5s;	
-webkit-animation-duration: 1.5s;
animation-timing-function: ease-out;	
-webkit-animation-timing-function: ease-out;	
transform-origin: 100% 0%;
-ms-transform-origin: 100% 0%;
-webkit-transform-origin: 100% 0%; 
visibility: visible !important;
}
@keyframes stretchLeft {
0% {
transform: scaleX(0.3);
}
40% {
transform: scaleX(1.02);
}
60% {
transform: scaleX(0.98);
}
80% {
transform: scaleX(1.01);
}
100% {
transform: scaleX(0.98);
}				
80% {
transform: scaleX(1.01);
}
100% {
transform: scaleX(1);
}							
}
@-webkit-keyframes stretchLeft {
0% {
-webkit-transform: scaleX(0.3);
}
40% {
-webkit-transform: scaleX(1.02);
}
60% {
-webkit-transform: scaleX(0.98);
}
80% {
-webkit-transform: scaleX(1.01);
}
100% {
-webkit-transform: scaleX(0.98);
}				
80% {
-webkit-transform: scaleX(1.01);
}
100% {
-webkit-transform: scaleX(1);
}		
} .stretchRight{
animation-name: stretchRight;
-webkit-animation-name: stretchRight;	
animation-duration: 1.5s;	
-webkit-animation-duration: 1.5s;
animation-timing-function: ease-out;	
-webkit-animation-timing-function: ease-out;	
transform-origin: 0% 0%;
-ms-transform-origin: 0% 0%;
-webkit-transform-origin: 0% 0%; 	
visibility: visible !important;
}
@keyframes stretchRight {
0% {
transform: scaleX(0.3);
}
40% {
transform: scaleX(1.02);
}
60% {
transform: scaleX(0.98);
}
80% {
transform: scaleX(1.01);
}
100% {
transform: scaleX(0.98);
}				
80% {
transform: scaleX(1.01);
}
100% {
transform: scaleX(1);
}							
}
@-webkit-keyframes stretchRight {
0% {
-webkit-transform: scaleX(0.3);
}
40% {
-webkit-transform: scaleX(1.02);
}
60% {
-webkit-transform: scaleX(0.98);
}
80% {
-webkit-transform: scaleX(1.01);
}
100% {
-webkit-transform: scaleX(0.98);
}				
80% {
-webkit-transform: scaleX(1.01);
}
100% {
-webkit-transform: scaleX(1);
}		
}
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.animate.zoomIn {
-webkit-animation-name: zoomIn;
-moz-animation-name: zoomIn;
-o-animation-name: zoomIn;
animation-name: zoomIn;
visibility: visible !important;
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
@keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@keyframes team-bounceOut {
0%{ box-shadow: 0 0 0 4px #eaeaea; opacity:1; }
25%{ box-shadow: 0 0 0 1px #eaeaea; opacity:1; }
50%{ box-shadow: 0 0 0 7px #eaeaea; opacity:1; }
75%{ box-shadow: 0 0 0 4px #eaeaea; opacity:1; }
100%{ box-shadow: 0 0 0 5px #eaeaea; opacity:1; }
}
@-o-keyframes team-bounceOut {
0%{ box-shadow: 0 0 0 4px #eaeaea; opacity:1; }
25%{ box-shadow: 0 0 0 1px #eaeaea; opacity:1; }
50%{ box-shadow: 0 0 0 7px #eaeaea; opacity:1; }
75%{ box-shadow: 0 0 0 4px #eaeaea; opacity:1; }
100%{ box-shadow: 0 0 0 5px #eaeaea; opacity:1; }
}
@-moz-keyframes team-bounceOut {
0%{ box-shadow: 0 0 0 4px #eaeaea; opacity:1; }
25%{ box-shadow: 0 0 0 1px #eaeaea; opacity:1; }
50%{ box-shadow: 0 0 0 7px #eaeaea; opacity:1; }
75%{ box-shadow: 0 0 0 4px #eaeaea; opacity:1; }
100%{ box-shadow: 0 0 0 5px #eaeaea; opacity:1; }
}
@-webkit-keyframes team-bounceOut {
0%{ box-shadow: 0 0 0 4px #eaeaea; opacity:1; }
25%{ box-shadow: 0 0 0 1px #eaeaea; opacity:1; }
50%{ box-shadow: 0 0 0 7px #eaeaea; opacity:1; }
75%{ box-shadow: 0 0 0 4px #eaeaea; opacity:1; }
100%{ box-shadow: 0 0 0 5px #eaeaea; opacity:1; }
}
@keyframes rotating {
0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); }
100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); }
}
@-webkit-keyframes rotating {
0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); }
100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); }
}
@-moz-keyframes rotating {
0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); }
100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); }
}
@-ms-keyframes rotating {
0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); }
100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); }
}
@-o-keyframes rotating {
0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); }
100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); }
}
@-webkit-keyframes avia_pop {
0% {
-webkit-transform:scale(0.8)
}
100% {
-webkit-transform:scale(1)
}
}
@-moz-keyframes avia_pop {
0% {
-moz-transform:scale(0.8)
}
100% {
-moz-transform:scale(1)
}
}
@keyframes avia_pop {
0% {
transform:scale(0.8)
}
100% {
transform:scale(1)
}
}
@-webkit-keyframes avia_pop_small {
0% {
-webkit-transform:rotate(-175deg) scale(0.2)
}
100% {
-webkit-transform:rotate(0deg) scale(1)
}
}
@-moz-keyframes avia_pop_small {
0% {
-moz-transform:rotate(-175deg) scale(0.2)
}
100% {
-moz-transform:rotate(0deg) scale(1)
}
}
@keyframes avia_pop_small {
0% {
transform:rotate(-175deg) scale(0.2)
}
100% {
transform:rotate(0deg) scale(1)
}
}
@-webkit-keyframes dtfadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}	
@-moz-keyframes dtfadeInUp {
0% {
opacity: 0;
-moz-transform: translateY(20px);
}
100% {
opacity: 1;
-moz-transform: translateY(0);
}
}
@-o-keyframes dtfadeInUp {
0% {
opacity: 0;
-o-transform: translateY(20px);
}
100% {
opacity: 1;
-o-transform: translateY(0);
}
}
@keyframes dtfadeInUp {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.animate.dt-sc-fadeInUp {
-webkit-animation-name: dtfadeInUp;
-moz-animation-name: dtfadeInUp;
-o-animation-name: dtfadeInUp;
animation-name: dtfadeInUp;
visibility: visible !important;
}.ui-helper-hidden {
display: none;
}
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.ui-helper-reset {
margin: 0;
padding: 0;
border: 0;
outline: 0;
line-height: 1.3;
text-decoration: none;
font-size: 100%;
list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
content: "";
display: table;
border-collapse: collapse;
}
.ui-helper-clearfix:after {
clear: both;
}
.ui-helper-clearfix {
min-height: 0; }
.ui-helper-zfix {
width: 100%;
height: 100%;
top: 0;
left: 0;
position: absolute;
opacity: 0;
filter:Alpha(Opacity=0);
}
.ui-front {
z-index: 100;
} .ui-state-disabled {
cursor: default !important;
}  .ui-icon {
display: block;
text-indent: -99999px;
overflow: hidden;
background-repeat: no-repeat;
}  .ui-widget-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.ui-accordion .ui-accordion-header {
display: block;
cursor: pointer;
position: relative;
margin: 2px 0 0 0;
padding: .5em .5em .5em .7em;
min-height: 0; font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
position: absolute;
left: .5em;
top: 50%;
margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
padding: 1em 2.2em;
border-top: 0;
overflow: auto;
}
.ui-autocomplete {
position: absolute;
top: 0;
left: 0;
cursor: default;
}
.ui-button {
display: inline-block;
position: relative;
padding: 0;
line-height: normal;
margin-right: .1em;
cursor: pointer;
vertical-align: middle;
text-align: center;
overflow: visible; }
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
text-decoration: none;
} .ui-button-icon-only {
width: 2.2em;
} button.ui-button-icon-only {
width: 2.4em;
}
.ui-button-icons-only {
width: 3.4em;
}
button.ui-button-icons-only {
width: 3.7em;
} .ui-button .ui-button-text {
display: block;
line-height: normal;
}
.ui-button-text-only .ui-button-text {
padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
padding: .4em;
text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
padding-left: 2.1em;
padding-right: 2.1em;
} input.ui-button {
padding: .4em 1em;
} .ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
position: absolute;
top: 50%;
margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
left: 50%;
margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
right: .5em;
} .ui-buttonset {
margin-right: 7px;
}
.ui-buttonset .ui-button {
margin-left: 0;
margin-right: -.3em;
}  input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
border: 0;
padding: 0;
}
.ui-datepicker {
width: 17em;
padding: .2em .2em 0;
display: none;
}
.ui-datepicker .ui-datepicker-header {
position: relative;
padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
position: absolute;
top: 2px;
width: 1.8em;
height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
left: 2px;
}
.ui-datepicker .ui-datepicker-next {
right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
display: block;
position: absolute;
left: 50%;
margin-left: -8px;
top: 50%;
margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
margin: 0 2.3em;
line-height: 1.8em;
text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
font-size: 1em;
margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
width: 49%;
}
.ui-datepicker table {
width: 100%;
font-size: .9em;
border-collapse: collapse;
margin: 0 0 .4em;
}
.ui-datepicker th {
padding: .7em .3em;
text-align: center;
font-weight: bold;
border: 0;
font-size:13px;
}
.ui-datepicker td {
border: 0;
padding: 1px;
font-size:13px;
}
.ui-datepicker td span,
.ui-datepicker td a {
display: block;
padding: .2em;
text-align: right;
text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
background-image: none;
margin: .7em 0 0 0;
padding: 0 .2em;
border-left: 0;
border-right: 0;
border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
float: right;
margin: .5em .2em .4em;
cursor: pointer;
padding: .2em .6em .3em .6em;
width: auto;
overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
float: left;
} .ui-datepicker.ui-datepicker-multi {
width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
width: 95%;
margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
clear: left;
}
.ui-datepicker-row-break {
clear: both;
width: 100%;
font-size: 0;
} .ui-datepicker-rtl {
direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
right: 2px;
left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
left: 2px;
right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
right: 1px;
left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
left: 1px;
right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
border-right-width: 0;
border-left-width: 1px;
}
.ui-dialog {
overflow: hidden;
position: absolute;
top: 0;
left: 0;
padding: .2em;
outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
padding: .4em 1em;
position: relative;
}
.ui-dialog .ui-dialog-title {
float: left;
margin: .1em 0;
white-space: nowrap;
width: 90%;
overflow: hidden;
text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
position: absolute;
right: .3em;
top: 50%;
width: 20px;
margin: -10px 0 0 0;
padding: 1px;
height: 20px;
}
.ui-dialog .ui-dialog-content {
position: relative;
border: 0;
padding: .5em 1em;
background: none;
overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
text-align: left;
border-width: 1px 0 0 0;
background-image: none;
margin-top: .5em;
padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
margin: .5em .4em .5em 0;
cursor: pointer;
}
.ui-dialog .ui-resizable-se {
width: 12px;
height: 12px;
right: -5px;
bottom: -5px;
background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
cursor: move;
}
.ui-draggable-handle {
-ms-touch-action: none;
touch-action: none;
}
.ui-menu {
list-style: none;
padding: 0;
margin: 0;
display: block;
outline: none;
}
.ui-menu .ui-menu {
position: absolute;
}
.ui-menu .ui-menu-item {
position: relative;
margin: 0;
padding: 3px 1em 3px .4em;
cursor: pointer;
min-height: 0;  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.ui-menu .ui-menu-divider {
margin: 5px 0;
height: 0;
font-size: 0;
line-height: 0;
border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
margin: -1px;
} .ui-menu-icons {
position: relative;
}
.ui-menu-icons .ui-menu-item {
padding-left: 2em;
} .ui-menu .ui-icon {
position: absolute;
top: 0;
bottom: 0;
left: .2em;
margin: auto 0;
} .ui-menu .ui-menu-icon {
left: auto;
right: 0;
}
.ui-progressbar {
height: 2em;
text-align: left;
overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
margin: -1px;
height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
background: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/animated-overlay.gif);
height: 100%;
filter: alpha(opacity=25);
opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
background-image: none;
}
.ui-resizable {
position: relative;
}
.ui-resizable-handle {
position: absolute;
font-size: 0.1px;
display: block;
-ms-touch-action: none;
touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
display: none;
}
.ui-resizable-n {
cursor: n-resize;
height: 7px;
width: 100%;
top: -5px;
left: 0;
}
.ui-resizable-s {
cursor: s-resize;
height: 7px;
width: 100%;
bottom: -5px;
left: 0;
}
.ui-resizable-e {
cursor: e-resize;
width: 7px;
right: -5px;
top: 0;
height: 100%;
}
.ui-resizable-w {
cursor: w-resize;
width: 7px;
left: -5px;
top: 0;
height: 100%;
}
.ui-resizable-se {
cursor: se-resize;
width: 12px;
height: 12px;
right: 1px;
bottom: 1px;
}
.ui-resizable-sw {
cursor: sw-resize;
width: 9px;
height: 9px;
left: -5px;
bottom: -5px;
}
.ui-resizable-nw {
cursor: nw-resize;
width: 9px;
height: 9px;
left: -5px;
top: -5px;
}
.ui-resizable-ne {
cursor: ne-resize;
width: 9px;
height: 9px;
right: -5px;
top: -5px;
}
.ui-selectable {
-ms-touch-action: none;
touch-action: none;
}
.ui-selectable-helper {
position: absolute;
z-index: 100;
border: 1px dotted black;
}
.ui-selectmenu-menu {
padding: 0;
margin: 0;
position: absolute;
top: 0;
left: 0;
display: none;
}
.ui-selectmenu-menu .ui-menu {
overflow: auto; overflow-x: hidden;
padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
font-size: 1em;
font-weight: bold;
line-height: 1.5;
padding: 2px 0.4em;
margin: 0.5em 0 0 0;
height: auto;
border: 0;
}
.ui-selectmenu-open {
display: block;
}
.ui-selectmenu-button {
display: inline-block;
overflow: hidden;
position: relative;
text-decoration: none;
cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
right: 0.5em;
left: auto;
margin-top: -8px;
position: absolute;
top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
text-align: left;
padding: 0.4em 2.1em 0.4em 1em;
display: block;
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ui-slider {
position: relative;
text-align: left;
}
.ui-slider .ui-slider-handle {
position: absolute;
z-index: 2;
width: 1.2em;
height: 1.2em;
cursor: default;
-ms-touch-action: none;
touch-action: none;
}
.ui-slider .ui-slider-range {
position: absolute;
z-index: 1;
font-size: .7em;
display: block;
border: 0;
background-position: 0 0;
} .ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
filter: inherit;
}
.ui-slider-horizontal {
height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
top: -.3em;
margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
top: 0;
height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
right: 0;
}
.ui-slider-vertical {
width: .8em;
height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
left: -.3em;
margin-left: 0;
margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
left: 0;
width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
top: 0;
}
.ui-sortable-handle {
-ms-touch-action: none;
touch-action: none;
}
.ui-spinner {
position: relative;
display: inline-block;
overflow: hidden;
padding: 0;
vertical-align: middle;
}
.ui-spinner-input {
border: none;
background: none;
color: inherit;
padding: 0;
margin: .2em 0;
vertical-align: middle;
margin-left: .4em;
margin-right: 22px;
}
.ui-spinner-button {
width: 16px;
height: 50%;
font-size: .5em;
padding: 0;
margin: 0;
text-align: center;
position: absolute;
cursor: default;
display: block;
overflow: hidden;
right: 0;
} .ui-spinner a.ui-spinner-button {
border-top: none;
border-bottom: none;
border-right: none;
} .ui-spinner .ui-icon {
position: absolute;
margin-top: -8px;
top: 50%;
left: 0;
}
.ui-spinner-up {
top: 0;
}
.ui-spinner-down {
bottom: 0;
} .ui-spinner .ui-icon-triangle-1-s { background-position: -65px -16px;
}
.ui-tabs {
position: relative; padding: .2em;
}
.ui-tabs .ui-tabs-nav {
margin: 0;
padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
list-style: none;
float: left;
position: relative;
top: 0;
margin: 1px .2em 0 0;
border-bottom-width: 0;
padding: 0;
white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
float: left;
padding: .5em 1em;
text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
margin-bottom: -1px;
padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
display: block;
border-width: 0;
padding: 1em 1.4em;
background: none;
}
.ui-tooltip {
padding: 8px;
position: absolute;
z-index: 9999;
max-width: 300px;
-webkit-box-shadow: 0 0 5px #aaa;
box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
border-width: 2px;
} .ui-widget {
font-family: Verdana,Arial,sans-serif;
font-size: 1.1em;
}
.ui-widget .ui-widget {
font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
font-family: Verdana,Arial,sans-serif;
font-size: 1em;
}
.ui-widget-content {
border: 1px solid #aaaaaa;
background: #ffffff url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
color: #222222;
z-index:999 !important;
position:relative;
}
.ui-widget-content a {
color: #222222;
}
.ui-widget-header {
border: 1px solid #aaaaaa;
background: #cccccc url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
color: #222222;
font-weight: bold;
}
.ui-widget-header a {
color: #222222;
} .ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
border: 1px solid #d3d3d3;
background: #e6e6e6 url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
font-weight: normal;
color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
color: #555555;
text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
border: 1px solid #999999;
background: #dadada url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
font-weight: normal;
color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
color: #212121;
text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
border: 1px solid #aaaaaa;
background: #ffffff url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
font-weight: normal;
color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
color: #212121;
text-decoration: none;
} .ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
border: 1px solid #fcefa1;
background: #fbf9ee url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
border: 1px solid #cd0a0a;
background: #fef1ec url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
opacity: .7;
filter:Alpha(Opacity=70);
font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
opacity: .35;
filter:Alpha(Opacity=35);
background-image: none;
}
.ui-state-disabled .ui-icon {
filter:Alpha(Opacity=35); }  .ui-icon {
width: 16px;
height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
background-image: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
background-image: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/ui-icons_222222_256x240.png);
}
.ui-state-default .ui-icon {
background-image: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/ui-icons_888888_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
background-image: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/ui-icons_454545_256x240.png);
}
.ui-state-active .ui-icon {
background-image: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/ui-icons_454545_256x240.png);
}
.ui-state-highlight .ui-icon {
background-image: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/ui-icons_2e83ff_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
background-image: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/ui-icons_cd0a0a_256x240.png);
} .ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; } .ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }  .ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-bottom-right-radius: 4px;
} .ui-widget-overlay {
background: #aaaaaa url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
opacity: .3;
filter: Alpha(Opacity=30);
}
.ui-widget-shadow {
margin: -8px 0 0 -8px;
padding: 8px;
background: #aaaaaa url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
opacity: .3;
filter: Alpha(Opacity=30);
border-radius: 8px;
}
  .dt-sc-hr { background:url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/splitter.png) repeat-x; height:10px; width:100%; clear:both; display:block; float:left; position:relative; z-index:1; }
.dt-sc-hr-medium { background:url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/splitter-medium.png) repeat-x; height:16px; width:100%; clear:both; display:block; float:left; position:relative; z-index:1; }
.dt-sc-hr-large { background:url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/splitter-large.png) repeat-x; height:22px; width:100%; clear:both; display:block; float:left; position:relative; z-index:1; }	
.dt-sc-hr.top { width:96%; }
.dt-sc-hr.top { background-position:right center; text-align:right; }
.dt-sc-hr.top a { color:rgba(0, 0, 0, 0.5); background:transparent; font-size:11px; line-height:16px; padding-left:5px; position:absolute; right:-4%; top:-4px; }
.dt-sc-hr.top a:hover { color:#303030; }
.dt-sc-hr.top a span { margin-right:2px; }
.hr-title { float:left; width:100%;  margin-bottom:50px; display:table; }
.dt-sc-hr-line { border-bottom:1px solid #eaeaea; float:left; width:100%; }
.top-border { border-top:1px solid #eaeaea; float:left; width:100%; }
.bottom-border { border-bottom:1px solid #eaeaea; float:left; width:100%; }
.dtVideoContainer { display:none; height:360px; width:640px; }
.dt-sc-separators { width:40px; height:2px; border-top:1px solid #eaeaea; clear:both; }
.dt-sc-separators.text-aligncenter { margin-left:auto; margin-right:auto; } 
.dt-sc-separators.text-alignright { float:right; }
.dt-sc-separators.text-alignleft { float:left; }
.custom-white-bg { background-color:#fff; }
.custom-white-bg h3, .full-width-section.dark-parallax-content .custom-white-bg h3 { color:#333; padding-left:15px; }
.custom-white-bg .dt-sc-appoinment-form { border:none; }
.rounded-image { border-radius:50%; }
.alternate td { background-color:#f7f7f7; }
.rounded-button, .dt-sc-button.large.rounded-button, .dt-sc-button.medium.rounded-button, .dt-sc-button.small.rounded-button { border-radius:30px; }
.dt-sc-shadow { box-shadow:0 7px 7px rgba(0,0,0,0.15); }
.dt-sc-spilter { background: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/hr-white-two.png) 50% 50%; height:30px; float:left; width:100%; display:block; margin:40px 0; }
.dt-sc-border1 { display:block; border-bottom:1px solid #eaeaea; border-right:1px solid #eaeaea; z-index:9; height:200px; width:100%; text-align:center; }
.dt-sc-border2 { display:block; border-bottom:1px solid #eaeaea; height:200px; width:100%; z-index:9; text-align:center; }
.dt-sc-border1:last-child, .dt-sc-border2:last-child { border-bottom:0; }
.dt-sc-border1 img, .dt-sc-border2 img { padding:30px 0; }
.imageflip .front { display:block; background-color:#fff; }
.imageflip .front img { backface-visibility:visible !important; }
.imageflip .back { background-color:#fff; display:block; }
.imageflip .back-content { bottom: 0; height: 80px; left: 0; margin: auto; position: absolute; right: 0; text-align: center; top: 0; padding:0 13px; backface-visibility:visible !important; }
.imageflip.dt-sc-border2 .back { right:-1px; }
.imageflip.dt-sc-border1 .back { left:0px; } 
.imageflip .back-content h2 { margin-bottom:5px; }
.image-fade:hover { -webkit-animation: 0.3s ease-in fadeIn; -moz-animation: 0.3s ease-in 0s fadeIn; animation: 0.3s ease-in 0s fadeIn; }
.dt-sc-fullwidth-video-section { clear: both; float: left; margin: 0; overflow: hidden; padding: 0; position: relative; width: 100%; }
.dt-sc-video-container { left: 0; position: absolute; top: 0; width: 100%; }
.dt-sc-video-content-wrapper { color: #ffffff; float: left; padding: 0; position: relative; width: 100%; }
.title-with-link a { text-decoration:underline; }
.title-with-link a:hover { text-decoration:none; color:#222; }
.bg-text { font-size:40px; color:#bdc1c6; font-weight:bold; margin-bottom:0; }
.dt-sc-hr-invisible-small, .dt-sc-hr-invisible-very-small, .dt-sc-hr-invisible, .dt-sc-margin50, .dt-sc-margin65, .dt-sc-margin70, .dt-sc-margin100, .dt-sc-margin80, .dt-sc-margin30, .dt-sc-margin25, .dt-sc-margin10, .dt-sc-margin45, .dt-sc-margin35, .dt-sc-margin15, .dt-sc-margin20, .dt-sc-margin55, .dt-sc-margin90, .dt-sc-margin5, .dt-sc-margin85, .dt-sc-space, .dt-sc-margin40, .dt-sc-margin60, .dt-sc-margin75, .dt-sc-margin95 { float:left; width:100%; clear:both; }
.dt-sc-hr-invisible-small { margin:0px 0px 40px 0px; }
.dt-sc-hr-invisible-very-small { margin:0px 0px 20px 0px; }
.dt-sc-hr-invisible { margin:30px 0px; }
.dt-sc-margin5 { margin:0px 0px 5px 0px; }
.dt-sc-margin10 { margin:0px 0px 10px 0px; }
.dt-sc-margin15 { margin:0px 0px 15px 0px; }
.dt-sc-margin20 { margin:10px 0px; }
.dt-sc-margin25 { margin:0px 0px 25px 0px; }
.dt-sc-margin30 { margin:15px 0px; }
.dt-sc-margin35 { margin:0px 0px 35px 0; }
.dt-sc-margin40 { margin:0px 0px 40px 0px; }
.dt-sc-margin45 { margin:0px 0px 45px 0px; }
.dt-sc-margin50 { margin:25px 0px; }
.dt-sc-margin55 { margin:25px 0px 30px 0; }
.dt-sc-margin60 { margin:30px 0px; }
.dt-sc-margin65 { margin:35px 0px 30px 0px; }
.dt-sc-margin70 { margin:35px 0px; }
.dt-sc-margin75 { margin:30px 0px 35px; }
.dt-sc-margin80 { margin:40px 0px; }
.dt-sc-margin85 { margin:40px 0px 45px; }
.dt-sc-margin90 { margin:40px 0px 50px 0px; }
.dt-sc-margin95 { margin:45px 0px 50px 0px; }
.dt-sc-margin100 { margin:50px 0px; }
.dt-sc-clear { float:none; clear:both; margin:0; padding:0; }
.dt-sc-hr-border { border-bottom:1px dashed #969696; } .column { margin:0px 0px 0px 2%; float:left; min-height:1px; position:relative; }
.column.first { margin-left:0px; }
.dt-sc-full-width, .dt-sc-one-column { width:100%; }
.column.dt-sc-full-width, .column.dt-sc-one-column { margin-left:0px; }
.dt-sc-one-fourth { width:23.4%; }
.dt-sc-one-half { width:48.9%; }
.dt-sc-one-third { width:31.9%; }
.dt-sc-three-fourth { width:74.5%; }	
.dt-sc-two-third { width:65.8%; }
.dt-sc-one-fifth { width:18.3%; }
.dt-sc-four-fifth { width:79.6%; }
.dt-sc-three-fifth { width:59.2%; }
.dt-sc-two-fifth { width:38.8%; }
.dt-sc-one-sixth { width:15%; }
.dt-sc-two-sixth { width:30%; }
.dt-sc-three-sixth { width:45%; }
.dt-sc-four-sixth { width:60%; }
.dt-sc-five-sixth { width:75%; }		
.column img { max-width:100%; height:auto; }
.column iframe, iframe, embed, iframe, object, video { max-width:100%; }
.column.no-space { margin-left:0px; margin-right:0px; }
.column.no-space.dt-sc-one-fourth { width:25%; } 	
.column.no-space.dt-sc-one-third { width:33.33%; }	
.column.no-space.dt-sc-one-half { width:50%; }
.column.no-space.dt-sc-one-fifth { width:20%; }
.column.no-space.dt-sc-one-sixth { width:16.66%; }
.column.no-space.dt-sc-three-fourth { width:75%; }
.column.no-space.dt-sc-two-third { width:66.6%; }		
.column.no-space.dt-sc-four-fifth { width:80%; }
.column.no-space.dt-sc-three-fifth { width:60%; }
.column.no-space.dt-sc-two-fifth { width:40%; }		
.column.no-space.dt-sc-two-sixth { width:33.2%; }
.column.no-space.dt-sc-three-sixth { width:49.8%; }
.column.no-space.dt-sc-four-sixth { width:66.4%; }
.column.no-space.dt-sc-five-sixth { width:83%; } .dt-sc-left { float:left; }
.dt-sc-right { float:right; }
.dt-sc-left .top-menu, .dt-sc-left .dt-sc-social-icons, .dt-sc-left .top-shop-cart { float:left; }
.dt-sc-right .top-menu, .dt-sc-right .dt-sc-social-icons, .dt-sc-right .top-shop-cart { float:right; }
.top-bar { width:100%; clear:both; float:left; padding:0px; line-height:50px; background-color:#fff; position:relative; border-top-color:#ededed; border-bottom-color:#ededed; z-index:99991; }
.top-menu { margin:0px; padding:0px; }
.top-menu li { float:left; display:inline-block; margin:0px; padding:0 10px; color:#222; }
.top-menu li:first-child { padding:0 10px 0 0; }
.top-bar .top-menu.type1 li:last-child { border-right:1px dashed #ededed; }
.top-bar .top-menu.type1 li { border-left:1px dashed #ededed; padding:0 20px; }
.top-menu li a:hover { color:#2c3e50; }
.top-menu .fa { font-size:13px; font-family:FontAwesome; font-weight:normal; margin-right:7px; }
.top-bar .dt-sc-social-icons li a:hover { background-color:inherit; } 
.top-bar .dt-sc-social-icons { margin:0; padding:0; }
.top-bar .dt-sc-social-icons li { display:inline-block; float:left; margin:0px; padding:0; }
.top-bar .dt-sc-social-icons li a { padding:0px 8px; font-size:14px; color:#222; line-height:inherit; }
.top-right .dt-sc-social-icons { float:right; }
.top-menu.type2 li { border:none; padding:0; margin-left:12px; }
.top-menu.type2 li a { color:#b8c5d0; font-size:14px; padding:3px 10px; border:1px solid #b8c5d0; border-radius:2px; margin:0; display:inline-block; line-height:20px; }
.top-bar .top-menu.type2 li a:hover { color:#fff; }
.top-menu.type2 > li:first-child { margin:0; }
.top-bar .dt-sc-right > span, .top-bar .dt-sc-left > span { display: inline-block; padding: 0 8px; }
.top-menu.type3 li { padding:0; color:#7b8a97; font-size:13px; margin:0 20px 0 0; }
.top-menu.type3 li a { color:#7b8a97; font-size:13px; }
.top-menu.type3 li:last-child a { border-left:1px solid #9ea9b3; padding:0 0 0 17px; }
.top-menu.type3 li:last-child { margin-right:0; }
.dt-sc-switcher { display:block; margin-left:10px; position: relative; }
.dt-sc-switcher .active { border:1px solid #eaeaea; display:block; padding:10px 10px 8px; position:relative; background-color:#fff; line-height:normal; }
.dt-sc-switcher-down { border-color: #eaeaea; border-style: solid; border-width: 0 1px 0px; display: none; left: 0; overflow: hidden; position: absolute; top: 100%; width: 100%; z-index:999999; background-color:#fff;  }
.dt-sc-switcher-down li { border-bottom:1px solid #eaeaea; padding:0; }
.dt-sc-switcher:hover .dt-sc-switcher-down { display:block; display:block; -webkit-animation: 0.3s ease-in fadeInUp; -moz-animation: 0.3s ease-in 0s fadeInUp; animation: 0.3s ease-in 0s fadeInUp; }
.dt-sc-switcher-down li a { color: #92a7bb; display: block; font-size: 14px; padding: 6px 0; text-align: center; line-height:normal; }
.dt-sc-white { color:#fff; } .dt-sc-ico-content { width:100%; float:left; text-align:center; padding:0; display:block; clear:both; margin:0; position:relative; }
.dt-sc-ico-content h4 { font-weight:bold; }
.dt-sc-ico-content.type1 .custom-icon { float:left; width:100%; margin-bottom:25px; }
.dt-sc-ico-content.type1 h4{ margin-bottom:10px; line-height:32px; }
.dt-sc-ico-content:hover h4 a { -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type1 .custom-icon span.fa { transform:inherit; }
.dt-sc-ico-content.type1 .custom-icon img, .dt-sc-ico-content.type1 .custom-icon span { vertical-align:middle; transition: all 0.3s ease 0s; -webkit-transition:all 0.3s ease 0s; -moz-transition:all 0.3s ease 0s; -o-transition:all 0.3s ease 0s; -ms-transition:all 0.3s ease 0s; }
.dt-sc-ico-content.type1:hover .custom-icon img, .dt-sc-ico-content.type1:hover .custom-icon span { -webkit-transform: rotateY(360deg); -moz-transform: rotateY(360deg); -ms-transform: rotateY(360deg); -o-transform: rotateY(360deg); transform: rotateY(360deg); }
.dt-sc-ico-content.type1 .custom-icon span, .dt-sc-ico-content.type20 .custom-icon span { font-size:45px; line-height:40px; color:#222; }
.dt-sc-ico-content.type2 .custom-icon, .dt-sc-ico-content.type4 .custom-icon { border-radius:50%; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; border:1px solid; }
.dt-sc-ico-content.type2 .custom-icon span, .dt-sc-ico-content.type4 .custom-icon span { font-size:35px; line-height:98px; color:#222; }
.dt-sc-ico-content.type2:hover .custom-icon span, .dt-sc-ico-content.type4:hover .custom-icon span { color:#fff; }
.dt-sc-ico-content.type2 .custom-icon, .dt-sc-ico-content.type4 .custom-icon { display:block; width:98px; height:98px; margin-bottom:20px; position:relative; display:inline-block; }
.dt-sc-ico-content.type2 h4, .dt-sc-ico-content.type4 h4 { margin-bottom:15px; }
.dt-sc-ico-content.type2 .custom-icon img:first-child, .dt-sc-ico-content.type4 .custom-icon img:first-child, .dt-sc-ico-content.type8 .custom-icon img:first-child { opacity:0; }
.dt-sc-ico-content.type2:hover .custom-icon img:first-child, .dt-sc-ico-content.type4:hover .custom-icon img:first-child, .dt-sc-ico-content.type8:hover .custom-icon img:first-child { opacity:1; }
.dt-sc-ico-content.type2:hover .custom-icon img:last-child, .dt-sc-ico-content.type4:hover .custom-icon img:last-child, .dt-sc-ico-content.type8:hover .custom-icon img:last-child { visibility:hidden; }
.dt-sc-ico-content.type2 .dt-sc-button.type10.small { padding:1px 16px; }
.dt-sc-ico-content.type3 .custom-icon { width:70px; height:70px; float:left; border-radius:50%; background-color:#ffffff; text-align:center; position:relative; z-index:2; position:absolute; left:0; top:0; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; box-shadow:0px 0px 0px 3px #eceaea inset; -webkit-box-shadow:0px 0px 0px 3px #eceaea inset; -moz-box-shadow:0px 0px 0px 3px #eceaea inset; }
.dt-sc-ico-content.type3:after { content:""; height:100%; position:absolute; top:0; left:35px; border-right:1px dashed #e2e2e2; z-index:1; }
.dt-sc-ico-content.type3:last-child:after { border:none; }
.dark-parallax .dt-sc-ico-content.type3 .custom-icon { box-shadow:none; }
.dt-sc-ico-content.type3:hover .custom-icon { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); }
.dt-sc-ico-content.type3 .custom-icon span { line-height:70px; font-size:24px; color:#222; }
.dt-sc-ico-content.type3:hover .custom-icon span { color:#ffffff; }
.dt-sc-ico-content.type3 { text-align: left; padding-bottom:40px; padding-left:85px; }
.dt-sc-ico-content.type3 h4 { margin-bottom:6px; font-size:16px; font-weight:normal; }
.dt-sc-ico-content.type4 { border:1px solid #ededed; padding:20px 5px; margin-bottom:20px; }
.icon-content-left, .icon-content-right { float:left; width:100%; margin-top:54px; }
.dt-sc-ico-content.type5 { position:relative; background-color:#222; margin-bottom:20px; padding:10px 10px 0; }
.icon-content-right .dt-sc-ico-content.type5 { padding:20px 5px 10px 50px; }
.icon-content-left .dt-sc-ico-content.type5 { padding:20px 50px 10px 5px; }
.icon-content-left .dt-sc-ico-content.type5 .custom-icon { position:absolute; right:20px; top:20px; }
.icon-content-right .dt-sc-ico-content.type5 .custom-icon { position:absolute; left:20px; top:20px; }
.dt-sc-ico-content.type5 h4 { margin-bottom:5px; color:#fbfbfb; font-size:16px; font-weight:normal; }
.dt-sc-ico-content.type5 h4 a { color:#fbfbfb; }
.dt-sc-ico-content.type5 p { color:#6989aa; }
.dt-sc-ico-content.type5 .custom-icon span { font-size:16px; line-height:15px; color:#fbfbfb; }
.icon-content-left .dt-sc-ico-content.type5:before { content:""; border-left:9px solid #222 ; position:absolute; border-top:10px solid rgba( 0, 0, 0, 0 ); border-bottom:10px solid rgba( 0, 0, 0, 0 ); top:20px; right:-9px; }
.icon-content-right .dt-sc-ico-content.type5:before { content:""; border-right:10px solid #222 ; position:absolute; border-top:10px solid rgba( 0, 0, 0, 0 ); border-bottom:10px solid rgba( 0, 0, 0, 0 ); top:20px; left:-9px; }
.icon-content-left .dt-sc-ico-content.type5 { text-align:right; }
.icon-content-right .dt-sc-ico-content.type5 { text-align:left; }
.dt-sc-ico-content.type6 { background-color:#222; text-align:left; padding:10px 10px 0px 10px; border-width:1px 0px 0px 1px; border-color:#ffffff; border-style:solid; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.selected .dt-sc-ico-content.type6, .dt-sc-ico-content.type6:hover { background-color:#05357f; }
.first .dt-sc-ico-content.type6 { border-left:none; }
.dt-sc-ico-content.type6 .custom-icon { width:46px; height:46px; border:2px solid #ffffff; border-radius:50%; float:left; text-align:center; margin:0 15px 15px 0; } 
.dt-sc-ico-content.type6 .custom-icon span { color:#ffffff; line-height:38px; font-size:16px; }
.dt-sc-ico-content.type6 p { font-family:'lato', sans-serif; font-size:12px; }
.dt-sc-ico-content.type6 h4 { margin-bottom:0px; line-height:18px; font-size:16px; font-weight:normal; }
.dt-sc-ico-content.type6 h4 a, .dt-sc-ico-content.type6:hover h4 a { color:#ffffff; }
.dt-sc-ico-content.type6.light-blue { background-color:#174894; }
.dt-sc-ico-content.type7, .dt-sc-ico-content.type11, .dt-sc-ico-content.type16 { text-align:left; padding-left: 90px; }
.dt-sc-ico-content.type7 .custom-icon, .dt-sc-ico-content.type11 .custom-icon { position:absolute; left:0; top:0; text-align:center; width:70px; height:60px; }
.dt-sc-ico-content.type7 .custom-icon span { font-size:35px; color:#222; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type7 h4, .dt-sc-ico-content.type11 h4 { line-height:18px; }
.dt-sc-ico-content.type7.with-left-icon { padding-left:60px; }
.dt-sc-ico-content.type7.with-left-icon .custom-icon { text-align:left; }
.dt-sc-ico-content.type8 { text-align:center; border:1px solid #eaeaea; background-color:#ffffff; padding:65px 0px 10px 0px; webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type8 .custom-icon { width:100px; height:90px; border:1px solid #eaeaea; display:inline-block; webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; background-color:#fbfbfb; position:absolute; top:-43px; left:0; right:0; margin:auto; overflow:hidden; }
.dt-sc-ico-content.type8 .custom-icon span { font-size:35px; line-height:90px; color:#222; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type8:hover .custom-icon span { color:#fff; }
.dt-sc-ico-content.type8:hover .custom-icon { border:1px solid; }
.dt-sc-ico-content.type8 h4 { border-bottom:1px dashed #d9d9d9; margin-bottom:10px; padding:0 10px 13px 10px; }
.dt-sc-ico-content.type8 p { padding:0 15px; }
.dt-sc-ico-content.type8:hover .custom-icon { border-color:#fff; }
.dt-sc-ico-content.type8:hover p, .dt-sc-ico-content.type8:hover h4 a, .dt-sc-ico-content.type8:hover a { color:#fff; }
.dt-sc-ico-content.type8:hover h4 { border-color:rgba( 255, 255, 255, 0.6); }
.dt-sc-ico-content.type8.circle { border-width:2px; }
.dt-sc-ico-content.type8.circle .custom-icon { border-radius:50%; height:100px; }
.dt-sc-ico-content.type2 .custom-icon img, .dt-sc-ico-content.type4 .custom-icon img, .dt-sc-ico-content.type8 .custom-icon img { position:absolute; top:0; bottom:0; margin:auto; left:0; right:0; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type8.circle .custom-icon img { border-radius:50%; }
.dt-sc-ico-content.type9 h4, .dt-sc-ico-content.type18 h4 { font-size:18px; }
.dt-sc-ico-content.type9 .custom-icon, .dt-sc-ico-content.type18 .custom-icon { width:130px; height:130px; box-shadow:0 0 9px 0 rgba(0, 0, 0, 0.1); -webkit-box-shadow:0 0 9px 0 rgba(0, 0, 0, 0.1); -moz-box-shadow:0 0 9px 0 rgba(0, 0, 0, 0.1); display:inline-block; border-radius:50%; margin-bottom:25px; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; position:relative; background-color:#ffffff; z-index:1; }
.dt-sc-ico-content.type9 .custom-icon span, .dt-sc-ico-content.type18 .custom-icon span { font-size:40px; color:#222; line-height:130px; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type9:hover .custom-icon span, .dt-sc-ico-content.type18:hover .custom-icon span { color:#ffffff; }
.dt-sc-ico-content.type9 .custom-icon:before { content:""; border-top:1px dashed #d6d6d6; min-width:165px; position:absolute; right:100%; top:50%; }
.first .dt-sc-ico-content.type9 .custom-icon:before { display:none; } 
.dt-sc-ico-content.type9.without-border .custom-icon:before { border:none; }
.dt-sc-ico-content.type9:hover .custom-icon { box-shadow:0px 0px 0px 5px rgba( 255, 255, 255, 0.3 ) inset; }
.dt-sc-ico-content.type10 { background-color:#ffffff; text-align:left; padding:20px 10px 10px 70px; border-right:1px dashed #969696; }
.dt-sc-ico-content.type10:hover, .slide-controls .selected .dt-sc-ico-content.type10 { background-color:#222; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type10:hover .custom-icon span, .dt-sc-ico-content.type10:hover h4 a, .slide-controls .selected .dt-sc-ico-content.type10 .custom-icon span, .slide-controls .selected .dt-sc-ico-content.type10 h4 a, .dt-sc-ico-content.type10:hover p, .slide-controls .selected .dt-sc-ico-content.type10 p { color:#ffffff; }
.first .dt-sc-ico-content.type10 { border-left:1px dashed #969696; } 
.dt-sc-ico-content.type10 .custom-icon { float:left; text-align:center; position:absolute; left:20px; top:28%; width:35px; height:35px; }
.dt-sc-ico-content.type10 .custom-icon span { color:#222; font-size:30px; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type10 h4 { margin-bottom:5px; font-size:15px; text-transform:uppercase; }
.dt-sc-ico-content.type11 .custom-icon { width:70px; height:100px; }
.dt-sc-ico-content.type11 .custom-icon span { font-size:35px; color:#fff; line-height:100px; }
.dt-sc-ico-content.type11 .custom-icon img, .dt-sc-ico-content.type11 .custom-icon span, .dt-sc-ico-content.type16 .custom-icon span { left:0; top:0; right:0; bottom:0; left:0; margin:auto; position:absolute; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type11:hover .custom-icon img, .dt-sc-ico-content.type11:hover .custom-icon span { -webkit-transform:scale(1.1) rotate(0deg) translate(0px); -moz-transform:scale(1.1) rotate(0deg) translate(0px); -ms-transform:scale(1.1) rotate(0deg) translate(0px); -o-transform:scale(1.1) rotateY(0deg) translate(0px); transform:scale(1.1) rotate(0deg) translate(0px); }
.dt-sc-ico-content.type11, .dt-sc-ico-content.type16 { margin-bottom:15px; }
.dt-sc-ico-content.type12 { float:left; width:100%; margin-bottom:20px; }
.dt-sc-ico-content.type12 h4 a, .dt-sc-ico-content.type12 p { -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type12 p { font-size:16px; margin-bottom:20px; font-family:'lato', sans-serif; }
.dt-sc-ico-content.type12 h4 a:hover, .dt-sc-ico-content.type12:hover h4 a, .dt-sc-ico-content.icon-box-color.type12 h4 a:hover { color:#d9d9d9; }
.dt-sc-ico-content.type12.left { text-align:left; }
.dt-sc-ico-content.type12.left h4 .fa { margin:0px 15px 0px 10px; }
.dt-sc-ico-content.type12.right h4 .fa { margin:4px 10px 0px 15px; float:right; }
.dt-sc-ico-content.type12.right { text-align:right; }
.dt-sc-ico-content.type12 h4 { border-bottom:1px solid; position:relative; padding-bottom:15px; margin-bottom:20px; font-size:18px; }
.dt-sc-ico-content.type12 h4:after { width:14px; height:14px; position:absolute; bottom:-7px; content:""; border-radius:50%; }
.dt-sc-ico-content.type12.left  h4:after { right:0; }
.dt-sc-ico-content.type12.right h4:after { left:0; }
.dt-sc-ico-content.icon-box-color.type12 h4 a, .dt-sc-ico-content.icon-box-color.type12 p { color:#fff; }
.dt-sc-ico-content.type13 h4 { font-size:18px; text-align:left; margin-bottom:10px; }
.dt-sc-ico-content.type13 .custom-icon img { border:1px solid #eaeaea; position:relative; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type13 .custom-icon { float:left; width:100%; margin-bottom:25px; position:relative; }
.dt-sc-ico-content.type13 { text-align:left; margin-bottom:15px; }
.dt-sc-ico-content.type13 .custom-icon:after { border-left: 22px solid transparent; border-bottom: 22px solid transparent; border-top: 22px solid; content: ""; display: block; height: 0; position: absolute; right:0px; bottom:-40px; margin:auto; width: 0; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; opacity:0; }
.dt-sc-ico-content.type13:hover .custom-icon:after { opacity:1; bottom:-44px; }
.dt-sc-ico-content.type13 .custom-icon:before { position:absolute; top:0; bottom:0; left:0; right:0; margin:auto; text-align:center; width:50px; height:50px; background-color:#191919; color:#fff; content:"\f067"; font-family:FontAwesome; line-height:50px; border-radius:50%; font-size:20px; opacity:0; z-index:1; cursor:pointer; }
.dt-sc-ico-content.type13:hover .custom-icon:before { opacity:1; -webkit-animation:avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); -moz-animation:avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); animation:avia_pop_small 0.5s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275); }
.dt-sc-ico-content.type14 .custom-icon { width:58px; height:58px; line-height:50px; border:4px solid #eaeaea; border-radius:50%; margin:0 auto 10px; text-align:center; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type14 span { font-size:20px; color:#222; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; line-height:50px; }
.dt-sc-ico-content.type14 h4 { font-size:14px; line-height:normal; padding:0; margin-bottom:20px; float:none; }
.full-width-section.parallax .dt-sc-ico-content.type14 .custom-icon, .full-width-section.parallax .dt-sc-tabs-container.type5 .dt-sc-tabs-frame { border-color:#fff; }
.dt-sc-ico-content.type15 .custom-icon img { border-radius:50%;  -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; position:relative; }
.dt-sc-ico-content.type15 h4 { margin-bottom:10px; }
.dt-sc-ico-content.type15 .custom-icon { margin-bottom:15px; position:relative; }
.dt-sc-ico-content.type15:hover .custom-icon img { -moz-transform: scale(0.95) rotate(0deg) translate(0px); -webkit-transform: scale(0.95) rotate(0deg) translate(0px); -o-transform: scale(0.95) rotate(0deg) translate(0px); transform: scale(0.95) rotate(0deg) translate(0px); }
.dt-sc-ico-content.type15 .custom-icon span:after { -webkit-transition: opacity 0.2s, box-shadow 0.2s; -moz-transition: opacity 0.2s, box-shadow 0.2s;	transition: opacity 0.2s, box-shadow 0.2s; position:absolute; top:0; left:0; width:100%; height:100%; content:""; border-radius:100%; }
.dt-sc-ico-content.type15:hover .custom-icon span:after { opacity: 1; }
.dt-sc-ico-content.type15 .custom-icon span { width:100px; display:inline-block; height:100px; position:relative; }
.dt-sc-ico-content.type15 .custom-icon span.fa { line-height:100px; font-size:30px; }
.dt-sc-ico-content.type16 .custom-icon { width:60px; height:60px; transform:rotate(45deg); -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); -moz-transform:rotate(45deg); -o-transform:rotate(45deg); border:1px dashed; position:absolute; left:5px; top:20px; text-align:center; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type16 .custom-icon span { font-size:27px; line-height:60px; transform:rotate(-45deg); -webkit-transform:rotate(-45deg); -ms-transform:rotate(-45deg); -moz-transform:rotate(-45deg); -o-transform:rotate(-45deg); -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type16:hover .custom-icon span { color:#fff; }
.dt-sc-ico-content.type16:hover .custom-icon { border-style:solid; }
.parallax-content-bg .dt-sc-ico-content.type16 .custom-icon span, .parallax-content-bg .dt-sc-ico-content.type16 h4 a { color:#e9be95; }
.parallax-content-bg .dt-sc-ico-content.type16 .custom-icon { border-color:#e9be95; }
.dt-sc-ico-content.type17 .dt-sc-icon-thumb { float:left; width:100%; position:relative; margin-bottom:25px; }
.dt-sc-ico-content.type17 .dt-sc-icon-thumb > img { float:left; }
.dt-sc-ico-content.type17 .dt-sc-ico-title { width:100%; position: absolute; bottom: 0; background-color: rgba(255,255,255,0.8); padding:50px 0 40px; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type17 .dt-sc-ico-title h4 a { color:#222; }
.dt-sc-ico-content.type17 .dt-sc-ico-title .custom-icon { width:67px; height:67px; position:absolute; top:-38px; border:3px solid; border-radius:50%; left:0; right:0; margin:auto; background-color:#fff; }
.dt-sc-ico-content.type17 .dt-sc-ico-title .custom-icon img { position:absolute; left:0; right:0; top:0; bottom:0; margin:auto; }
.dt-sc-ico-content.type17 .dt-sc-ico-title .custom-icon span { font-size:34px; line-height:70px; }
.dt-sc-ico-content.type17 .dt-sc-ico-title h4 { margin-bottom:0; }
.dt-sc-ico-content.type17:hover .dt-sc-ico-title h4 a { color:#fff; }
.dt-sc-ico-content.type17 p { font-size:14px; }
.dt-sc-ico-content.type18 .custom-icon .small-circle { width:40px; height:40px; border-radius:50%; line-height:40px; position:absolute; left:0; left:0; top:-20px; font-size:15px; z-index:-1; color:#fff; font-weight:bold; background-color:#2c3e50; }
.dt-sc-ico-content.type18.red .custom-icon .small-circle { background-color:#fc5422; }
.dt-sc-ico-content.type18.yellow .custom-icon .small-circle { background-color:#e8bc33; }
.dt-sc-ico-content.type18.green .custom-icon .small-circle { background-color:#47b392; }
.dt-sc-ico-content.type18.blue .custom-icon .small-circle { background-color:#436f8f; }
.dt-sc-ico-content.type18.red, .dt-sc-ico-content.type18.yellow, .dt-sc-ico-content.type18.green, .dt-sc-ico-content.type18.blue { background:inherit; }
.dt-sc-ico-content.type18.brown .custom-icon .small-circle { background-color:#8f5a28; }
.dt-sc-ico-content.type18.chocolate .custom-icon .small-circle { background-color:#cd671d; }
.dt-sc-ico-content.type18.coral .custom-icon .small-circle { background-color:#ff7f50; }
.dt-sc-ico-content.type18.blueturquoise .custom-icon .small-circle { background-color:#08bbb7; }
.dt-sc-ico-content.type18.burntsienna .custom-icon .small-circle { background-color:#d36b5e; }
.dt-sc-ico-content.type18.chillipepper .custom-icon .small-circle { background-color:#b31f41; }
.dt-sc-ico-content.type18.graasgreen .custom-icon .small-circle { background-color:#81c77f; }
.dt-sc-ico-content.type18.orange .custom-icon .small-circle { background-color:#f39d12; }
.dt-sc-ico-content.type18.pink .custom-icon .small-circle { background-color:#e67eb9; }
.dt-sc-ico-content.type18.radiantorchid .custom-icon .small-circle { background-color:#af71b0; }
.dt-sc-ico-content.type18.red .custom-icon { box-shadow:0 0 0 2px #fc5422 inset; }
.dt-sc-ico-content.type18.yellow .custom-icon { box-shadow:0 0 0 2px #e8bc33 inset; }
.dt-sc-ico-content.type18.green .custom-icon { box-shadow:0 0 0 2px #47b392 inset; }
.dt-sc-ico-content.type18.blue .custom-icon { box-shadow:0 0 0 2px #436f8f inset; }
.dt-sc-ico-content.type18.brown .custom-icon { box-shadow:0 0 0 2px #8f5a28 inset; }
.dt-sc-ico-content.type18.chocolate .custom-icon { box-shadow:0 0 0 2px #cd671d inset; }
.dt-sc-ico-content.type18.coral .custom-icon { box-shadow:0 0 0 2px #ff7f50 inset; }
.dt-sc-ico-content.type18.blueturquoise .custom-icon { box-shadow:0 0 0 2px #08bbb7 inset; }
.dt-sc-ico-content.type18.burntsienna .custom-icon { box-shadow:0 0 0 2px #d36b5e inset; }
.dt-sc-ico-content.type18.chillipepper .custom-icon { box-shadow:0 0 0 2px #b31f41 inset; }
.dt-sc-ico-content.type18.graasgreen .custom-icon { box-shadow:0 0 0 2px #81c77f inset; }
.dt-sc-ico-content.type18.orange .custom-icon { box-shadow:0 0 0 2px #f39d12 inset; }
.dt-sc-ico-content.type18.pink .custom-icon { box-shadow:0 0 0 2px #e67eb9 inset; }
.dt-sc-ico-content.type18.radiantorchid .custom-icon { box-shadow:0 0 0 2px #af71b0 inset; }
.dt-sc-ico-content.type18.red:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.yellow:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.green:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.blue:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.brown:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.chocolate:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.coral:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.blueturquoise:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.burntsienna:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.chillipepper:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.graasgreen:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.orange:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.pink:hover .custom-icon .small-circle, .dt-sc-ico-content.type18.radiantorchid:hover .custom-icon .small-circle { color:#fff; }
.dt-sc-ico-content.type18.red:hover .custom-icon span, .dt-sc-ico-content.type18.red:hover h4 a { color:#fc5422; }
.dt-sc-ico-content.type18.yellow:hover .custom-icon span, .dt-sc-ico-content.type18.yellow:hover h4 a { color:#e8bc33; }
.dt-sc-ico-content.type18.green:hover .custom-icon span, .dt-sc-ico-content.type18.green:hover h4 a { color:#47b392; }
.dt-sc-ico-content.type18.blue:hover .custom-icon span, .dt-sc-ico-content.type18.blue:hover h4 a { color:#436f8f; }
.dt-sc-ico-content.type18.brown:hover .custom-icon span, .dt-sc-ico-content.type18.brown:hover h4 a { color:#8f5a28; }
.dt-sc-ico-content.type18.chocolate:hover .custom-icon span, .dt-sc-ico-content.type18.chocolate:hover h4 a { color:#cd671d; }
.dt-sc-ico-content.type18.coral:hover .custom-icon span, .dt-sc-ico-content.type18.coral:hover h4 a { color:#ff7f50; }
.dt-sc-ico-content.type18.blueturquoise:hover .custom-icon span, .dt-sc-ico-content.type18.blueturquoise:hover h4 a { color:#08bbb7; }
.dt-sc-ico-content.type18.burntsienna:hover .custom-icon span, .dt-sc-ico-content.type18.burntsienna:hover h4 a { color:#d36b5e; }
.dt-sc-ico-content.type18.chillipepper:hover .custom-icon span, .dt-sc-ico-content.type18.chillipepper:hover h4 a { color:#b31f41; }
.dt-sc-ico-content.type18.graasgreen:hover .custom-icon span, .dt-sc-ico-content.type18.graasgreen:hover h4 a { color:#81c77f; }
.dt-sc-ico-content.type18.orange:hover .custom-icon span, .dt-sc-ico-content.type18.orange:hover h4 a { color:#f39d12; }
.dt-sc-ico-content.type18.pink:hover .custom-icon span, .dt-sc-ico-content.type18.pink:hover h4 a { color:#e67eb9; }
.dt-sc-ico-content.type18.radiantorchid:hover .custom-icon span, .dt-sc-ico-content.type18.radiantorchid:hover h4 a { color:#af71b0; }
.dt-sc-ico-content.type20 { background-color:#f5f5f5; padding:40px 10px 30px; overflow:hidden; }
.dt-sc-ico-content.type20 .custom-icon { margin-bottom:20px; }
.dt-sc-ico-content.type20.dark { background-color:#ebeced; }
.dt-sc-ico-content.type20 .content-overlay { position:absolute; top:0; left:-100%; height:100%; bottom:0; margin:auto; padding:40px 10px; opacity:0; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; width:100%; }
.dt-sc-ico-content.type20 .content-overlay h4 a, .dt-sc-ico-content.type20 .content-overlay p { color:#fff; }
.dt-sc-ico-content.type20 .content-overlay h4 { margin-bottom:15px; }
.dt-sc-ico-content.type20:hover .content-overlay { opacity:1; left:0; }
.dt-sc-ico-content.type21, .dt-sc-ico-content.type21 .dt-sc-special-content, .dt-sc-ico-content.type21 h5 { -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type21 h5 { float: left; line-height: 30px; padding: 0 0 35px; position: relative; text-transform: capitalize; width: 100%; }
.dt-sc-ico-content.type21 .dt-sc-special-content { float: left; margin-top: 15px; padding: 20px; position: relative; width: 100%; }
.dt-sc-ico-content.type21 .custom-icon .fa { font-size: 40px; margin: 20px 0; color:#fff; }
.dt-sc-ico-content.type21 p { float: left; margin-top: 5px; width: 100%; color:#fff; }
.dt-sc-ico-content.type21 .dt-sc-icon-border .fa { font-size:20px; }
.dt-sc-ico-content.type21 .dt-sc-icon-border { display:block; float:left; width:100%; position:relative; margin-bottom:20px; }
.dt-sc-ico-content.type21 .dt-sc-icon-border .icon-circle { content:""; width:22px; height:22px; position:absolute; left:0; right:0; margin:auto; top:-40px; border:5px solid #222; border-radius:50%; z-index: 1; }
.dt-sc-ico-content.type21 .dt-sc-icon-border .icon-line { content: ""; display: block; position: absolute; bottom: -3px; right: 0; left: 0; margin: 0px auto; width: 8px; height: 25px; line-height: 13px; border-radius: 0 0 10px 10px; z-index: 0; }
.dt-sc-ico-content.type21 .dt-sc-special-content > span { font-size: 41px; left: 0; position: absolute; right: 0; top: -28px; z-index: 1; }
.dt-sc-ico-content.type21:hover .dt-sc-special-content, .dt-sc-ico-content.type21:hover h5 { opacity:1 !important; }
.dt-sc-icon-box-wrapper { float:left; width:100%; position:relative; }
.dt-sc-iconbox-border { background-repeat: repeat-y; border-radius: 10px; -webkit-border-radius: 10px; content: ""; display: block; height: 8px; position: absolute; top: 53px; width: 100%; }
.dt-sc-ico-content.type22 { float:left; width:100%; text-align:left; padding:20px 30px; background-color:#f0f0f0; z-index:9; }
.dt-sc-ico-content.type22:hover { background-color: rgba(0, 0, 0, 0.9); }
.dt-sc-ico-content.type22 > span { font-size:50px; margin-bottom:5px; line-height:normal; color:#51749b; font-weight:bold; }
.dt-sc-ico-content.type22 .custom-icon { position:absolute; right:10px; bottom:10px; color:#51749b; }
.dt-sc-ico-content.type22 h4 a, .dt-sc-ico-content.type22 p { color:#51749b; }
.dt-sc-ico-content.type22 > span, .dt-sc-ico-content.type22 p, .dt-sc-ico-content.type22 .custom-icon span, .dt-sc-ico-content.type22 { -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type22 .custom-icon span { font-size:30px; }
.dt-sc-ico-content.type22:hover .custom-icon span { font-size:200px; opacity:0.3; position:relative; z-index:-1; }
.dt-sc-ico-content.type22:hover h4 a, .dt-sc-ico-content.type22:hover p, .dt-sc-ico-content.type22:hover > span, .dt-sc-ico-content.type22:hover .custom-icon { color:#fff; }
.dt-sc-ico-content.type23 .custom-icon { margin: 0 auto 10px; text-align: center; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type23 .custom-icon span { line-height:70px; font-size:30px; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; background-color:#f0f0f0; width:70px; height:70px; border-radius: 50%; display:inline-block; }
.dt-sc-ico-content.type23 h4 { font-size:12px; }
.dt-sc-ico-content.type23.with-border .custom-icon span { line-height:50px; font-size:20px; width:50px; height:50px; }
.dt-sc-ico-content.type23.with-border { padding:20px 0 0; border:1px solid rgba(0, 0, 0, 0); -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-ico-content.type23.with-border:hover { border-color:#eaeaea; }
.dt-blue.dt-sc-ico-content .custom-icon span, .dt-blue h4 a { color:#3d7eba; }
.dt-chocolate.dt-sc-ico-content .custom-icon span, .dt-chocolate h4 a { color:#be5d16; }
.dt-coral.dt-sc-ico-content .custom-icon span, .dt-coral h4 a { color:#ec6b3b; }
.dt-blueturquoise.dt-sc-ico-content .custom-icon span, .dt-blueturquoise h4 a { color:#07aca8; }
.dt-brown.dt-sc-ico-content .custom-icon span, .dt-brown h4 a { color:#805022; }
.dt-burntsienna.dt-sc-ico-content .custom-icon span, .dt-burntsienna h4 a { color:#c46054; }
.dt-chillipepper.dt-sc-ico-content .custom-icon span, .dt-chillipepper h4 a { color:#a11837; }
.dt-graasgreen.dt-sc-ico-content .custom-icon span, .dt-graasgreen h4 a { color:#6fb96d; }
.dt-green.dt-sc-ico-content .custom-icon span, .dt-green h4 a { color:#6eaf2e; }
.dt-orange.dt-sc-ico-content .custom-icon span, .dt-orange h4 a { color:#e09111; }
.dt-pink.dt-sc-ico-content .custom-icon span, .dt-pink h4 a { color:#d76da9; }
.dt-radiantorchid.dt-sc-ico-content .custom-icon span, .dt-radiantorchid h4 a { color:#a55ea6; }
.dt-red.dt-sc-ico-content .custom-icon span, .dt-red h4 a { color:#d73e2e; }
.dt-yellow.dt-sc-ico-content .custom-icon span, .dt-yellow h4 a { color:#e2b704; }
.dt-skyblue.dt-sc-ico-content .custom-icon span, .dt-skyblue h4 a { color:#21c2f8; }
.read-more { font-size:13px; font-weight:normal; margin-bottom:7px; display:inline-block; position:relative; }
.read-more span { margin-left:7px; position:absolute; top:27%; opacity:0; left:70%; }
.dt-sc-ico-content:hover .read-more span, .blog-post:hover .read-more span { left:100%; opacity:1; } 
.dt-sc-ico-content:hover .read-more, .blog-post:hover .read-more { margin-right:15px; } .dt-sc-animate-num { text-align: center; float:left; width:100%; }
.dt-sc-animate-num .dt-sc-icon { height: 66px; margin-bottom: 15px; margin-left: auto; margin-right: auto; position: relative; text-align: center; width: 66px; }
.dt-sc-animate-num .dt-sc-icon span { font-size:35px; line-height:66px; }
.dt-sc-animate-num .dt-sc-num-count:after { border-bottom: 1px solid #2c3e50; bottom: 0; content: ""; left: 0; margin: 0 auto; position: absolute; right: 0; width: 50px; }
.dt-sc-animate-num .dt-sc-num-count { color: #2c3e50; display: inline-block; font-size: 24px; margin-bottom: 10px; padding-bottom: 15px; position: relative; font-weight:700; }
.dt-sc-animate-num span { color: #2c3e50; display: block; font-size: 13px; line-height: 20px; margin-bottom: 0; text-transform: capitalize; } .dark-parallax-content h5, .dark-parallax-content h2, .dark-parallax-content h3, .dark-parallax-content h4, .dark-parallax-content h6, .dark-parallax-content .double-border-title, .dark-parallax-content p, .dark-parallax-content a, .dark-parallax-content a span, .dark-parallax-content i, .dark-parallax-content .dt-sc-content-carousel p, .dark-parallax-content ul.dt-sc-fancy-list li:before, .dark-parallax-content ul.dt-sc-fancy-list li, .dark-parallax-content .dt-sc-donutchart-medium p, .dark-parallax-content .dt-sc-donutchart-small p, .dark-parallax-content .dt-sc-donutchart span, .intro-text.dark-parallax-content h2, .dark-parallax-content .dt-sc-ico-content.type23 h4 a, .dark-parallax-content .dt-sc-animate-num .dt-sc-num-count, .dark-parallax-content .dt-sc-animate-num span, .full-width-section .skin-color-overlay span, .dt-sc-bmi-frm input[name="txtbmi"]:hover, .dark-parallax-content .dt-sc-testimonial.type6 .author span, .dark-parallax-content .dt-sc-testimonial.type6 .author-details h5, .dark-parallax-content .dt-sc-testimonial.type6 .author-details, .full-width-section .color-overlay .dt-sc-testimonial span, .full-width-section.dark-parallax-content .dt-sc-ico-content.type2 .custom-icon span, .full-width-section.dark-parallax-content .dt-sc-ico-content.type4 .custom-icon span, .full-width-section .color-overlay .dt-sc-testimonial.type4 .author > span, .full-width-section.dark-parallax-content .dt-sc-testimonial.type4 .testimonial-content.with-chat-effect, .full-width-section.dark-parallax-content .dt-sc-testimonial.type4 h5, .dark-parallax-content input[type="text"], .dark-parallax-content input[type="password"], .dark-parallax-content input[type="email"], .dark-parallax-content input[type="url"], .dark-parallax-content input[type="tel"], .dark-parallax-content input[type="number"], .dark-parallax-content input[type="range"], .dark-parallax-content input[type="search"], .dark-parallax-content textarea, .dark-parallax-content input.text, .dark-parallax-content input[type="text"]:hover, .dark-parallax-content input[type="password"]:hover, .dark-parallax-content input[type="email"]:hover, .dark-parallax-content textarea:hover, .dark-parallax-content input[type="search"]:hover, .dark-parallax-content .dt-sc-ico-content.type7 .custom-icon span, .dark-parallax-content .dt-sc-ico-content.type1 .custom-icon span, .dark-parallax-content .dt-sc-ico-content.type20 .custom-icon span, .diagonal-gradient.dark-parallax-content .dt-sc-testimonial > span, .dt-sc-white .dt-sc-ico-content.type20 h4 a { color:#fff; }
.custom-white-bg input[type="text"], .custom-white-bg input[type="email"], .custom-white-bg input[type="text"]:hover, .custom-white-bg input[type="email"]:hover { color:#222; }
.dark-parallax-content .dt-sc-testimonial.type6 .author-details a:hover, .dark-parallax-content a:hover, .dark-parallax-content .dt-sc-button-icon:hover .fa { color:#d5d5d5; }
.dark-parallax-content .dt-sc-testimonial.type6 .testimonial-content p { color:#000; }
.full-width-section .skin-color-overlay .dt-sc-testimonial span:before, .full-width-section .skin-color-overlay .dt-sc-testimonial span:after, .full-width-section .color-overlay .dt-sc-testimonial span:before, .full-width-section .color-overlay .dt-sc-testimonial span:after, .diagonal-gradient.dark-parallax-content .dt-sc-testimonial > span:before, .diagonal-gradient.dark-parallax-content .dt-sc-testimonial > span:after { background-color:#fff; }
.dark-parallax-content .double-border-title, .dark-parallax-content .dt-sc-content-carousel, .dark-parallax-content .dt-sc-animate-num .dt-sc-num-count:after { border-color:#fff; }
.full-width-section .skin-color-overlay .dt-sc-testimonial .author img, .full-width-section .color-overlay .dt-sc-testimonial .author img { box-shadow: 0 0 0 4px #fff; }
.dark-parallax-content.parallax-content-bg3 .slider-controls .pager a.selected, .dark-parallax-content.parallax-content-bg3 .slider-controls .pager a:hover, .dark-parallax-content .skin-color-overlay .slider-controls .pager a.selected, .dark-parallax-content .skin-color-overlay .slider-controls .pager a:hover, .dark-parallax-content .color-overlay .slider-controls .pager a.selected, .dark-parallax-content .color-overlay .slider-controls .pager a:hover { background-color:#d5d5d5; }
.full-width-section .skin-color-overlay .dt-sc-testimonial.type4 span:before, .full-width-section .skin-color-overlay .dt-sc-testimonial.type4 span:after, .full-width-section .color-overlay .dt-sc-testimonial.type4 span:before, .full-width-section .color-overlay .dt-sc-testimonial.type4 span:after { background-color:inherit; }
.dark-parallax-content .partner-carousel.list-type1 li:before, .dark-parallax-content .partner-carousel.list-type1 li:after { border-color:rgba(255, 255, 255, 0.2); }
.skin-text-color h5 { color:#eec106; text-transform:none; }
.dark-parallax-content.skin-text-color .slider-controls .pager a { background-color:#eec106; }
.dt-sc-testimonial h5 { margin-bottom:15px; line-height:30px; }
.dt-sc-testimonial > span { font-style:italic; font-size:18px; font-weight:400; position:relative; }
.dt-sc-testimonial > span:before, .dt-sc-testimonial > span:after { content:""; width:35%; height:1px; position:absolute; top:55%; background-color:#777777; }
.dt-sc-testimonial > span:before{ left:-57%; }
.dt-sc-testimonial > span:after{ right:-57%; }
.dt-sc-testimonial .author img { border-radius:50%; width:72px; -webkit-border-radius: 50%; -moz-border-radius: 50%; }
.dt-sc-testimonial h5 { margin-bottom:25px; }
.dt-sc-testimonial-wrapper .dt-sc-testimonial-carousel li { text-align:center; display:block; float:left; padding:0; margin:0; width:100%; }
.dt-sc-testimonial.type1, .dt-sc-testimonial.type2, .dt-sc-testimonial.type3 { text-align:center; }
.dt-sc-testimonial-wrapper { float:left; width:100%; clear:both; position:relative; } 
.dt-sc-testimonial { float:left; display:block; margin:0; padding:0 0 5px; width:100%; position:relative; overflow:hidden; }
.dt-sc-testimonial-wrapper.type1 > h3 { text-align:center; margin-bottom:0; }
.dt-sc-testimonial-wrapper.type4 .dt-sc-testimonial-carousel .column.dt-sc-one-half { margin:0 10px; }
.dt-sc-testimonial.type3 h5 { font-size:16px; font-style:italic; font-weight:300; color:#222; margin-bottom:30px; font-family:'lato', sans-serif; line-height:24px; }
.dt-sc-testimonial.type3 h6 { font-size:15px; margin-bottom:0px; }
.dt-sc-testimonial.type3 cite { color:#222; font-size:12px; font-style:italic; font-family:'lato', sans-serif; }
.dt-sc-testimonial-wrapper .carousel-arrows a.testimonial-prev { left:0; }
.dt-sc-testimonial-wrapper .carousel-arrows a.testimonial-next { right:0; position:absolute; top:0; }
.dt-sc-testimonial-wrapper .carousel-arrows a.testimonial-prev, .dt-sc-testimonial-wrapper .carousel-arrows a.testimonial-next { background-color:inherit; }
.dt-sc-testimonial-wrapper .carousel-arrows a.testimonial-prev .fa, .dt-sc-testimonial-wrapper .carousel-arrows a.testimonial-next .fa { font-size:40px; }
.dt-sc-testimonial-wrapper .carousel-arrows { position:absolute; bottom:50px; left: 0; margin: auto; right: 0; width: 255px; }
.dt-sc-testimonial-wrapper .carousel-arrows a { width:23px; height:35px; font-size:0; }
.dt-sc-testimonial.type3 .author img { border:none; width:80px; }
.dt-sc-testimonial.type3 .author { margin-bottom:10px; }
.dt-sc-testimonial.type4 h5 { font-size:16px; color:#191919; margin-bottom:0px; line-height:normal; }
.dt-sc-testimonial.type4 .quote { font-style:normal; font-size:22px; position:inherit; color:#191919; display:block; }
.dt-sc-testimonial.type4 .author > span { color: #191919; font-size: 16px; }
.dt-sc-testimonial.type4 cite { font-size:12px; font-style:normal; display:block; margin-bottom:5px; }
.dt-sc-testimonial.type4 .author { text-align:center; }
.dt-sc-testimonial.type4 .author img { box-shadow:none; width:80px; margin:10px 0; }
.dt-sc-testimonial.type4 .border-circle:before { background-image:url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/bordered-circle.png); background-repeat:no-repeat; background-size: 100px 100px; content: ""; height: 100px; left: 0; margin: auto; position: absolute; right: 0; top: 0px; width: 100px;   z-index: 1; background-color:inherit; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-testimonial.type4:hover .border-circle:before { animation: 0.1s linear 0s normal none infinite running rotating; -webkit-animation: 0.1s linear 0s normal none infinite running rotating; -moz-animation: 0.1s linear 0s normal none infinite running rotating; -ms-animation: 0.1s linear 0s normal none infinite running rotating; -o-animation: 0.1s linear 0s normal none infinite running rotating; }
.dt-sc-testimonial.type4 span.border-circle { position:relative; float:left; width:100%; margin-bottom:10px; }
.dt-sc-testimonial-wrapper > h3 { color: white; }
.dt-sc-testimonial.type4 .testimonial-content.with-chat-effect { float:left; width:100%; position:relative; padding:25px 10px 20px 50px; border:1px solid #d9d9d9; border-radius:5px; font-style:italic; font-size:14px; font-family:Georgia, "Times New Roman", Times, serif; }
.dt-sc-testimonial.type4 .testimonial-content.with-chat-effect .fa { font-size:25px; position:absolute; left:14px; top:30px; color:#d9d9d9; }
.dt-sc-testimonial.type4 .testimonial-content.with-chat-effect:after { width:16px; height:16px; background-color:#fff; border-left:1px solid #d9d9d9; border-bottom:1px solid #d9d9d9; content:""; position:absolute; left:-9px; top:33px; transform:rotate(45deg); -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); -o-transform:rotate(45deg); -moz-transform:rotate(45deg); }
.dt-sc-testimonial.type4 .testimonial-content.with-chat-effect p { line-height:26px; }
.dt-sc-testimonial.type4 .testimonial-content p { font-style:italic; }
.dt-sc-testimonial.type6 { float:left; width:100%; position:relative; }
.dt-sc-testimonial.type6 .testimonial-content { float:left; width:100%; padding:25px 25px 15px; background-color:#f5f5f5; position:relative; font-style:italic; }
.dt-sc-testimonial.type6 .author { float:left; width:100%; padding:20px 0 0 10px; }
.dt-sc-testimonial.type6 .testimonial-content:after { content:""; border-top:10px solid #f5f5f5; border-left:10px solid transparent; border-right:10px solid transparent; position:absolute; left:30px; bottom:-10px; }
.dt-sc-testimonial.type6 .author span { font-size:25px; padding-right:20px; display:table-cell; vertical-align:middle; color:#222; }
.dt-sc-testimonial.type6 .author-details { display: table-cell; vertical-align: middle; height:35px; }
.dt-sc-testimonial.type6 .author-details h5 { margin-bottom:5px; line-height:normal; display:inline-block; font-size:13px; }
.dt-sc-testimonial.type6 .author span:before { background-color:inherit; }
.dt-sc-testimonial.type6 .author img { float:left; width:35px; margin-right:10px; box-shadow: inherit; } .dt-sc-button { color:#ffffff; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; margin-top:10px; z-index:3; position:relative; } 
.dt-sc-button:hover span { color:#ffffff; cursor: pointer; }
.dt-sc-button:hover, .dt-sc-pr-tb-col.selected .dt-sc-buy-now .dt-sc-button:hover { color:#ffffff; }
.dt-sc-pr-tb-col.type3.selected .dt-sc-buy-now .dt-sc-button:hover { color:inherit; }
.dt-sc-button span { text-align:center; border-radius:0px 2px 2px 0px; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; position:absolute; right:0; top:0; }
.dt-sc-button.large { font-size:18px; font-weight:400; padding:0px 95px 0px 40px; border-radius:2px; line-height:60px; display:inline-block; }
.dt-sc-button.large span { width:60px; font-size:22px; height:60px; text-align:center; line-height:60px; }
.dt-sc-button.medium { font-size:14px; font-weight:400; padding:0px 71px 0px 17px; border-radius:2px; line-height:50px; display:inline-block; }
.dt-sc-button.medium span { width:50px; font-size:14px; height:50px; text-align:center; line-height:50px; }
.dt-sc-button.small { font-size:13px; font-weight:400; padding:0px 47px 0px 11px; line-height:40px; border-radius:2px; display:inline-block; }
.dt-sc-button.small span { width:40px; font-size:14px; height:40px; text-align:center; line-height:40px; }
.dt-sc-button:before { bottom: 0; content: ""; display: inline-block; height: 100%; left: 0; position: absolute; width: 0; z-index: -1; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; border-radius: inherit; width:100%; opacity:0; }
.dt-sc-button:hover:before { opacity:1; }
.dt-sc-button1.ico-button { background: #00a5df; color: #fff; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: normal; line-height: 24px; padding: 20px 34px; position: relative; text-decoration: none; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border: solid 2px #00a5df; }
.dt-sc-button2 { color: #101017; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: normal; line-height: 24px; padding: 20px 34px; position: relative; text-decoration: none; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border: solid 2px #101017;}
.dt-sc-button3 { color: #fff; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: normal; line-height: 24px; padding: 20px 34px; position: relative; text-decoration: none; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border: solid 2px #fff; } 
.ls-slide .ls-l a.dt-sc-button3:hover { color:#fff; }
.dt-sc-button4 { color: #22160a; display: inline-block; font-family: 'Roboto Slab', sans-serif; font-size: 18px; font-weight: 300; line-height: 24px; padding: 10px 34px; position: relative; text-decoration: none; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border: solid 1px #000; }
.dt-sc-button5 { color: #bca250; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: normal; line-height: 24px; padding: 20px 34px; position: relative; text-decoration: none; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border: solid 2px #bca250;}
.att-btn1 { color: #fff; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: normal; line-height: 50px;  padding: 0px 20px; position: relative; text-decoration: none; border: solid 1px #fff;}
.att-btn2 { color: #fff; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: normal; line-height: 50px;  padding: 0px 20px; position: relative; text-decoration: none; }
.att-btn1:hover, .att-btn2:hover, .host-btn:hover { color:#fff; }
.host-btn { color: #fff; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: normal; line-height: 50px;  padding: 0px 20px; position: relative; text-decoration: none; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border: solid 1px #fff;}
.hosting-btn-trans { color: #1c233e; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: normal; line-height: 50px;  padding: 0px 20px; position: relative; text-decoration: none; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; }
.travel-btn { color: #fd4f62; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 700; line-height: 50px;  padding: 0px 22px; position: relative; text-decoration: none; border-radius: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border: solid 1px #fd4f62; }
.travel-btn-green { color: #718547; display: inline-block; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 700; line-height: 50px;  padding: 0px 22px; position: relative; text-decoration: none; border-radius: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border: solid 1px #718547; }
.dt-sc-button.type2.small { padding:0 10px; }
.dt-sc-button.type2.medium { padding:0 17px; }
.dt-sc-button.type2.large { padding:0 35px; }
.dt-sc-button.type2:hover { color:#fff; }
.dt-sc-button.type2:before { width:100%; opacity:0; }
.dt-sc-button.type2:hover:before { opacity:1; }
.dt-sc-button.type3:before, .dt-sc-button.type4:before, .dt-sc-button.type6:before, .dt-sc-button.type5:before, .dt-sc-button.type9:before, .dt-sc-button.type10:before { display:none; }
.dt-sc-button.type3, .dt-sc-button.type6, .dt-sc-button.type4, .dt-sc-button.type5, .dt-sc-button.type10 { background-color:#fff; font-size:14px; border:1px solid #686868; color:#686868; border-radius:0; text-transform:uppercase; line-height:30px; display:inline-block; padding:0 11px; }
.dt-sc-button.type3:hover { border-radius:15px; }
.dt-sc-button.type10 { border-radius:30px; text-transform:capitalize; }
.dt-sc-button.type6:hover { color:#fff; }
.dt-sc-button.type3.small, .dt-sc-button.type6.small, .dt-sc-button.type4.small, .dt-sc-button.type5.small, .dt-sc-button.type10.small { padding:0 11px; }
.dt-sc-button.type3.medium, .dt-sc-button.type6.medium, .dt-sc-button.type4.medium, .dt-sc-button.type5.medium, .dt-sc-button.type10.medium { padding:2px 22px; }
.dt-sc-button.type3.large, .dt-sc-button.type6.large, .dt-sc-button.type4.large, .dt-sc-button.type5.large, .dt-sc-button.type10.large { padding:4px 35px; }
.dt-sc-button-icon { text-align:center; }
.dt-sc-button-icon span { display: inline-block; font-size: 90px; margin-bottom: 10px; }
.dt-sc-button-icon:hover .fa { color:#2c3e50; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-button-icon.blue span { color:#3d7eba; }
.dt-sc-button-icon.chocolate span { color:#be5d16; }
.dt-sc-button-icon.coral span { color:#ec6b3b; }
.dt-sc-button-icon.blueturquoise span { color:#07aca8; }
.dt-sc-button-icon.brown span { color:#805022; }
.dt-sc-button-icon.burntsienna span { color:#c46054; }
.dt-sc-button-icon.chillipepper span { color:#a11837; }
.dt-sc-button-icon.graasgreen span { color:#6fb96d; }
.dt-sc-button-icon.green span { color:#6eaf2e; }
.dt-sc-button-icon.orange span { color:#e09111; }
.dt-sc-button-icon.pink span { color:#d76da9; }
.dt-sc-button-icon.radiantorchid span { color:#a55ea6; }
.dt-sc-button-icon.red span { color:#d73e2e; }
.dt-sc-button-icon.yellow span { color:#e2b704; }
.dt-sc-button-icon.skyblue span { color:#21c2f8; }
.dt-sc-button-outlined.red span { background-color: #fc5422; }
.dt-sc-button-outlined.yellow span { background-color: #e8bc33; }
.dt-sc-button-outlined.green span { background-color: #47b392; }
.dt-sc-button-outlined.blue span { background-color: #436f8f; }
.dt-sc-button-outlined.chocolate span { background-color: #be5d16; }
.dt-sc-button-outlined.blueturquoise span { background-color: #07aca8; }
.dt-sc-button-outlined.brown span { background-color: #805022; }
.dt-sc-button-outlined.burntsienna span { background-color: #c46054; }
.dt-sc-button-outlined.chillipepper span { background-color: #a11837; }
.dt-sc-button-outlined.graasgreen span { background-color: #6fb96d; }
.dt-sc-button-outlined.orange span { background-color: #e09111; }
.dt-sc-button-outlined.pink span { background-color: #d76da9; }
.dt-sc-button-outlined.radiantorchid span { background-color: #a55ea6; }
.dt-sc-button-outlined.skyblue span { background-color: #21c2f8; }
.dt-sc-button-outlined.coral span { background-color: #ec6b3b; }
.dt-sc-button-outlined.red { color: #fc5422; }
.dt-sc-button-outlined.yellow { color: #e8bc33; }
.dt-sc-button-outlined.green { color: #47b392; }
.dt-sc-button-outlined.blue { color: #436f8f; }
.dt-sc-button-outlined.chocolate { color: #be5d16; }
.dt-sc-button-outlined.blueturquoise { color: #07aca8; }
.dt-sc-button-outlined.brown { color: #805022; }
.dt-sc-button-outlined.burntsienna { color: #c46054; }
.dt-sc-button-outlined.chillipepper { color: #a11837; }
.dt-sc-button-outlined.graasgreen { color: #6fb96d; } 
.dt-sc-button-outlined.orange { color: #e09111; }
.dt-sc-button-outlined.pink { color: #d76da9; }
.dt-sc-button-outlined.radiantorchid { color: #a55ea6; }
.dt-sc-button-outlined.skyblue { color: #21c2f8; }
.dt-sc-button-outlined.coral { color: #ec6b3b; }
.dt-sc-button-outlined.red:hover { border-color:#fc5422; }
.dt-sc-button-outlined.yellow:hover { border-color:#e8bc33; }
.dt-sc-button-outlined.green:hover { border-color:#47b392; }
.dt-sc-button-outlined.blue:hover { border-color:#436f8f; }
.dt-sc-button-outlined.chocolate:hover { border-color: #be5d16; }
.dt-sc-button-outlined.blueturquoise:hover { border-color: #07aca8; }
.dt-sc-button-outlined.brown:hover { border-color: #805022; }
.dt-sc-button-outlined.burntsienna:hover { border-color: #c46054; }
.dt-sc-button-outlined.chillipepper:hover { border-color: #a11837; }
.dt-sc-button-outlined.graasgreen:hover { border-color: #6fb96d; } 
.dt-sc-button-outlined.orange:hover { border-color: #e09111; }
.dt-sc-button-outlined.pink:hover { border-color: #d76da9; }
.dt-sc-button-outlined.radiantorchid:hover { border-color: #a55ea6; }
.dt-sc-button-outlined.skyblue:hover { border-color: #21c2f8; }
.dt-sc-button-outlined.coral:hover { border-color: #ec6b3b; }
.dt-sc-button-outlined { border: 2px solid #eaeaea; border-radius: 5px; display: inline-block; font-size: 16px; font-weight: 500; margin: 15px 0 0; padding: 11px 16px 11px 50px; position: relative; color:#44607b; text-align:left; min-width: 266px; }
.dt-sc-button-outlined span { border-radius: 100%; color: #fff; display: inline-block; font-size: 14px; font-weight: bold; height: 26px; left: 10px; line-height: 24px; position: absolute; text-align: center; top: 10px; width: 26px; background-color:#44607b; }
.dt-sc-button-outlined:hover { border-color: #44607b; }
.dt-sc-button-outlined.dt-sc-tooltip-top, .dt-sc-button-outlined.dt-sc-tooltip-left, .dt-sc-button-outlined.dt-sc-tooltip-right, .dt-sc-button-outlined.dt-sc-tooltip-bottom { text-align:left; }
.dt-sc-button.blue, .dt-sc-button.type10.blue:hover, .dt-sc-button.blue:hover span { background-color:#478bca; }
.dt-sc-button.blue span, .dt-sc-button.blue:hover:before { background-color:#3d7eba; }
.dt-sc-button.chocolate, .dt-sc-button.type10.chocolate:hover, .dt-sc-button.chocolate:hover span { background-color:#cd671d; }
.dt-sc-button.chocolate span, .dt-sc-button.chocolate:hover:before { background-color:#be5d16; }
.dt-sc-button.coral, .dt-sc-button.type10.coral:hover, .dt-sc-button.coral:hover span { background-color:#ff7f50; }
.dt-sc-button.coral span, .dt-sc-button.coral:hover:before { background-color:#ec6b3b; }
.dt-sc-button.blueturquoise, .dt-sc-button.type10.blueturquoise:hover, .dt-sc-button.blueturquoise:hover span { background-color:#08bbb7; }
.dt-sc-button.blueturquoise span, .dt-sc-button.blueturquoise:hover:before { background-color:#07aca8; }
.dt-sc-button.brown, .dt-sc-button.type10.brown:hover, .dt-sc-button.brown:hover span { background-color:#8f5a28; }
.dt-sc-button.brown span, .dt-sc-button.brown:hover:before { background-color:#805022; }
.dt-sc-button.burntsienna, .dt-sc-button.type10.burntsienna:hover, .dt-sc-button.burntsienna:hover span { background-color:#d36b5e; }
.dt-sc-button.burntsienna span, .dt-sc-button.burntsienna:hover:before { background-color:#c46054; }
.dt-sc-button.chillipepper, .dt-sc-button.type10.chillipepper:hover, .dt-sc-button.chillipepper:hover span { background-color:#b31f41; }
.dt-sc-button.chillipepper span, .dt-sc-button.chillipepper:hover:before { background-color:#a11837; }
.dt-sc-button.graasgreen, .dt-sc-button.type10.graasgreen:hover, .dt-sc-button.graasgreen:hover span { background-color:#81c77f; }
.dt-sc-button.graasgreen span, .dt-sc-button.graasgreen:hover:before { background-color:#6fb96d; }
.dt-sc-button.green, .dt-sc-button.type10.green:hover, .dt-sc-button.green:hover span { background-color:#77be32; }
.dt-sc-button.green span, .dt-sc-button.green:hover:before { background-color:#6eaf2e; }
.dt-sc-button.orange, .dt-sc-button.type10.orange:hover, .dt-sc-button.orange:hover span { background-color:#f39d12; }
.dt-sc-button.orange span, .dt-sc-button.orange:hover:before { background-color:#e09111; }
.dt-sc-button.pink, .dt-sc-button.type10.pink:hover, .dt-sc-button.pink:hover span { background-color:#e67eb9; }
.dt-sc-button.pink span, .dt-sc-button.pink:hover:before { background-color:#d76da9; }
.dt-sc-button.radiantorchid, .dt-sc-button.type10.radiantorchid:hover, .dt-sc-button.radiantorchid:hover span { background-color:#af71b0; }
.dt-sc-button.radiantorchid span, .dt-sc-button.radiantorchid:hover:before { background-color:#a55ea6; }
.dt-sc-button.red, .dt-sc-button.type10.red:hover, .dt-sc-button.red:hover span { background-color:#e64d3d; }
.dt-sc-button.red span, .dt-sc-button.red:hover:before { background-color:#d73e2e; }
.dt-sc-button.yellow, .dt-sc-button.type10.yellow:hover, .dt-sc-button.yellow:hover span { background-color:#eec106; }
.dt-sc-button.yellow span, .dt-sc-button.yellow:hover:before { background-color:#e2b704; }
.dt-sc-button.skyblue, .dt-sc-button.type10.skyblue:hover, .dt-sc-button.skyblue:hover span { background-color:#21c2f8; }
.dt-sc-button.skyblue span, .dt-sc-button.skyblue:hover:before { background-color:#13ade0; }
.dt-sc-button.type3, .dt-sc-button.type4 { background-color:#fff; }
.dt-sc-button.type10  { background-color:inherit; }
.dt-sc-button.type3.blue:hover, .dt-sc-button.type4.blue, .dt-sc-button.type9.blue:hover, .dt-sc-button.type9.blue:hover span, .dt-sc-button.type10.blue { border-color:#478bca; color:#478bca; }
.dt-sc-button.type3.chocolate:hover, .dt-sc-button.type4.chocolate, .dt-sc-button.type9.chocolate:hover, .dt-sc-button.type9.chocolate:hover span, .dt-sc-button.type10.chocolate { border-color:#cd671d; color:#cd671d; }
.dt-sc-button.type3.coral:hover, .dt-sc-button.type4.coral, .dt-sc-button.type9.coral:hover, .dt-sc-button.type9.coral:hover span, .dt-sc-button.type10.coral { border-color:#ff7f50; color:#ff7f50; }
.dt-sc-button.type3.blueturquoise:hover, .dt-sc-button.type4.blueturquoise, .dt-sc-button.type9.blueturquoise:hover, .dt-sc-button.type9.blueturquoise:hover span, .dt-sc-button.type10.blueturquoise { border-color:#08bbb7; color:#08bbb7; }
.dt-sc-button.type3.brown:hover, .dt-sc-button.type4.brown, .dt-sc-button.type9.brown:hover, .dt-sc-button.type9.brown:hover span, .dt-sc-button.type10.brown { border-color:#8f5a28; color:#8f5a28; }
.dt-sc-button.type3.burntsienna:hover, .dt-sc-button.type4.burntsienna, .dt-sc-button.type9.burntsienna:hover, .dt-sc-button.type9.burntsienna:hover span, .dt-sc-button.type10.burntsienna { border-color:#d36b5e; color:#d36b5e; }
.dt-sc-button.type3.chillipepper:hover, .dt-sc-button.type4.chillipepper, .dt-sc-button.type9.chillipepper:hover, .dt-sc-button.type9.chillipepper:hover span, .dt-sc-button.type10.chillipepper { border-color:#b31f41; color:#b31f41; }
.dt-sc-button.type3.graasgreen:hover, .dt-sc-button.type4.graasgreen, .dt-sc-button.type9.graasgreen:hover, .dt-sc-button.type9.graasgreen:hover span, .dt-sc-button.type10.graasgreen { border-color:#81c77f; color:#81c77f; }
.dt-sc-button.type3.green:hover, .dt-sc-button.type4.green, .dt-sc-button.type9.green:hover, .dt-sc-button.type9.green:hover span, .dt-sc-button.type10.green { border-color:#77be32; color:#77be32; }
.dt-sc-button.type3.orange:hover, .dt-sc-button.type4.orange, .dt-sc-button.type9.orange:hover, .dt-sc-button.type9.orange:hover span, .dt-sc-button.type10.orange { border-color:#f39d12; color:#f39d12; }
.dt-sc-button.type3.pink:hover, .dt-sc-button.type4.pink, .dt-sc-button.type9.pink:hover, .dt-sc-button.type9.pink:hover span, .dt-sc-button.type10.pink { border-color:#e67eb9; color:#e67eb9; }
.dt-sc-button.type3.radiantorchid:hover, .dt-sc-button.type4.radiantorchid, .dt-sc-button.type9.radiantorchid:hover, .dt-sc-button.type9.radiantorchid:hover span, .dt-sc-button.type10.radiantorchid { border-color:#af71b0; color:#af71b0; }
.dt-sc-button.type3.yellow:hover, .dt-sc-button.type4.yellow, .dt-sc-button.type9.yellow:hover, .dt-sc-button.type9.yellow:hover span, .dt-sc-button.type10.yellow { border-color:#eec106; color:#eec106; }
.dt-sc-button.type3.red:hover, .dt-sc-button.type4.red, .dt-sc-button.type9.red:hover, .dt-sc-button.type9.red:hover span, .dt-sc-button.type10.red { border-color:#e64d3d; color:#e64d3d; }
.dt-sc-button.type3.skyblue:hover, .dt-sc-button.type4.skyblue, .dt-sc-button.type9.skyblue:hover, .dt-sc-button.type9.skyblue:hover span, .dt-sc-button.type10.skyblue { border-color:#21c2f8; color:#21c2f8; }
.dt-sc-button.type5.blue:hover { color:#478bca; }
.dt-sc-button.type5.chocolate:hover { color:#cd671d; }
.dt-sc-button.type5.coral:hover { color:#ff7f50; }
.dt-sc-button.type5.blueturquoise:hover { color:#08bbb7; }
.dt-sc-button.type5.brown:hover { color:#8f5a28; }
.dt-sc-button.type5.burntsienna:hover { color:#d36b5e; }
.dt-sc-button.type5.chillipepper:hover { color:#b31f41; }
.dt-sc-button.type5.graasgreen:hover { color:#81c77f; }
.dt-sc-button.type5.green:hover { color:#77be32; }
.dt-sc-button.type5.orange:hover { color:#f39d12; }
.dt-sc-button.type5.pink:hover { color:#e67eb9; }
.dt-sc-button.type5.radiantorchid:hover { color:#af71b0; }
.dt-sc-button.type5.yellow:hover { color:#eec106; }
.dt-sc-button.type5.red:hover { color:#e64d3d; }
.dt-sc-button.type5.skyblue:hover { color:#21c2f8; }
.dt-sc-button.type5.filled-white:hover { color:#fff; }
.dt-sc-button.type5.blue, .dt-sc-button.type6.blue:hover { border-color:#478bca; background-color:#478bca; }
.dt-sc-button.type5.chocolate, .dt-sc-button.type6.chocolate:hover { border-color:#cd671d; background-color:#cd671d; }
.dt-sc-button.type5.coral, .dt-sc-button.type6.coral:hover { border-color:#ff7f50; background-color:#ff7f50; }
.dt-sc-button.type5.blueturquoise, .dt-sc-button.type6.blueturquoise:hover { border-color:#08bbb7; background-color:#08bbb7; }
.dt-sc-button.type5.brown, .dt-sc-button.type6.brown:hover { border-color:#8f5a28; background-color:#8f5a28; }
.dt-sc-button.type5.burntsienna, .dt-sc-button.type6.burntsienna:hover { border-color:#d36b5e; background-color:#d36b5e; }
.dt-sc-button.type5.chillipepper, .dt-sc-button.type6.chillipepper:hover { border-color:#b31f41; background-color:#b31f41; }
.dt-sc-button.type5.graasgreen, .dt-sc-button.type6.graasgreen:hover { border-color:#81c77f; background-color:#81c77f; }
.dt-sc-button.type5.green, .dt-sc-button.type6.green:hover { border-color:#77be32; background-color:#77be32; }
.dt-sc-button.type5.orange, .dt-sc-button.type6.orange:hover { border-color:#f39d12; background-color:#f39d12; }
.dt-sc-button.type5.pink, .dt-sc-button.type6.pink:hover { border-color:#e67eb9; background-color:#e67eb9; }
.dt-sc-button.type5.radiantorchid, .dt-sc-button.type6.radiantorchid:hover { border-color:#af71b0; background-color:#af71b0; }
.dt-sc-button.type5.yellow, .dt-sc-button.type6.yellow:hover { border-color:#eec106; background-color:#eec106; }
.dt-sc-button.type5.red, .dt-sc-button.type6.red:hover { border-color:#e64d3d; background-color:#e64d3d; }
.dt-sc-button.type5.skyblue, .dt-sc-button.type6.skyblue:hover { border-color:#21c2f8; background-color:#21c2f8; }
.dt-sc-button.type5.filled-white { background-color:#fff; border-color:#fff; color:#222; }
.dt-sc-button.type6.filled-white { color:#fff; border-color:#fff; }
.dt-sc-button.type4:hover { color:#2c3e50; border-color:#2c3e50; }
.dt-sc-button.type5, .dt-sc-button.type10:hover { color:#fff; }
.dt-sc-button.type5:hover, .dt-sc-button.type6, .dt-sc-button.type9, .dt-sc-button.type9:hover span { background-color:transparent; }
.dt-sc-button.type9 { border: 1px solid #686868; border-radius: 0; color: #686868; }
.dt-sc-button.type9 span { background:transparent; border-left:1px solid; } .dt-sc-colored-box { color: #ffffff; float: left; margin: 0; padding: 30px 5%; width: 100%; text-align:center; position:relative; background-color:#d5d5d5; }
.dt-sc-colored-box.with-icon { padding: 55px 5% 30px; }
.dt-sc-colored-box span { width:68px; height:64px; border:1px solid; position:absolute; top:-30px; left:0; right:0; margin:auto; line-height:65px; background-color:#fff; font-size:27px; color:#bfc4c7; }
.dt-sc-colored-box h5 { text-transform:uppercase; margin-bottom: 20px; border-bottom:1px solid #fff; padding-bottom:20px; }
.dt-sc-colored-box a, .dt-sc-colored-box h5 { color: #ffffff; }
.dt-sc-colored-box .dt-sc-button { background-color:inherit; border:1px solid #fff; border-radius:inherit; text-transform:uppercase; font-size:14px; }
.dt-sc-colored-box .dt-sc-button:hover { background-color:#fff; color:#333; }
.dt-sc-colored-box .dt-sc-button:before { display:none; }
.dt-sc-colored-box.light.green { background-color:#7dc682; }
.dt-sc-colored-box.light.green span { border-color:#7dc682; color:#7dc682; }
.dt-sc-colored-box.medium.green { background-color:#75bf7b; }
.dt-sc-colored-box.medium.green span { border-color:#75bf7b; color:#75bf7b; }
.dt-sc-colored-box.dark.green { background-color:#6bb271; }
.dt-sc-colored-box.dark.green span { border-color:#6bb271; color:#6bb271; }
.dt-sc-colored-box.light.blueturquoise { background-color:#00c4bf; }
.dt-sc-colored-box.light.blueturquoise span { border-color:#00c4bf; color:#00c4bf; }
.dt-sc-colored-box.medium.blueturquoise { background-color:#00bab5; }
.dt-sc-colored-box.medium.blueturquoise span { border-color:#00bab5; color:#00bab5; }
.dt-sc-colored-box.dark.blueturquoise { background-color:#00b3ae; }
.dt-sc-colored-box.dark.blueturquoise span { border-color:#00b3ae; color:#00b3ae; } .dt-sc-content-carousel { float:left; width:100%; border-bottom:1px solid #d9d9d9; margin-bottom:25px; }
.content-carousel-arrows { left:0; bottom:0px; }
.dt-sc-content-carousel p { color:#616161; }
.content-carousel-arrows a { width:70px; line-height:33px; text-transform:uppercase; border:1px solid; float:left; text-align:center; font-size:12px; }
.content-carousel-arrows a.next { float:right; }
.dark-parallax-content .content-carousel-arrows a:hover { color:#333; } .intro-text { padding:23px 5px 33px; position:relative; float:left; width:100%; }
.intro-text .dt-sc-button { float:right; }
.intro-text.type3 .dt-sc-button { float:none; }
.intro-text.type1 { background-color:#222; padding:23px 30px 33px; }
.intro-text h2, .intro-text h4, .intro-text h5 { font-weight:300; color:#ffffff; margin:0; }
.intro-text h2 { line-height:40px; }
.intro-text h4 { line-height:normal; padding:25px 0px 15px; }
.intro-text h4 span { font-weight:600; }
.intro-text.type1:before { border-left: 13px solid transparent;  border-right: 13px solid transparent;  border-top: 13px solid #222; content: ""; left: 0; margin: auto; position:absolute; right: 0; bottom: -12px; width: 0; }
.intro-text.type2 { background-color:#f8f8f8; padding:23px 30px 33px; }
.intro-text.type2.with-border { border:5px solid #f1f1f1; }
.intro-content { float:left; width:100%; padding-left:65px;  position:relative; }
.intro-content .fa { font-size:55px; position:absolute; left:0; top:3px; }
.intro-text.type2 h4, .intro-text.type3 h2 { color:#222; font-weight:400; }
.intro-text.type3 h2 { text-transform:inherit; }
.intro-text.type3 h6, .intro-text.type5 h6 { margin-bottom:14px; font-size:14px; color:#222; }
.intro-text.type3 h6 span { color:#6b564e; }
.intro-text.type3 { text-align:center; padding:0; } 
.intro-text.type3 .intro-text-content { padding:33px 5px; }
.intro-text.type3 p { color:#616161; }
.intro-text.type4 { padding:30px 30px 33px; background-color:#222; }
.intro-text.type4 h2 { text-transform:none; font-weight:400; margin-bottom:15px; width:100%; }
.intro-text.type4 p, .intro-text.type4 .dt-sc-button:hover span, .intro-text.type5 h6 { color:#ffffff; }
.intro-text.type4 p { clear:both; }
.intro-text.type4 .dt-sc-button.large { margin:20px 0px 0px 0px; }
.intro-text.type5 h2 { color:#ffffff; font-weight:bold; text-transform: none; font-size:30px; }
.intro-text.type5 p { color:#af7e84; }
.intro-text.type5 .dt-sc-button, .intro-text.type6 .dt-sc-button { float:none; }
.intro-text.type5 .intro-text-content { width:50%; margin:0 auto; }
.intro-text.type6 h2 { font-size:30px; text-transform:inherit; font-weight:400; margin-bottom:20px; }
.intro-text.type6 .intro-text-content { text-align:center; color:#fff; }
.intro-text.type6 .dt-sc-button { background-color:#fff; color:#333; }
.intro-text.type6 .dt-sc-button:hover:before { background-color:#efefef; }
.intro-text.type6 .dt-sc-button span { background-color:#efefef; color:#333; }
.intro-text.type6 .dt-sc-button:hover span { background-color:#fff; }
.intro-text.type6 .icon { background-color:#fff; border:1px dashed; width:90px; height:90px; text-align:center; transform:rotate(45deg); -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); -moz-transform:rotate(45deg); -o-transform:rotate(45deg); border:1px dashed; position:absolute; left:0px; top:-70px; right:0; margin:auto; text-align:center; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.intro-text.type6 .icon img { transform:rotate(-45deg); -webkit-transform:rotate(-45deg); -ms-transform:rotate(-45deg); -moz-transform:rotate(-45deg); -o-transform:rotate(-45deg); text-align:center; position:absolute; top:0; bottom:0; left:0; right:0; margin:auto; }
.intro-text.type7 { text-align:center; }
.intro-text.type7 h2, .intro-text.type7 h4, .intro-text.type7 h5 { color:#000000; text-transform:none; }
.intro-text.type7 .dt-sc-button { float:none; margin-right:10px; }
.intro-text.type7 h4 { padding:15px 0 10px; }
.intro-text.type7 h3 { margin-bottom:13px; font-size:30px; } .dt-sc-toggle-frame-set { float:left; width:100%; margin:0px; padding:0px; }
.dt-sc-toggle-frame h5.dt-sc-toggle-accordion, .dt-sc-toggle-frame h5.dt-sc-toggle { clear:both; margin:0px; background:#ffffff; width:100%; }
.dt-sc-toggle-frame h5.dt-sc-toggle-accordion a, .dt-sc-toggle-frame h5.dt-sc-toggle a { font-size:14px; color:#181818; display:block; padding:0px 15px 0px 60px; }
.dt-sc-toggle-frame h5.dt-sc-toggle-accordion.active a, .dt-sc-toggle-frame h5.dt-sc-toggle.active a { color:#181818; }	
.dt-sc-toggle-frame h5.dt-sc-toggle:before, .dt-sc-toggle-frame h5.dt-sc-toggle-accordion:before { background-color:#ffffff; border-right:1px solid #dfdfdf; }
.dt-sc-toggle-frame-set-container { margin:auto; width:80%; }
.dt-sc-toggle-frame-set.type2 h5.dt-sc-toggle-accordion:before, .dt-sc-toggle-frame-set.type2 h5.dt-sc-toggle:before { background-color:#fff; border-right:1px solid #eaeaea;  color:#34495e; width:60px; height:100%; line-height:60px; font-size:20px; -webkit-transition:all 300ms linear; -moz-transition:all 300ms linear; -o-transition:all 300ms linear; -ms-transition:all 300ms linear; transition:all 300ms linear; }
.dt-sc-toggle-frame-set.type2 h5.dt-sc-toggle-accordion, .dt-sc-toggle-frame-set.type2 h5.dt-sc-toggle { border:1px solid #eaeaea; background-color:#fff; line-height:60px; margin-bottom:1px; padding:0 0 0 75px; min-height:60px; line-height:20px; line-height:54px; }
.dt-sc-toggle-frame-set.type2 h5.dt-sc-toggle-accordion a, .dt-sc-toggle-frame-set.type2 h5.dt-sc-toggle a { vertical-align:middle; display:inline-block; line-height:normal; }
.dt-sc-toggle-frame-set.type2 .dt-sc-toggle-content { line-height:24px; padding:15px 0 20px 0; font-family:"Open Sans"; }
.dt-sc-toggle-frame-set.type3 h5.dt-sc-toggle-accordion:before, .dt-sc-toggle-frame-set.type3 h5.dt-sc-toggle:before, .dt-sc-toggle-frame-set.type4 h5.dt-sc-toggle-accordion:before, .dt-sc-toggle-frame-set.type4 h5.dt-sc-toggle:before { background-color:inherit; color:#34495e; width:40px; height:40px; line-height:41px; font-size:20px; }
.dt-sc-toggle-frame-set.type3 h5.dt-sc-toggle-accordion, .dt-sc-toggle-frame-set.type3 h5.dt-sc-toggle { border-bottom:4px solid #eaeaea; background-color:inherit; padding:9px 0 16px 42px; }
.dt-sc-toggle-frame-set.type4 h5.dt-sc-toggle-accordion, .dt-sc-toggle-frame-set.type4 h5.dt-sc-toggle { background-color:inherit; padding:11px 0 18px 42px; }
.dt-sc-toggle-frame-set.type3 .dt-sc-toggle-content, .dt-sc-toggle-frame-set.type4 .dt-sc-toggle-content { line-height:24px; font-family:"Open Sans"; }
h5.dt-sc-toggle, h5.dt-sc-toggle-accordion { clear: both; color: #181818; font-size: 16px; font-weight: 400; margin-bottom:10px; padding: 15px 1px 16px 75px; position: relative; transition: all 300ms linear 0s; background-color:#f8f8f8; border-radius:2px; -webkit-transition:all 300ms linear; -moz-transition:all 300ms linear; -o-transition:all 300ms linear; -ms-transition:all 300ms linear; transition:all 300ms linear; cursor:pointer; }
h5.dt-sc-toggle:before, h5.dt-sc-toggle-accordion:before { color: #fff; content: "\f067"; font-family: fontawesome; line-height:50px;  height: 100%; left: 0; position: absolute; text-align: center; top: 0; width: 50px; border-radius:2px 0px 0px 2px; background-color:#222; cursor:pointer; }
h5.dt-sc-toggle.active:before, h5.dt-sc-toggle-accordion.active:before { font-family: fontawesome; line-height:50px; content: "\f068"; color:#fff; }
.dt-sc-toggle-frame h5.dt-sc-toggle:before, .dt-sc-toggle-frame h5.dt-sc-toggle-accordion:before { height:100%; }
.dt-sc-toggle-frame h5.dt-sc-toggle a, .dt-sc-toggle-frame h5.dt-sc-toggle-accordion a { padding:12px 15px 11px 20px; border-left:40px solid; line-height:normal; }	
.dt-sc-toggle-frame h5.dt-sc-toggle, .dt-sc-toggle-frame h5.dt-sc-toggle-accordion { padding:0px; }
.dt-sc-toggle-content { clear:both; padding:10px 0px 30px; line-height:20px; display:none; }
.dt-sc-toggle-frame { margin-bottom:10px; }
.dt-sc-toggle-frame .dt-sc-toggle-content { background:#ffffff; position:relative; margin:0px; width:100%; padding:0px; }
.dt-sc-toggle-frame .dt-sc-toggle-content .block { padding:10px 10px 25px 20px; margin:0px 0px 0px 40px; border-left:1px solid #dfdfdf; }
h5.dt-sc-toggle.active, h5.dt-sc-toggle-accordion.active { border-bottom:0px; }
.faq h5.dt-sc-toggle-accordion { padding:0px 0px 0px 42px; margin-bottom:13px; line-height:35px; }	
.faq h5.dt-sc-toggle-accordion:before { font-family:'Lato', sans-serif; content:'?'; background:#181818; width:27px; height:27px; text-align:center; line-height:27px; color:#ffffff; border:3px solid #d9d9d9; border-radius:27px; }
.faq h5.dt-sc-toggle-accordion.active:before { content:'?'; }
.faq .dt-sc-toggle-content { padding:0px 0px 10px; margin-left:42px; }
.ie9 .column .dt-sc-toggle-frame:last-child h5.dt-sc-toggle:before, .ie9 .column .dt-sc-toggle-frame:last-child h5.dt-sc-toggle-accordion:before { height:40px; } .dt-sc-tabs-container { float:left; width:100%; margin:0px 0px 20px; padding:0px; clear:both; }
ul.dt-sc-tabs-frame, .woocommerce-tabs ul.tabs { float:left; margin:0px; padding:0px; width:100%; }
ul.dt-sc-tabs-frame li, .woocommerce-tabs ul.tabs li { display:inline; margin:0px; padding:0px; }
ul.dt-sc-tabs-frame li a, .woocommerce-tabs ul.tabs li a { border:1px solid #d9d9d9; border-width:1px 1px 0px 0px; border-style:solid; border-color:#eaeaea; margin:0px; padding:0px 25px; background:#ffffff; text-align:center; font-weight:400; color:#222; line-height:60px; font-size:16px; font-family:'lato', sans-serif; display:inline-block; }
ul.dt-sc-tabs-frame li:first-child a, .woocommerce-tabs ul.tabs li:first-child a { border-left:1px solid #eaeaea; }
ul.dt-sc-tabs-frame li a.current, .woocommerce-tabs ul.tabs li a.current { background:#f8f8f8; border-color:#f8f8f8; position:relative; z-index:1; margin-left:-1px; }
.dt-sc-tabs-frame-content, .woocommerce-tabs .panel { background:#f8f8f8; float:left; clear:both; width:100%; margin:-1px 0px 0px -1px; padding:20px 25px 35px; }
.dt-sc-tabs-frame-content p:last-child { font-style:italic; font-family:'lato', sans-serif; margin-bottom:25px; }
.type2 ul.dt-sc-tabs-frame li a { background-color:#eaeaea; border:none; border-radius:2px 2px 0px 0px;  -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.type2 ul.dt-sc-tabs-frame li a.current { margin-left:0px; }
.type2 ul.dt-sc-tabs-frame li a.current, .type2 ul.dt-sc-tabs-frame li a:hover { color:#ffffff; }
.type2 .dt-sc-tabs-frame-content { margin:0px; }
.type2 ul.dt-sc-tabs-frame li { margin-right:1px; }
.type2 .dt-sc-tabs-frame-content { background-color:#ffffff; border:1px solid #eaeaea; padding:40px 20px 20px; }
.woocommerce-tabs .panel .thumb { float:left; margin:0px 30px 0px 0px; width:27%; }
.woocommerce-tabs .dt-sc-tabs-frame-content .thumb { width:33%; }
.dt-sc-tabs-frame-content .thumb { float:left; margin:0px 30px 0px 0px; }
.dt-sc-tabs-container.type2 .dt-sc-tabs-frame-content .thumb img { border:1px solid #eaeaea; }
.type2 .dt-sc-tabs-frame-content h6, .woocommerce-tabs .panel h6 { margin-bottom:15px; }
.type2 .dt-sc-tabs-frame-content ul, .woocommerce-tabs .panel ul { display:inline-block; }
.type2 .dt-sc-tabs-frame-content ul li span, .woocommerce-tabs .panel ul li span { color:#222; font-weight:bold; width:150px; float:left; }
.type2 .dt-sc-tabs-frame-content ul li .fa, .woocommerce-tabs .panel ul li .fa { margin-right:5px; }
.type2 .dt-sc-tabs-frame-content ul li, .woocommerce-tabs .panel ul li { border-bottom:1px solid #eaeaea; padding:10px 20px 10px 0px; }
.type2 .dt-sc-tabs-frame-content ul li:last-child, .woocommerce-tabs .panel ul li:last-child { border:none; }
.dt-sc-tabs-container.type3 ul.dt-sc-tabs-frame li a.current, .dt-sc-tabs-container.type4 ul.dt-sc-tabs-frame li a.current { background-color:#fff; margin-left:0; }
.dt-sc-tabs-container.type3 ul.dt-sc-tabs-frame li a { border:1px solid #eaeaea; border-bottom:none; margin:0 2px 0 0; }
.dt-sc-tabs-container.type3 .dt-sc-tabs-frame-content { background-color:#fff; border:1px solid; margin:-1px 0 0 0px; }
.dt-sc-tabs-container.type3 .dt-sc-tabs-frame-content p:last-child, .dt-sc-tabs-container.type4 .dt-sc-tabs-frame-content p:last-child { font-style:normal; }
.dt-sc-tabs-container.type3 .dt-sc-tabs-frame-content p, .dt-sc-tabs-container.type4 .dt-sc-tabs-frame-content p { color:#616161; font-family:"Open Sans"; }
.dt-sc-tabs-container.type4 ul.dt-sc-tabs-frame li a { border-width:0 0 4px 0; border-style:solid; border-color:#eaeaea; margin-right:3px; }
.dt-sc-tabs-container.type4 .dt-sc-tabs-frame-content { border-bottom:4px solid; background-color:#fff; margin:0; padding: 30px 25px 19px; }
.dt-sc-tabs-container.type5 .dt-sc-tabs-frame li a { background:none; border:none; padding:0; float:left; width:100%; position:relative; }
.dt-sc-tabs-container.type5 .dt-sc-tabs-frame { border-bottom:4px solid #eaeaea; }
.dt-sc-tabs-container.type5 .dt-sc-tabs-frame-content { margin:0; background:none; padding:35px 5%; }
.dt-sc-tabs-container.type5 .dt-sc-tabs-frame li a.current { margin:0; }
.dt-sc-tabs-container.type5 .dt-sc-tabs-frame li a:before, .dt-sc-tabs-container.type5 .dt-sc-tabs-frame li a.current:before { content:""; border-bottom:4px solid; width:100%; position:absolute; bottom:-4px; left:0; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; opacity:0; }
.dt-sc-tabs-container.type5 .dt-sc-tabs-frame li a:after, .dt-sc-tabs-container.type5 .dt-sc-tabs-frame li a.current:after { border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid; content: ""; display: block; height: 0; position: absolute; right:0px; bottom:0px; left:0; margin:auto; width: 0; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; opacity:0; }
.dt-sc-tabs-container.type5 .dt-sc-tabs-frame li a.current:before, .dt-sc-tabs-container.type5 .dt-sc-tabs-frame li a.current:after { opacity:1; }
.dt-sc-tabs-container.type7 ul.dt-sc-tabs-frame li a { border-width:0 0 4px 0; border-style:solid; border-color:rgba(0, 0, 0, 0); background-color:inherit; margin:0; }
.dt-sc-tabs-container.type7 .dt-sc-tabs-frame-content { background-color: #fff; margin: 0; padding: 40px 0 10px; }
.dt-sc-tabs-container.type7 .dt-sc-tabs-frame { border-bottom: 1px solid #eaeaea; } .dt-sc-tabs-vertical-container { float:left; width:100%; margin:0px 0px 20px; padding:0px; clear:both; }
ul.dt-sc-tabs-vertical-frame { float:left; width:23.4%; }
ul.dt-sc-tabs-vertical-frame li { float:left; display:block; margin:0px; padding:0px; width:100%; position:relative; }
ul.dt-sc-tabs-vertical-frame li a { display:block; border-width:1px 1px 0px 1px; border-style:solid; border-color:#eaeaea; margin:0px; padding:15px 20px; background:#f8f8f8; font-size:14px; font-weight:400; color:#222; font-family:'lato', sans-serif; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
ul.dt-sc-tabs-vertical-frame li a:hover, ul.dt-sc-tabs-vertical-frame li a.current { color:#ffffff; }
ul.dt-sc-tabs-vertical-frame li:last-child a { border-bottom:1px solid #eaeaea; }
.dt-sc-tabs-vertical-frame-content { background:#ffffff; float:left; width:74.5%; margin:13px 0px 0px 2%; }		
.dt-sc-tabs-vertical-frame-content h4 { text-transform:none; margin-bottom:25px; font-weight:bold; }
.dt-sc-tabs-vertical-frame-content p { margin-bottom:20px; }
.product-presentation-bg ul.dt-sc-fancy-list { margin-bottom:25px; }
.dt-sc-tabs-vertical-container.type2 ul.dt-sc-tabs-vertical-frame li.current a { background-color:#fff; border:1px solid; border-right:none; }
.dt-sc-tabs-vertical-container.type2 ul.dt-sc-tabs-vertical-frame li a:hover { background-color:#fff; }
.dt-sc-tabs-vertical-container.type2 .dt-sc-tabs-vertical-frame-content p { color:#616161; }
.dt-sc-tabs-vertical-container.type2 ul.dt-sc-tabs-vertical-frame li a { text-align:right; font-size:13px; }
.dt-sc-tabs-vertical-container.type2 .dt-sc-tabs-vertical-frame-content p:last-child { color:#aaaaaa; } .vc_tta.vc_general.dt-sc-accordion .vc_tta-panel-title > a { clear: both; color: #181818; font-size: 16px; font-weight: 400; padding: 15px 20px 16px 75px; position: relative; display:block; }
.vc_tta.vc_general.dt-sc-accordion.type1 .vc_tta-panel-title > a { background-color:#f8f8f8; border-radius: 0 2px 2px 0; }	
.vc_tta.vc_general.dt-sc-accordion.type1 .vc_tta-panel-title > a:before, .dt-sc-vc-toggle.vc_toggle_default.type1 .vc_toggle_title:before { color: #fff; content: ""; height: 100%; left: 0; position: absolute; text-align: center; top: 0; width: 50px; border-radius:2px 0px 0px 2px; background-color:#222; cursor:pointer; }
.vc_tta.vc_tta-accordion.dt-sc-accordion.type1 .vc_tta-controls-icon-position-left.vc_tta-panel-title > a { padding-left:65px; }
.vc_tta.vc_general.dt-sc-accordion.type1 .vc_tta-controls-icon.vc_tta-controls-icon-plus:after, .vc_tta.vc_general.dt-sc-accordion.type1 .vc_tta-controls-icon.vc_tta-controls-icon-plus:before { border-color:#fff; }
.vc_tta.vc_general.dt-sc-accordion.type2.vc_tta-color-skincolor .vc_tta-panel .vc_tta-panel-heading { border:1px solid #eaeaea; position:relative; border-radius:2px !important; }
.vc_tta.vc_general.dt-sc-accordion.type2 .vc_tta-panel-heading:after { content:""; position:absolute; left:50px; top:0; height:100%; border-right:1px solid #eaeaea; }
.vc_tta.vc_general.dt-sc-accordion.type2 .vc_tta-panel { margin-bottom:2px; }
.vc_tta.vc_general.dt-sc-accordion.type3 .vc_tta-panel-heading { border-bottom:4px solid #eaeaea; border-radius:0; }
.dt-sc-vc-toggle.vc_toggle_default.type1 .vc_toggle_title h4, .dt-sc-vc-toggle.vc_toggle_default.type2 .vc_toggle_title h4 { padding: 15px 20px 16px 65px; position: relative; display:block; margin-bottom:10px; background-color:#f8f8f8; }
.dt-sc-vc-toggle.vc_toggle_default.type1 .vc_toggle_title h4 { border-radius: 0 2px 2px 0; }
.dt-sc-vc-toggle.vc_toggle_default.type2 .vc_toggle_title h4 { background-color:inherit; border:1px solid #eaeaea; margin-bottom:2px; border-radius: 2px; }
.dt-sc-vc-toggle.vc_toggle_default .vc_toggle_title h4 { font-size:17px; display:block; clear: both; color: #181818; font-size: 17px; font-weight: 400; }
.dt-sc-vc-toggle.vc_toggle_default.type1 .vc_toggle_title, .dt-sc-vc-toggle.vc_toggle_default.type2 .vc_toggle_title { padding-left:0; }
.dt-sc-vc-toggle.vc_toggle_default { margin:0; }
.dt-sc-vc-toggle.vc_toggle_default.type1 .vc_toggle_title:before { z-index:1; }
.dt-sc-vc-toggle.vc_toggle_default.type1 .vc_toggle_title .vc_toggle_icon, .dt-sc-vc-toggle.vc_toggle_default.type2 .vc_toggle_title .vc_toggle_icon { left:15px; }
.vc_toggle.dt-sc-vc-toggle.vc_toggle_default .vc_toggle_title .vc_toggle_icon { height: 2px; width: 12px; z-index:9; border-width:0; }
.vc_toggle.dt-sc-vc-toggle.vc_toggle_default .vc_toggle_icon:before { height: 12px; width: 2px; z-index:9; border-width:0; }
.dt-sc-vc-toggle.vc_toggle_default.type2 .vc_toggle_title h4:after { border-right: 1px solid #eaeaea; content: ""; height: 100%; left: 48px; position: absolute; top: 0; }
.dt-sc-vc-toggle.vc_toggle_default.type3 .vc_toggle_title { border-bottom:4px solid #eaeaea; }
.dt-sc-vc-toggle.vc_toggle_default.type3 .vc_toggle_title h4, .dt-sc-vc-toggle.vc_toggle_default.type4 .vc_toggle_title h4 { padding:15px 0; margin:0; }
.dt-sc-vc-toggle.vc_toggle_default .vc_toggle_icon:after, .dt-sc-vc-toggle.vc_toggle_default .vc_toggle_icon:before, .dt-sc-vc-toggle.vc_toggle_default .vc_toggle_title .vc_toggle_icon { background-color:#000; }
.vc_tta.vc_general.vc_tta-accordion.vc_tta-color-skincolor .vc_tta-panel-body { padding-left: 0; padding-right: 0; }
.vc_toggle.vc_toggle_default.dt-sc-vc-toggle .vc_toggle_content { padding-left:0; }
.dt-sc-vc-toggle.vc_toggle_default.type1 .vc_toggle_icon:after, .dt-sc-vc-toggle.vc_toggle_default.type1 .vc_toggle_icon:before, .dt-sc-vc-toggle.vc_toggle_default.type1 .vc_toggle_title .vc_toggle_icon { background-color:#fff !important; } .vc_tta.vc_general.dt-sc-tabs.type1 .vc_tta-tab > a, .vc_tta.vc_general.dt-sc-tabs.type3 .vc_tta-tab > a { background-color:inherit; border-radius: 0; font-family: "lato",sans-serif; font-size: 16px; border: 1px solid #eaeaea; border-bottom-width:0; }
.vc_tta.vc_general.dt-sc-tabs.type1 .vc_tta-tab.vc_active > a, .vc_tta.vc_general.dt-sc-tabs.type1 .vc_tta-panel-body { background-color:#f8f8f8; }
.vc_tta.vc_general.dt-sc-tabs.type1 .vc_tta-tab.vc_active > a { border-color:#f8f8f8; z-index:1; }
.vc_tta.vc_general.dt-sc-tabs.type1 .vc_tta-tab { margin-left:-1px; }
.vc_tta.vc_general.dt-sc-tabs.type1 .vc_tta-tab:first-child { margin-left: 1px; }
.vc_tta.vc_general.dt-sc-tabs.type3 .vc_tta-tab > a { z-index:0; }
.vc_tta.vc_general.vc_tta-color-skincolor.dt-sc-tabs.type2 .vc_tta-tab > a { background-color:#eaeaea; border-radius: 2px 2px 0 0; }
.vc_tta.vc_general.dt-sc-tabs.type2 .vc_tta-panels .vc_tta-panel-body, .vc_tta.vc_general.dt-sc-tabs.type3 .vc_tta-panels .vc_tta-panel-body { background-color:#fff; border: 1px solid #eaeaea; }
.vc_tta.vc_general.dt-sc-tabs.type3 .vc_tta-panels-container { z-index:0; }
.vc_tta.vc_general.dt-sc-tabs.type3 .vc_tta-tabs-container { z-index:auto; }
.vc_tta.vc_general.dt-sc-tabs.type3 .vc_tta-tab.vc_active > a { z-index:1; background-color:#fff; }
.vc_tta.vc_general.dt-sc-tabs.type3 .vc_tta-panels .vc_tta-panel-body { margin-top:-1px; }
.vc_tta.vc_general.vc_tta-color-skincolor.dt-sc-tabs.type4 .vc_tta-tab > a { border-width: 0 0 4px; border-color:#eaeaea; margin-right:3px;  font-family: "lato",sans-serif; font-size: 16px; }
.vc_tta.vc_general.vc_tta-color-skincolor.dt-sc-tabs.type4 .vc_tta-panels .vc_tta-panel-body { border-width: 0 0 4px 0; border-color:#eaeaea; border-radius: 0; }
.vc_tta.vc_general.vc_tta-color-skincolor.dt-sc-tabs.type2 .vc_tta-tab.vc_active > a { color:#fff; } .vc_tta.vc_tta-tabs.vc_tta-color-skincolor.dt-sc-tabs-vertical a { display:block; border-width:1px 1px 0px 1px; border-style:solid; border-color:#eaeaea; padding:15px 20px; background-color:#f8f8f8; font-size:14px; font-weight:400; color:#222; font-family:'lato', sans-serif; margin:0; border-radius: 0; }
.vc_tta.vc_tta-tabs.vc_tta-color-skincolor.dt-sc-tabs-vertical .vc_tta-tab, .vc_tta.vc_tta-tabs.vc_tta-color-skincolor.dt-sc-tabs-vertical .vc_tta-tabs-list { margin:0; }
.vc_tta.vc_tta-tabs.vc_tta-color-skincolor.dt-sc-tabs-vertical .vc_tta-tab:last-child a { border-bottom-width:1px; }
.vc_tta.vc_tta-tabs.vc_tta-color-skincolor.dt-sc-tabs-vertical .vc_tta-tabs-container { float: left; width: 23.4%; }
.vc_tta.vc_tta-tabs.vc_tta-color-skincolor.dt-sc-tabs-vertical.type1 .vc_tta-tab.vc_active a { border-right-color:#eaeaea; color:#fff; }
.vc_tta.vc_tta-tabs.vc_tta-color-skincolor.dt-sc-tabs-vertical.type2 .vc_tta-tab.vc_active a  { background-color:inherit; border-right-width:0; border-bottom-width:1px; }
.vc_tta-tabs.vc_tta-tabs-position-left.dt-sc-tabs-vertical .vc_tta-tabs-list { flex-grow:0; } ul.dt-sc-fancy-list { float:left; width:100%; }
ul.dt-sc-fancy-list li { display:block; font-size:13px; color:#222; line-height:24px; position:relative; padding-left:20px; padding-bottom:5px; }
ul.dt-sc-fancy-list li a { color:#222; }
ul.dt-sc-fancy-list li:before { font-family:fontawesome; font-weight:normal; font-weight:normal; position:absolute; left:0; top:0; color:#222; }
ul.dt-sc-fancy-list.type2 li { color:#222; font-family:'lato', sans-serif; }
ul.dt-sc-fancy-list.type2.arrow li:before { font-size:15px; }
ul.dt-sc-fancy-list.share li:before, ul.dt-sc-fancy-list.reply li:before { font-size:11px; }
.text-alignright ul.dt-sc-fancy-list li { padding-right:20px; padding-left:0; }
.text-alignright ul.dt-sc-fancy-list li:before { left:auto; right:0; }
ul.dt-sc-fancy-list.caret-down li, ul.dt-sc-fancy-list.caret-up li, ul.dt-sc-fancy-list.caret-left li, ul.dt-sc-fancy-list.caret-right li { padding-left:13px; }
ul.dt-sc-fancy-list.arrow li:before{content:"\f105"}ul.dt-sc-fancy-list.rounded-arrow li:before{content:"\f0a9"}ul.dt-sc-fancy-list.double-arrow li:before{content:"\f101"}ul.dt-sc-fancy-list.heart li:before{content:"\f004";font-size:10px}ul.dt-sc-fancy-list.trash li:before{content:"\f014"}ul.dt-sc-fancy-list.star li:before{content:"\f005"}ul.dt-sc-fancy-list.tick li:before{content:"\f00c"}ul.dt-sc-fancy-list.rounded-tick li:before{content:"\f058"}ul.dt-sc-fancy-list.cross li:before{content:"\f00d"}ul.dt-sc-fancy-list.rounded-cross li:before{content:"\f057"}ul.dt-sc-fancy-list.rounded-question li:before{content:"\f059"}ul.dt-sc-fancy-list.rounded-info li:before{content:"\f05a"}ul.dt-sc-fancy-list.delete li:before{content:"\f05e"}ul.dt-sc-fancy-list.warning li:before{content:"\f071"}ul.dt-sc-fancy-list.comment li:before{content:"\f075"}ul.dt-sc-fancy-list.edit li:before{content:"\f044"}ul.dt-sc-fancy-list.share li:before{content:"\f064"}ul.dt-sc-fancy-list.plus li:before{content:"\f067"}ul.dt-sc-fancy-list.rounded-plus li:before{content:"\f055"}ul.dt-sc-fancy-list.minus li:before{content:"\f068"}ul.dt-sc-fancy-list.rounded-minus li:before{content:"\f056"}ul.dt-sc-fancy-list.asterisk li:before{content:"\f069"}ul.dt-sc-fancy-list.cart li:before{content:"\f07a"}ul.dt-sc-fancy-list.folder li:before{content:"\f07b"}ul.dt-sc-fancy-list.folder-open li:before{content:"\f07c"}ul.dt-sc-fancy-list.desktop li:before{content:"\f108"}ul.dt-sc-fancy-list.tablet li:before{content:"\f10a"}ul.dt-sc-fancy-list.mobile li:before{content:"\f10b"}ul.dt-sc-fancy-list.reply li:before{content:"\f112"}ul.dt-sc-fancy-list.quote li:before{content:"\f10d"}ul.dt-sc-fancy-list.mail li:before{content:"\f0e0"}ul.dt-sc-fancy-list.external-link li:before{content:"\f08e"}ul.dt-sc-fancy-list.adjust li:before{content:"\f042"}ul.dt-sc-fancy-list.pencil li:before{content:"\f040"}ul.dt-sc-fancy-list.print li:before{content:"\f02f"}ul.dt-sc-fancy-list.tag li:before{content:"\f02b"}ul.dt-sc-fancy-list.thumbs-up li:before{content:"\f087"}ul.dt-sc-fancy-list.thumbs-down li:before{content:"\f088"}ul.dt-sc-fancy-list.time li:before{content:"\f017"}ul.dt-sc-fancy-list.globe li:before{content:"\f0ac"}ul.dt-sc-fancy-list.pushpin li:before{content:"\f08d"}ul.dt-sc-fancy-list.map-marker li:before{content:"\f041"}ul.dt-sc-fancy-list.link li:before{content:"\f0c1"}ul.dt-sc-fancy-list.paper-clip li:before{content:"\f0c6"}ul.dt-sc-fancy-list.download li:before{content:"\f019"}ul.dt-sc-fancy-list.key li:before{content:"\f084"}ul.dt-sc-fancy-list.search li:before{content:"\f002"}ul.dt-sc-fancy-list.rss li:before{content:"\f09e"}ul.dt-sc-fancy-list.twitter li:before{content:"\f099"}ul.dt-sc-fancy-list.facebook li:before{content:"\f09a"}ul.dt-sc-fancy-list.linkedin li:before{content:"\f0e1"}ul.dt-sc-fancy-list.google-plus li:before{content:"\f0d5"}ul.dt-sc-fancy-list.circle-o li:before{content:"\f10c"} ul.dt-sc-fancy-list.check li:before{content:"\f046"}ul.dt-sc-fancy-list.hand li:before{content:"\f0a4"}ul.dt-sc-fancy-list.cog li:before{content:"\f013"}ul.dt-sc-fancy-list.play li:before{content:"\f01d"}ul.dt-sc-fancy-list.file-text li:before { content: "\f15c"; }ul.dt-sc-fancy-list.angle-double-right li:before { content: "\f101"; }ul.dt-sc-fancy-list.hand-o-right li:before { content: "\f0a4"; }ul.dt-sc-fancy-list.gavel li:before { content: "\f0e3"; }ul.dt-sc-fancy-list.book li:before { content: "\f02d"; }ul.dt-sc-fancy-list.check-circle li:before { content: "\f058"; }ul.dt-sc-fancy-list.sun-o li:before { content: "\f185"; }ul.dt-sc-fancy-list.slack li:before { content: "\f198"; }ul.dt-sc-fancy-list.caret-down li:before { content: "\f0d7"; }ul.dt-sc-fancy-list.caret-up li:before { content: "\f0d8"; }ul.dt-sc-fancy-list.caret-left li:before { content: "\f0d9"; }ul.dt-sc-fancy-list.caret-right li:before { content: "\f0da"; }
ul.dt-sc-fancy-list.blue li:before { color:#478bca; }
ul.dt-sc-fancy-list.chocolate li:before { color:#cd671d; }
ul.dt-sc-fancy-list.coral li:before { color:#ff7f50; }
ul.dt-sc-fancy-list.blueturquoise li:before { color:#08bbb7; }
ul.dt-sc-fancy-list.brown li:before { color:#8f5a28; }
ul.dt-sc-fancy-list.burntsienna li:before { color:#d36b5e; }
ul.dt-sc-fancy-list.chillipepper li:before { color:#b31f41; }
ul.dt-sc-fancy-list.graasgreen li:before { color:#81c77f; }
ul.dt-sc-fancy-list.green li:before { color:#77be32; }
ul.dt-sc-fancy-list.orange li:before { color:#f39d12; }	
ul.dt-sc-fancy-list.pink li:before { color:#e67eb9; }
ul.dt-sc-fancy-list.radiantorchid li:before { color:#af71b0; }
ul.dt-sc-fancy-list.red li:before { color:#e64d3d; }
ul.dt-sc-fancy-list.yellow li:before { color:#eec106; }
.dt-sc-icon-list { float:left; width:100%; margin-bottom:30px; }
.dt-sc-icon-list li { display:block; border-bottom:1px dashed #ededed; padding:15px 0px 12px 0px; }
.dt-sc-icon-list li a { font-size:16px; color:#222; line-height:22px; display:block; }
.dt-sc-icon-list li .fa { float:left; font-size:16px; margin-right:20px; line-height:22px; }
.dt-sc-icon-list li { font-size:16px; color:#222; }
.dt-sc-icon-list li img { margin-right:10px; }
.dt-sc-icon-list.blue li .fa { color:#478bca; }
.dt-sc-icon-list.chocolate li .fa { color:#cd671d; }
.dt-sc-icon-list.coral li .fa { color:#ff7f50; }
.dt-sc-icon-list.blueturquoise li .fa { color:#08bbb7; }
.dt-sc-icon-list.brown li .fa { color:#8f5a28; }
.dt-sc-icon-list.burntsienna li .fa { color:#d36b5e; }
.dt-sc-icon-list.chillipepper li .fa { color:#b31f41; }
.dt-sc-icon-list.graasgreen li .fa { color:#81c77f; }
.dt-sc-icon-list.green li .fa { color:#77be32; }
.dt-sc-icon-list.orange li .fa { color:#f39d12; }	
.dt-sc-icon-list.pink li .fa { color:#e67eb9; }
.dt-sc-icon-list.radiantorchid li .fa { color:#af71b0; }
.dt-sc-icon-list.red li .fa { color:#e64d3d; }
.dt-sc-icon-list.yellow li .fa { color:#eec106; }
ol.dt-sc-fancy-list li span { color:#222; }
ol.decimal { list-style-type:decimal; }
ol.decimal-leading-zero { list-style-type:decimal-leading-zero; }
ol.lower-alpha { list-style-type:lower-alpha; }
ol.lower-roman { list-style-type:lower-roman; }
ol.upper-alpha { list-style-type:upper-alpha; }
ol.upper-roman { list-style-type:upper-roman; }	
ol.dt-sc-fancy-list.blue li { color:#478bca; }
ol.dt-sc-fancy-list.chocolate li { color:#cd671d; }
ol.dt-sc-fancy-list.coral li { color:#ff7f50; }
ol.dt-sc-fancy-list.blueturquoise li { color:#08bbb7; }
ol.dt-sc-fancy-list.brown li { color:#8f5a28; }
ol.dt-sc-fancy-list.burntsienna li { color:#d36b5e; }
ol.dt-sc-fancy-list.chillipepper li { color:#b31f41; }
ol.dt-sc-fancy-list.graasgreen li { color:#81c77f; }
ol.dt-sc-fancy-list.green li { color:#77be32; }
ol.dt-sc-fancy-list.orange li { color:#f39d12; }	
ol.dt-sc-fancy-list.pink li { color:#e67eb9; }
ol.dt-sc-fancy-list.radiantorchid li { color:#af71b0; }
ol.dt-sc-fancy-list.red li { color:#e64d3d; }
ol.dt-sc-fancy-list.yellow li { color:#eec106; } .dt-sc-titled-box { margin-bottom:20px; width:100%; clear:both; }
.dt-sc-titled-box h4.dt-sc-titled-box-title { font-size:16px; padding:12px 15px; text-shadow:none; margin:0px; } 
.dt-sc-titled-box h4.dt-sc-titled-box-title span { font-size:16px; margin-right:5px; }
.dt-sc-titled-box-content { padding:20px; background-color:#f5f5f5; border-radius: 0 0 2px 2px; }				
.dt-sc-titled-box h4.dt-sc-titled-box-title { color:#ffffff; border-radius: 2px 2px 0 0; }
.dt-sc-titled-box.red h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.orange h4.dt-sc-titled-box-title { background-color:#f1c40f; }
.dt-sc-titled-box.green h4.dt-sc-titled-box-title { background-color:#47de52; }
.dt-sc-titled-box.blue h4.dt-sc-titled-box-title { background-color:#3498db; }
.dt-sc-titled-box.pepsi-blue h4.dt-sc-titled-box-title { background-color:#6d8cff; }
.dt-sc-titled-box.chocolate h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.coral h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.blueturquoise h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.brown h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.burntsienna h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.chillipepper h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.graasgreen h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.pink h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.radiantorchid h4.dt-sc-titled-box-title { background-color:#e74c3c; }
.dt-sc-titled-box.yellow h4.dt-sc-titled-box-title { background-color:#eec106; } .dt-sc-error-box, .dt-sc-warning-box, .dt-sc-success-box, .dt-sc-info-box { display:inline-block; width:100%; margin-bottom:20px; padding:15px 15px 15px 75px; clear:both; background:url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/textured-pattern.png) center center repeat; color:#333; position:relative; line-height:28px; }
.dt-sc-error-box a, .dt-sc-warning-box a, .dt-sc-success-box a, .dt-sc-info-box a { text-decoration:underline; }
.dt-sc-error-box:before, .dt-sc-warning-box:before, .dt-sc-success-box:before, .dt-sc-info-box:before { font-family:FontAwesome; font-style:normal; font-weight:normal; text-decoration:inherit; font-size:29px; position:absolute; left:0; top:0; display:block; width:58px; height:100%; text-align:center; line-height:58px; color:#fff; }
.dt-sc-error-box { background-color:rgba(255, 51, 51, 0.1); }
.dt-sc-error-box:before { content:"\f057"; background-color:rgba(255, 51, 51, 1); }
.dt-sc-warning-box { background-color:rgba(255, 209, 25, 0.1); }
.dt-sc-warning-box:before { content:"\f06a"; background-color:rgba(255, 209, 25, 1); }
.dt-sc-success-box { background-color:rgba(51, 204, 0, 0.1); }
.dt-sc-success-box:before { content:"\f058"; background-color:rgba(51, 204, 0, 1); }
.dt-sc-info-box { background-color:rgba(51, 204, 255, 0.1); }
.dt-sc-info-box:before { content: "\f129"; background-color:rgba(51, 204, 255, 1);  }
.dt-sc-error-box a { color:#d01313; }
.dt-sc-warning-box a { color:#c79d13; }
.dt-sc-success-box a { color:#7ba411; }
.dt-sc-info-box a { color:#2081b9; } blockquote.type1 { background-color:#f8f8f8; font-weight:300; font-family:'Open Sans', sans-serif; }
blockquote.type2 { font-family:'lato', sans-serif; padding:10px 2px 10px 43px; border-left:5px solid #34495e; }			    
blockquote.type2 .fa-quote-left { position:absolute; left:17px; top:15px; }
blockquote.type2 q { position:relative; }
blockquote.type2 .fa.fa-quote-right { margin-left: 7px; } .dt-sc-pullquote1, .dt-sc-pullquote2, .dt-sc-pullquote3, .dt-sc-pullquote4, .dt-sc-pullquote5, .dt-sc-pullquote6 { display:inline-block; margin-bottom:20px; margin-top:20px; width:40%; }	
.dt-sc-pullquote1, .dt-sc-pullquote2, .dt-sc-pullquote3, .dt-sc-pullquote4, .dt-sc-pullquote5, .dt-sc-pullquote6 { line-height:30px; }	
.dt-sc-pullquote1 { border-left:3px solid #eaeaea; background:#f8f8f8; letter-spacing:0; line-height:25px; padding:15px; width:36%; }	
.dt-sc-pullquote2 { background:#F5F5F5; border:1px solid #FFFFFF; box-shadow:0 0 5px #D0D0D0; padding:19px; }	
.dt-sc-pullquote3 { background:#F5F5F5; border-bottom:2px dotted #D9D9D9; border-top:2px dotted #D9D9D9; padding:19px; }	
.dt-sc-pullquote4 { border-bottom:4px double #D9D9D9; border-top:4px double #D9D9D9; margin-top:20px; padding:10px 0px; }	
.dt-sc-pullquote5 { letter-spacing:0; line-height:25px; padding:5px 5px 5px 15px; width:36%; }	
.dt-sc-pullquote6 { background:#F5F5F5; letter-spacing:0; line-height:25px; padding:15px; width:36%; }	
.dt-sc-pullquote1.aligncenter, .dt-sc-pullquote2.aligncenter, .dt-sc-pullquote3.aligncenter, .dt-sc-pullquote4.aligncenter, .dt-sc-pullquote5.aligncenter, .dt-sc-pullquote6.aligncenter { display:block; float:none; text-align:center; width:auto; }	
.dt-sc-pullquote1.alignleft, .dt-sc-pullquote1.aligncenter { margin-left:2px; }	
.dt-sc-pullquote1.alignright, .dt-sc-pullquote1.aligncenter { margin-right:2px; }
.dt-sc-pullquote5 { border-left:3px solid #d9d9d9; }
.dt-sc-pullquote6 { border-top:3px solid  #d9d9d9; } .dt-sc-pricing-table.no-space .dt-sc-one-fourth { width: 25%; }
.dt-sc-pricing-table.no-space .column { margin-left: 0; }
.dt-sc-pricing-table { float:left; width:100%; }
.dt-sc-pr-tb-col { background-color:#ffffff; border:1px solid #eaeaea; width:100%; text-align:center; font-family:'lato', sans-serif; }
.dt-sc-tb-title h5 { font-size:24px; line-height:20px; color:#252525; padding:22px 20px; margin-bottom:0; } 
.dt-sc-tb-header { float:left; width:100%; }
.dt-sc-tb-header .dt-sc-price { color:#ffffff; padding:10px 0px; }
.dt-sc-tb-header .dt-sc-price h2 { font-size:48px; line-height:45px; color:#ffffff; margin-bottom:5px; display:inline-block; border-bottom:1px dashed rgba(255, 255, 255, 0.4); padding:0px 0px 10px 0px; }
.dt-sc-tb-header .dt-sc-price span { display:inline-block; width:100%; clear:both; font-size:17px; }
.dt-sc-tb-header .dt-sc-price p{ margin-bottom:0; }
.dt-sc-tb-content { list-style-type:none; padding:20px 0px 30px; margin-bottom:0; float:left; width:100%; }
.dt-sc-tb-content li { line-height:20px; padding:15px 10px; border-bottom:1px dashed #eaeaea; }
.dt-sc-tb-content li span, .dt-sc-tb-content li i { margin-right:5px; }
.dt-sc-tb-features { padding:0 5px 10px; clear:both; }
.dt-sc-tb-features p { display:inline-block; text-align:center; }
.dt-sc-pr-tb-col .dt-sc-buy-now { padding:0px 0px 30px 0px; }
.dt-sc-pr-tb-col.type2 .dt-sc-tb-header .dt-sc-price { border-radius: 100%; display: block; height: 190px; margin: auto; padding: 30px 0; width: 190px; }
.dt-sc-pr-tb-col.type3 .dt-sc-tb-header .dt-sc-price { width:160px; height:160px; border-radius: 100%; display: block; padding: 10px 0; border:13px solid #eaeaea; position:relative; background-repeat:repeat-x; background-image:url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/pricing-bg.png); background-position:left; margin:30px auto 15px; }
.dt-sc-pr-tb-col.type3 .dt-sc-tb-header .dt-sc-price h2 { font-size:25px; margin:0; padding:0; border:none; line-height:normal; }
.dt-sc-pr-tb-col.type3 .dt-sc-price-content { display:table-cell; vertical-align:middle; height:110px; }
.dt-sc-pr-tb-col.type3 .dt-sc-tb-content { padding:0px 0 20px 0; }
.dt-sc-pr-tb-col.type3 .dt-sc-tb-title h5 { font-size:24px; padding:22px 20px 15px; line-height:normal; }
.dt-sc-pr-tb-col.type3.selected .dt-sc-tb-title h5, .dt-sc-pr-tb-col.type3:hover .dt-sc-tb-title h5 { padding:30px 0 20px; }
.dt-sc-pr-tb-col.type3.selected .dt-sc-tb-header { background: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/highlight-bg.png) no-repeat right top; }
.dt-sc-pr-tb-col.type3 .dt-sc-buy-now .dt-sc-button.type10.small { padding: 2px 15px; }
.dt-sc-pr-tb-col.selected { border:none; }
.dt-sc-pr-tb-col.selected, .dt-sc-pr-tb-col:hover { margin-top:-15px; box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.15); -webkit-box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.25); -moz-box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.25); }
.dt-sc-pr-tb-col.selected .dt-sc-tb-title h5, .dt-sc-pr-tb-col:hover .dt-sc-tb-title h5 { padding:30px 0px 30px 0px; }
.dt-sc-pr-tb-col.selected .dt-sc-buy-now .dt-sc-button span { background-color:#eaeaea; }
.dt-sc-pr-tb-col.selected .dt-sc-price span, .dt-sc-pr-tb-col.selected .dt-sc-price h2 { color:#222; }
.dt-sc-pr-tb-col.selected .dt-sc-price p { color:#222; }
.dt-sc-pr-tb-col.selected .dt-sc-price h2 { border-bottom:1px dashed #f0f0f0; }
.dt-sc-pr-tb-col.selected .dt-sc-tb-content li { border-bottom:1px dashed rgba(255, 255, 255, 0.5); }
.dt-sc-pr-tb-col.selected .dt-sc-tb-title h5, .dt-sc-pr-tb-col.selected .dt-sc-tb-content li, .dt-sc-pr-tb-col.selected .dt-sc-tb-features { color:#ffffff; }
.dt-sc-pr-tb-col.selected .dt-sc-price, .dt-sc-pr-tb-col.selected .dt-sc-buy-now .dt-sc-button { background-color:#ffffff; } 
.dt-sc-pr-tb-col.selected .dt-sc-buy-now .dt-sc-button:hover:before { background-color:#546d87; }
.dt-sc-pr-tb-col.selected .dt-sc-buy-now, .dt-sc-pr-tb-col:hover .dt-sc-buy-now { padding:0 0 40px 0; }
.dt-sc-pr-tb-col, .dt-sc-tb-header .dt-sc-price, .dt-sc-tb-title h5, .dt-sc-pr-tb-col .dt-sc-buy-now, .dt-sc-tb-features, .dt-sc-tb-content { -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; } .dt-sc-bar-text { color: #616161; font-size: 14px; line-height:40px; display:inline-block; width:35%; font-family:'lato', sans-serif; text-align:right; padding-right:27px; }
.dt-sc-progress { border-radius: 3px; display: inline-block;  background-color: #d8d8d8; height: 6px; overflow: hidden; width:64%; }
.dt-sc-progress.active .dt-sc-bar { animation: 2s linear 0s normal none infinite progress-bar-stripes; }
.dt-sc-progress .dt-sc-bar { background-repeat: repeat-x; box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset; -webkit-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset; -moz-box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset; float: left; height: 100%; transition: width 0.6s ease 0s; width: 0; position: relative; background-color:#818181; }
.dt-sc-progress-bar.type2 .dt-sc-bar-text { color:#222; text-align:left; padding:0; }
.dt-sc-progress.type3 { height:25px; border-radius:0; width:100%; position:relative; }
.dt-sc-progress.type3 .dt-sc-bar-text { width:auto; line-height:25px; display:block; text-align:left; padding:0 0 0 15px; color:#fff; }
.dt-sc-progress.type3 .dt-sc-bar-text > span { float:right; position:absolute; right:10px; color:#333; }
.dt-sc-progress.type3 .dt-sc-bar { position:static; }
.dt-sc-progress.type4 { height:15px; border-radius:3px; background-color: #e6e6e6; width:100%; margin-bottom:40px; overflow:visible; }
.dt-sc-progress.type4 .dt-sc-bar-text { margin-bottom:5px; margin-top:-27px; width:100%; display:block; text-align:left; padding-right:0; line-height:inherit; }
.dt-sc-progress.type4 .dt-sc-bar { border-radius:3px; }
.dt-sc-progress.type4 .dt-sc-bar-text > span { display: block; float: right; font-weight: bold; }
.dt-sc-orange { background-color:#f1c40f; }
.dt-sc-red { background-color:#e74c3c; }
.dt-sc-dark-blue { background-color:#34495e; }
.dt-sc-green { background-color:#47de52; }
.dt-sc-blue { background-color:#3498db; }
.dt-sc-pepsi-blue { background-color:#6d8cff; }
.dt-sc-progress .dt-sc-bar.red { background-color:#e74c3c; }
.dt-sc-progress .dt-sc-bar.orange { background-color:#f1c40f; }
.dt-sc-progress .dt-sc-bar.dark-blue { background-color:#34495e; }
.dt-sc-progress .dt-sc-bar.green { background-color:#77be32; }
.dt-sc-progress .dt-sc-bar.blue { background-color:#3498db; }
.dt-sc-progress .dt-sc-bar.pepsi-blue { background-color:#6d8cff; }
.dt-sc-progress .dt-sc-bar.chocolate { background-color:#cd671d; }
.dt-sc-progress .dt-sc-bar.coral { background-color:#ff7f50; }
.dt-sc-progress .dt-sc-bar.blueturquoise { background-color:#08bbb7; }
.dt-sc-progress .dt-sc-bar.brown { background-color:#8f5a28; }
.dt-sc-progress .dt-sc-bar.burntsienna { background-color:#d36b5e; }
.dt-sc-progress .dt-sc-bar.chillipepper { background-color:#b31f41; }
.dt-sc-progress .dt-sc-bar.graasgreen { background-color:#81c77f; }
.dt-sc-progress .dt-sc-bar.pink { background-color:#e67eb9; }
.dt-sc-progress .dt-sc-bar.radiantorchid { background-color:#af71b0; }
.dt-sc-progress .dt-sc-bar.yellow { background-color:#eec106; }
.dt-sc-progress.type4 .dt-sc-bar.red span { color:#e74c3c; }
.dt-sc-progress.type4 .dt-sc-bar.orange span { color:#f1c40f; }
.dt-sc-progress.type4 .dt-sc-bar.dark-blue span { color:#34495e; }
.dt-sc-progress.type4 .dt-sc-bar.green span { color:#77be32; }
.dt-sc-progress.type4 .dt-sc-bar.blue span { color:#3498db; }
.dt-sc-progress.type4 .dt-sc-bar.pepsi-blue span { color:#6d8cff; }
.dt-sc-progress.type4 .dt-sc-bar.chocolate span { color:#cd671d; }
.dt-sc-progress.type4 .dt-sc-bar.coral span { color:#ff7f50; }
.dt-sc-progress.type4 .dt-sc-bar.blueturquoise span { color:#08bbb7; }
.dt-sc-progress.type4 .dt-sc-bar.brown span { color:#8f5a28; }
.dt-sc-progress.type4 .dt-sc-bar.burntsienna span { color:#d36b5e; }
.dt-sc-progress.type4 .dt-sc-bar.chillipepper span { color:#b31f41; }
.dt-sc-progress.type4 .dt-sc-bar.graasgreen span { color:#81c77f; }
.dt-sc-progress.type4 .dt-sc-bar.pink span { color:#e67eb9; }
.dt-sc-progress.type4 .dt-sc-bar.radiantorchid span { color:#af71b0; }
.dt-sc-progress.type4 .dt-sc-bar.yellow span { color:#eec106; } .dt-sc-custom-progress-bar.type1 .vc_single_bar { height:25px; border-radius:0; width:100%; position:relative; }
.dt-sc-custom-progress-bar.type1 .vc_single_bar .vc_label { width:auto; line-height:25px; display:block; text-align:left; padding:0 0 0 15px; color:#fff; }
.dt-sc-custom-progress-bar.type1 .vc_single_bar .vc_label > span { float:right; position:absolute; right:10px; color:#333; }
.dt-sc-custom-progress-bar.type1 .vc_single_bar .vc_bar { border-radius: 0; }
.vc_progress_bar.dt-sc-custom-progress-bar .vc_general.vc_single_bar .vc_label { text-shadow:inherit !important; }
.dt-sc-custom-progress-bar.type2 .dt-sc-progress-bar-wrapper > .dt_vc_label { color: #616161; display: inline-block; font-family: "lato",sans-serif; font-size: 14px; line-height: 40px; padding-right: 27px; text-align: right; width: 35%; }
.dt-sc-custom-progress-bar.vc_progress_bar.type2 .vc_general.vc_single_bar > .vc_label { display:none; }
.dt-sc-custom-progress-bar.vc_progress_bar.type2 .vc_single_bar { background-color: #d8d8d8; display: inline-block; height: 6px; overflow: hidden; width: 64%; }
.dt-sc-custom-progress-bar.type3 .vc_single_bar { height:15px; background-color: #e6e6e6; width:100%; margin-bottom:40px; overflow:visible;  }
.dt-sc-custom-progress-bar.type3 .vc_general.vc_single_bar .vc_label { padding:0; top:-25px; font-family: "lato",sans-serif; font-size: 14px; color: #616161 !important; }
.dt-sc-custom-progress-bar.type3 .vc_single_bar .vc_label_units { position:absolute; right:0; top:-25px; font-family: "lato",sans-serif; font-size: 14px; color: #616161; }
.dt-sc-custom-progress-bar.type3 > h2 { margin-bottom:45px; } .dt-sc-donutchart-medium, .dt-sc-donutchart-small { display:inline-block; position:relative; }
.dt-sc-donutchart { margin-bottom:25px; font-weight:400; display:inline-block; color:#222; position:relative; }
.dt-sc-donutchart-title { font-weight:bold; font-size:16px; color:#222; }
.dt-sc-donutchart-title, .dt-sc-donutchart-medium, .dt-sc-donutchart-small { text-align:center; }
.dt-sc-donutchart-medium p, .dt-sc-donutchart-small p { font-size:14px; font-family:'lato', sans-serif; color:#616161; }
.dt-sc-donutchart-medium:before { content:""; min-width:55%; height:10px; background-color:#ebeff0; right:76%; top:74px; position:absolute; z-index:-1; }
.first .dt-sc-donutchart-medium:before, .first .dt-sc-donutchart-small:before, .dt-sc-donutchart-medium.type3:before, .dt-sc-donutchart-small.type3:before { display:none; }
.dt-sc-donutchart-small:before { content:""; min-width:70%; height:10px; background-color:#ebeff0; right:70%; top:50px; position:absolute; z-index:-1; }
.dt-sc-donutchart-small.type2:before { top:60px; }
.dt-sc-donutchart-medium.type2:before { top:80px; }
.dt-sc-one-half .dt-sc-donutchart-small:before { min-width:85%; right:60%; }
.dt-sc-one-third .dt-sc-donutchart-small:before { min-width:77%; right:65%; }
.dt-sc-one-sixth .dt-sc-donutchart-small:before { min-width:50%; right:80%; }
.dt-sc-one-half .dt-sc-donutchart-medium:before { min-width:77%; right:63%; }
.dt-sc-one-third .dt-sc-donutchart-medium:before { min-width:65%; right:70%; }
.dt-sc-donutchart-medium, .dt-sc-donutchart-small { float:left; width:100%; }
.dt-sc-donutchart-medium.type2:before, .dt-sc-donutchart-small.type2:before { border-top: 1px dashed #d9d9d9; background:none; }
.dt-sc-donutchart-medium.type2 p { color:#222; }
.dt-sc-donutchart-medium.type2 .dt-sc-donutchart-title { font-size:18px; }
.dt-sc-donutchart-medium .dt-sc-donutchart > div { font-size:30px !important; }
.dt-sc-donutchart-small .dt-sc-donutchart > div { font-size:22px !important; }
.dt-sc-custom-pie-chart .vc_pie_chart_value, .dt-sc-custom-pie-chart .vc_pie_chart_back, .dt-sc-custom-pie-chart.vc_pie_chart canvas { width:175px !important; height:175px !important; }
.dt-sc-custom-pie-chart .vc_pie_chart_value { line-height:175px !important; font-size: 22px !important; }
.vc_pie_chart.dt-sc-custom-pie-chart .vc_pie_wrapper { width:175px !important; margin-bottom:20px; } .dt-sc-tooltip-top, .dt-sc-tooltip-right, .dt-sc-tooltip-bottom, .dt-sc-tooltip-left { color: #212121; display: inline-block; text-align: center; }
.dt-sc-boxed-tooltip.dt-sc-tooltip-top, .dt-sc-boxed-tooltip.dt-sc-tooltip-right, .dt-sc-boxed-tooltip.dt-sc-tooltip-bottom, .dt-sc-boxed-tooltip.dt-sc-tooltip-left { background-color:#f8f8f8; padding:10px 20px; margin-top:10px; }
#tiptip_holder { display:none; position:absolute; top:0; left 0; z-index:99999; }		
#tiptip_holder.tip_top { padding-bottom:5px; }		 
#tiptip_holder.tip_bottom { padding-top:5px; }		 
#tiptip_holder.tip_right { padding-left:5px; }		 
#tiptip_holder.tip_left { padding-right:5px; }
#tiptip_content { padding:3px 7px; font-size:11px; color:#212121; background-color:#eaeaea; line-height:normal; }		
#tiptip_arrow { position:absolute; border-color:transparent; border-style:solid; border-width:7px; height:0; width:0; }	
#tiptip_holder.tip_top #tiptip_arrow { border-top-color:#eaeaea; }		
#tiptip_holder.tip_bottom #tiptip_arrow { border-bottom-color:#eaeaea; }		
#tiptip_holder.tip_right #tiptip_arrow { border-right-color:#eaeaea; }		 
#tiptip_holder.tip_left #tiptip_arrow { border-left-color:#eaeaea; }
#tiptip_holder.tip_top #tiptip_arrow_inner { margin-top:-7px; margin-left:-6px; }
#tiptip_holder.tip_bottom #tiptip_arrow { margin-top:-13px; margin-left:19px; }		 
#tiptip_holder.tip_right #tiptip_arrow { margin-top:4px !important; margin-left:-13px !important; }
#tiptip_holder.tip_left #tiptip_arrow { margin-top:4px !important; margin-left:0px !important; right:-8px; left:auto; }
#tiptip_arrow.tooltip-custom-arrow { border-width:7px; }
#tiptip_content.tooltip-custom-content { padding:10px 15px; border-radius:5px; font-size:13px; background-color:#333; color:#fff; }
#tiptip_holder.tip_top #tiptip_arrow.tooltip-custom-arrow { border-top-color:#333; }
#tiptip_holder.tip_bottom #tiptip_arrow.tooltip-custom-arrow { border-bottom-color:#333; }		
#tiptip_holder.tip_right #tiptip_arrow.tooltip-custom-arrow { border-right-color:#333; }		 
#tiptip_holder.tip_left #tiptip_arrow.tooltip-custom-arrow { border-left-color:#333; }
#tiptip_holder.tip_right #tiptip_arrow.tooltip-custom-arrow { margin:0 !important; left:-9px; top:11px; }
#tiptip_holder.tip_bottom #tiptip_arrow.tooltip-custom-arrow { left:65px; top:-9px; margin:0 !important; }	
#tiptip_holder.tip_left #tiptip_arrow.tooltip-custom-arrow { right:-9px; top:11px; margin:0 !important; } .dt-sc-team { float:left; width:100%; margin-bottom:20px; text-align:center; position:relative; }
.dt-sc-team.type2{ text-align:left; }
.dt-sc-team .image { display:block; float:left; width:100%; padding: 0 0 35px; position:relative; }
.dt-sc-team .image img { border-radius: 50%; position:relative; box-shadow:0 0 0 5px #eaeaea; -webkit-box-shadow:0 0 0 5px #eaeaea; -moz-box-shadow:0 0 0 5px #eaeaea; overflow:hidden; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; -ms-transition: all 0.5s ease; transition: all 0.5s ease; }
.dt-sc-team:hover .image img { animation:team-bounceOut .4s linear; -webkit-animation:team-bounceOut .4s linear; -moz-animation:team-bounceOut .4s linear; -o-animation:team-bounceOut .4s linear; -ms-animation:team-bounceOut .4s linear; }
.dt-sc-team.type2 .image img { margin-bottom:20px; float:left; }
.dt-sc-team.type2 .image { padding:0; float:left; margin-right:34px; width:auto; text-align:center; }
.dt-sc-team .team-details { clear: both; float: left; text-align: center; width: 100%; }
.dt-sc-team h6 { font-weight: bold; margin-bottom: 5px; clear:both; line-height:12px; }
.dt-sc-team p { font-weight: normal; margin-bottom: 15px; font-style:italic;}
.dt-sc-team.type2 p { margin-bottom: 20px; }
.dt-sc-team.type2 > p { font-style:normal; }
.dt-sc-team.type3 .image img { border-radius:0; position:relative; -webkit-transition: all 0.35s ease; -moz-transition: all 0.35s ease; -o-transition: all 0.35s ease; -ms-transition: all 0.35s ease; transition: all 0.35s ease; }
.dt-sc-team.type3:hover .image img { animation:none; transform:scale(0.98); -webkit-transform:scale(0.98); -o-transform:scale(0.98); -ms-transform:scale(0.98); -moz-transform:scale(0.98); }
.dt-sc-team.type4 { text-align:left; position:relative; }
.dt-sc-team.type4 .team-details { text-align:left; clear:none; width:71%; }
.dt-sc-team.type4 .image { float:left; width:23%; margin-right:4%; margin-left:6px; position:relative; padding:0; }
.dt-sc-social-icons li { float:left; display:inline-block; padding:0; }
.dt-sc-social-icons { display:inline-block; }
.post-author-details .dt-sc-social-icons li a { font-size:24px; color:#9c9c9c; line-height:48px; padding:0 16px; }
.dt-sc-social-icons li a { border-width:1px 1px 1px 0px; border-style:solid; border-color:#eaeaea; display:inline-block; text-align:center; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; padding:0px 14px; font-size:16px; color:#888888; line-height:40px; float:left; position:relative; overflow:hidden; z-index:2; }
.dt-sc-social-icons li:first-child a { border-left:1px solid #eaeaea; }
.dt-sc-social-icons li a:hover, .post-author-details .dt-sc-social-icons li a:hover { color:#ffffff; }
.dt-sc-social-icons.without-border li a { border:none; }
.dt-sc-team .dt-sc-social-icons li a { padding:0; width:37px; }
.dt-sc-timeline-wrapper { float:left; width:100%; position:relative; }
.dt-sc-timeline-wrapper:before { content:""; background-color:#eaeaea; width:5px; height:100%; position:absolute; left:0; right:0; margin:0 auto; border-radius:2px; } 
.dt-sc-timeline-team { float:left; width:100%; }
.dt-sc-timeline-team .dt-sc-team.type4 .image:before { border-color: transparent #eaeaea transparent transparent; border-style: solid; border-width: 8px; content: ""; display: block; height: 0; position: absolute; left:-20px; top:0; bottom:0; margin:auto; width: 0; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-timeline-team.right .dt-sc-team.type4 { padding-left:30px; }
.dt-sc-timeline-team.left .dt-sc-team.type4 { padding-right:20px; }
.dt-sc-timeline-team .dt-sc-team.type4 .image:after { content:""; width:11px; height:11px; border:5px solid #fff; border-radius:100%; position:absolute; left:-56px; top:0; bottom:0; margin:auto; box-shadow:0 0px 7px 3px rgba(0, 0, 0, 0.15); -moz-box-shadow:0 0px 7px 3px rgba(0, 0, 0, 0.15); -webkit-box-shadow:0 0px 7px 3px rgba(0, 0, 0, 0.15); -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-timeline-team.left .dt-sc-team.type4 .image { float:right; margin:0 10px 0 0; }
.dt-sc-timeline-team.left .dt-sc-team.type4 .image:before { right:-20px; left:inherit; transform:rotate(180deg); -webkit-transform:rotate(180deg); -ms-transform:rotate(180deg); -o-transform:rotate(180deg); }
.dt-sc-timeline-team.left .dt-sc-team.type4 .image:after { right:-54px; left:inherit; }
.dt-sc-timeline-team.left .dt-sc-team.type4 .team-details { text-align:right; }
.dt-sc-timeline-team .dt-sc-team.type4:hover .image img { box-shadow:0 0 0 5px #44607b; -webkit-box-shadow:0 0 0 5px #44607b; -moz-box-shadow:0 0 0 5px #44607b; animation:none; }
.dt-sc-timeline-team .dt-sc-team.type4:hover .image:before { border-color: transparent #44607b transparent transparent; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-timeline-team .dt-sc-team.type4:hover .image:after { background-color:#222; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-team.type5 .image img { border-radius:0; box-shadow:none; float:left; }
.dt-sc-team.type5 { border:1px solid #eaeaea; padding-bottom:25px; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-team.type5 .dt-sc-social-icons { position:absolute; left:0; right:0; margin:0 auto; bottom:-27px; }
.dt-sc-team.type5 .dt-sc-social-icons li a { background-color:#fff; color:#68696d; }
.dt-sc-team.type5 .dt-sc-social-icons li a:hover { color:#fff; }
.dt-sc-team.type5 .dt-sc-social-icons li { float:none; }
.dt-sc-team.type5 .dt-sc-social-icons li a { margin-left:0px; }
.dt-sc-team.type5:hover .image img { box-shadow:none !important; animation: none; -webkit-animation: none; -moz-animation: none; -ms-animation: none; }
.dt-sc-team.type5 .image { padding:0; margin-bottom:20px; }
.dt-sc-team.type5 .image-overlay { width:100%; height:100%; position:absolute; top:0; left:0; bottom:0px; right:0; margin:auto; opacity:0; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-team.type5:hover .image-overlay { opacity:1; }
.dt-sc-team.type5 .dt-sc-team-content { color:#fff; position:absolute; top:0; bottom:0; margin:auto; padding:18px; height:180px; overflow:hidden; }
.dt-sc-team.type5 .dt-sc-team-content p { font-size:14px; font-style:normal; color:#fff; margin-bottom:25px; top:-100%; position:relative; transition-delay:0.3s !important; -webkit-transition-delay:0.3s !important; -moz-transition-delay:0.3s !important; -ms-transition-delay:0.3s !important; -o-transition-delay:0.3s !important; -webkit-transition:all 0.5s ease 0s; -moz-transition:all 0.5s linear 0s; -o-transition:all 0.5s linear 0s; -ms-transition:all 0.5s linear 0s; transition:all 0.5s linear 0s; }
.dt-sc-team.type5 .dt-sc-team-content a { padding:7px 15px; border:1px solid #fff; text-transform:uppercase; font-size:14px; bottom:-100px; position:relative; transition-delay:0.3s !important; -webkit-transition-delay:0.3s !important; -moz-transition-delay:0.3s !important; -ms-transition-delay:0.3s !important; -o-transition-delay:0.3s !important; -webkit-transition:all 0.5s linear 0s; -moz-transition:all 0.5s linear 0s; -o-transition:all 0.5s linear 0s; -ms-transition:all 0.5s linear 0s; transition:all 0.5s linear 0s; background-color:#fff; }
.dt-sc-team.type5:hover .dt-sc-team-content p { top:0; }
.dt-sc-team.type5:hover .dt-sc-team-content a { bottom:0; } 
.dt-sc-team.type5 .dt-sc-team-content a:hover { color:#616161; border:1px solid #333; }
.dt-sc-team.type5 h6 { margin-bottom:5px; }
.dt-sc-team.type5 .team-details p { font-size:15px; font-style:normal; color:#ed4a52; }
.dt-sc-team.type6 .image img { border-radius:0; box-shadow:inherit; }
.dt-sc-team.type6:hover .image img { animation:0s; -webkit-animation:0s; -o-animation:0s; -ms-animation:0s; -moz-animation:0s; }
.dt-sc-team.type6 > p { color:#222; padding:0 20px 15px; clear:both; } 
.dt-sc-team.type6 h6 a { color:#2c3e50; } 
.dt-sc-team.type6 .team-details p { color:#92a7bb; }
.dt-sc-team.type6 .dt-sc-social-icons li a { color:#68696d; }
.dt-sc-team.type6 { background-color:#f8f8f8; padding-bottom:15px; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.dt-sc-team.type6 .dt-sc-social-icons li a:hover { color:#fff; }
.dt-sc-team.type6:hover { box-shadow:0 0 3px 0px #60a8ff; }
.dt-sc-social-icons.socialicons-bgcolor-hover li a:hover, .dt-sc-social-icons.socialicons-textcolor li a:hover, .dt-sc-social-icons.without-border li a:hover { background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor-hover li a:before { content: ""; height: 0; left: 0; position: absolute; top: 0; transition: all 0.3s ease 0s; -moz-transition: all 0.3s ease 0s; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; -ms-transition: all 0.3s ease 0s; width: 100%; z-index:-1; overflow:hidden; }
.dt-sc-social-icons.socialicons-bgcolor-hover li a:hover:before { height:100%; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .facebook:hover:before { background-color:#3b5998; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .twitter:hover:before { background-color:#00aced; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .googleplus:hover:before { background-color:#C63D2D; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .pinterest:hover:before { background-color:#910101; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .youtube:hover:before { background-color:#C4302B; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .delicious:hover:before { background-color:#3399ff; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .deviantart:hover:before { background-color:#4dc47d; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .digg:hover:before { background-color:#000; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .facebooksquare:hover:before { background-color:#3b5998; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .google:hover:before { background-color:#C63D2D; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .weibo:hover:before { background-color:#d52b2a; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .reddit:hover:before { background-color:#ff4500; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .yahoo:hover:before { background-color:#400191; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .vimeosquare:hover:before { background-color:#aad450; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .stumbleupon:hover:before { background-color:#eb4823 ; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .linkedin:hover:before { background-color:#007bb6; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .skype:hover:before { background-color:#00aff0; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .dribbble:hover:before { background-color:#ea4c89; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .flickr:hover:before { background-color:#FE0883; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .tumblr:hover:before { background-color:#32506d; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .behance:hover:before { background-color:#2897d0; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .facebook:hover { border-color:#3b5998; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .twitter:hover { border-color:#00aced; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .googleplus:hover { border-color:#C63D2D; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .pinterest:hover { border-color:#910101; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .youtube:hover { border-color:#C4302B; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .delicious:hover { border-color:#3399ff; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .deviantart:hover { border-color:#4dc47d; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .digg:hover { border-color:#000; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .facebooksquare:hover { border-color:#3b5998; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .google:hover { border-color:#C63D2D; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .weibo:hover { border-color:#d52b2a; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .reddit:hover { border-color:#ff4500; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .yahoo:hover { border-color:#400191; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .vimeosquare:hover { border-color:#aad450; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .stumbleupon:hover { border-color:#eb4823 ; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .linkedin:hover { border-color:#007bb6; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .skype:hover { border-color:#00aff0; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .dribbble:hover { border-color:#ea4c89; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .flickr:hover { border-color:#FE0883; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .tumblr:hover { border-color:#32506d; }
.dt-sc-social-icons.socialicons-bgcolor-hover li .behance:hover { border-color:#2897d0; }
.dt-sc-social-icons.socialicons-bgcolor li a, .post-author-details .dt-sc-social-icons.socialicons-bgcolor li a { color:#fff; }
.dt-sc-social-icons.socialicons-bgcolor li .facebook { background-color:#3b5998; border-color:#3b5998; }
.dt-sc-social-icons.socialicons-bgcolor li .twitter { background-color:#00aced; border-color:#00aced; }
.dt-sc-social-icons.socialicons-bgcolor li .googleplus { background-color:#C63D2D; border-color:#C63D2D; }
.dt-sc-social-icons.socialicons-bgcolor li .pinterest { background-color:#910101; border-color:#910101; }
.dt-sc-social-icons.socialicons-bgcolor li .youtube { background-color:#C4302B; border-color:#C4302B; }
.dt-sc-social-icons.socialicons-bgcolor li .delicious { background-color:#3399ff; border-color:#3399ff; }
.dt-sc-social-icons.socialicons-bgcolor li .deviantart { background-color:#4dc47d; border-color:#4dc47d; }
.dt-sc-social-icons.socialicons-bgcolor li .digg { background-color:#000; border-color:#000; }
.dt-sc-social-icons.socialicons-bgcolor li .facebooksquare { background-color:#3b5998; border-color:#3b5998; }
.dt-sc-social-icons.socialicons-bgcolor li .google { background-color:#C63D2D; border-color:#C63D2D; }
.dt-sc-social-icons.socialicons-bgcolor li .weibo { background-color:#d52b2a; border-color:#d52b2a; }
.dt-sc-social-icons.socialicons-bgcolor li .reddit { background-color:#ff4500; border-color:#ff4500; }
.dt-sc-social-icons.socialicons-bgcolor li .yahoo { background-color:#400191; border-color:#400191; }
.dt-sc-social-icons.socialicons-bgcolor li .vimeosquare { background-color:#aad450; border-color:#aad450; }
.dt-sc-social-icons.socialicons-bgcolor li .stumbleupon { background-color:#eb4823; border-color:#eb4823; }
.dt-sc-social-icons.socialicons-bgcolor li .linkedin { background-color:#007bb6; border-color:#007bb6; }
.dt-sc-social-icons.socialicons-bgcolor li .skype { background-color:#00aff0; border-color:#00aff0; }
.dt-sc-social-icons.socialicons-bgcolor li .dribbble { background-color:#ea4c89; border-color:#ea4c89; }
.dt-sc-social-icons.socialicons-bgcolor li .flickr { background-color:#FE0883; border-color:#FE0883; }
.dt-sc-social-icons.socialicons-bgcolor li .tumblr { background-color:#32506d; border-color:#32506d; }
.dt-sc-social-icons.socialicons-bgcolor li .behance { background-color:#2897d0; border-color:#2897d0; }
.dt-sc-social-icons.socialicons-bgcolor li .facebook:hover { color:#3b5998; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .twitter:hover { color:#00aced; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .googleplus:hover { color:#C63D2D; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .pinterest:hover { color:#910101; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .youtube:hover { color:#C4302B; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .delicious:hover { color:#3399ff; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .deviantart:hover { color:#4dc47d; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .digg:hover { color:#000; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .facebooksquare:hover { color:#3b5998; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .google:hover { color:#C63D2D; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .weibo:hover { color:#d52b2a; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .reddit:hover { color:#ff4500; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .yahoo:hover { color:#400191; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .vimeosquare:hover { color:#aad450; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .stumbleupon:hover { color:#eb4823; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .linkedin:hover { color:#007bb6; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .skype:hover { color:#00aff0; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .dribbble:hover { color:#ea4c89; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .flickr:hover { color:#FE0883; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .tumblr:hover { color:#32506d; background-color:inherit; }
.dt-sc-social-icons.socialicons-bgcolor li .behance:hover { color:#2897d0; background-color:inherit; }
.dt-sc-social-icons.socialicons-textcolor li .facebook  { color:#3b5998; border-color:#3b5998; }
.dt-sc-social-icons.socialicons-textcolor li .twitter { color:#00aced; border-color:#00aced; }
.dt-sc-social-icons.socialicons-textcolor li .googleplus { color:#C63D2D; border-color:#C63D2D; }
.dt-sc-social-icons.socialicons-textcolor li .pinterest { color:#910101; border-color:#910101; }
.dt-sc-social-icons.socialicons-textcolor li .youtube { color:#C4302B; border-color:#C4302B; }
.dt-sc-social-icons.socialicons-textcolor li .delicious { color:#3399ff; border-color:#3399ff; }
.dt-sc-social-icons.socialicons-textcolor li .deviantart { color:#4dc47d; border-color:#4dc47d; }
.dt-sc-social-icons.socialicons-textcolor li .digg { color:#000; border-color:#000; }
.dt-sc-social-icons.socialicons-textcolor li .facebooksquare { color:#3b5998; border-color:#3b5998; }
.dt-sc-social-icons.socialicons-textcolor li .google { color:#C63D2D; border-color:#C63D2D; }
.dt-sc-social-icons.socialicons-textcolor li .weibo { color:#d52b2a; border-color:#d52b2a; }
.dt-sc-social-icons.socialicons-textcolor li .reddit { color:#ff4500; border-color:#ff4500; }
.dt-sc-social-icons.socialicons-textcolor li .yahoo { color:#400191; border-color:#400191; }
.dt-sc-social-icons.socialicons-textcolor li .vimeosquare { color:#aad450; border-color:#aad450; }
.dt-sc-social-icons.socialicons-textcolor li .stumbleupon { color:#eb4823; border-color:#eb4823; }
.dt-sc-social-icons.socialicons-textcolor li .linkedin { color:#007bb6; border-color:#007bb6; }
.dt-sc-social-icons.socialicons-textcolor li .skype { color:#00aff0; border-color:#00aff0; }
.dt-sc-social-icons.socialicons-textcolor li .dribbble { color:#ea4c89; border-color:#ea4c89; }
.dt-sc-social-icons.socialicons-textcolor li .flickr { color:#FE0883; border-color:#FE0883; }
.dt-sc-social-icons.socialicons-textcolor li .tumblr { color:#32506d; border-color:#32506d; }
.dt-sc-social-icons.socialicons-textcolor li .behance { color:#2897d0; border-color:#2897d0; }
.dt-sc-social-icons.socialicons-textcolor li .facebook:hover { background-color:#3b5998; }
.dt-sc-social-icons.socialicons-textcolor li .twitter:hover { background-color:#00aced; }
.dt-sc-social-icons.socialicons-textcolor li .googleplus:hover { background-color:#C63D2D; }
.dt-sc-social-icons.socialicons-textcolor li .pinterest:hover { background-color:#910101; }
.dt-sc-social-icons.socialicons-textcolor li .youtube:hover { background-color:#C4302B; }
.dt-sc-social-icons.socialicons-textcolor li .delicious:hover { background-color:#3399ff; }
.dt-sc-social-icons.socialicons-textcolor li .deviantart:hover { background-color:#4dc47d; }
.dt-sc-social-icons.socialicons-textcolor li .digg:hover { background-color:#000; }
.dt-sc-social-icons.socialicons-textcolor li .facebooksquare:hover { background-color:#3b5998; }
.dt-sc-social-icons.socialicons-textcolor li .google:hover { background-color:#C63D2D; }
.dt-sc-social-icons.socialicons-textcolor li .weibo:hover { background-color:#d52b2a; }
.dt-sc-social-icons.socialicons-textcolor li .reddit:hover { background-color:#ff4500; }
.dt-sc-social-icons.socialicons-textcolor li .yahoo:hover { background-color:#400191; }
.dt-sc-social-icons.socialicons-textcolor li .vimeosquare:hover { background-color:#aad450; }
.dt-sc-social-icons.socialicons-textcolor li .stumbleupon:hover { background-color:#eb4823; }
.dt-sc-social-icons.socialicons-textcolor li .linkedin:hover { background-color:#007bb6; }
.dt-sc-social-icons.socialicons-textcolor li .skype:hover { background-color:#00aff0; }
.dt-sc-social-icons.socialicons-textcolor li .dribbble:hover { background-color:#ea4c89; }
.dt-sc-social-icons.socialicons-textcolor li .flickr:hover { background-color:#FE0883; }
.dt-sc-social-icons.socialicons-textcolor li .tumblr:hover { background-color:#32506d; }
.dt-sc-social-icons.socialicons-textcolor li .behance:hover { background-color:#2897d0; }
.dt-sc-social-icons.socialicons-textcolor li a:hover { color:#fff; }
.dt-sc-social-icons.socialicons-bgcolor-hover li a:hover { color:#fff !important; }
.dt-sc-social-icons.socialicons-textcolor.without-border li a:hover { color:inherit; background-color:inherit; }
.dt-sc-social-icons.rounded-corner li:first-child a { border-radius:5px 0 0 5px; }
.dt-sc-social-icons.rounded-corner li:last-child a { border-radius:0px 5px 5px 0px; } .dt-sc-partner-carousel-wrapper { clear: both; display: block; float: left; margin: 0; padding: 0; position: relative; width: 100%; }
.dt-sc-partner-carousel li { display: block; float: left; margin: 0 40px; text-align: center; padding:0; }
.dt-sc-partner-carousel{ float:left; width:100%; margin-bottom:0; }
.dt-sc-partner-carousel img:hover, .partner-carousel img:hover { opacity: 0.7; -webkit-transition:all 0.5s ease 0s; -moz-transition:all 0.5s linear 0s; -o-transition:all 0.5s linear 0s; -ms-transition:all 0.5s linear 0s; transition:all 0.5s linear 0s; } .dt-sc-events-list { float:left; width:100%; position:relative; padding:0 0 10px 100px; margin-bottom:30px; }
.dt-sc-events-list .event-meta { position:absolute; left:0; padding:0; text-align:center; }
.dt-sc-events-list .event-meta .date { width:80px; height:80px; line-height:26px; font-size:20px; margin:0; padding:0; border:1px solid; border-radius:50%; position:relative; }
.dt-sc-events-list .event-meta .date span { left: 0; margin: 0 auto; position: absolute; right: 0; top: 14px; }
.dt-sc-events-list .event-details { display:block; margin:0; padding:0; }
.dt-sc-events-list .event-details h4 { margin-bottom:5px; font-size:30px; font-weight:300; }
.dt-sc-events-list .event-metadata .fa { margin-right:5px; }
.dt-sc-events-list.featured-event .event-details .event-body p { font-size:16px; line-height:30px; font-weight:300; }
.dt-sc-events-list.featured-event .event-body { margin-top:20px; }
.dt-sc-events-list.featured-event .event-details h4 { margin-bottom:10px; font-size:40px; }
.dt-sc-events-list .event-details .event-metadata p { font-size:14px; }
.dt-sc-events-list.featured-event .event-details .event-metadata p { font-size:16px; }
.dt-sc-events-list.featured-event { padding-left:140px; }
.dt-sc-events-list.featured-event .event-meta .date { width:108px; height:108px; font-size:25px; }
.dt-sc-events-list.featured-event .event-meta .date span { top:26px; color:#fff; } .videoItem, .imageItem { display:block; position:relative; }
.videoItem:before, .imageItem:before { font-family:FontAwesome; font-size:29px; position:absolute; left:0; right:0; top:0; bottom:0; margin:auto; color:rgba(255, 255, 255, 0.8); text-align:center; width:20px; height:20px; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s; }
.videoItem:before { content:"\f04b"; padding:20px; border:8px solid rgba(255, 255, 255, 0.8); border-radius:50%; }
.imageItem:before { content:"\f03e"; width:auto; font-size:48px; }
.videoItem:hover:before, .imageItem:hover:before { color:#fff; -webkit-animation:0.7s ease-in pulse; -moz-animation:0.7s ease-in pulse; animation:0.7s ease-in pulse; -o-animation:0.7s ease-in pulse; border-color:#fff; border-width:10px; } .wpcf7-form p span { float:left; width:100%; position:relative; }	
.wpcf7-form input[type="submit"] { margin-top:10px; }
.fullwidth-button input[type="submit"] { width:100%; }
.dt-sc-contact-info { float:left; width:100%; }
.dt-sc-contact-info p{ color:#616161; float:left; width:100%; display:block; clear:both; margin-bottom:20px; }	
.dt-sc-contact-info .fa { margin:0px 10px 10px 0px; float:left; display:inline-block; font-size:13px; top:5px; position:relative; } 
.dt-sc-contact-info a:hover { color:#616161; -webkit-transition:all 300ms linear 0s; -moz-transition:all 300ms linear 0s; -o-transition:all 300ms linear 0s; -ms-transition:all 300ms linear 0s; transition:all 300ms linear 0s;  }
.dt-sc-contact-detail { display:block; margin-bottom:30px; clear:both; }
.dt-sc-contact-info.type2 { border:1px solid #eaeaea; }
.dt-sc-contact-info.type2 .dt-sc-contact-detail h4 { margin-bottom:5px; }
.dt-sc-contact-info.type2 .dt-sc-contact-detail p { margin-bottom:10px; }
.contact-icon { float:left; width:100%; border-top:1px solid #eaeaea; }
.dt-sc-contact-info.type2 .contact-icon { padding:16px 0 6px 30px; background-color:#f8f8f8; }
.dt-sc-contact-info.type2 .dt-sc-contact-detail { padding:15px 0 5px 30px; float:left; width:100%; margin:0; }
.dt-sc-contact-info.type2 .fa { margin:0; font-size:20px; color:#fff; border-radius:50%; width:40px; height:40px; top:0; text-align:center; line-height:40px; top:-5px; margin-right:10px; }
.dt-sc-contact-info.type2 .contact-icon h4 { margin:0; line-height:25px; }
.dt-sc-contact-info.type2 .contact-icon h4 a { color:#222; }
.dt-sc-contact-info.type3 p .fa { font-size:13px; font-weight:normal; float:left; font-family:FontAwesome; margin:0px 7px 0px 0px; padding-bottom:5px;}
.dt-sc-contact-info.type3 p span { margin-right:10px; }
.dt-sc-contact-info.type3 p:nth-of-type(2n){ margin-bottom:20px; }
.dt-sc-contact-info.type3 p { margin-bottom:2px; }
.dt-sc-working-hours { float:left; width:100%; }
.dt-sc-working-hours span { font-family:'lato', sans-serif; font-weight:bold; color:#222; float:left; width:180px; }
.dt-sc-working-hours p:last-child span { float:none; }
.dt-sc-location-detail { float:left; width:100%; clear:both; }
.dt-sc-location-detail h6 { font-size:13px; font-weight:bold; }
.dt-sc-location-detail ul li a{ position:relative; line-height:22px; padding-left:5px; color:#222; }
.dt-sc-location-detail ul li { list-style-type:square; color:#3b4146; padding:0; }
.dt-sc-location-detail ul li a:hover { color:#3b4146; }
.dt-sc-location-detail.type2 ul { display:block; text-align:center; }
.dt-sc-location-detail.type2 ul li { display:inline-block;  padding: 0 20px 0 15px; font-size: 15px; position:relative; }
.dt-sc-location-detail.type2 ul li:before { content:"\f041"; font-family:FontAwesome; position:absolute; left:0; top:0; }
.dt-sc-content-highlighter { display:inline-block; }
.dt-sc-content-highlighter.with-pointer { position:relative; }
.dt-sc-content-highlighter .fa { margin-right:5px; }
.dt-sc-content-highlighter.with-pointer > span { border-color: transparent; border-style: solid; border-width: 20px 15px 0 0; bottom: -17px; content: ""; display: block; height: 0; left: -3px; position: absolute; width: 0; transform: rotate(17deg); -webkit-transform: rotate(17deg); -moz-transform: rotate(17deg); -o-transform: rotate(17deg); -ms-transform: rotate(17deg); }
.dt-sc-content-highlighter.with-pointer.pointer-bottom-right > span { border-width:20px 0px 0 13px; right: -3px; transform: rotate(-20deg); -webkit-transform: rotate(-20deg); -moz-transform: rotate(-20deg); -o-transform: rotate(-20deg); -ms-transform: rotate(-20deg); left:auto; }
.dt-sc-content-highlighter.with-pointer.pointer-top-right > span { border-width:13px 20px 0px 0px; right: -17px; transform: rotate(-17deg); -webkit-transform: rotate(-17deg); -moz-transform: rotate(-17deg); -o-transform: rotate(-17deg); -ms-transform: rotate(-17deg); bottom:auto; top:-3px; left:auto; }
.dt-sc-content-highlighter.with-pointer.pointer-top-left > span { border-width:15px 0 0px 25px; left: -21px; transform: rotate(17deg); -webkit-transform: rotate(17deg); -moz-transform: rotate(17deg); -o-transform: rotate(17deg); -ms-transform: rotate(17deg); bottom:auto; top:-3px; } .dt-sc-consultation { float:left; width:100%; background-color:#fff; padding:30px 25px 20px; position:relative; border:2px solid #e3e5e8; }
.dt-sc-consultation:after { position:absolute; content:""; width:100%; height:77px; bottom:-77px; background:url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/form-bg.png) no-repeat; left:0; background-size:100%; }
.contact-type2 input[type=text], .contact-type2 input[type=email], .contact-type2 input[type=text], .contact-type2 textarea { background-color:transparent; border-width: 0 0 1px 0; padding:5px 10px 5px 0; border-radius:0; }
.contact-type2 textarea { height:195px; }
.contact-type2 input[type=submit] { float:none; width:100%; text-transform:uppercase; }
.contact-type2 > p input[type="submit"] { float:right; margin-top:15px; }  
.full-width-section.parallax .dt-sc-consultation { margin-top:-115px; }
.contact-type2 > p.aligncenter input[type="submit"] { float:none; }
.contact-type2 > p .dt-sc-button.type6 { line-height:45px; }
.contact-type2 input[type="text"]:focus, .contact-type2 input[type="email"]:focus, .contact-type2 textarea:focus { outline: none; border-bottom:1px solid; } .dt-sc-reservation-form { float:left; width:100%; border:1px solid #eaeaea; padding:30px; box-shadow:0 0px 4px 0px rgba(0, 0, 0, 0.12); -webkit-box-shadow:0 0px 4px 0px rgba(0, 0, 0, 0.12); -moz-box-shadow:0 0px 4px 0px rgba(0, 0, 0, 0.12); background-color:rgba( 255, 255, 255, 0.9); position:relative; top:0px; z-index:999; border-radius:3px; }
.dt-sc-reservation-form.type2 { top:0; background: inherit; border: none; box-shadow: none; padding: 0; } 
.dt-sc-reservation-form.type2 .selection-box:after { border-radius:0; }
.dt-sc-reservation-form.type2 .selection-box { margin-bottom:10px; }
.dt-sc-reservation-form label { font-size:15px; display:block; }
.parallax-content-bg .dt-sc-reservation-form label { text-align:left; color:#fff; }
.parallax-content-bg .dt-sc-reservation-form.type2 .selection-box { margin-top:10px; }
.dt-sc-reservation-form .button { float:left; margin:2px 0 0 0; width:100%; padding:15px 11px 15px; font-size:15px; min-height:50px; border:none; }
#buttons { float:left; width:100%; padding:0 60px; margin:40px 0 20px 0; }
#buttons .button { margin-right:10px; float:left; }
.dt-sc-reserve-details { float:left; width:100%; padding:0 60px; }
.dt-sc-appointment-schedule-box .dt-sc-personal-info .choose-payment { margin-top:10px; }
.dt-sc-reservation-form.type3 { top:0; }
.dt-sc-reservation-form.type3 .selection-box:after { background-color:#f7f7f7; height:48px; top:1px; right:1px; border-left:1px solid #eaeaea; }
.dt-sc-reservation-form.type3 select, .dt-sc-reservation-form.type3 input { background-color:#fff; border-color:#eaeaea; }
.dt-sc-reservation-form.type3 .selection-box:before { border-top-color:#858585; right:19px; top:2px; }
.dt-sc-reservation-form.type3 .selection-box { margin-bottom:10px; }
.ie9 .dt-sc-reservation-form.type3 .selection-box option { background-color:transparent; }
.ie10 .dt-sc-reservation-form.type3 .selection-box:after { height:49px; top:0; } .dt-sc-fd-menu { float:left; width:100%; margin:0 0 30px 0; }
.dt-sc-fd-menu-item { float:left; display:inline-block; margin-right:15px; }
.dt-sc-fd-menu-item img { max-width:100px; border-radius:50%; }
.dt-sc-fd-menu-details { display:block; overflow:hidden; position:relative; }
.dt-sc-fd-price { float:right; font-size:16px; border-radius:5px; line-height:24px; font-weight:bold; }
.dt-sc-fd-menu-details h3 { font-size:20px; margin-bottom:10px; } .dt-sc-hours-wrapper { float: left; width: 100%; }
.dt-sc-hours-content { background:#f0f0f0 url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/css/images/textured-pattern-light.png) repeat; position:relative; text-align:center; padding:20px 10px 10px; border:7px solid #eaeaea; border-radius:10px; }
.dt-sc-hours-icon { text-align:center; position:relative; display:block; padding:10px 0; }
.dt-sc-hours-icon span { position:absolute; z-index:2; color:#958e88; left:0; right:0; }
.dt-sc-one-half .dt-sc-hours-icon span { top:-41px; }
.dt-sc-hours-icon span { top:-59px; }
.dt-sc-hours-icon:before, .dt-sc-hours-icon:after { content:""; position:absolute; top:0px; min-width:50%; height:2px; background-color:#958e88; }
.dt-sc-hours-icon:before { left:0; transform:rotate(166deg); -moz-transform: rotate(166deg); -webkit-transform: rotate(166deg); -o-transform: rotate(166deg); }
.dt-sc-hours-icon:after { right:0; transform:rotate(14deg); -moz-transform: rotate(14deg); -webkit-transform: rotate(14deg); -o-transform: rotate(14deg); }
.dt-sc-hours-content p { font-size:14px; color:#fff; }
.dt-sc-hours-content h3 { color:#fff; }
.dt-sc-hours-wrapper.type2 .dt-sc-hours-content { padding:30px 10px; }
.dt-sc-hours-wrapper.type2 .dt-sc-hours-content h3, .dt-sc-hours-wrapper.type2 .dt-sc-hours-content p { color:#000; }
.dt-sc-hours-wrapper.type2 .dt-sc-hours-content { background:none; border: none; } .dt-sc-location-wrapper { float:left; width:100%; padding:10px 0; }
.dt-sc-location { float:left; width:100%; margin-bottom:20px; }
.dt-sc-location input[type="radio"] { display:none; }
.dt-sc-location label span { background-color: #ffffff; border: 1px solid #eaeaea; box-shadow: 0 0 0 2px #ffffff inset; cursor: pointer; display: inline-block; height: 16px; margin-right: 10px; padding-bottom: 0; position: relative; top: 4px; transition: all 0.5s ease 0s; width: 16px; z-index: 1; }
.dt-sc-location label { cursor:pointer; }
.dt-sc-search-form .date-icon { color:#858585; right:15px; position: absolute; height: 16px; top: 28px; width: 16px; z-index: 3; font-size:15px; }
.dt-sc-search-form .button { width:100%; font-size:15px; border:none; }
.dt-sc-appoinment-form { float:left; width:100%; padding:20px 15px; border:1px solid #eaeaea; }
.dt-sc-appoinment-form span { float:left; width:100%; }
.dt-sc-appoinment-form input[type="text"], .dt-sc-appoinment-form input[type="email"], .dt-sc-appoinment-form input[type="number"], .dt-sc-appoinment-form input[type="date"], .dt-sc-appoinment-form .selection-box, .dt-sc-appoinment-form select option, .dt-sc-appoinment-form select { background-color:#fff; }
.dt-sc-appoinment-form input[type="submit"] { width:100%; } .dt-sm-entry { float: left; padding-bottom: 25px; width: 100%; position:relative; }
.dt-sm-entry .dt-sm-image { float:left; margin-right:15px; position:relative; top:5px; width:15%; margin-bottom:10px; }
.dt-sm-entry .dt-sm-entry-content { float:left; width:80%; }
.dt-sm-entry .dt-sm-meta { font-size: 13px; margin-bottom: 5px; }
.dt-sm-entry .dt-sm-meta .fa { margin-right: 5px; }
.dt-sm-entry .dt-sm-title h2 { font-size: 18px; }
.dt-sm-meta a { color:#222; } .dt-sc-bmi-frm { display:inline-block; width:100%; position:relative; padding:0px; }
.full-bg h2 { text-transform:uppercase; font-size:30px; margin-bottom:25px; color:#fff; }
.dt-sc-bmi-frm label  { font-size:16px; margin-bottom:10px; display:inline-block; }
.dt-sc-bmi-frm input[name="txtfeet"], .dt-sc-bmi-frm input[name="txtinches"] { width:38.5%; float:left; background:inherit; }
.dt-sc-bmi-frm-detail input[name="txtlbs"] { background:inherit; }
#tblbmicontent .dt-inner-content table td { width:50%; padding:13px 14px; }
.dt-sc-tabs-container.type6 .dt-sc-tabs-frame, .dt-sc-tabs-container.type6 { margin-bottom:0; }
.dt-sc-tabs-container.type6 .dt-sc-tabs-frame-content { margin:0; background:inherit; border: 1px solid #eaeaea; }
.dt-sc-tabs-container.type6 ul.dt-sc-tabs-frame li a.current { margin:0; background-color:#fff; border-color:#edeee8; }
.dt-sc-tabs-container.type6 ul.dt-sc-tabs-frame li a { border-color:#edeee8; }
.dt-sc-tabs-container.type6 ul.dt-sc-tabs-frame li { float:left; }
.dt-sc-tabs-container.type6.dt-bmi .dt-sc-tabs-frame-content { border:none; padding:0; }
.dt-sc-bmi-frm input[type="submit"], .dt-sc-bmi-frm input[type="reset"] { float:none; min-height:49px; padding:10px 20px; text-transform:uppercase; font-size:14px; }
.tblbmi { display:none; }		
.dt-sc-bmi-frm input[name="txtbmi"] { display:inline-block; color:#f6f6f6; float:none; width:105px; margin-bottom:0; margin-top:10px; border:1px solid #eaeaea; text-align:center; min-height:49px; background:transparent; font-size:30px; padding:1px; }
.dt-sc-bmi-frm-detail { background:#fff; display:inline-block; width:64.5%; float:left; padding:40px; border:1px solid #edeee8; }
.dt-sc-bmi-frm .fancyInline { position: relative; top: 7px; margin-left:1px; min-height:49px; }
.dt-sc-bmi-frm .fancyInline:hover { color:#fff; }
.dt-inner-content table { margin-bottom:0; border-left:1px solid #eaeaea; border-right:1px solid #eaeaea; }
.dt-sc-bmi-frm .bmi-result { background:url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/bmi-frm-bg.png) bottom no-repeat #17192d; width:205px; position:absolute; top:0px; right:0px; height:100%; text-align:center; border:1px solid #eaeaea; }
.dt-sc-bmi-frm .bmi-result label { float:none; font-size:20px; color:#fff; display:inline-block; margin:11px 0px 5px 0px }
.fancyInline { text-transform:uppercase; font-weight:500; font-size:16px; }
.dt-sc-paralax.full-paralax4 h2, .dt-sc-paralax .dt-sc-bmi-frm label { color:#ffffff; }
.ajax_subscribe_msg { margin-bottom: 20px; text-align: center; display:inline-block; width:100%; }
.bmi-container ul.dt-sc-tabs-frame > li, .full-paralax4 ul.dt-sc-tabs-frame > li { margin-right:5px; }
.dt-inner-content th { color:#fff; font-weight:bold; font-size:15px; } #footer .textwidget .dt-sc-social-icons { float:left; margin:0; }
#footer .textwidget .dt-sc-social-icons li { display:inline-block; clear:none; float:left; margin:0px; padding:0; position:relative; }
#footer .textwidget .dt-sc-social-icons li:before { display:none; }
.footer-widgets-wrapper .textwidget .dt-sc-social-icons li a { padding:0 18px; z-index:2; position:relative; }
.copyright .dt-sc-social-icons { margin:0; padding:0; } @media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-devicepixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) {
.dt-sc-pr-tb-col.type3.selected .dt-sc-tb-header { background-image: url(//www.hakluyt.com/wp-content/plugins/buddhathemes-core-features/shortcodes/images/highlight-bg@2x.png); background-size:87px 64px; }
}.pdfembed_url_block .pdfembed_url_field,
.singlefile_url_block .singlefile_url_field {
width: calc(100% - 150px);
vertical-align: middle;
border-right: 0;
border-radius: 4px 0 0 4px;
}
.wpmf_vc_select_pdf,
.wpmf_vc_select_file {
width: 150px;
border-radius: 0 4px 4px 0;
}
.pdfembed_url_block input, .pdfembed_url_block select,
.singlefile_url_block input, .singlefile_url_block select {
font-size: 1em;
width: 100%;
padding: 8px 24px 8px 6px !important;
margin: 0;
}
.wpmf-vc-container {
position: relative;
text-align: center;
}
.wpmf-vc-container .vc-pdf-embed-placeholder {
background: url(//www.hakluyt.com/wp-content/plugins/wp-media-folder/assets/images/pdf_embed_place_holder.svg) no-repeat scroll center center #fafafa;
height: 200px;
border-radius: 2px;
width: 100%;
background-size: auto 60%;
}
.wpmf-vc-container .vc-file-design-placeholder {
background: url(//www.hakluyt.com/wp-content/plugins/wp-media-folder/assets/images/file_design_place_holder.svg) no-repeat scroll center center #fafafa;
height: 200px;
border-radius: 2px;
width: 100%;
background-size: auto 60%;
}
.wpmf-vc-container .vc-gallery-placeholder {
background: url(//www.hakluyt.com/wp-content/plugins/wp-media-folder/assets/images/gallery_place_holder.svg) no-repeat scroll center center #fafafa;
height: 200px;
border-radius: 2px;
width: 100%;
background-size: auto 60%;
}
.wpmf-vc-container .vc-gallery-addon-placeholder {
background: url(//www.hakluyt.com/wp-content/plugins/wp-media-folder/assets/images/gallery_addon_place_holder.svg) no-repeat scroll center center #fafafa;
height: 200px;
border-radius: 2px;
width: 100%;
background-size: auto 60%;
}
.wpmf-vc-container .wpmf-vc-message {
font-size: 13px;
text-align: center;
display: block;
position: absolute;
bottom: 10px;
width: 100%;
left: 0;
}.wpmf-gallery-clear:before,
.wpmf-gallery-clear:after {
content: '';
display: table;
}
.wpmf-gallery-clear:after {
clear: both;
} .wpmf-gallerys {
margin: 5px 0;
}
.wpmf-gallerys .wpmf-gallery {
width: 100%;
margin: 0 auto;
}
.wpmf-gallerys .wpmf-gallery-bottomspace-default {
margin-bottom: 20px;
}
.wpmf-gallerys .wpmf-gallery-bottomspace-ten {
margin-bottom: 10px;
}
.wpmf-gallerys .wpmf-gallery-bottomspace-five {
margin-bottom: 5px;
}
.wpmf-gallerys .wpmf-gallery-bottomspace-none {
margin-bottom: 0;
}
.wpmf-gallerys .gallery-center {
margin-left: auto;
margin-right: auto;
}
.wpmf_remote_video_fe {
position: absolute;
top: 20px;
left: 20px;
z-index: 889;
color:#fff;
}
.gallery-masonry {
position: relative;
min-height: 500px;
width: 100% !important;
}
.gallery-masonry .wpmf-gallery-item {
opacity: 0;
position: absolute;
}
.wpmf-gallery-icon {
position: relative;
}
.gallery-link-post .wpmf-gallery-icon,
.gallery-link-file .wpmf-gallery-icon {
cursor: pointer;
}
.wpmf-gallery-icon .wpmf_gallery_download_icon {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
right: 10px;
top: 10px;
z-index: 999;
width: auto !important;
visibility: hidden;
outline: 0 !important;
}
.wpmf-gallery-icon:hover .wpmf_gallery_download_icon {
visibility: visible;
}
.wpmf-gallery-icon .wpmf_gallery_download_icon span {
color: #fff;
font-size: 24px;
}
.gallery-masonry .wpmf-gallery-item.masonry-brick,
.gallery-masonry .wpmf-gallery-item.wpmf-gallery-item-show,
.wpmf-gallery-divi-wrap .gallery-masonry .wpmf-gallery-item {
opacity: 1;
position: absolute;
}
.gallery-masonry .fusion-builder-live-child-element .wpmf-gallery-item {
opacity: 1;
width: 100%;
position: absolute;
}
.gallery-masonry .fusion-builder-live-child-element.masonry-brick {
opacity: 1;
position: absolute;
}
.gallery-masonry .wpmf_loader_gallery {
position: absolute;
left: calc(50% - 65px);
top: calc(50% - 65px);
}
.wpmf-gallery-item a {
text-decoration: none !important;
}
.wpmf-gallerys .wpmf-gallery .wpmf-gallery-icon a {
display: block;
outline: 0 !important;
}
.wpmf-gallerys .wpmf-gallery .wpmf-gallery-icon a img {
width: 100%;
height: auto;
vertical-align: middle;
}
.wpmf_gallery_default .wpmf-gallery-icon a:not(.wpmfglr_social a, .wpmf_gallery_download_icon, .portfolio_lightbox) {
width: 100% !important;
}
.wpmf_gallery_default .wpmf-gallery-icon a img {
width: 100%;
}
.wpmf-gallerys .gallery.gallery-with-border .wpmf-gallery-icon a {
border: 1px solid #eeeeee;
} .wpmf-gallerys .wpmf-gallery-item .gallery-block {
position: relative;
}
.gallery-block {
margin-top: 5px;
margin-right: 5px;
display: none
} .mfp-close:hover,
.mfp-close:active,
.mfp-close:focus,
.mfp-arrow:hover,
.mfp-arrow:active,
.mfp-arrow:focus {
background-color: transparent;
}
.mfp-bottom-bar *,
.mfp-bottom-bar p {
margin-bottom: 0;
}
.mfp-arrow:hover,
.mfp-arrow:active,
.mfp-arrow:focus {
top: 50%;
}
body .mfp-arrow:active {
margin-top: -55px;
}
.wpmfslick.wpmf-gg-one-columns {
width: calc(100% - 40px);
margin: 0 auto;
}
.wpmfslick .wpmf-gallery-item {
position: relative;
margin: 0 !important;
opacity: 0;
box-sizing: border-box;
}
.wpmfslick.wpmf-gutter-5 .wpmf-gallery-item {
padding: 2.5px;
}
.wpmfslick.wpmf-gutter-10 .wpmf-gallery-item {
padding: 5px;
}
.wpmfslick.wpmf-gutter-15 .wpmf-gallery-item {
padding: 7.5px;
}
.wpmfslick.wpmf-gutter-20 .wpmf-gallery-item {
padding: 10px;
}
.wpmfslick.wpmf-gutter-25 .wpmf-gallery-item {
padding: 12.5px;
}
.wpmfslick.wpmf-gutter-30 .wpmf-gallery-item {
padding: 15px;
}
.wpmfslick.wpmf-gutter-35 .wpmf-gallery-item {
padding: 17.5px;
}
.wpmfslick.wpmf-gutter-40 .wpmf-gallery-item {
padding: 20px;
}
.wpmfslick.wpmf-gutter-45 .wpmf-gallery-item {
padding: 22.5px;
}
.wpmfslick.wpmf-gutter-50 .wpmf-gallery-item {
padding: 25px;
}
.wpmfslick.slick-initialized .wpmf-gallery-item {
opacity: 1 !important;
}
.wpmfslick .slick-prev, .wpmfslick .slick-next {
width: 26px;
height: 26px;
color: transparent !important;
}
.wpmfslick.wpmf-gg-one-columns .slick-next {
right: 15px;
z-index: 9;
}
.wpmfslick.wpmf-gg-one-columns .slick-prev {
left: 15px;
z-index: 9;
}
.wpmfslick .slick-prev:before, .wpmfslick .slick-next:before {
font-size: 26px !important;
color: #bbb !important;
}
.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon {
position: relative;
overflow: hidden;
}
.wpmfslick.wpmf-slick-crop-1 .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: 100%;
content: "";
display: block;
}
.wpmfslick.wpmf-slick-crop-1 .wpmf-gallery-item .wpmf-gallery-icon:after {
content: '' !important;
position: absolute !important;
bottom: 0 !important;
left: 0 !important;
width: 160% !important;
height: 100% !important;
transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1,
45deg
) translate3d(0, -120%, 0) !important;
-webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1,
45deg
) translate3d(0, -120%, 0) !important;
-webkit-transition: transform 0.7s ease 0s !important;
transition: transform 0.7s ease 0s !important;
z-index: 1 !important;
}
.wpmfslick.wpmf-slick-crop-1 .square_thumbnail {
overflow: hidden;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 1;
transition: opacity .1s;
}
.wpmfslick.wpmf-slick-crop-1 .square_thumbnail:after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
.wpmfslick.wpmf-slick-crop-1 .square_thumbnail .img_centered {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: translate(50%, 50%);
}
.wpmfslick.wpmf-slick-crop-1 .square_thumbnail .img_centered img {
transform: translate(-50%, -50%) !important;
position: absolute;
top: 0;
left: 0;
max-height: 100%;
max-width: 100% !important;
width: 100% !important;
height: 100% !important;
object-fit: cover;
padding: 0 !important;
transition: ease all 500ms !important;
}
.wpmfslick.wpmf-slick-crop-0 .wpmf-gallery-icon img:not(.glrsocial_image) {
width: auto !important;
}
.wpmf-slick-text {
color: #ffffff;
position: absolute;
bottom: 0;
left: 0;
right: 0;
box-sizing: border-box;
display: block;
clear: left;
opacity: 0;
width: 90%;
margin: 0 auto;
border-bottom: #eee 1px solid;
z-index: 999;
text-overflow: ellipsis;
overflow: hidden;
}
.wpmf-slick-text span {
color: #ffffff;
bottom: 5px;
font-size: 11px;
transition: all 0.15s linear;
padding-bottom: 7px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
max-width: 100%;
text-align: center;
}
.wpmfslick .wpmf-gallery-item:hover .wpmf-slick-text {
opacity: 1;
bottom: 15px;
transition-duration: 0.3s;
}
.wpmf-gallery-icon a {
border: none !important;
}
.gallery-caption .title {
color: #393939;
font-family: Raleway;
font-size: 16px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
}
.gallery-caption .excerpt {
color: #9a9a9a;
font-family: Raleway;
font-size: 12px;
font-style: normal;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
}
.gallery-masonry .wpmf-gallery-icon {
width: 100%;
position: relative;
margin: 0 auto;
}
.gallery-masonry .wpmf-gallery-icon img.attachment-medium {
width: 100%;
}
.gallery-caption p {
text-align: center !important;
}
.owl-wrapper .wpmf-gallery-icon img {
width: 98%;
}
.owl-wrapper .wp-caption-text.gallery-caption {
width: 98%;
}
.wp-caption-text.gallery-caption {
bottom: 0;
text-align: center !important;
}
.gallery-portfolio .wp-caption-text.gallery-caption {
position: relative !important;
}
.flex-direction-nav.wpmf-direction-nav li {
position: unset !important;
}
.wpmf-direction-nav a {
position: absolute !important;
}
.wpmf_overlay {
position: absolute !important;
width: 100%;
height: 100%;
left: 0;
top: 0;
opacity: 0;
z-index: 1;
background: rgba(10, 6, 6, 0.4);
}
.hover_false .wpmf_overlay {
opacity: 0 !important;
}
.portfolio_lightbox {
position: absolute;
top: 50%;
left: 50%;
margin-top: -18px;
margin-left: -18px;
opacity: 0;
width: 36px;
height: 36px;
text-align: center;
vertical-align: middle;
font-size: 24px;
line-height: 34px;
color: #393939 !important;
background-color: #fff;
border: 1px solid transparent;
border-radius: 2em;
z-index: 999;
transition: opacity .3s ease-in-out, color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out;
}
.portfolio_lightbox.hide_icon {
display: none;
}
.gallery-masonry .wpmf-gallery-icon:hover .wpmf_overlay,
.gallery-portfolio .wpmf-gallery-icon:hover .portfolio_lightbox {
opacity: 1;
}
.portfolio_lightbox:hover {
background: #7c7c7c;
color: #fff !important;
}
.wpmf-gallery-caption {
position: relative !important;
bottom: 0;
text-align: center !important;
margin: 0 auto;
padding: 10px;
}
.wpmf-gallery-caption .title {
color: #393939;
font-family: Raleway;
font-size: 13px !important;
font-weight: 700;
letter-spacing: 2px;
display: inline-block;
width: 100%;
}
.wpmf-gallery-caption .excerpt {
color: #9a9a9a;
font-family: Raleway;
font-size: 12px !important;
font-style: normal;
font-weight: 500;
letter-spacing: 1px;
display: inline-block;
width: 100%;
}
.gallery-portfolio .wpmf-gallery-item {
min-height: 200px;
}
.gallery_default {
width: 100%;
height: auto !important;
display: flex;
flex-wrap: wrap;
}
.gallery_default .wpmf-gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
padding: 7.5px !important;
margin: 0 !important;
position: relative !important;
left: auto !important;
top: auto !important;
}
.wpmf-gallerys .wpmf-gallery-icon img {
margin: 0 auto;
padding: 0 !important;
}
.mfp-title {
display: block !important;
}
.wpmf-front-box {
color: #ffffff;
position: absolute;
bottom: 0;
left: 0;
box-sizing: border-box;
display: block;
clear: left;
width: 100%;
margin: 0 auto;
border-bottom: #eee 1px solid;
z-index: 999;
padding: 5px 10px;
height: max-content;
top: auto !important;
}
.wpmf-gallery-item .wpmf-gallery-icon a {
box-shadow: none !important;
}
.gallery_default figure {
box-sizing: border-box;
}
.wpmf-control-nav {
margin: 0 !important;
top: calc(100% + 10px);
}
.mfp-gallery {
z-index: 99999999 !important;
}
.gallery_default.gallery-columns-1 .wpmf-gallery-item {
width: 100%;
}
.gallery_default.gallery-columns-2 .wpmf-gallery-item {
width: 50% !important;
}
.gallery_default.gallery-columns-3 .wpmf-gallery-item {
width: calc(100% / 3) !important;
}
.gallery_default.gallery-columns-4 .wpmf-gallery-item {
width: 25% !important;
}
.gallery_default.gallery-columns-5 .wpmf-gallery-item {
width: 20% !important;
}
.gallery_default.gallery-columns-6 .wpmf-gallery-item {
width: calc(100% / 6) !important;
}
.gallery_default.gallery-columns-7 .wpmf-gallery-item {
width: calc(100% / 7) !important;
}
.gallery_default.gallery-columns-8 .wpmf-gallery-item {
width: 12.5% !important;
}
.gallery_default.gallery-columns-2 .wpmf-gallery-item:nth-of-type(2n) {
margin-right: 0 !important;
}
.gallery_default.gallery-columns-3 .wpmf-gallery-item:nth-of-type(3n) {
margin-right: 0 !important;
}
.gallery_default.gallery-columns-4 .wpmf-gallery-item:nth-of-type(4n) {
margin-right: 0 !important;
}
.gallery_default.gallery-columns-5 .wpmf-gallery-item:nth-of-type(5n) {
margin-right: 0 !important;
}
.gallery_default.gallery-columns-6 .wpmf-gallery-item:nth-of-type(6n) {
margin-right: 0 !important;
}
.gallery_default.gallery-columns-7 .wpmf-gallery-item:nth-of-type(7n) {
margin-right: 0 !important;
}
.gallery_default.gallery-columns-8 .wpmf-gallery-item:nth-of-type(8n) {
margin-right: 0 !important;
}
.wpmf-has-border-radius-1 .wpmf-gallery-item img,
.wpmf-has-border-radius-1.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-1 .wpmf-gallery-item .wpmf_overlay {
border-radius: 1px
}
.wpmf-has-border-radius-2 .wpmf-gallery-item img,
.wpmf-has-border-radius-2.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-2 .wpmf-gallery-item .wpmf_overlay {
border-radius: 2px
}
.wpmf-has-border-radius-3 .wpmf-gallery-item img,
.wpmf-has-border-radius-3.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-3 .wpmf-gallery-item .wpmf_overlay {
border-radius: 3px
}
.wpmf-has-border-radius-4 .wpmf-gallery-item img,
.wpmf-has-border-radius-4.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-4 .wpmf-gallery-item .wpmf_overlay {
border-radius: 4px
}
.wpmf-has-border-radius-5 .wpmf-gallery-item img,
.wpmf-has-border-radius-5.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-5 .wpmf-gallery-item .wpmf_overlay {
border-radius: 5px
}
.wpmf-has-border-radius-6 .wpmf-gallery-item img,
.wpmf-has-border-radius-6.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-6 .wpmf-gallery-item .wpmf_overlay {
border-radius: 6px
}
.wpmf-has-border-radius-7 .wpmf-gallery-item img,
.wpmf-has-border-radius-7.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-7 .wpmf-gallery-item .wpmf_overlay {
border-radius: 7px
}
.wpmf-has-border-radius-8 .wpmf-gallery-item img,
.wpmf-has-border-radius-8.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-8 .wpmf-gallery-item .wpmf_overlay {
border-radius: 8px
}
.wpmf-has-border-radius-9 .wpmf-gallery-item img,
.wpmf-has-border-radius-9.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-9 .wpmf-gallery-item .wpmf_overlay {
border-radius: 9px
}
.wpmf-has-border-radius-10 .wpmf-gallery-item img,
.wpmf-has-border-radius-10.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-10 .wpmf-gallery-item .wpmf_overlay {
border-radius: 10px
}
.wpmf-has-border-radius-11 .wpmf-gallery-item img,
.wpmf-has-border-radius-11.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-11 .wpmf-gallery-item .wpmf_overlay {
border-radius: 11px
}
.wpmf-has-border-radius-12 .wpmf-gallery-item img,
.wpmf-has-border-radius-12.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-12 .wpmf-gallery-item .wpmf_overlay {
border-radius: 12px
}
.wpmf-has-border-radius-13 .wpmf-gallery-item img,
.wpmf-has-border-radius-13.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-13 .wpmf-gallery-item .wpmf_overlay {
border-radius: 13px
}
.wpmf-has-border-radius-14 .wpmf-gallery-item img,
.wpmf-has-border-radius-14.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-14 .wpmf-gallery-item .wpmf_overlay {
border-radius: 14px
}
.wpmf-has-border-radius-15 .wpmf-gallery-item img,
.wpmf-has-border-radius-15.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-15 .wpmf-gallery-item .wpmf_overlay {
border-radius: 15px
}
.wpmf-has-border-radius-16 .wpmf-gallery-item img,
.wpmf-has-border-radius-16.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-16 .wpmf-gallery-item .wpmf_overlay {
border-radius: 16px
}
.wpmf-has-border-radius-17 .wpmf-gallery-item img,
.wpmf-has-border-radius-17.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-17 .wpmf-gallery-item .wpmf_overlay {
border-radius: 17px
}
.wpmf-has-border-radius-18 .wpmf-gallery-item img,
.wpmf-has-border-radius-18.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-18 .wpmf-gallery-item .wpmf_overlay {
border-radius: 18px
}
.wpmf-has-border-radius-19 .wpmf-gallery-item img,
.wpmf-has-border-radius-19.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-19 .wpmf-gallery-item .wpmf_overlay {
border-radius: 19px
}
.wpmf-has-border-radius-20 .wpmf-gallery-item img,
.wpmf-has-border-radius-20.wpmfslick .wpmf-gallery-item .wpmf-gallery-icon,
.wpmf-has-border-radius-20 .wpmf-gallery-item .wpmf_overlay {
border-radius: 20px
}
.wpmf-gutterwidth-0 .wpmf-gallery-item {
margin: 0 !important;
}
.wpmf-gutterwidth-5 .wpmf-gallery-item {
margin: 0 5px 5px 0 !important;
}
.wpmf-gutterwidth-10 .wpmf-gallery-item {
margin: 0 10px 10px 0 !important;
}
.wpmf-gutterwidth-15 .wpmf-gallery-item {
margin: 0 15px 15px 0 !important;
}
.wpmf-gutterwidth-20 .wpmf-gallery-item {
margin: 0 20px 20px 0 !important;
}
.wpmf-gutterwidth-25 .wpmf-gallery-item {
margin: 0 25px 25px 0 !important;
}
.wpmf-gutterwidth-30 .wpmf-gallery-item {
margin: 0 30px 30px 0 !important;
}
.wpmf-gutterwidth-35 .wpmf-gallery-item {
margin: 0 35px 35px 0 !important;
}
.wpmf-gutterwidth-40 .wpmf-gallery-item {
margin: 0 40px 40px 0 !important;
}
.wpmf-gutterwidth-45 .wpmf-gallery-item {
margin: 0 45px 45px 0 !important;
}
.wpmf-gutterwidth-50 .wpmf-gallery-item {
margin: 0 50px 50px 0 !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-5 .wpmf-gallery-item {
margin: 0 !important;
padding: 2.5px !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-10 .wpmf-gallery-item {
margin: 0 !important;
padding: 5px !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-15 .wpmf-gallery-item {
margin: 0 !important;
padding: 7.5px !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-20 .wpmf-gallery-item {
margin: 0 !important;
padding: 10px !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-25 .wpmf-gallery-item {
margin: 0 !important;
padding: 12.5px !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-30 .wpmf-gallery-item {
margin: 0 !important;
padding: 15px !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-35 .wpmf-gallery-item {
margin: 0 !important;
padding: 17.5px !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-40 .wpmf-gallery-item {
margin: 0 !important;
padding: 20px !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-45 .wpmf-gallery-item {
margin: 0 !important;
padding: 22.5px !important;
}
.wpmf_gallery_default.wpmf-gutterwidth-50 .wpmf-gallery-item {
margin: 0 !important;
padding: 25px !important;
}
.elementor-element-edit-mode .wpmf-gallerys:not([data-layout="horizontal"]) .gallery-masonry.gallery-columns-1 .wpmf-gallery-item {
width: 100%;
}
.elementor-element-edit-mode .wpmf-gallerys:not([data-layout="horizontal"]) .gallery-masonry.gallery-columns-2 .wpmf-gallery-item {
width: 50% !important;
}
.elementor-element-edit-mode .wpmf-gallerys:not([data-layout="horizontal"]) .gallery-masonry.gallery-columns-3 .wpmf-gallery-item {
width: calc(100% / 3) !important;
}
.elementor-element-edit-mode .wpmf-gallerys:not([data-layout="horizontal"]) .gallery-masonry.gallery-columns-4 .wpmf-gallery-item {
width: 25% !important;
}
.elementor-element-edit-mode .wpmf-gallerys:not([data-layout="horizontal"]) .gallery-masonry.gallery-columns-5 .wpmf-gallery-item {
width: 20% !important;
}
.elementor-element-edit-mode .wpmf-gallerys:not([data-layout="horizontal"]) .gallery-masonry.gallery-columns-6 .wpmf-gallery-item {
width: calc(100% / 6) !important;
}
.elementor-element-edit-mode .wpmf-gallerys:not([data-layout="horizontal"]) .gallery-masonry.gallery-columns-7 .wpmf-gallery-item {
width: calc(100% / 7) !important;
}
.elementor-element-edit-mode .wpmf-gallerys:not([data-layout="horizontal"]) .gallery-masonry.gallery-columns-8 .wpmf-gallery-item {
width: 12.5% !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-5 .wpmf-gallery-item {
margin: 0 !important;
padding: 2.5px !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-10 .wpmf-gallery-item {
margin: 0 !important;
padding: 5px !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-15 .wpmf-gallery-item {
margin: 0 !important;
padding: 7.5px !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-20 .wpmf-gallery-item {
margin: 0 !important;
padding: 10px !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-25 .wpmf-gallery-item {
margin: 0 !important;
padding: 12.5px !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-30 .wpmf-gallery-item {
margin: 0 !important;
padding: 15px !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-35 .wpmf-gallery-item {
margin: 0 !important;
padding: 17.5px !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-40 .wpmf-gallery-item {
margin: 0 !important;
padding: 20px !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-45 .wpmf-gallery-item {
margin: 0 !important;
padding: 22.5px !important;
}
.elementor-element-edit-mode .gallery-masonry.wpmf-gutterwidth-50 .wpmf-gallery-item {
margin: 0 !important;
padding: 25px !important;
}
.wpmf-viewport {
display: block !important;
box-sizing: border-box !important;
}
.wpmf-gg-one-columns .wpmf-gallery-item {
margin: 0 !important;
padding: 0 !important;
}
.gallery_life:not(.wpmfslick.wpmf-slick-crop-0, .no_ratio) .square_thumbnail,
.wpmf_square_thumbnail { position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 1;
transition: opacity .1s;
}
.gallery_life:not(.wpmfslick.wpmf-slick-crop-0, .no_ratio) .square_thumbnail:after,
.wpmf_square_thumbnail:after{
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
}
.gallery_life:not(.wpmfslick.wpmf-slick-crop-0, .no_ratio) .square_thumbnail .img_centered,
.wpmf_square_thumbnail .img_centered {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform: translate(50%, 50%);
z-index: 1;
}
.gallery_life:not(.wpmfslick.wpmf-slick-crop-0, .no_ratio) .square_thumbnail .img_centered img,
.wpmf_square_thumbnail .img_centered img {
transform: translate(-50%, -50%) !important;
position: absolute;
top: 0;
left: 0;
max-height: 100%;
max-width: 100% !important;
width: 100% !important;
height: 100% !important;
object-fit: cover;
padding: 0 !important; }
.gallery_life.ratio_default:not(.wpmf-slick-crop-0) .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: 100%;
content: "";
display: block;
}
.gallery_life.ratio_1_1:not(.wpmf-slick-crop-0) .wpmf-gallery-item .wpmf-gallery-icon:before,
.gallery_comments_item .img_box_box {
padding-top: 100%;
content: "";
display: block;
}
.gallery_life.ratio_3_2 .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: calc(100%/3*2);
content: "";
display: block;
}
.gallery_life.ratio_2_3 .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: calc(100%/2*3);
content: "";
display: block;
}
.gallery_life.ratio_4_3 .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: calc(100%/4*3);
content: "";
display: block;
}
.gallery_life.ratio_3_4 .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: calc(100%/3*4);
content: "";
display: block;
}
.gallery_life.ratio_16_9 .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: calc(100%/16*9);
content: "";
display: block;
}
.gallery_life.ratio_9_16 .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: calc(100%/9*16);
content: "";
display: block;
}
.gallery_life.ratio_21_9 .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: calc(100%/21*9);
content: "";
display: block;
}
.gallery_life.ratio_9_21 .wpmf-gallery-item .wpmf-gallery-icon:before {
padding-top: calc(100%/9*21);
content: "";
display: block;
} .wpmf-mfp-zoom-in.mfp-image-loaded .mfp-content {
opacity: 1 !important;
}
.wpmf-mfp-zoom-in .mfp-figure, .wpmf-mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler {
opacity: 0;
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
-webkit-transform: scale(0.95);
-ms-transform: scale(0.95);
transform: scale(0.95);
}
.wpmf-mfp-zoom-in.mfp-bg,
.wpmf-mfp-zoom-in .mfp-preloader {
-webkit-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
z-index: 999999;
}
.wpmf-mfp-zoom-in.mfp-image-loaded .mfp-figure, .wpmf-mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler {
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.wpmf-mfp-zoom-in.mfp-ready.mfp-bg,
.wpmf-mfp-zoom-in.mfp-ready .mfp-preloader {
opacity: 0.8;
}
.wpmf-mfp-zoom-in.mfp-removing .mfp-figure, .wpmf-mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler {
-webkit-transform: scale(0.95);
-ms-transform: scale(0.95);
transform: scale(0.95);
opacity: 0;
}
.wpmf-mfp-zoom-in.mfp-removing.mfp-bg,
.wpmf-mfp-zoom-in.mfp-removing .mfp-preloader {
opacity: 0;
}
.mfp-iframe-scaler {
overflow: visible; }
.mfp-zoom-out-cur {
cursor: auto;
}
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: pointer;
}
.wpmf-mfp-zoom-in button.mfp-close:hover {
background-color: transparent !important;
color: #fff;
border: 0 !important;
}
@media screen and (max-width: 450px) {
.gallery_default.gallery-columns-3 .wpmf-gallery-item,
.gallery_default.gallery-columns-4 .wpmf-gallery-item,
.gallery_default.gallery-columns-5 .wpmf-gallery-item,
.gallery_default.gallery-columns-6 .wpmf-gallery-item,
.gallery_default.gallery-columns-7 .wpmf-gallery-item,
.gallery_default.gallery-columns-8 .wpmf-gallery-item,
.gallery_default.gallery-columns-9 .wpmf-gallery-item {
width: 50% !important;
}
}
.components-button:focus:not(:disabled){
box-shadow:none;outline:none
}