@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1.2s;
animation-duration: 1.2s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
transform: translateY(-15px);
}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
60% {
-webkit-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-15px);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
20%, 40%, 60%, 80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate(15deg);
-ms-transform: rotate(15deg);
transform: rotate(15deg);
}
40% {
-webkit-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
}
60% {
-webkit-transform: rotate(5deg);
-ms-transform: rotate(5deg);
transform: rotate(5deg);
}
80% {
-webkit-transform: rotate(-5deg);
-ms-transform: rotate(-5deg);
transform: rotate(-5deg);
}
100% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
@keyframes tada {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
10%, 20% {
-webkit-transform: scale(0.9) rotate(-3deg);
-ms-transform: scale(0.9) rotate(-3deg);
transform: scale(0.9) rotate(-3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale(1.1) rotate(3deg);
-ms-transform: scale(1.1) rotate(3deg);
transform: scale(1.1) rotate(3deg);
}
40%, 60%, 80% {
-webkit-transform: scale(1.1) rotate(-3deg);
-ms-transform: scale(1.1) rotate(-3deg);
transform: scale(1.1) rotate(-3deg);
}
100% {
-webkit-transform: scale(1) rotate(0);
-ms-transform: scale(1) rotate(0);
transform: scale(1) rotate(0);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
0% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
transform: translateX(0%);
}
}
@keyframes wobble {
0% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
15% {
-webkit-transform: translateX(-25%) rotate(-5deg);
-ms-transform: translateX(-25%) rotate(-5deg);
transform: translateX(-25%) rotate(-5deg);
}
30% {
-webkit-transform: translateX(20%) rotate(3deg);
-ms-transform: translateX(20%) rotate(3deg);
transform: translateX(20%) rotate(3deg);
}
45% {
-webkit-transform: translateX(-15%) rotate(-3deg);
-ms-transform: translateX(-15%) rotate(-3deg);
transform: translateX(-15%) rotate(-3deg);
}
60% {
-webkit-transform: translateX(10%) rotate(2deg);
-ms-transform: translateX(10%) rotate(2deg);
transform: translateX(10%) rotate(2deg);
}
75% {
-webkit-transform: translateX(-5%) rotate(-1deg);
-ms-transform: translateX(-5%) rotate(-1deg);
transform: translateX(-5%) rotate(-1deg);
}
100% {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
-ms-transform: scale(.9);
transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px);
}
80% {
-webkit-transform: translateY(-10px);
-ms-transform: translateY(-10px);
transform: translateY(-10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(30px);
-ms-transform: translateX(30px);
transform: translateX(30px);
}
80% {
-webkit-transform: translateX(-10px);
-ms-transform: translateX(-10px);
transform: translateX(-10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes bounceInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateX(-30px);
-ms-transform: translateX(-30px);
transform: translateX(-30px);
}
80% {
-webkit-transform: translateX(10px);
-ms-transform: translateX(10px);
transform: translateX(10px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes bounceInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
60% {
opacity: 1;
-webkit-transform: translateY(-30px);
-ms-transform: translateY(-30px);
transform: translateY(-30px);
}
80% {
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
transform: scale(.3);
}
}
@keyframes bounceOut {
0% {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
25% {
-webkit-transform: scale(.95);
-ms-transform: scale(.95);
transform: scale(.95);
}
50% {
opacity: 1;
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}
100% {
opacity: 0;
-webkit-transform: scale(.3);
-ms-transform: scale(.3);
transform: scale(.3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes bounceOutDown {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes bounceOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
20% {
opacity: 1;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes bounceOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
20% {
opacity: 1;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(2000px);
-ms-transform: translateY(2000px);
transform: translateY(2000px);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-20px);
-ms-transform: translateX(-20px);
transform: translateX(-20px);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
transform: translateX(20px);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-20px);
-ms-transform: translateY(-20px);
transform: translateY(-20px);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
-ms-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateX(-10deg);
-ms-transform: perspective(400px) rotateX(-10deg);
transform: perspective(400px) rotateX(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateX(10deg);
-ms-transform: perspective(400px) rotateX(10deg);
transform: perspective(400px) rotateX(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotateY(-10deg);
-ms-transform: perspective(400px) rotateY(-10deg);
transform: perspective(400px) rotateY(-10deg);
}
70% {
-webkit-transform: perspective(400px) rotateY(10deg);
-ms-transform: perspective(400px) rotateY(10deg);
transform: perspective(400px) rotateY(10deg);
}
100% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px) rotateX(0deg);
-ms-transform: perspective(400px) rotateX(0deg);
transform: perspective(400px) rotateX(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateX(90deg);
-ms-transform: perspective(400px) rotateX(90deg);
transform: perspective(400px) rotateX(90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px) rotateY(0deg);
-ms-transform: perspective(400px) rotateY(0deg);
transform: perspective(400px) rotateY(0deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotateY(90deg);
-ms-transform: perspective(400px) rotateY(90deg);
transform: perspective(400px) rotateY(90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
-ms-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: translateX(-20%) skewX(30deg);
-ms-transform: translateX(-20%) skewX(30deg);
transform: translateX(-20%) skewX(30deg);
opacity: 1;
}
80% {
-webkit-transform: translateX(0%) skewX(-15deg);
-ms-transform: translateX(0%) skewX(-15deg);
transform: translateX(0%) skewX(-15deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
-webkit-transform: translateX(0%) skewX(0deg);
-ms-transform: translateX(0%) skewX(0deg);
transform: translateX(0%) skewX(0deg);
opacity: 1;
}
100% {
-webkit-transform: translateX(100%) skewX(-30deg);
-ms-transform: translateX(100%) skewX(-30deg);
transform: translateX(100%) skewX(-30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(-200deg);
-ms-transform: rotate(-200deg);
transform: rotate(-200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: center center;
-ms-transform-origin: center center;
transform-origin: center center;
-webkit-transform: rotate(200deg);
-ms-transform: rotate(200deg);
transform: rotate(200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
-ms-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
100% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
100% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
-ms-transform: translateX(-2000px);
transform: translateX(-2000px);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
transform: translateX(2000px);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
}
100% {
opacity: 0;
-webkit-transform: translateX(2000px);
-ms-transform: translateX(2000px);
transform: translateX(2000px);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
100% {
opacity: 0;
-webkit-transform: translateY(-2000px);
-ms-transform: translateY(-2000px);
transform: translateY(-2000px);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform: rotate(0);
-ms-transform: rotate(0);
transform: rotate(0);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate(80deg);
-ms-transform: rotate(80deg);
transform: rotate(80deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40% {
-webkit-transform: rotate(60deg);
-ms-transform: rotate(60deg);
transform: rotate(60deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
80% {
-webkit-transform: rotate(60deg) translateY(0);
-ms-transform: rotate(60deg) translateY(0);
transform: rotate(60deg) translateY(0);
opacity: 1;
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
100% {
-webkit-transform: translateY(700px);
-ms-transform: translateY(700px);
transform: translateY(700px);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translateX(-100%) rotate(-120deg);
-ms-transform: translateX(-100%) rotate(-120deg);
transform: translateX(-100%) rotate(-120deg);
}
100% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
-webkit-transform: translateX(0px) rotate(0deg);
-ms-transform: translateX(0px) rotate(0deg);
transform: translateX(0px) rotate(0deg);
}
100% {
opacity: 0;
-webkit-transform: translateX(100%) rotate(120deg);
-ms-transform: translateX(100%) rotate(120deg);
transform: translateX(100%) rotate(120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}.wp-pagenavi {
clear: both;
}
.wp-pagenavi a, .wp-pagenavi span {
text-decoration: none;
border: 1px solid #BFBFBF;
padding: 3px 5px;
margin: 2px;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
border-color: #000;
}
.wp-pagenavi span.current {
font-weight: bold;
}.mega-menu-last-modified-1604474712 { content: 'Wednesday 4th November 2020 07:25:12 UTC'; }
#mega-menu-wrap-primary #mega-menu-primary ul, #mega-menu-wrap-primary #mega-menu-primary li, #mega-menu-wrap-primary #mega-menu-primary p, #mega-menu-wrap-primary #mega-menu-primary img:not(.mega-menu-logo), #mega-menu-wrap-primary #mega-menu-primary div, #mega-menu-wrap-primary #mega-menu-primary a {
color: #666;
font-family: inherit;
font-size: 14px;
background: none;
border: 0;
border-radius: 0;
margin: 0;
opacity: 1;
padding: 0;
position: relative;
right: auto;
top: auto;
bottom: auto;
left: auto;
text-align: left;
text-transform: none;
vertical-align: baseline;
box-shadow: none;
list-style-type: none;
line-height: 1.7;
box-sizing: border-box;
float: none;
overflow: visible;
display: block;
min-height: 0;
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
transition: none;
text-decoration: none;
width: auto;
clip: auto;
height: auto;
outline: none;
visibility: inherit;
pointer-events: auto;
}
#mega-menu-wrap-primary #mega-menu-primary ul:before, #mega-menu-wrap-primary #mega-menu-primary li:before, #mega-menu-wrap-primary #mega-menu-primary p:before, #mega-menu-wrap-primary #mega-menu-primary img:not(.mega-menu-logo):before, #mega-menu-wrap-primary #mega-menu-primary div:before, #mega-menu-wrap-primary #mega-menu-primary a:before, #mega-menu-wrap-primary #mega-menu-primary ul:after, #mega-menu-wrap-primary #mega-menu-primary li:after, #mega-menu-wrap-primary #mega-menu-primary p:after, #mega-menu-wrap-primary #mega-menu-primary img:not(.mega-menu-logo):after, #mega-menu-wrap-primary #mega-menu-primary div:after, #mega-menu-wrap-primary #mega-menu-primary a:after {
display: none;
}
#mega-menu-wrap-primary #mega-menu-primary table, #mega-menu-wrap-primary #mega-menu-primary td, #mega-menu-wrap-primary #mega-menu-primary tr, #mega-menu-wrap-primary #mega-menu-primary th {
border: 0;
margin: 0;
padding: 0;
background: none;
}
#mega-menu-wrap-primary, #mega-menu-wrap-primary #mega-menu-primary, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge {
transition: none;
border-radius: 0;
box-shadow: none;
background: none;
border: 0;
bottom: auto;
box-sizing: border-box;
clip: auto;
color: #666;
display: block;
float: none;
font-family: inherit;
font-size: 14px;
height: auto;
left: auto;
line-height: 1.7;
list-style-type: none;
margin: 0;
min-height: auto;
max-height: none;
opacity: 1;
outline: none;
overflow: visible;
padding: 0;
position: relative;
pointer-events: auto;
right: auto;
text-align: left;
text-decoration: none;
text-indent: 0;
text-transform: none;
transform: none;
top: auto;
vertical-align: baseline;
visibility: inherit;
width: auto;
word-wrap: break-word;
white-space: normal;
}
#mega-menu-wrap-primary:before, #mega-menu-wrap-primary #mega-menu-primary:before, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu:before, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:before, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row:before, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column:before, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:before, #mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge:before, #mega-menu-wrap-primary:after, #mega-menu-wrap-primary #mega-menu-primary:after, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-row:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-column:after, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary span.mega-menu-badge:after {
display: none;
}
#mega-menu-wrap-primary {
border-radius: 0;
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary {
background: #fff;
}
}
#mega-menu-wrap-primary.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary a:focus, #mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary input:focus, #mega-menu-wrap-primary.mega-keyboard-navigation #mega-menu-primary li.mega-menu-item a.mega-menu-link:focus {
outline: 3px solid #109cde;
outline-offset: -3px;
}
#mega-menu-wrap-primary.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
outline-offset: 2px;
}
#mega-menu-wrap-primary.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
background: #eee;
color: #222;
font-weight: normal;
text-decoration: none;
border-color: #fff;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
color: #222;
background: #eee;
}
}
#mega-menu-wrap-primary #mega-menu-primary {
visibility: visible;
text-align: center;
padding: 0 0 0 0;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link {
cursor: pointer;
display: inline;
transition: background 200ms linear, color 200ms linear, border 200ms linear;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group {
vertical-align: middle;
display: inline-block;
transition: none;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group .mega-menu-description {
transition: none;
line-height: 1.5;
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link .mega-description-group .mega-menu-description {
font-style: italic;
font-size: 0.8em;
text-transform: none;
font-weight: normal;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
display: flex;
align-items: center;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
flex: 0 0 auto;
align-self: flex-start;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-top > a.mega-menu-link {
display: table-cell;
vertical-align: middle;
line-height: initial;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
display: block;
margin: 0 0 6px 0;
text-align: center;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
display: inline-block;
transition: none;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
display: block;
line-height: 40px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
display: inline-block;
margin: 0 6px 0 0;
text-align: left;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
float: right;
margin: 0 0 0 6px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-animating > ul.mega-sub-menu {
pointer-events: none;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
cursor: inherit;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
cursor: pointer;
}
#mega-menu-wrap-primary #mega-menu-primary p {
margin-bottom: 10px;
}
#mega-menu-wrap-primary #mega-menu-primary input, #mega-menu-wrap-primary #mega-menu-primary img {
max-width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {
display: block;
visibility: hidden;
opacity: 1;
pointer-events: auto;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {
display: none;
visibility: visible;
opacity: 1;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
display: none;
}
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
opacity: 0;
transition: opacity 200ms ease-in, visibility 200ms ease-in;
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
opacity: 1;
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
opacity: 0;
transform: translate(0, 10px);
transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
opacity: 1;
transform: translate(0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
transform: translate(0, 10px);
transition: transform 200ms ease-in, visibility 200ms ease-in;
}
#mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
transform: translate(0, 0);
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
display: none;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
visibility: visible;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
visibility: inherit;
opacity: 1;
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
float: left;
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a[class^='dashicons']:before {
font-family: dashicons;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link:before {
display: inline-block;
font: inherit;
font-family: dashicons;
position: static;
margin: 0 6px 0 0px;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: inherit;
background: transparent;
height: auto;
width: auto;
top: auto;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
margin: 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
margin: 0 6px 0 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
border-radius: 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right > ul.mega-sub-menu {
right: 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
border-radius: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-menu-item {
position: static;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
margin: 0 0px 0 0;
display: inline-block;
height: auto;
vertical-align: middle;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {
float: right;
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {
margin: 0 0 0 0px;
}
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-float-left {
float: left;
}
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover {
background: #eee;
color: #222;
font-weight: normal;
text-decoration: none;
border-color: #fff;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
background: #eee;
color: #222;
font-weight: normal;
text-decoration: none;
border-color: #fff;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
color: #222;
background: #eee;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
background: #eee;
color: #222;
font-weight: normal;
text-decoration: none;
border-color: #fff;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
color: #222;
background: #eee;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
line-height: 0px;
height: 0px;
padding: 52px 27px 52px 27px;
vertical-align: baseline;
width: auto;
display: block;
color: #222;
text-transform: uppercase;
text-decoration: none;
text-align: left;
text-decoration: none;
background: #fff;
border: 0;
border-radius: 0;
font-family: inherit;
font-size: 13px;
font-weight: normal;
outline: none;
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
line-height: inherit;
display: table-cell;
vertical-align: middle;
}
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
display: none;
}
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {
display: list-item;
margin: 0;
clear: both;
border: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {
float: none;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
border-radius: 0;
border: 0;
margin: 0;
line-height: 40px;
height: 40px;
padding: 0 10px;
background: transparent;
text-align: left;
color: #222;
font-size: 13px;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
width: 100%;
float: left;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
float: left;
min-height: 1px;
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
width: 40%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
width: 60%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
width: 80%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
width: 83.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
width: 14.28571%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
width: 28.57143%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
width: 42.85714%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
width: 57.14286%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
width: 71.42857%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
width: 85.71429%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
width: 12.5%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
width: 37.5%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
width: 62.5%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
width: 87.5%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
width: 11.11111%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
width: 22.22222%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
width: 44.44444%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
width: 55.55556%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
width: 77.77778%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
width: 88.88889%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
width: 10%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
width: 30%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
width: 40%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
width: 60%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
width: 70%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
width: 80%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
width: 90%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
width: 9.09091%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
width: 18.18182%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
width: 27.27273%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
width: 36.36364%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
width: 45.45455%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
width: 54.54545%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
width: 63.63636%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
width: 72.72727%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
width: 81.81818%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
width: 90.90909%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
width: 8.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
width: 41.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
width: 58.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
width: 83.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
width: 91.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
width: 100%;
}
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column.mega-menu-clear {
clear: left;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
padding: 0px 15px 0px 15px;
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
z-index: 999;
border-radius: 0;
background: #fff;
border-top: 3px solid #222;
border-left: 0px solid #222;
border-right: 0px solid #222;
border-bottom: 0px solid #222;
padding: 0px 60px 0px 60px;
position: absolute;
width: 100%;
max-width: none;
left: 0;
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
float: left;
position: static;
width: 100%;
}
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
width: 40%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
width: 60%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
width: 80%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
width: 83.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
width: 14.28571%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
width: 28.57143%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
width: 42.85714%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
width: 57.14286%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
width: 71.42857%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
width: 85.71429%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
width: 12.5%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
width: 37.5%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
width: 62.5%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
width: 87.5%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
width: 11.11111%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
width: 22.22222%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
width: 44.44444%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
width: 55.55556%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
width: 77.77778%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
width: 88.88889%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
width: 10%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
width: 20%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
width: 30%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
width: 40%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
width: 60%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
width: 70%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
width: 80%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
width: 90%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
width: 9.09091%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
width: 18.18182%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
width: 27.27273%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
width: 36.36364%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
width: 45.45455%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
width: 54.54545%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
width: 63.63636%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
width: 72.72727%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
width: 81.81818%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
width: 90.90909%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
width: 8.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
width: 16.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
width: 25%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
width: 33.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
width: 41.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
width: 58.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
width: 66.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
width: 75%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
width: 83.33333%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
width: 91.66667%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
width: 100%;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
margin: 5px 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
clear: both;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
margin-left: 10px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
margin-left: 10px;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
color: #666;
font-family: inherit;
font-size: 14px;
display: block;
float: left;
clear: none;
padding: 0px 15px 0px 15px;
vertical-align: top;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
clear: left;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
color: #555;
font-family: inherit;
font-size: 16px;
text-transform: uppercase;
text-decoration: none;
font-weight: bold;
text-align: left;
margin: 0px 0px 0px 0px;
padding: 0px 0px 5px 0px;
vertical-align: top;
display: block;
visibility: inherit;
border: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
border-color: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link { color: #222;
font-family: inherit;
font-size: 14px;
text-transform: uppercase;
text-decoration: none;
font-weight: normal;
text-align: left;
margin: 0px 0px 0px 0px;
padding: 36px 0px 26px 0px;
vertical-align: top;
display: block;
border-top: 0px solid #ededed;
border-left: 0px solid #ededed;
border-right: 0px solid #ededed;
border-bottom: 1px solid #ededed;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
border-color: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus { color: #fbc02d;
font-weight: normal;
text-decoration: none;
background: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
text-decoration: none;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link { color: #666;
font-family: inherit;
font-size: 14px;
text-transform: none;
text-decoration: none;
font-weight: 300;
text-align: left;
margin: 0px 0px 0px 0px;
padding: 10px 0px 10px 0px;
vertical-align: top;
display: block;
border: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
border-color: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
display: flex;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus { color: #fbc02d;
font-weight: 300;
text-decoration: none;
background: rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {
border: 0;
padding: 10px;
border-radius: 0;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
width: 50%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li:nth-child(odd) {
clear: left;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
color: #666;
font-family: inherit;
font-size: 14px;
text-transform: none;
text-decoration: none;
font-weight: 300;
margin: 0;
border: 0;
padding: 10px 0px 10px 0px;
vertical-align: top;
display: block;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
color: #fbc02d;
font-weight: 300;
text-decoration: none;
background: rgba(0, 0, 0, 0);
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
z-index: 999;
position: absolute;
width: 270px;
max-width: none;
padding: 0px 0px 0px 0px;
border-top: 3px solid #222;
border-left: 0px solid #222;
border-right: 0px solid #222;
border-bottom: 0px solid #222;
background: #fff;
border-radius: 0;
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {
float: left;
position: static;
width: 100%;
padding: 0;
border: 0;
border-radius: 0;
}
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
clear: both;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
display: block;
background: #fff;
color: #666;
font-family: inherit;
font-size: 14px;
font-weight: 300;
padding: 10px 30px 10px 30px;
line-height: 35px;
text-decoration: none;
text-transform: none;
vertical-align: baseline;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
border-bottom-right-radius: 0px;
border-bottom-left-radius: 0px;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
background: #eee;
font-weight: 300;
text-decoration: none;
color: #666;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
position: absolute;
left: 100%;
top: 0;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
position: static;
left: 0;
width: 100%;
}
#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
padding-left: 20px;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
content: '';
font-family: dashicons;
font-weight: normal;
display: inline-block;
margin: 0 0 0 6px;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
transform: rotate(0);
color: inherit;
position: relative;
background: transparent;
height: auto;
width: auto;
right: auto;
line-height: inherit;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
display: inline;
height: auto;
width: auto;
background: transparent;
position: relative;
pointer-events: auto;
left: auto;
min-width: auto;
line-height: inherit;
color: inherit;
font-size: inherit;
padding: 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
float: right;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
content: '';
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
float: right;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
content: '';
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
display: none;
}
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
display: none;
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
content: '';
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
text-align: right;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
float: left;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
content: '';
margin: 0 6px 0 0;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
float: right;
margin: 0 0 0 6px;
}
#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: -100%;
top: 0;
}
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary.mega-menu-accordion > li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
float: right;
}
}
#mega-menu-wrap-primary #mega-menu-primary li[class^='mega-lang-item'] > a.mega-menu-link > img {
display: inline;
}
#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link > img.iclflag {
display: inline;
margin-right: 8px;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-hide-on-mobile, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
display: none;
}
}
@media only screen and (min-width: 993px) {
#mega-menu-wrap-primary #mega-menu-primary li.mega-hide-on-desktop, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
display: none;
}
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary:after {
content: "";
display: table;
clear: both;
}
}
#mega-menu-wrap-primary .mega-menu-toggle {
display: none;
z-index: 1;
cursor: pointer;
background: #fff;
border-radius: 2px 2px 2px 2px;
line-height: 40px;
height: 40px;
text-align: left;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-tap-highlight-color: transparent;
outline: none;
white-space: nowrap;
}
#mega-menu-wrap-primary .mega-menu-toggle img {
max-width: 100%;
padding: 0;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary .mega-menu-toggle {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-ms-flex-preferred-size: 33.33%;
-webkit-flex-basis: 33.33%;
flex-basis: 33.33%;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left {
-webkit-box-flex: 1;
-ms-flex: 1;
-webkit-flex: 1;
flex: 1;
-webkit-box-pack: start;
-ms-flex-pack: start;
-webkit-justify-content: flex-start;
justify-content: flex-start;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
margin-left: 6px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center {
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
margin-left: 3px;
margin-right: 3px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right {
-webkit-box-flex: 1;
-ms-flex: 1;
-webkit-flex: 1;
flex: 1;
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-justify-content: flex-end;
justify-content: flex-end;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
margin-right: 6px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
height: 100%;
outline: 0;
-webkit-align-self: center;
-ms-flex-item-align: center;
align-self: center;
-ms-flex-negative: 0;
-webkit-flex-shrink: 0;
flex-shrink: 0;
}
@media only screen and (max-width: 992px) {
#mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {
background: #fff;
padding: 0px 0px 0px 0px;
display: none;
}
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {
display: block;
}
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 {
cursor: pointer;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1:after {
content: '\f333';
font-family: 'dashicons';
font-size: 24px;
color: #ddd;
margin: 0 0 0 5px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label {
color: #ddd;
font-size: 14px;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-open {
display: none;
}
#mega-menu-wrap-primary .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-label .mega-toggle-label-closed {
display: inline;
}
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1:after {
content: '\f153';
}
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-open {
display: inline;
}
#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open .mega-toggle-block-1 .mega-toggle-label-closed {
display: none;
}
#mega-menu-wrap-primary {
clear: both;
}@font-face{font-family:dashicons;src:url(//siplprojects.in/wp-includes/fonts/dashicons.eot?99ac726223c749443b642ce33df8b800);src:url(//siplprojects.in/wp-includes/fonts/dashicons.eot?99ac726223c749443b642ce33df8b800#iefix) format("embedded-opentype"),url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAHvwAAsAAAAA3EgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAAQAAAAFZAuk8lY21hcAAAAXwAAAk/AAAU9l+BPsxnbHlmAAAKvAAAYwIAAKlAcWTMRWhlYWQAAG3AAAAALwAAADYXkmaRaGhlYQAAbfAAAAAfAAAAJAQ3A0hobXR4AABuEAAAACUAAAVQpgT/9mxvY2EAAG44AAACqgAAAqps5EEYbWF4cAAAcOQAAAAfAAAAIAJvAKBuYW1lAABxBAAAATAAAAIiwytf8nBvc3QAAHI0AAAJvAAAEhojMlz2eJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/Mc4gYGVgYOBhzGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHD4yfHVnAnH1mBgZGIE0CDMAAI/zCGl4nN3Y93/eVRnG8c/9JE2bstLdQIF0N8x0t8w0pSMt0BZKS5ml7F32lrL3hlKmCxEQtzjAhQMRRcEJijhQQWV4vgNBGV4nl3+B/mbTd8+reeVJvuc859znvgL0A5pkO2nW3xcJ8qee02ej7/NNDOz7fHPTw/r/LnTo60ale4ooWov2orOYXXQXPWVr2V52lrPL3qq3WlmtqlZXx1bnVFdVd9TNdWvdXnfWk+tZ9dx6wfvvQ6KgaCraio6iq+/VUbaVHWVX2V0trJb2vXpNtbZaV91YU7fUbXVH3VVPrbvrefnV//WfYJc4M86OS2N9PBCP9n08FS/E6w0agxtDG2P6ProaPY3ljaMaJzVOb1ze2NC4s3Ff46G+VzfRQn8GsBEbM4RN2YQtGMVlMY2v8COGai0Hxm6MjEWxOBZGb+zJArbidjajjUGxJHbgUzwYG/EJPsNDfJLFsYzpXM6Pmcd8Ps1BvB8LGEE7W7KSzdmGA9ifgzmau7ibcUxkB7bnHhZxb+xDgw/yYb7GU/yQp2NgDI9xMZ61sWVsFZtHkxb5+ZgQE2NSdMYmDOM5HmZrfs6H+Cbf4bt8m28xhb2YyjQWciDHxk7RGg2W8DFWxbyYE20cx/GcwImcxKmxWYyIGXr3l7MPp/MAn+PzfIFH+Co/4296Q2v+wdvRHP1iQIyKMTE2ZsZesW8QSzmHi7mFK7iWsziTs7mIG/gAl3Irl3Az13A117GeC7iSdVzIjdzGMXycP/ITfskv+B5PRk/MjT1iCPuyLAbF4Jgds2Jj7uOj7MmX+DI78hfejBa6+Kxmekp0s5TBXM/kiNg29uaNmM5p0c6fmMmMGMbLMZS/8w2+zh78lPFMYFvt9Ul0Moax/IA/s5P2+hy6mcXO7EoPu7F7bM1feSR25wzuZAN3xBasiJGxDSfH9pzLeVzF7NgxtmM0+/FK7MLrvBNTeZSXYlP+wO/5J//SV/2O3/Iiv+EFfs2veDf68xHOj53p5Yt8n72ZG6MZzhoO5wgO4VCO5CgOY3VM4S1epYxdYzKP8QSPx3xu4v7o4Fmdydbo4j1eo+IZbdaW/+Gc/L/82Tj/0zbS/4kVue5YrmzpP3L1Sw3T+SY1mU46qdl05kn9TKef1GL5J6T+popAGmCqDaRWU5UgDTTVC9JGpspB2ti4TOMmpmpC2tRUV0ibmSoMqc1Ua0iDLFfwNNhypU5DTJWINNTQGqRhFos0DrdYrHGExUKNIy16Nbabqhhpc1M9I21hqmykUaYaR9rSyM+7lZGfd2sjP2+HxRKNo01VkTTGVB9JY40HNY6zyGs23lQ9SRNMdZQ00VRRSZNMtZXUaeQ5bmOqt6RtTZWXtJ2pBpO2N1Vj0g6mukza0VShSV2mWk2abKrapClGvtumWuS1mmbkNZ5u5HWdYeQ1m2mq+KRZRl7v2UZ+9p1M9wFpZ9PNQNrFdEeQdjXdFqTdTPcGaXfTDULqNvK6zjHy+vUYed5zjbwee5juHNI8I++f+ca9GheYbiTSQiOfp17TLUVaZLqvSItNNxdpT9MdRtrLdJuR9jae1rjEIu/tpRZ5/y6zyHPZxyLvkX2NtRqXW+R13s8i780VFnmdV1rkc7+/5SKRVhnPazzAIu+7Ay3yuh1kkffdwRZ53x1ikc/0oUY+f6tNNxTpMNOtTFpj5LNyuOmmJh1hurNJR5pub9JRpnucdLTpRicdY7rbSceabnnScUbep8cbeb1PMPKePdHIe/YkI7+fJxt53muN/L1Psch781SLXPNOs8h74HQjv4dnmLoL0plGXuOzLPL+Otsi781zLHINOdfI8zjPyPM438jzuMDI8/iAkedxoZGfcZ1FrlEXWeSzebFFPpeXGLlWXWrkfXSZkffa5Uae3xWmjoh0pak3Il1l6pJIV5v6JdI1ps6JdK2phyJdZ+qmSNeb+irSDaYOi3Sjqdci3WTqukg3G29rvMUi3123WuQ74jaLfEett8j1+3aLXIM3WOQafIdFrk93WuQ9c5dFPmd3W75G0z2mbi8/ah/1fRRh6gDV85t6QYpmU1dI0c/UH1K0mDpFiv6mnpFigKl7pGg19ZEUbaaOkmKQqbekGGzqMimGmPpNiqGmzpNimKkHpRhu6kYpRpj6UoqRpg6Vot3Uq1J0mLpWitGm/pVijKmTpRhr6mkpxpm6W4rxpj6XYoKp46WYaOp9KSaZumCKTlM/TNFl6owpJpt6ZIoppm6ZYqrxpMZpFqrvxXQL1fdihoXqezHTIq/TLFOnTTHbUJ0tui3yGvdYaH3LsNDXlQ0Lvb5sMnXplM2mfp2yn6lzp2wx9fCU/U3dPOUAU19P2Wrq8CnbTL0+5SDjTY2DLXe95RBTEqAcasoElMMs195yuKH6VY4wJQbKkabsQNlu5O/dYcoTlKMNrXs5xiKvwVgL9RblOFPuoBxvvKFxgimLUE40VCvLSRb5Z3aakgpllymzUE429J6VUyzynKYaL2ucZpHnPd2UcihnmPIO5UxT8qGcZcpAlLNNaYiy28jPPsfIz95j5DnOtfybg3IPI89jnpHnMd/I67TAyOu00JSzKHtNiYtqoSl7UfWaUhjVUlMeo1pmSmZU+5gyGtW+prRGtdyU26j2MyU4qhWmLEe10lBvVK0y5Tuq1aakR7XGcq2uDrfIX3+EKQdSHWlKhFRHmbIh1dGGamh1jCkvUh1r5GdZa6E9V51iSpNUpxq6d6vTTAmT6nRT1qQ6w5Qnqc405U+qswy9l9XZFjo71TmmdEq1zpRTqS4y8jpdbLyi8RKLvP6XmvIs1WXGOxovN2VcqitMaZfqSuMljVeZEjDVjaYsTHWTKRVT3WzKx1S3mJIy1a3WN8fbTOmZar0pR1PdbkrUVBtM2ZrqDlPKztdlH+Vt6jAlb+qG8a7GJlMap2425XLqFkN9Rt3flNWpB5hSO3WrKb9Tt5mSPPUgU6anHmzozNRDTDmfeqgp8VMPM2V/6uGG9lw9wtCeq0ca6i/rdkP9Zd1haC/Wow3txXqMoV6zHmtof9fjLFRH6vHGWxonGK9qnGiUGidZ6EzVnRaqR3WX8ZjGycYTGqcaj2ucZqFaUE839N7XM4z7Nc60yPOYZTyrsdvybyfrOUZe7x6L/PPnGu9pnGe8pnG+UWlcYDzzb8iLsxoAeJysvQmcJMdZJ5qRlZmR91F5VWXdZ/bd0511zEzP9PSMPKOrS5JHEpJGI0uyRbUk27KMMMuitVU25lgW+cAyuGt3f17A2Muaw6bHwMIzC5g15jFlMNcaA7vAmp41ZtnfW1h48PbVvC8is46eGZnj97qrIiMjj7i/+H9HfMWwDPyh/wddZTRmnWEaYbfj+cl/F4dYcErIc7BgIAHDv9ftdDtnEASbkL7ZRS98qimf8DXL84pOsbr/qTWMc6Io59OWVFC0WiVfkDTFUbEr5kQX/8mnmgpniLqtmTzGQ7gb0rGH4Q5NKuTLdU0pSJZZUDHOY0yKFpfvV9CvMCpjQGyziBwdVddQaxvZbYyY7uVO5/Jzlzvdy898EP0KjXYuv/mxzvi3Pvt68ih9fohGTJph7GjTKyBHWEa4Xas2T6NWZ3DoFYteNIjcYhGNiu4VtzgY0MMk7y+iX2fKTASxTrsTNsMmruIN2hg4aZJtRFql20GdbvLv+cW4vdBvI4RYLKqYU+or9XVPVZRUyg/8SMnUcjl//ICnYlHgJT29YkoCVvOrC+iHUqwoSIKEkODnc7WMlgm8IMOynpI51lipj39AdxQ/LemylrKkak3J8VxS1hHUM2SOQT/WBOzjUMBurd0McdhthrV21OmGXb/TbUeu53d97PkR3uy0mlXB8dDoONYXOgte0At8OOq42xWMhU7o5XuBB0ddOP6l8urqzurqKOeH8Q30CT/YTZ44flzQQ5LwArltZ5UUKUXL9Qvo5xmJ0UkfICgWlMdvR9h3K22/XXPRMMx99KO5X+i3hsPx1VEfNZPzaGF/f/+lwWD6nq+i/8x4TJU5DnFoYQPpCAYs1MBATRiW28hLkVMyWh2vg7sevWWNpdd8GMzeJvqsaxhu6J7IP2uW18xnsU5OTvz2PxctX/xO0fTVZ0VI8o6fWIb7FtzjhWetyir693AP3KjjZ821svlsnpwYxvhL/1z0TYRpGNFUT9eXZ7dWSLE5WvZr6BpjM3lmielA/7RbzWUU1nCtKsCI9KLKZifc9Byh2mx1/MiKI9EmNA+G7pqcop6hLFf71WXZMGTEKMYw12i0m83RgISBgHv9KI4dXpGNKDJkOBifbLbJXeH4L+nd7LvelXuExqBYUjzJ0G8yPKPADHOZHIz2BrPIQPch2lMGCtswWqCjfHJeilMbPgwtGpArFdKNb37zm+3BINj7+n5/t4XpyX+n4XjQv4r6/auDFmq10H1PPGE///zWQw/bly61lpf3Hn88/fzzaRpGj1y69Ah8dyL4S8b076P/RtuN9jiGDjfYGoznDkw7bzZ8fyJrWdnCPfVjvWYv+6tprZA5dy7UHSfvOOjnsufOZgua+aD4ePQfG68twK3fQi7knckcJ/QhRdqia1UsPnIrVjREzPhwdJ2JBqg3Pggi1EvG4GfRLzMYWqkGcWiITpHF0Dow14GqkG46g9qtbscnFwyE7rv/2P1CxuF+079W0kqFzFNlpewpZSx9FpJtHt+P3gd3YN7xW4VrriaJZcWDW96QLVQvQbKdEe5PaNgfoD9mYDghyKxJhzWZSJTINGOiHHY9Os6Rsv6D6+6G5Vi8trZ9B3ayaU/W5LSB79hedzbSdppHB2s/sK5xEN1wyS1GWtYkP51x8e3bSfp0zo3QFRgXy8ztMGqtVrNWqQquFY/YRkSG7DKi4/M0qpFBugXV72x6rj9/VkDzd7bRyFDGB3QM9xTjOpNVDEPJirI4jQwCcjXACg5IEon0UYukja9C+F2GazQFDFWHyMsk8shNKZN5N2IRrB0R8wBzGVaAqo6cItrcRq015OsIr6Gw021WsQALXgER6t6EZux2Qph7ReRvdrpeClK7HZg/zRDuhgMl8ckS6cGITAG9F3Cne7j97Pb2s28nwTt535RWSrwh2YLEsaInNyqcqAeSXpDa60GR5QwO/x92iuU5JImKUMAqdLaPc4WgYpXltMln3DvfbZQk00McyyRvheCjVh6XI81SBFGxJA1xWgbZnosUxcgG9omKKWrjrzielrUlQ8EplktxUr6TFnguldILS0iqr4Tn0JsESTM4RWFg1s/aaAFWjlPMG29oJRtinS40BtS0RhpICGmjkVUvJO2jo2YXmsrzyaXmOnLXYCKQxvPIdCUDFK7FLUf+BZc0IcS2WeiAuTZTeUlkeV3lUq7Ga6JTNNQ0JxliKFsPWTlWQk7uQmpTcQRsBxBWNZ9nWVZjOY7n0rwoaBiX/BrmIDGFrbKSYhGbUrx7X3/M9eebcPxLWEKiyIoFQ0urCPE4lTJVhDmfFwsZS87ZXAlaS4BLLMe77xQMSYYsDF7UeFbiBMnzcx5b9FRXF6DAdU8xpAa09tqWZTptaE5rrk3TTIYpAK1YYNZgDJ5gdpjzzC5zkXmYeYx5A/PMDW3NR55fa3bbMLIAXvm1dujWyFgjIYZvJPiRW2v6pAlDWELJ9D+N4ABXyHUYpPCGELoJQpKSglO4kzyJ55p6/Ndnkdg1vti0RV6V2Mdqtwui3XyMlZpnOaMrBo9dlB4l1565wEP6ZQTpKfO4yCLpuJFqrqn+sfL/8tXVcnlV9TdKf+lrq+Vj8038f9eqlR+7z2hoeq1aO/8N9xla4w3na9Xz9Ur1wvnqbffqDc249x5I1b8hSa7Wq9VKfa9e8JbPFurL4/9aK3or54q1JW9Kh2h7nmTuuGl84s5kbIUwKEndaSQeeHS0wsgssnS+kqGKJ3fPtUjwNGAuXUqrvMilMvbpNdYo2Xb/LCBRjktrupgXZFHXontdG/NVuRMoJtAkTeXE1JGx9fndlapnq1jGHAFfkrxoq2pu+96Uk81nChYrcDbisF7K6apsqvfV1pqXli1d0hVBlmd49zfQFxgHxg1DAE6yqjRhvmAfIA3vJase+nj2Qvm77E7T/pimbZ4t3XXHXbI+/jD2DMMDBJTV9Y/Zzbb9L8rnN3XlrjvvKu18GhsE/Uzz+RlY9xxY6xlUJQ2yDjO5s+l7CdjHXUDbBTqDq+RiGzB3hBjH0CSBSwmW07MtPgUTQjWcC4VOOVerHrv/WLWaK7ZLyNYVW7e0Zr5czjc1S7cV/dx6tZPfwRIviryEdwrtygSffwHquwXHJmE0CKILm8YU2QHJIFgWlxCBr9toHU0uzI4Avj+j+2njkW2T41Kav6Zxosw5mllWXjl5SbtvLS3sfFAVRN5NYSWluT6HZdYIntR5AX1GEwT99QHQwxQGTKqlZIFzBcxrr2wL6bX7tEsnX1GrmuZwsshpGz45GKcfUhyfFF2gnYbRb1F0WwT0vcXcyzDtShv4AjZcY3G74ls1i9cJAWwDCoXx522jNehZD+gfjM5tBHO9SwhqkRDOW6QhZvtU67zjpHffsHmdObyKHta6gSqaq25g38/JmIUVBF30o4zAszLPLVRsJSVLbErncmdLgsBKAt9ZDdI0zY6w6dkPvKm1cVtGw8F4iPq/EdiaID1hibLW5VNIkgUkKk8akoBkmUdQXM3iWUHm/K6t80iCvJBQtHI8yytceYoTrgBOSAEygkXFrrQrqF1xMRx7qA95RACkaGQAseGwH83G+uQ5QBcVyydPHoyHMMyuMwckgFv5G95vAB6kediAOhsRBPDlJ3kdHqJsD/7G1+Yy3IuG0X70NcpaQNOyQqZHizp5Zjh5pgsd2k3yPdwfAZOyD+hkfPUK5DKXx/T+Btwfwt0ufNHBfmv6wLWoFTGvXj9aL8imFlGIHZevB+HhoNdLyrgfDYd/R91c0qoDWq8oadoj/RDjpF9DP8eYwFvdxzwKJRZqMOXJKh7BEg/TrNuMuX/AcQnPGwJMAoq6eQYR8ttuwVivEaLhRICaYKDDNexWAQH4ruN1XU9nARG2W+jDd97/lsspjl16+vjqgw0eL6dDI4VYw0hjWQC8YhhfcRd0Q4ZJVeU4nWP5XC3dyJR4vAJPuYEmppaW/Ry7cInlJEvWjG8tdRCXaoRBFgkpX+RUJMC6X5M5xGqNFrLSrsyyJU7Scj3ADRmF1dM1zPOsZrCaZfKmGGaUbO2fyWo2rVjmMsOIU16atKMJPFEWaHEFuCI6RslIwW6U8GptwLpd4K3dyZe0+WjcR3vjq6h1rUdY4ZNucbhH/0hahIZwuRf0epSfjqKimw32WnvBXjDpw2uzsYMIk1yxKg3CYR2OW1n6dDBEw1arB3MkCBIaegXKKxIZhwUcAhDKw1Y/OjiI+lCYUT84OAj6zFQecgXtkVFnEylAOBgM4EbUHwyyBwezewaoRWYo8DhosNdH0f7+7BrhCURaNpoVnuWBgiTb6b17cC9P3kNuTXJBcZ7Te3pQHpZKn1APhvPe1x/Np9uuhLRSEYribCaVO5oH4YF8PKRZJDlMrtP3A8CGyYr60/cnbdaoWbQa4bT004xuarMG5X6TCgxvarMeyecM8g/2+gfD4Q3pCEco2BtBHae079MwroDTtr2YlfO9WIBEVgmSoBOWhEJt36OAu0kQ9e9hFokqm0qrvl4IZN8vFng+W1jffMtl11akU43mDm4sSorI1xcUBf1ECnNKWjYV0ZSCjKDywtnOyehksZRqbyxF6/c73idMFKQ9RxcKlj2hR59Evw6UKAPlC2kJfbIA+6SJ12FMYJ+MfsLUhZMItJ/fjRp+F4e1b9D1Vmlrq9TS9ai8tVV+dOnUqQdObS3HEqRzlfbZ+s74z8qdnfoO+mfxfeT+cgT3/+KpB7fg5mwsRMqfUL/3xHee0D54ImmzX4dylZglIg9gdZagO8p9bLNrrE4Hmb/N4ma7u0EkFd0memzzJI4uv3mjvqktSQvFxgMXQn717gcu2Mdekteyl9+8LaJstvcC4tBPwtkbTuIgfbKeK22aNr0Nbm5m7v1gZvOk8EdY4V988WIHsTOaPQLqKQIuNQFHQf/CZOVxFEbJl5AKBOtYfzzid8SI38HwFccjSrtHe9ksjCHyd53IF2MsgT6PPg84YoFpM+cASbyRoKIEruKQoB0ikY3FskB6IblBZbFwreUTmEi6gkoHZidCtZtgSALunG6z1gFcAo8ChiQUXgBSHTkEVaInK2mP01Sd812loe1oWtrQ9ee0hvIRT+fG/zMSTE67y+QcQXiO1yX+OUFbmkQ5/RMQkYXnBD3FvVkWRbG44KQkvZ7VBEtkFcWtB/UsSnNekE2pluundX0HOADHAG7gLZr2MU7XT7R4XrvPFPQXBI17q6Bq3HMCWhLIgcYvvJVX9NRbgHgbb5btpbyIFUkLmpqAjaLipoNcY4Yr/jX0jUAkJg1YjmqwBLVblC1YQ1XBdQBmFaCVSIetIcS4xX7xxaUqAt4x7Zt8dZnNuyjyC0Cb3eJvbNW6MiuximXBlBK7jeN+KO/siM052jAkXB8iazX5EqFeBfKroUGvD6uOjvq6gvot+NOV0UjRp/Laa/Ac4Pxuxa3A6mi1OhHQeiLR6loE4xNJy2aHiqBg6pTJUTGMbWA94NOLVkuoVVodDwHVP4ICgqvHhzwVnKPp+2FCo8hK3r6FrBp5e1RBwyh+5+EhkbCgAGDX3tz7pu1I3nECxiJjAxyB8rnwOSr3EWoTAVByrIaThDYVAfkTMd0oWi/6+cAtFt0A8tA0CKJJJFgtR0PZIBwKOjyIiuue1ysuFUmSfJyjwp9WHHLHyWEvW149OKAMjZHMHbJmS4zP1OnseRuUmXR1t9PuNP1OE2oOk8GLNrudIxxkqhpLdoC9idUL3dm923AVGKFOd9PBG0QgC8QYLpK51N10McFDRC5C2CcBw6vpC18omTkO4ccE3TVyHBYs3TO01e7j3e7jz5Ggu3B7lrO4Uuvhpx9utR5eFXTHDDiZswyn+GjzfMbyMR8UzaKt8Szp6nwG81kvqBRE4XgtYxpcfmV1c/2e9fV70JNL3Ubt7Z4gCx/JlV1rJe2kTbSc5APB+IVCjnf5Ns0IgrfTu2yPrSOpnGM5JH9T2t/2bKyzqRTiX0wvV8sriqyXuML6Pa+7Z500a6KIgeGgAhJqAq06xewyj9+gjfHnmxQfvYKLMFbwNnCQTUzGARkPRP9A5RxRi1A3gw3pCghgdcLOI+bC286ff9t3k+DCuefPnn3+3SQ4t/XU1tZT30SCZ1y7FOpBZeVyaWVle2XlHs0xVMyzbNk1sqrU6XQaviXyLMpxItZVU9FYJnkhBFryQgiyyQshWFHxRjnwhIVcaSUgL91eGRiCqaU1Q+3kHXiZ224j18w5vl0PfJrfhHZfgbki0hm9GNNuuxVCq0B9u5MIbpOpUIgT5+I+UKcbphE8MFHFbVJYsA3tOtE2uXHznkZTdd1hVjZNx9gL6BzaiydGcuhvLPhlL/DK/sKG7S6JtqfaVaJFEpcWDkxHXZIqtmYcu/j6i8d0wy5Ljqc66CCTkwuuacjJ8b2PKIYpHw3M/Lp+xvR9c3eXhGf09eOer6WwxAkCJ+GUtvoWIWWxAD78Xn49l1vP93zFklhRSgkz3oOsoz5TY9aJlHkiR25S4gHw2sGU3vAVEtYqFHbPxxNqBDdCSHiMLn0DunTF9DxzkfXMwPTYRTgZ/+85IXKdKFAM5ToJtymVySe35uEE9aCxME8qxWPSdnFD9uLDruEZk4sQnfAMA6iHDr2/ypxmzjLnmTuZHh0DzXUK59xkJMyfpqgmKB4FUFs6JubPw66LzyDXQPER/6Eqaqqii6q/6g1VUVdUTVS9Vf8VQ45IdSLZGNKQnh9GwBomH/QmM5t2LctNZ82sbWePnI3/dkQeGZFXTGMfCSL6DzglaMF3uq78FNRznWpkiEIG10IhFov7BE/4AvbbaywlpmSF7dJlF2gw+u6qFBiR95rcbV7HCKSaZbP8Yg4bUbCqOCvbq7a8FrRNKb/IszZ6In1XzQvYwSCV82p3WxIyjcoZ05OffJ+49ZqtWg0C8QOvF7PmTsUwETO3Xo0YjeqLAOz4wK/FiNoOuyGGDyBXDGwPYo7dv1Qe991cUC81R48/rpwU/lCNxMcfln/gY2i0Uy6PD1HgZJy86Yy/4+7b5cpz2jdmxNvvVJ5+dkoT0RfRLzH3MA8xTzDPMS8y38F8ANAGUeKtI4d0sJEIvdsT+NUlgxNaCNqDDtFooh1JjvFAjm8g497zw8nS2Z3QTaLFJAMDhhGMEz8eLXESzJPO5Nyfi6Nf8FbP+KIqpSVbIpyApIr+mVXPdNI1lq8EelPiyJoMa00LviTKSaEWVDm2mguuSSYZ9A/FS/N5HtYm+Ka4gHuNxO3CJBd2BfzILtG5kKBEcQgJ/sbfWfW1Zt41RYUXVNF0cw3NX93xZU1eP6nq1ZMuLDuwxGvkWS0O4ZQ1BPdkVVdPrpvWU/F8i+LDBzgVgA+f2hGwCAhzCyuiqOAohkMJLTlEf0TXKTIHATtTxEygMqxDs5NOi5g1kI6aImPPwfz81IQGRYpSVt5PFHLvV9BptaS+T/VJ3HwjSXvjGlHlvZ8E4y8roqpIiiA5hlhFv6Mo71dLPrl2WonvgOD736iUfRWeou/wS+p70jnbteyMHeh+fiq/eRl9gXHpCsKQqUREr2GXcDmeTway3zQQgTCwWgKxCCn2wB7KfmN6uflAczn9gn6ieSbKamo6WN/4pgyAtoWglmnuOIG90/R8M0QXf6Pu2bZX/0Imh+6ub7iKId6lvmOFy6653x14q17AF1zgZyhdZpk5mZTP5IDzqgE/uAyzP2K6zBZzhmEIYvVr7Wjyxf+AOJGYUElWP4r2WsB8R6NXj/SJwAr+WKZHDtGA4OnWII7T8HCfxOZli7/KNJg1qm+Pp2IN+y4O292wGuumCBtAFk8CCrsA9SiAaaIDzcooQdpeNIMgveza2YyMJZF385X1zQvbJfOgHqqNVkMN790pe0Vd5FIrlV4+36uspDhDlUwtY+1g4BV0jNGLJ+85duy+4zP53K8yAZUUE9kKnqAeKMMWonpcWlLCS4fT4lw8HgTH12F9S/mF4nJYDJeLBT8lOO47F+FvUhbE9Or1nuo7DX+bZI7gK2z7DccX0ouL/+ekGNNyjKActzN3Q+uQpqkRAUsVC3F7dD1SlHYLmKcuEUEkIIOQNShTZ9KcIVGdxv8wZXwoNBqaWb2EspcvZ08WskG5ura4uFYtB+O/MhqczYsqLyqGnQHWTeMaJUfLcBxiBfNZU2ARx2U0Z29ra+tQF1KpzusuHw+8E3eIooAR9JUo3tE5rwoZK6jwgoB5nLJM1RRULKT0QFP8ghmGZsFXtEBPCXgleOWV6Ti4hgYwgksQq8zsLU4jAKExiCCWQJDkuUT2TMgf6kPI6+p4qOq6ivqqjgZFl16C4IAkDhRdVxiqtKH2A7GsZImi4/PMa5lLzOvi/CbacuC/mqmbpCYz8cnXuBTjQapXnyZ2iWxhcJ2hBSThoWbZvp3Wjhx6WhoIDJxNDukgnX7O9h04rUCib1vZ67Cqo9F8ZcffBhfgcxluBJj7UHw4uCExk7Gz/vdoaUe5RILjSfpDpEm0ZC3+EtCN0hF6cRsdc/cy98d8qXV0DXRrFBWRvqkK/lzcJis5kIstRMThkYtviE8oC3Dc437PL/l9+B7GK8NBfKBkBpjwPSApyWFICQsajgdokCVwLkvDHbKE7ZD1aBobfwuRm1+jJCdLiU1Aw2iCBW6u6z+sfu2K241VCvQb1wMwaB/A5y3qMWwNSbn30d7fUe5XDg+zV+gfMzcfRolNDWBnGJ90EsTygW6UmhrVDO5WDVMZP6uYhnp3rx9RId4pmOHq+DeUdFpBa6oZjQ9OPXgKPvP2IsSWhtjbkXpYNVxzuxPbpmEPDa5Fg2ul1dUzq6sIyDaMvqB1OEpMxhKbDfRtgKhX6FxiGk6i8OzW1lhCtWsTdEwbNIrDuB0rVMHmT5lMtAMtCA14eRGv7VTD4zhtFx1NbGzWL9Y3G6LmFMb/QzpXcyv4E9B+Jd//KHAJ8MRT1cgTcadZtCu6k200suTr6EW3VKvLQtknAww+Ezz8x+h/EK1fN5HeAl1M7EO2UaxXpclNCgmbVIabcHaYGlRgYi9IFYRHokKUvufC3T1b05S8bsmOKWmeKuCMVlJ9N49QvaaJMse5Ws4GUq+noctLxYqb9pfrHOIlrr6SNhdKHMvLXDFsWOkFs1qK2mWvUijIImfpHAZ4Y2IuhQQ97aTLnKcVlBNphfV0gDKqKRlmRpJUtbyaSUkim8qs5ooLHitjlnXDO7bOMsxMXzECxFWFsc90owln1rYSRo6M/gqu4ckYiKaD4XDCgFF+pacYaLd/qMVd8Fcm6TiPCngUxNBDdLDnQdrkMyfnGhLrLbtC5psPE4hIzPoHrSsB6sH46rUOZ7wmKWuBacIsPU70OVQoUaWrF4YjDjuzczQpKD81zZtE0EglUNXUntXKgdBJERSr7qJ9hYLk8X9SiA7e+P4YM0doS8joZPEwssIPy2k9lCRidqr5+DvRIIa2B0f4y+lcGs3rEOk/mVOjvagf7cWKpGB8OBrN8T5lZgNijoCtCmE3OpSB9qnoipySo1tEKQt7iZghJLo+jEaaMn7Hm3hoVtSAZRVfNjwT0IuibTwoQEcsKjD0LqKPKg43/sSPSjIhNxxvquxH1LTpp1Ip3h7/S1T4PrgCTDebxuy75nEY0c9QCSkwhW7oRlPhEGI2Lh4bXdm4+OT9x47dj5iDYxc3hleOkZMnL27EfDXLoDFgz1Wmw5xktplzzAXmLoKOPaoogVkkEDRPBN3rKBFzA49HzeLaa6gGM6wm+EnHbRoIkBU++kUbNaOUV50sQimOrWP8VdEVfxnjP8Oup7/DAGjCskjVJE9Vc/eLtIt+KP2D6V+efn/A/lz6B230V3WWwJmMq+bKel104QX4l+FVXxXP6S8Zdk5VPUnTUIpNWSLtZwueege84aW571zfEz6mfoOczY4lbLG0DZgC7APLsoEdxBx/Xbf7uudJcHzpwtLShQdIkEml0Au9LNRslFyEYLyfXIXgO1MIdS6++CKvzPPQQ8CGZYbYPLeILBSTgErN3RjMAB8adgkf/SJ/aqmwoRpK0EzVVtp1BFh7/Zcu1teerKPAkJdOl7N8Iyezwma13ulcaH3gtfW119fn5m3lVXLZQu1al8xlSsdvzOZS74UXdh+BrG7OBK70IKN52pCDY+vVq4Lenjq1VNzQZW2uEqsoSFn80mngZ2flvz2a0pFfR78FfXMnc5H5ZrLSUeUCwWik3JR+ABV0CblI6lJt8gQwd6iomTAePiH1XWroFQe+12k3G1N8Rwu8jNzYaN2jGgtPoAnkCpEeVJv/SpRVCTCwkTZYRVUV1kjDoiAi2VnLK36KXauH95cKWSwWyk+t5DVdFRSFNWXTcPzU+K+XycJ9SknBQ1gWJUmRiLxZSxsp8i6k5SWJZWWlgHlN0bEti4Yo29iQDf4Zt1jAjeWF16TTWi57d2OhWDf8vJk2RU1CuiCzrO8ET8bI4EXexrqi8bgAr+NkKS/y8Ir4dbM1hPQTBh4TRl03AcyNmA2HlZ2qRKKQtK4LLdkvekRnMx4V3QM4/H7YbofLGVtR7MyAkNknHRKOogc2Lzu5x4LpuP499HuA0pcSucBUnRZLBKhdEZ/YLPqxgeMZFKLPOW17HeYrdjEeiI6YFkVjzR5/ryMJMi9aaddVV1Tbeddl9DnbXktjnIZ7B6KYxq5ordvta44NN7hu2hJ5WZDgxjm6OIhtX7qRVbPh29sn5iSxrQbDHFnfBBhlDbdrAfFEzHAI38ceG1997LEb7kF8G1t+G42uT25CLbiJTeSTwyQ/K7JIfkQ91aOmKOQ7zY/cR/TlGoqLMiSq7CltuEJl3Izt4nal7eO23+66FTfsuoMIZff2gmh8bW8P9XrNj0a93WiYHGfl3Kd2DaQmoVuzIrdLjAuAyx+h05fHo8uXX3wRRS++OF8vYnNDauW3ocxtPBoOye2foVV78cXxVXL35P4gtgWwI8igFu0NBlAUgpjn8SkP6//5yT0NOvWcmIslmpxONyIrB2FxiRiTMr01eiWWvU8vRERwQHM4L+sZ03XNjC6zKSnFcjyyrbKlOarKcXII8A1WEJIuiaqoKBBIHCfxyNLzcel+l5PTQe11tSAtcwDmZFZK1zohAAaJk2XuPQs5XUQSL6UEUbWWLFUUUpLMs6KeY+b3FxApzXGCme3KBNcLFNcjAEaNVoxOyXaCmOndjBUwcTI98XHFrRxHL2tOWh0/r9g2+nZiEQUcuqSnc7pK2M20qSmiwPNQFNWsmyoU5o/pCDq0lfHvahabVtGiYo9HZOjsyTKVoV4h3PKeqXmmY8LH00wRK6L024SeitN+0RgPOChih0w0jncTvSjBZ3S1A1pgT9DXzVASd+NNEtNNFJXplZiZ2ew8gXbcDF3+Mp+K4dmjMTz7TzFoe+nrAMTtxXG0HV96m0GNKfu5czW6uh6vnUPZOK0VI7X48563EdnAcnc+rRe/ipnTTYqMA/U7BjzwvWRVn4h2gYUltmEA7dq41enW4tr6sN633VildpqqJWEMzieRIRmtEXNBmob6MTm3KFvaymcCQFYPXYaA6nWOXfTXgslJZUW+HDhZ7uyjxy4iJibTsQgtCoptR89oduFPdV/vaRkdTnoQfZOgZ/QenEBSFATaos8WbXJhrn4yrLRrgNFuI/jM/sdXJZo2jU+b5fDvXZnvi9tgiUgIUf8fWpW4IQ56u7ukSvP1Kty6XjdXA99Y1VvXi3Q5Dif1+sjRysxquXFDvaBve7uzer3jSEX6R2s5uLFeQOppxebHoworLtmRdPv8eHSPjsOv3Vc39e1kHP6T/datqzep08asnnNjMLh15eZ6aXC0nrfspzv//+mnkFrI/YO7yVy+K3359D+2n966Ak9vz+tGVVqvM6SP5sD/TS0f/p0JlNuaFPrviqK+nsmRYkJweLTM/Vl94KDvkavwTQ5zmG5ELSfrsxVpAmgr7QQq0/WJJ9KvCPdQn0gEBhHZFQTs/gDO0MPjq8HhIdkzdJ2RgezKQUAPRH177cqVYX+ebyFtlbmRYwrn9X4zLumne71o8jnCHR3OXWDm94hhRidWjxE1zfXJDI7aaC8aX23t9waDHuCk0WjY2h8O52wlfx19nuzIRMTGhAzGyVZaujuhGAvbO/EOrm0YeGRnG6zFnSb6abVQvuvsome7fNrAAPEVwRZ5XledQOSB3xZct1sweMPJp5csQUYve7aTquzUC13XJdt9eDlnqzrPi46gmIIi6K7g2h5b2jElKTOzF/499AcUE9qw2vrddRb7tu8JBkv3sX6k8smqUflk/csPKEj+fz9Z/3NTrXxf5ROQ9ok6Wn5AKcrj+if/pyKlZjj+t9FvA75KA11h7JpVadfIrDIQAL12t9M00Bnk9wHBjtBTFTEjQc/uYXa44791EQ3GBxG6rSKyOBiPhn0p8z3+zlsXJ+/9CXQA8zvZQ0oKCJjdI8w80eqip85LCI/eWxzh3On35t+z9978e9EPn5ey4ucL7/m8iO57X/59PwVp0zk1s7WmVltk/PHJEfWvoiygnmx8AJJElFM0ZL7W8/7k+egwsUPv3/T4qz3vJ/mTIzo4PCRm+TS84fGkLd4JmNiAFi5BG1sxO0j2FhAGF7djARyONqk9xPAb26eDohds3Vaq5YNMEC4eD/KQDG29WmlilgsLK4vvvssK08eXfG8OcxP73ijG9RExFjscDK6h4bXeXr/HzMsJeGppTq17bbJBAx/2+9nhsEdD1O+TXb3XGXqY42euUJ4c4He35nb9ShcazweEj6M2DiuY8DgfOHmy3C8/Me4/AYc4joYQR/c/MYbjXvnECQieQP1JfGqL99FYZkLkXgImwnSK5qlQD2YbEa/HWnmAxcxGlNaX9l/XsOwHP/CAbTYe23dVU7Qi9E3d9kYtl4P1qBquv+be+25bDytwpiuGWdlod0lW/LQuRN4d750FnsKtQaZhF/OkLn7Kx1C5CqlleDAcDvZKx59Ezl7pyeOl6taTpfEIolvE2rhfevLE7f3SiSfR7ZXHT5T6EH183qZfjTWZM/IPND0kBnbAqBLBBg4JGoY+BwbWxYkQoYoOEmIOwfcvqJahGJpXMCuNUsNwdbGJ9ayuZ+eXBUXRXeD2bdmo2MWs5RuKIt0rBCqQ+ilWv5aMXzIbParNrBIZCLByRBsTEaaw1iDR5Bslx95h0O9H8LnOHB7AMA/6ox4Z4kE224suPULgZ6/V2o0ich7N2viGvREomW0TXUk8a8jWiMM+0G6YNjD69qiqprXfn7Ph/hcxL4lgduBaN+rCF31L546O8aMmDWHSRdFhazpPR/Pz1AbWaP4/Fr/Ofw8I7qYqoUR/fm0qv/0a+nNi4U/XP3d+G0H89V/lGtF4VZI42RUAte/3okE0aME36s8njAbZEcpCFAHbPOj3e63p3+DatdHBwX6U/O3GqXM6Irpyo1o83rYQVVeR5Zou5TROkZIPLHzv58vtYrFd1kzbjD+BZJrmAI1K7TPt0r5smjKKSDge0XgPbtm72mdmtnNXoG3uZy4zTzBPMU8TqSCwpDCHHYOsuLVuwpOvI+KBoSoQDwcdv0kn9wakwwwgUu4OoXs4hhk+NTskeLUauqS4rdRml7wL+3w0Gz9okDJYIcUv3rFSYgWWZ/mUgkUeiYhs+dwQZRXWUlW3dZno1JEp8KoIHDyHeJlXeMzLoRdxnJOuyOO/uEb/UImFl/Apll9Mp4speI6XOY4kpFhR5j8mcgKv6ByWDZ7VeJ5Np1iOg7U9xad53VRQTby3n9XCYAj/8+0j0l26K8xF5uuodg37Z4iBFSE5wDtSC8GYPGB/mxJAWCbjy5RC+ARguBMMBotEtQntMls/yObSIVRDFdGdh4flFc1ICRw2LFnFqqCoQiplZGFZqtimo8tY5g1Fw1hXFQXrWEs7nqbJWgXWvV4/0CQsn4+CD6WRCvVUDRWzgqDzgiBAPY3A2AzuVjXF4FOqKFiCiVOcLViGrCHE6lYwoTNXbk1nanStxDAN/HbUoAQg/taS40EfZnJACA2aIzTDbJbqbG9FaGZ+Qip/nxGPBv+h3C6V2mUFWHzTIQZSAYxqMth32qUPUYvqiNhIjqlFHSJqnSlNGQFV02FmrRAkAxO8O7WP7t6kjiUG6sTBAqGh6PRt15nXnIplF98XkhePhyQMddRqXd1toVEvCHqJCimAq6NJQaxTp34Q5vvgpjJs3FQG2yJSZ5pWmxkvECM/+ER+Fz5HCvJFkv/4qk7LQ/A7NGgQtDeAqLeywZEijUdxWU6bSdm+eGUwgA+UK6Y5vwj02SaWMd3YCAawMNGDJtvQbpH2F6bipA1htVbbqi2K/Gajsvz5I0nCRrO8/GN5R4fpV7qQ3sy3tm5b74aVm1LmcP5PMQ6lez6RuydapdMo1isR/yLraCY4Rs/lTfPfGavGCcMgh3d9RBS72MM/hHFXdNF35Q0fUOq/M83jptfx4RZj/NUfwi7cgz8ieriLGeYfTm9LqP2Po7ejPpHxTuwVfo0iyHVYh04z54m0jQoEu82YZwZWpK3Htrg4CmHFhPXSfRWsSYhzaeLjgerUQvS9kiTIkrNateoVPy06kp/Jfil3Incyp291ukHBsDSjUHY8y9DN51Z0PiU+lbUsy8gBzgxGffTv2RTnynY901zEXorLHy9++3C4/Jah75oWh9i05tg7y7KnBAuWEtTVjPbBwSgY9qaY4RfQPcxZ5nbmXqCWl+gukK5LhbhhLbYUBsRZIx5YyO49GNWAUagI1IUujwgl3fTxGtQfMCSQRbjQwNE6EqANKN7CG7Uo1sW00AdlS0n7lbSRyvCFbLeeyRknjVwmU83k/LXVtCJhA7MVVpDKa46EbcnVJPbuu1lJHf8FnxMF7vmirJvWG1euoI3AND/LpVzsWAVRdTI7O8vLO8HOzk4KnnbgMVNN27KbEgzFChzZeFB3PNNcQqIvv2ZZzc5kO1eO4I7ZvsUb7O9mOxXjmRh/kn2wxDqmNYzxTDxG3011NDK8L0rVUtBqYa2L7j/2TKt/LP9G5WJzQLTRvfDtszVrSNcsl1oHNMnO/Yl2iyxKr3rycqz7P3Z4uHOLGDXNhngU7N8UmckC9tCArhpMbE8fxob11JS+7RIlej+qd9JOlCn+01LmEA2+pxHabu0D37taDsPS6k9CreM16Kvoq0wGkFsRZmebOQ6YbZtJvA8JOCSKI6AGbBi7H+J9IJEh9qncKPE85MdGp10+hPEGc8NPXBApVmc5JD6InNOWqBInRON3jYatfjQcjT5t2rXEBVH9lBValVUT8ZOL8DzxMKSK1lJIvBHZZ7qmQtwRnYWLo71+9H7rVB1Ol08c92q2uWCuViw3uUSqZE3Xuq+FS2M7LdJ6sKpaBMFHKEGdeA6B3ur4atfQsAcYfdi7zgSICbLDLDlcnQY3JaBREIwH2SzqZ8nfYBCQv2gaBJBCLkQ0IAlTe5QW1VHBcLATtb/XmNgE1SaRQXGpCB9EfH9B7HPxgSgWybEYX40/UxpN+O7V2H9Tbc6WMCSepoghQpVujiTD7QyRe3Q7RL2CDj1zvE/sItCe6VWEFPf0U5hPSannO93nUxLLC089zbGACP/Nv9FfPiSWFST4G0HhnngaCyn28Y2Nx9mUgJ9+glMEWX3nO9Up//1nUJ4i0foR7TAAiAZVQhPvCWTbaIklXpIcYE6uUqvGFoTC8ONEc8Rx3/+ulKygL78orvn/xXPFbyFH3737z19QMM8idPLjHIul2Xy6RnmnLJXkQVZQe8iIbIci0h1i0+T5bwBacGz8o8e+9CM8p1ji+78Hp+UUj4ZrX1yDzx+8hzMNln/DG3jWMDlmprcibUp8pBCL5xvsM3HNnbnCinzsu8R1WDds+0csNT9HNooVXV3t95vN3d2g2QS0V/SuEiMbCHp7RDlTFJ97GQAEDEDC/vfm91onvPuNuUOX3jq/198ql4/Nv1yYe7cNrVaClX31VvU7WquwDaOnOzXAO1LHg4Np5a6tFVumQsSt+nwJRvsvzJUhu9N01rZjqeyRtl6lnmhuUdupT6nmvD+pkHqcetW2/zNZTAluvoJNB+sKruRd2RexxApuz1X8b71VSw1EMSO5haqgati2hGreEVhJlDKKc5fLp47Nt+N8uX06Sm5uw5Aywt1XHx3RAHjiW3ZZfWOwVt07Miom+CHWp2aYPPWGdpPvq6ltWIUg9PkTdGjI4z71bjWUjfEg0Sg+NL7WmkUjRHcc0fvQd8XweH9/NInM2U0RDwRE5mwBE2ABKxAbLSFA2f3+Z56rf/zj9efQQexfY9R6rv4jP1J/jpm3uxJjz4cuGVrdmk109Ras/+7hKHpv/V8+HUXja6NWHx2MgnvfW/9X15ledICy0Wxv/ltgnXCJhQKgpBpxbbaF2k1qggkF+t27t+U7BMltZspL0Zkz0c/euZYW5bOpaLVz51TWNzoq/4/fc+Q1bqIGuAu9SQYm8um2eFpLl61iY7nd/iUJBvlIk8evyNqHt0PDOM4uh6vbH9ZkcjMzlR9cozbYs9VsTgcevxxROQpdyNp8cjzaDeNhtheMxlchoC7KhhOWZrx/7doIWEVgbAOqEpjKGr9EfXW0EwV6CbnYBbK/jtq9bKWy9sBapZId2F7FVNHLEcY8/URXDlK8qesvMUd9oLiJZ5H2xLmYK8Q29oOol615axvBci1YzrY3/GaEBuPBcCQiRGzjpZHKIowRO6Fpv0/bnOiZAXGRJk42GtamGw4npsfxcuFDF8T8RVXwYYwLc9fDVvOAF7NYga+KfUPP6IaPVwOgKuXVK7kG6zgQdRzURC9L3M6OgCfhA1aWpabyB2zWeoCTtOE+NTAfrODNmr+gf5ycfVxf8Gubc3Nusp+e+kCxcMUmIrCEC/a7tQBd3R+PdmOTleFwNBigw/FoHwE22AOIEAT9wax/rqFDsjrajQ4dCZOFBLsJY0NOWp0DRBRKd7XbDds+5KNqo9Vq2I6OPhmxpjL+xUa7fVdL+v7oT8orcJP0W3TQsdPy2gTXIjqSp15FY5vXqbdRN0zSUeC6tR7BG+6+V9wnR+haIEaoX7fXe72iS82X+nD0iru7RW9A/JDO2iZLLVepZcS85TZ1vRdvHid7GMh+nInRg9+ZGH3U2nPmHhEdrFYtFgah4SYVJnxKMWkE3a2YY6AC42sDArnLfgToQ1Q0M30trco8x6KUIGt2ThfZg6yp/AkamuRheHLTJA+Td30eZRPE/obEBGQ0VGVL1VXNkLWspsH7/0Qxs8yN9it5gq9vmrvAv9jTOk0MWax5Q5aNJJHET6Lv1tNpffyNEKLvGA8PYhTXS+xYYpvjcqAJsRFLuhyoGB0mD+jk4fEe5YFI3ywXi29U1UKmamfoXlHlIAqyUA9LVgNtNhYIP019aR2VU2DhFsKLJPH3bC3j2EJ7cWm51ky72tZyuPl/pbWMm8btxcWVatN2tJOQ9jOVjMnzfOOie9KpNlc333R2Nbw5aUoHr1GOq0g9wZ6IuXqHQlLil3KCLaKbIvgm6xrEvP3EsWMn/pYEcmyV/a0mtb3+1rhrfyVOPD3ZtX9scbh4jAZX5+2048/LyViKzWemcghSXonRAK3HfnbKk96HFbfjE7EDkT0kX7oLBBLpytoy3toKoh7wAoP4m+2Nh4P9/XgBRmhfNqgnKOIM6pDu3tijugB9ui6lKDerQ97OdN1oQh+ukN2tRJND1gu+WwPs6TZCtwuMHZSBOGMCxMHDlIJruBuWUNtAUXRwcO1g/PPN3mgA4SAMd0Kylg6Je48BAmwRhOGl5g4gkBHx+bHTHAwGcEsvbGrhdQZSgMEJw72wCbfuNBlmTlYnQPs4VLtE9EhUywYMZjuFY4UZ0ZeF3YPB2vnwjs+t3RGeX3shPL88WPub82uDtTvQaEDT4CokXmdCmkqun791HvFbqRTHjXiaU60SZ/xQ/Q54+PAOchh/jh5QH95Wh1zopTpNe4WGNH1ajy8AhiO7Y1p0X+YaIltTqf/kif57M1n1yJ4JHFtD0UXan3Bw3UkEfZ+y4A/9BSVv6IJjFKywqGfyvl5sWkXTEXTjMMgG8PkuzdHgs6Hbmmbr6AXbcezl4+2HdMWUSxnJMKRMSbIU/aH28TVyf9CUyY36kkwe02bryK9Su3rCC0fUPRu1BNz0u2sTWR1x/NAOm+gzP/88PruweZ5FpRPVldpWcEez+7rjx1/XPXlpg2VRc3dhg0XnN6tbdVQ8HuSpi4bo0ZO6fSPunOCYmyihn3jbnXjdnUcwPzdE/f2IBEcx6FXicIy6KUtoxK+gnwZezqO+h7aoTRPphk3Cy1UpcUqi/iya6naASpQQ2f0XwhG6Yh016XaCTY+wDtUw3vjyeU5R9WqgiIVq4bmU5BU8GWcL2T/kZIhKOFPIpsv6xrObRpkvheUP5ay8Vs1xOXVpVZY/v7qkQryqF6x8ipPRe6wl3Swu1TKZRb2ezdYLjmNMIuOrz60fP77+nJZOf6HZeVLU1ccW1hFaX3hM1cUnuk2OQ9P++1P0acK5Evam2wwnGwW6jWSfTgmh/1h/pO7p2W/6DuyKJYBS2a2ve+ZMLjACAb2u/lDdrQQ//M0Yl7CHxw1UzihZo4pn42OQ6BVnohIL7Qx24IOG3/7t44Nv+zbUm9z7m+iniFSqETt0IO7EBRxvUiDGIIg5vbESZHmvcTK7Ydsb2ZMNj49WNu4Klhc31h/Mr7GuabrsWv7rHl9cno6ZrwB+JLLcJnOK2WFi6+ZmTUcYcJxHBFFF1EWdFo+hwl0dxTYmJaBJmJiVLyPcKRHXA9Q7jgEx9LOiL28vLd35YpU3iivLIrIyEjovjr9S3Siu35nl3iyzsKrLP+hlsmWv8swpJ1A948xb65zGcdo39JdOoR/BeNtAd52RHbRQWBYzFpLQHVLmv1Tya+cyubuPSzkZ462ymc2UoxMBi9BWJDg8l5b6p2bt+jGYd4T3qlHLeWgwuljVKvGGd0IuCAlJPNpQvczLGmvYx9Yck9WIxen4kIRH01AAYb9TDguFsNKO+eOjZ3M8xRXoV5vKJtaZNvFEVqPMZsw9UP0rifsRkVq2a7hG3PzRG1LUIiKm1f2IiKei+uOVKKilmkHA5s08e3U3G/2vrS3zkUfWaNine5kHgGL3Bg89NLhvZ+e+QR85J7dKlx55Zetk6ZFLTOKvO1m74vWK9PhrmDuYXWgnQH54G51JdShhYl0yX1Ob3UQrhsNqst2ZjLRN4PFZYltb86catEpswEKEwsPrPE5xKUBMlibqIo8QD7yGrH4BVq2HambOEARRti090DXNteH8Cl1nqR050KT3pDAvi5LiG4KsYl6y4Iy7LYA1OrvumTm9TFwtAZCEA8eX9ZyVy2ZbQbBLQ2amoxgm9Tye1JPWkZ+rI3ZcH+rI/z3rF9dtfI0XWS7FskJaEzWoHM8Cw6IibvBdNSOvAypU0lA1Q42rdo2oqMbDPmp9IytysiTCYCfV4mSoFlSu3/d8K9DLQOFT8FIWsTypk9mmcsoomPn1A6iYBpyTgXokBr/JIgejBLgE14/a6LDfG/X7vYNe0OvvEcVln353s70DGBxTO/b/hr4wkXGiCTLmyUwn9NqfuBhFfbJl84FT4//e8JZfe5e3dPHXGq9d9u66uOShZ5eoseJ97sW73KWLd3qfdV2SfufFGSaH8hIZMSkzQ9iFCX1LAZ8KIxwwETq82rp6taUFO/0+YvqxGQbqUysMgqC1S/B3JX4fC2+E9+nJ+1y6grWJNV0jCv2KW8E1n2V68RvGf3Hl0gF5ySNXLqGA5HH1atT/KOTDTMpHfRIpVL5WINgI8G3UBva15jegrGTrrU81pyG8+mAzbYenzq/dhj4MXXk4gjwGdOPzoGY7ndtPPPRpwI6IOYyg3Ye3fD8MpG4NqI8LQKVRARIPhbdJa7SJkhZ9aPPibasXtkLbGr8L3gNvi3q7WZLBQw+duL3j2LcdEhwYXWd6B4dztlCERy1TlF4ku/aoUr4bIwoyeKvE+W3b3wZOf6e9eeLEZnvn1NPlc97ZxuLtS0u3LzbOumv7xypvQIfl4jMvPVMsd9fDQm3p9tfevlQtNltXFpeJK/fpfCIyf6IVyUOei8TrHBAHq0IaCapjQ9tFrSaBFt2IjCkSa0z4A79dpdCn5hL3iK1oPAImda/4K9lRH3irQTARnN+xVHV2nMryoIeYXg+qi6gXNeDUe3DDjw0GWcJSLRf7kQrQVR0cobVE4lakPgcJ919z426MqA3MdDt8mwCfLl+JI4BAI+LXNEK98egwLgM/Pgx61Ifs+BrxbHatFaEgGl27thdzgsPg6uHh/iA7OpzDXfP6EIZwGpXEFw/5lQMojEX3mcM3QFfHwAn/E806JH4ziRM/9OPjd6M9V01bX0e3NDPEX0WrNcfbphLvWUSSVpt6cwmPOiKj9qqx7ephq0VMChzTlM88e/r0s+8gwZmZndZg2I/1vv3kGgTjvZm117wNbqyBu8Ff14RoUGXYnFnsxWR/w7xJbLIt4vfpuJ3ZJSvQW1Q6SqSDber6DvD6vI2yPZ9lqtKuHLaojVQwZ3Fc26pWty6Q4H2EZIyoMdLw2MU3kKsQoFZ16/aT1erJ27eq40E0zf/aLH9Ec3ZpKV69SVNkngZfqwC/g/ooujH/8dVZ/sRajWSfmvYr6dUGxF8917myIeaWfem3dnfhgw5v3ZUoS662ZjxCbLtvUf8dj8/R/+5NrFJYrVVrsEoKxLGHAyslcTOyOfmdmtOIuO2lflH82GqKTHEiqSJiXmo/hc4vnFyAT/30w6fhk48R0rfxSsOu5l2OaIpYyc3X7EaxYdf0nJqk6HrNafyHSrXzb6OGkU4bS2s0gpgCedtCYYW87fQ5GFe+bm6wqqfpVbtRpm+VyCt4NWfU7Dp5K+SDWfTDD0SNSiW9mv232dU0jczJjq7QmevNpAczjokH6h/GprkxTOwRFxeJuwv0CIEsPeKRs2Wq6BXVRAe6MvGqoejR6KB/kCW/SzHf9vN+munOPbdGdvCliB6bWAYOBsPBYH9vbx8iRCUOqOMQBYAhYIkcZPeYmdyX+KWlnmuJ/qJHXENf37t6de/rmek974cxVmY249nr0p9ioro+6uuMCG/XETVmhelFfylmOblEZJGICc+FmgxcsmQofcWQgDeW9PBccygqWFcjVcOKiA6b50K35GUcMafEv8Ch5EQn45VcuHP8rOdppqppqjkb95+lbaASayxS7yk18yk8aAEj4cceL+gPPuz0ek07lwuD4IO7u5axZJg9362UTkUo/45cMwefH14ef/l7CmkTmVbpe35soxAIQmaCdY/qYTaZDtVNM93Eo8pEJ2O/qj7m1U/meefTt1TT3DoaxGx1/CTaT1xURf1JZO+mlCkt/gVKi4Gvb3TnPA9M3WP4XUCxuN0FjrRXNOxmu5E2i7GQ7dQDb//Xg8FzK5/4kFhMB81mkC6Kr4sla99SvdZqRYetxs/M7VUgFhdMvHFusr948ttdbeqhcSrkW7qw5JgFPg8sLa4aeb5gOpBUb7XuaMEiQKLVYpbznZVsdsXxuWyxWofEc9Gdrdads30EQ+rDr0G1nFN9w43aTuAvE5cEAqZaICKvHgQAUANqpMRA+HxLkTW/6CtqnQALFOwunzq1vGvKB+QWCK6c4GzZ8H1DTade3CWqvKP7P25c6Y7smD+yTX5G+I/s/zhIEiEgr535+OGovFCj2gmP0n1ikU2czPlRiKkKMpwL8WZn4lDMm3YxivbGV0e9Xn+ttLbWmwahlWFZJRIExGZMIpRWFDTaGwMHtNfTokALslor0LKBFmUh7GctqZzPFVUjd1qxFPgc6QdSznBWMpsaa0FXJP7gNgnl77rEHwmV/06KFAjcmyVeTOmOUxLNnmoLsmsZzrQc4799Nyc4rPIQ6xQcrOsPmlspXpALjnskb5lqLEnedOcNMMdk8w3NBFZPokXr9bIA1+LXjg+jVra3u9vLEl/47JE6TGswKeG0KDf2i3iTLUvyLNmoQ/oGDu1KgY3oL46F8SnlCumrgyEU62DYv870gXL3h0Qem+RFbNN7wMP1qIQQeNxsNjtlUxPsOilveqJ7nLU8LP0YuLtoHU0NnBIUOalTdBVeF5BsYgrzTb3ecNbk1/b3iVH2bgLKWq0ezdg8UvfY/3SGovo6tRA+xrQSnjkpS8IDT8ye8T8gTgt6hVjutIbQd7cKp+XtxYY5weRADXeyyaFFTXQSu6pb9dut+izZm3PLzor3ydOd7jd1VkRzh0+CESZ9RNH9pH9u9L5JdIOTfsmaco+6pZHN3WiuQ3bJEkkCYxDbm8Vj/0voT6Hl6a9/IM8lkAuo3zLy49W4G1InmWvUp8A2S382rDbdZY4SQXgsjqT7VgSq+YVFAn1BRGbJ4QSW437sBBZ6AkZBCUmu5Boidr6S4kTRWWmWTiJD9bBWMSpGSVMLpXIFi5Ysp0RdMLHBC5hV0dPFUn6zIrDoZXiIexkhUbJP5DPSd7MpjhX0WvRTnB60/FxUNlROWlp4rlD8NJvCtptRZAfuwHrG9SWNme1Lmf0mBvm9CvhaEMT2g/R72LrSQkyrNWunQeLzIHmmTdS709+nSL4D4vRv2Jo8wzIzPzhobkSwzJiZfNGAWJb19nu9adlumc9c2QiLPslnQncIT0E8m8576XXILqLYtjX5TbPpKkY3FRCNRBTzlXt3diMiY6ToIOrcBVMW1jbyczzBfqL1LbknHpTbMTBoyw+eIHeSBU425n1uD+O9hnZEERWgS7qnpj/dX4j6rcmuw6ntOrV+I7tUYocOwbT96Lp4grlAfa6R4daKf2SAuAQC6A/zihhUT2BCvGOCyoY9wrbEG4zCr8GqIsNSeJ7jMId5T/dFQ7WKjmmnTCWPNVUUZcOVVTFQjGw671mSIknp5pw37GOvPXbstU+QAAWcwkqSxPIoxaZLoizW65zlO4Gh6CleFDOqLEtq3lCMapiy5HyQwemfnXN2/a7kPRBMeCUYO4Q3aMLMJL5aGJj3tZkfGFzp6ogKSbdTAI1ifY5PpYaJNDHWeJxh6fJNnUOF2wgnu6uaLGNvVLMLiizbBWH8v38HGBcO8RiqiPkUYWJMDav4eSOjlyt6RlczYtEtitbXFxYXTzgStE3tm4NGAB90MB5VN3Ie51pfxqpgpiSR5wVJ4kSZ/MzY9xe0rEH8S2iFlIBSKcSxiycXbcPSA2z7j6RzuUa8Hk1kSteI1S+iFJxsUq3RbXyJQx0iYuzv0k9yRMzcCTlO5UUx9o5R9x3MffHMOOKfeIJr7NhbzYQvmf9hS/ITJlMWdRLBAEMAoTVRZMixW3fZiJItBUW3l02/Jp3tTawWg/FwP3F6Hx8+1HxHkzt5z0mY9onrMOPhZJPBwQiaOJ3NpqGtIVr88eEwwe5yfHAdxyatha5fT2jLg8SieWKtMTHhIG3390qbbGSeWX5Mtti4aEQZKrqrORjM4tlBMIsX3SNX3OJBvL6QIIpeJe4V58+KM19oL6GXKJ3E8Q+tEh0EeunRR+uPXmo8+mjj0qPoUXICMXKePPN+9H76zOwRH3Ue7V56tPMo/SDmUvfR5KQ7R6M4uks0rMH9qYqNtOhj6dCJUC8C8vSXP59NnNjE938efYZ6xmTs2Mx+YqvRrBIv+kVWmFjbC24tNvAgW5boXeQH3cjJnNDq91XRV2Tdz3sFP68s7VUMO7+ZZg0j1a6kzSXPGZTy6yvrGf/ia/RaaSGzoivloFbIWLvvi80Q0Gc4uRDU7bSbzmxkPC5dWm7Ki2fl7IWdS7ed7iw2TG6znc+kjdA2pEztKzETlrTXf0Z/NLMC1xFg/DUU/8YsoZ9Ev0jdkNFfJ9OpR0JiSknEfcLcD0iiK+RHS69kzuxkORJ7h3XM00TPe4cIK/s7sO7hd5DfRLI075h1xV8pplKSIAJUkDhhA/1s9ty5zKcyluFxmXPnsi9ZoiKI/hn/JWy4+CX6hvQxT00Lsmh9yttZQYjYinnEGT7LTuTB8Z52smO+CphxkzkJa2XicYvs3bYwHcg1ss3D9WPbPfpzR4m7kgiWVeLHInnkFQdWSjwYod4fO6YTrJnOM3mnXrcLj0fArvbGh1f671UURTeGARBFFBHndZ8x3GzfMdN2oZ93fEDB/eCwf9DSfWNeB6TQX8Ob+FaF9bwzdQrTnZDiKU2mJk8b9Ffrmq1pavemyBNoZ5Xyewcxth7Eh2/U72k2GqFurpbfnphjxheGiVuX43fEKv07/igmJ4uEaOn6rrbgWLv3aGZ5NRunKEcOE/nRj9P1qAR88gnqxW4zBoFk6BNOvTZ/LhRRl6ZT/8Tk1xNasfcywrV1af0hsglnpD3Qhm/qkpL2TaB096UV2TD9tCKxWvbXMpaZNn0I/rzqmemaZ1oXsyeaTbMVbBrLzRNoMZ8NPNMuZHKuadummw/yacu1wiDIZ/J2LpfN2fn7cu28HbRzmdWz+YrjVPJnV2e6qK8CN7ZKf5c5bMZChhLC5PfBsDBxtEx6hPiy9r1EDNHthHzYjB0flBBqCxKSexoPy9/eWz3V1mEJ9PDJJ+RA1OzierH0fEkgysazpiYI4vjTvMKyWk9RZR71BVmT79EQq/IvvbVYXCs5mhjI5x4RfQANSlp137oIC7LmnU1rqiF8mVdEXu3JrMTP6ZmJVQpxCk3kMV7shjkhUXQPqQDknSxe1NOxD3BJ2IjlKVNVDeI7C82wkBFSKS7lS8VK1C1kvUzN8K1UpqyoYglLiCtqLMZSOR1uV5fvRCPPOb9QaJssp6T5VP6+fLFSXFkuVVnHlI9V7TTWraxjvhhusmilLgYZzVi6cP9tzdk+n2sJxiW/17wxQ8eEV2pQ59aT7Q7dNjD8SZzKYhKGEIDHgBiTjkbou4e8IJpuobCQZweKnCkUlgrSXw/39sjG5thBd1RAgvC2VGGxkEm/lH+Eh0jB/QQW9ycOCvAN5crRPZvNoyXr3rCGElOjG4qztxc7ByXBww8+COdzpWjNfqPgSivqTX0rXP9bsqij65AzkX516CrY7ayxbeJklRrgEacblPoSQweINRtUMo5jt/BklhGXb5fvXbtX4GxX+aenT2Zydo4XO7nC+XvWz36b7Av02vhXVQmXFL+olp7M5opa8b+it5MLvs29DT9xbFM3RJUXtkvwVHThqzIn3Lt+kfNrWjmfeT0846slLGrOl5O18XfR7yZ+S4pIZ9fYbdZLzRQqLnplMZ9/7Zve9FoaXtjb24XWeGVhkgDh+CdJ2u7MB8KVxB5lakYV/+5gC7iCfRKZYcVYj3PDvQPqzqRHQvrz60k5D9BvQo9ukV9Bi61nyc+UEY0zZZfohshOy16DOnhxnCyMUJnkPuIDF118RobZyeoax4qOya2dW/OfwWmzVn3k4ddkMlUSF5/JWNaxc2czJZwVBMMRKsqHn5EDJ5XK6LLJif9fZVce3MZ13vft9fbGsVgssABxElyKBEGRi0MSKZKSTOowoYOU4viWFQW04qN2bcty3ThIrXQSJemRNrXJmcTNjNI2mTRNQ9e5HWfGaTIxWTfH1E3SNskfISepp+00bqedNlDf9xYAQcpuEhDcA8Du2337ju/4fb8vFMyMlg6Rw/QI4rK2feiWm7MXpGCIHHfwwO5QKJa5rYAjmiCV3w6X7ev/LVInJrn6GkVF5wHLRBE4E4gmUhCxnfedHpyYJ0IrGaHIx76wCzZ3PyFQgYahT1DAaWNBUtFg3BFZQ74cEQKnJZV9uIElXMPKU1oE/YFisMNIwQsKvoto22z4QVFhizza/wBPtHG8T8M8i5qacu38haQiTYZknNd1vfVtU1X+XlYKvIJ5vh+LX7R/KEoC0JxvPYcl8sx8zz/opmAuGOvopLjDlowaw1lH17PDRAFtm6hRI1+TPhw0ZfxNqZYnSmfIl7d79M5NonWCN8sPD3cxEOpOoTZqlA58oCn6/SSKfiM3NpaT5URr4zWulItls7uz4oIcMAVWilt4UUMbu2fH2ETrZ6hZcN+XG83liA60KNsJHoUMaVHs9Uv740UnCo0pgCeR/AOgpkbDxzo6Bxju/TGMy9NO4kcyes2ms7JSr9dpMAT4bzxE1zevkVfZcTbidaceX1taMtSmZjSblMK9tbnaqC/He3yaOvUiwUzWZgH2XMgf5ULxHqllF1t+go4K3qYFQMC97Qv9jGYoopTFAVaXjegsGw6usudOnDjH1g11BcwDEjtYHWQl1UAK2VFZ0HJV4/6Q7rp66Ey9fvpKOn3ldH2dkuaphgvmftdQmS285ia1NfYD43KHZRyC+4EBIUVqCFJ11cZyogCW3zEy2Lr06sto1Wk1nNxEPhGLJfITuda652RGEDOScepOmYhkmyjukc8VhfzG84byI4teZiQ/5N1r5zwv18uhCFbeuK9jYhpBWxE8oj/kBfIBmeSJlrm+1GjWyWNprdf7kgkPrSw1+/qcBmrMe+tgeNlT8p6dh6W3dV/PUZbfObCiFWiyKKKm1+xu4B45f87COUxT10W9LrXVFBK64p/o5lw/jzHwcUd9wnwiqaP1hCmFxMnJyCEzEY4YcoA/LLLOwao+4OiSQD2tmtFaD8fDZjy0OlgYyvM8i1E6m0sJAU0PR2Jh1vx5xGGJHHNXUA+RsyhSWLjfNRIFQ9Jy4CLOaWI0Arz6kfDhBG/zEstaPG8JUtGMmWY83KujQ+5lsPCAZcdHtFl536yy3lxebg7t3z/UbFImX6LlLjXqk2cmvV2HFw/vYnb6n/v+P/8zGLvfwO/81NobuZzXy+UeW0KFPA1S+fmyWxvvAMZhMBjIV3q8WFY7brxa8yi8nfQatBJ3pXu1v+KDXKJQqAyIz1p5O1k8UEzadnJyqK+kXZIGY+kSO7KatOPWF7iBSqGQUAKfC98rufFMsZghx18yRp3hyaRtpUYyqeJWG/wa6asxmuHPTyFGkTlE4vTAfGMRlRJ3A+meOLGndtvZX7ulfmNx5L0njr79qDtb63tPNJMZyWS8++64rVKrF4tH528+8vjherI6W0gXM5liuvusPoEe83OYUrLod3/ySP+930KXyOqebzLXj2FbGBLgiWmz4gCEXKDpYdvoQWCMoTTe15jGNWZpjYzpS8sNSHBCptzmChG7INLodfiizB0I4I1l1CBTOqB+nS2gb3dM/wJ6kWJ9aLYm38QHiTMByQOeY2qUJlM0blfVOKrllYQsa6GgpIdVFIo7CU1WHVEcvDWbMM3qkaOyUzlWLh9DH+x/yy4JS5om6URNCLKqqcmBgiRYejZx9EjVNJ93biyXb+yx/W6ir9I4yAWwkUNu0xJHZDKDx5ZIx5ApDhi9uS5lJx6APMIAWqhN8bVKlQaKGxzpfyUOPSOLTloWiZ6i2rZqhUMa6a4Xb+AUJ5MLu244l3HODJQHyPsHnV+aejSmm+Gg3v1l1nRdM5tx0L1GOiwaOKzJrCCw5PbDCpKUeTHgWAFOkriA5TzuwMkGFjq/lDhB4CQtGJE7vzTArG5YTi9XrkKxbrgCSFWYNbisH4JH7pj08339uwvCrYubyPFazX+fGz6OvMY80sPF2ePC8damt+v3kKO5nXb4FdLGcsBlQEc6MsS7PszDbjO9g4kSR4HuHT1EU61yD9gHR0YOxB7gIL/CAftBjnswSnMtZGR5wiEbzoQs05+SjTD5aJtcCFwo7exynk+Q20n70k5sBUgSxGAciiT7+vOlbNWJSIoSMIimaYQ0Q5RmZjImWud5BcwTT9x2aDgq84KkaEEzGk9lC7tKXrwnhsYvc88vUyqRCqgKWaGfUYIGCuT+RRfT5AXyx+fdvkG1KUdDTjgS/IUXuC6Sx2wn85Ks6Opqvr8vGQnrPXMhpihBpkblkZBne2be9tN9h1bK5aWlZPWO6gLZWFkrt9YgnL28Vka0X3T0uKXtfA01wETCyEHGCpgW3LZ61ERMa9UjR5NRYoW81tbiK/S11Cay6fhY1tt4GDK/dOIufTSMSXOX45U10K5g8fyK02jsCHek1L0bzW6//TZ6nNosimC9A32Y2ifG/HwC2/c5PytVbsDFKbRqpbAWDMZNnPoLsqkHgk4Y99UOP2LnzHOXzpk5+xH0OMRtc6yg0QQJ3c3WRxZvUPfMze1Rb1hktuLt6j5eBmVtL+si5xrTnEdME9UhC/MWD6hG7t0hsuQQ1Yl7GdMKNmlNRFrAFGTZJZ0AUwUuIdut1mxjO1X+qwNx9awxhtSzanwgPfaUDzD8vL/3T+0ve0AF/+h/c9L/Ztn3C0X8vWn/O6Y37kZjksxuyK+6bQY3aZwJzrngqoGomFzeDz2hjkH4KIV8hbaEqDGRqliI2XKrDLIav+uOosYLwvjSqBhFiOV1sfS2iqCznL7vsbLAs7uPHPIkncfSxNHFKlE3VHLnW96U73I8a6u6IsgooDnqqMjxCS3IYsGQw4E0r1eSokB2gwYXEsUsFxSDvXGRMmVqI0o2rtmQMzqNIHqq5pLxor58oW9lpe/Ccn3y0VPRS5eipx5FG8vmox+bn//Yo+bZS4FbL09OXr41sM2fIZP1652j50hme/mB68u/ruzryu2WuYQ2YPyDgGmfW8Emcw8djsA5RpPb+sGzzY1YOh27CZHZABuYTAlvJvvo6gF0UHDjenxAOHhQTqSseNxKJeSDB4UB8qHbnZ8pxjgDyHaTUpO0GUq2rfYjN0vUPNuPOvDHwAimnWzHBnYCpYCzY1FvER2n2WjqWoDHmO8bTfWsEjpiVNXMZMydS8h/nvnvZnOVlRVRDhCVxrK6a8Uga5PtznPALAXcqFkM+b/JI5qGCof8VPX19Y8Ui1L/mG2P9RNBdn39PGxJwyUp2+ufBD4q0GhrgocLOD8NilbErnkBMhdMsW7FRcm/bG14q8h55tjMC+dXB35wZOq5wfHKYhEJiFknL6f0/mK9fvzAxdJv9wfM+tLeOuePCazexrF3cQaFHuuKANw4vkmb/kP8LLr7jjuKd97ZepHVWk8/SV/oSOu7yP3M7aXbyfu30EutCvr4uSz5Q3e3nn6jcswt6GeFI+Vw5NxmT1lXaTF/y2ovwsmvXqYv9IxfSOuP/FJaT6O7aUlMx6epd/Py5WmkYq3i2jXLBVBDIV+hhAi4za1vV/wF1/XsYPtqNns1k3nx56+hVy+LzpMJ8cknw4EnY9LlPzx52l08OXhywV04iVAGZ7OZuey/wFUcdHCiVEpgB909GQ5MTMSk4dbayUV38ZR7cmFw4WR3Lnuduu5UNOC423Vda/8DjyI6d6z/GHm3PuxX9lXyvnyZ3PhL/3PsWO7YsavtuoZXevONyzE7FU1Kg7ouANEfYG5BCidlfdwv5uOklM/RUuh5XyL1fSstp/VZeqOkFCRups91sAedcvJg9doiEoY7cfOu75vP+rYKTARy9NcnT5HacxdOu6dPts6yWkbLjpQyRqvyTObLz2c/hF76PlTvqQH4waknoMir8GzbD3grN19n/n69SGgPN3oS2aL+awyR/HdSFvgggGYvNo6HvGzIs5DbRfUjZ/Uas4rm/UBntA57DR+gD4cp7fH0Web1eCwpd+UWw0+W4pp6GX86fJUwU6O11eYyIOfja2hto0FEmaVVb7WBVsHj3IToIZrdse60Xz0cnB32P1obvuW4G2sP8F4/dsTyGpThxnKaQP6BRgF061B87+YmWqW5QppNuvIcL16OM1v8optML6YXemqe8lRQ+1LFz1JJlHJvjb4o5eZa69m4nx+XeUPeLdQmL+itE6DWo2FINLPG0vIKWllvEJHLN29Tsl/for2lQ1Dew1rOHSsh6kZspzkeo7ZICwL9DES6mfd5Dqsyx9m2VlcNjxcl/NOqdFzkDaRC3kw+oipzVtBQg1dlLG9ID6uSsrzRLueb6G8oVzdEooylECWtAm92hPJVg+uPaC9EciKPE831lhN3egpq/QcA+7olWW863VvSFiZjkwmSeyozpyh+HVcofxAu1KJTRCusQQZ2opzSFOxpSHdadW24JAOBQdknyjajnp2tULtQxcO2P0f72WLsqECd8nYbjcAyTmQgELac1hOO6RrhiIO4vKBpX9FiQp5Xta+IghL69AsS5vJcAL8giWyeVURuVQ+hFhDIWAl8VNFNfV03LaG1oeHoN1RpHWvo9qMIEwUSH3nPESk86OKjrR+fJeecI+c+q8f4OVZdn+MMfBfGHFlLZwXc+rpSnycC4fFIgguqDd009REpFGlI6pExSVUZzccksAy1rk0SufAYqaMLzGPMO5h3Me+HDMOICNrbasuuQqhXClXdqJ0nX9ljUbBY1+xodZQdENMsBnbHUVJrmIi3JXB7TIP67Vo2iDKAcNlWlX5iajKliBGPTOJubXwggPJVXIaDa9TBDZioaSC8qgG1/vX1+5+Bwol6H/n3ckEkqkTU5Fk9wiocy8WiPMdLyKU7feHSWayjsPZgVRM4PlQYQsGArpypCImtur8vMXlm8k8LLKcYkZzKIz4mChGpGEveU+REpRS3kryOLib6AgENXTyCw4MD+OiVw7CWjv5wsJ7sP0n+P6KlWVEPBlUcSl7gkISwjESWHxq/wGEkG3g6bDRN7+whIyDbpczxBVbkpZvNkDV/IxkJj1tunwsgrRkdiWhw8jw5Hkn7zPAldWQ6KAUi2T3OkHZKE/jbT53osdP7/D1EDiUaf0XEFbGQtYjqWq2R0eSOM7ehQGsF8u989p7n7Oqx6k+ei9fqnsUI0AbomGuTUW+IuZHaS3zrJ6aRpltYEwvna/ZOd1pHtEkh0i3y5CkRnYw844FpEBRJLybKj0caCHJcLYrto/uHzSOUd2Q1mnqo7Dy0SrfJ4uWFvlMZLqQH8xKRsYKjlrU7RDbkfEgPsdMRsYpNhOqKNLvqNfwjrMaN4+0tGGyTtVoylA9gmY/JIU0LKXHSrwL9wbFwOh1GW3YhP38qxcWjnuwAYFLHHo1Jz3L+/bnIq2tGazWg1PlCqXCuztux6D3IsYPKZ+UAi1YMzXHUAFyAahhvbv1cNnSlq289T8qR20wTjIlDEHjp1SqkdQN/Lp1CwN8wG14olW78/fzM0p4TqDTT37/U34/WD7W+tWvXu1793oTnvXbo/PnzbT3hQ+ScSZBycvtRO+d2Bzxo0yzclRJC569IH7CyWesD2ZFUKrXvSjTDZp9R6umRdNVOp+1/rmaybNay0+1z/hh9nuYMaDt3wBMDCIASaq/2k+5fQjSVeFsHt6s1EVfRj81kOrNvZuH4QV054KV2y7Kk6dmhSNS09fxb93E1N9KvZxJqKoF+py+izUzOFIaG0CDqTyJOLOeQivRd49FimVUVtxY0cDAX5np4nCLQDinrrg+HtDqub+8XGax77dUWZCjazmO+lawHxqZ2PqYA3aCggTEfPADADtB+0MbUhScuTNHFhs9IslxMjxeL4+liysr1KZqAsVIwg+FIwMJKSFZTOSuFmOn2MVMX/tcnjHwMCzQImRcCMsZCbcrdw/E35PL9g/E8x7+tUibn6eHA+xh6npEoPvRXvWDml7/KL/0ql7aFl++jviDfGJ9vp5z1x4VuhmPb7c12STGrHoRedLJwBtQVRdHIdWqKghwaWUFDLwLqKuW9UQPP1gRTBSJD1RRqW/UCY1WIcm7BzBztEGPgPPBTe5RsCcxB0Fpq3gekqcFkKThszw0W58dx5eZbXrhlQpnc9hlyBrxY1EumB+eGl5a8JXc8Fh3ry5C9bpmvoj/3ywQ3hw0oRz9altyjmSM9BbCOPvUOWHSEkflxsXrLLZPy1GBid3A4PtdXrO/4BH1i8PBwo+GOx63xvkzrz3r3tu51hXKlGDRyFuCUHTP8OjjLl8uoXF4BgG4ZoLq9MWMgEQL7yYHrueRciGmnkm1HNezh++jYwl3KZk7NvtXadlnfoWjmryFN0kBw1qTWa5Kmfd/PJrMUMcJkCgsb7eQqncPimpSZL89nwH4PR6742X0fTYnxIAyfwbjIbOnnKzTGIANZddpBJBQuXwu5eAcglFxZE1STphpYXlqKb0E1UNP3Nj8C7g4PMqWqyzSurjdHt+lza/aesGaHoK12ZxWi6qx2MnGnzjyEmIe2tUOIVr+uhgsVG22krBY9B6pbqdYmZNmDvWuwHF3rxtX/hFwHsCdVGGCpoeZnPzcjRQvUgIii3fntHJBSiF0nZHnABToN9J1d75w9vG84JwR3zUxd2bcrwuu8JP2dnDDNhIknLmRHj8ad0b27+wL60dHsBaTv24vxULaqRvb1JbTBTEqwBFWbkU044At7xw/GUm5yLOmM9nFmvxE7OL53e2xv8PrY3lo+jboOnR7j5Bl5Xt4jh/tNM99r5Py3j370TXI6HE6He2UXwIWADuOLE6EsUYRq21AiXn0DxR0H8mHHEcRdtJqbNC+208MZDOcJv4HuZvco1O3H4dEo8X+dAdZj/43WKY4XNDey+l7n4/jMDNMbH4D99olcM2+6BaFL9wqmXeo6pvBScFd8WfM0MiKD/uW3SPV3k6KujJ2KxU6NKbqYRMx8axP1B5aWHKxKkopX9g6U2N2uu5stDfTmhghQK/Pw6/TocWgJVNraomKjzj/gXO7tu+vDJzKZE2+CxR2+rdgDAoS1FcRAv6GX+Mpgf2FwsNA/OE95TFOfcRzQXfV2m+/lPfRjf/Yy+8k4c4w5/jq8lURV7rAgUibEzkwGiiTIlu62D3b+ghILNenFN4HcEtVbq04dkBWt74oYaqvYaCw3my90d1Z7v2mgOh2DVsFsMbVU92Otm34tO06zLikSeTvA0y8B0Fvq+tL+Af2EtHXIIUw1EIuMmbXqOK65RJD9VL8k3U8eWagkWVeu9F8Jox/1Y0u6/79QsyT96D2FK9Wtdv0yepm0xxnauylOiegwIFURVYrmeWx7mSjR5XgUlKMIpgRHbXoqGAVonAT6ZOqu++4c51JCZF4qVybHR8e4xWCc19Rw3/SQxUckrAtExTBY4O7lOTYQicdkng3zAr8LeHHvJwfsu+u+UVyPCMk0OdkH4xxiOTU1FXfTFiY6dpYXWSwqLOaJKqsIWAjziLUENgA6wrVrRE9EpE4OMHVmkbl5h0wluHBLeSI8uv6kPOADTMm1+4ghdxwUaaLagXg5NiBGvTS7uwKoTJo4AgGgqJam37LM7MUrF2dnH3nvxdnW125KibwoWnEjkH7rRPFkOqAbAi8LRliWj8tYEHlBjMYC0QFR4EU7+3Vwkyb2l1/ZN2d+52Aunybda5ac6+J7HyGLG37KIkNHLBrdk0myimapmhTEMdeuJexXWJZog0QE4lAwyN6kISuUdscnpt+WkpIPHBofeueqJm/ZHeHxAhaiztzE3M68ZUdt7EwINl6FqhlGb1w1/i9yo2QmgpqhiFWX9ISCCRXTrZdH3kduAxbXeqRL7XhCILVgRnWj75aKeyShq7rIyZwWlKRZDD4CnnzpRE2R54Ro3wOHeIE0klit9am7vOmXJ1IZJ4GYufaJZx9BxS1xt/XMt1hdQ2hoPBlHsmIqmhTgonlrLBZ5gWUNA0RGsjz+pU/roXA8Xrz/zp+2fuacnyyd+GNV6vSBT1P8WIGMyRTeFvEA0AqT7TRbpWg4sPnYkIIA7AZf4owJ0n53zXCcwO1ThZlvcBwrwsYBdJqV+QkB8wvoQUUSZu/nRUF5YIXDnPLrD/ErAmkMT22LzTV3IlXyfrRBzxx1JLeYO3g5t80J98WHM1NPx5iOb+bD6Ema69bGcDj6zdwH4Rj0ZOyVhzP7u+X9CUWfQsQTOMpyFIIcafficT+djEDkgq9KyUpipP/USS1CpunOTlKSrjHvQpeSkgBJW/iItv/i/vaOlNw7PfFuyDXwfwVB8YUAAHicY2BkYGAA4lWM4ubx/DZfGbiZGEDgtpnQKRj9/9f//0y8TCCVHAxgaQAQawqVAHicY2BkYGBiAAI9Job/v/5/ZuJlYGRAAYwhAF9SBIQAeJxjYGBgYBrFo3gUD0H8/z8Zen4NvLtpHR7khAt1wh4A/0IMmAAAAAAAAAAAUABwAI4A5AEwAVQBsgIAAk4CgAKWAtIDDgNuBAAEqgVSBcgF/AZABqAHIgc+B1IHeAeSB6oHwgfmCAIIigjICOII+AkKCRgJLglACUwJYAlwCXwJkgmkCbAJvAoKClYKnArGC2oLoAu8C+wMDgxkDRINpA5ADqQPGA9mD5wQZhDGEQwRbBG2EfoScBKgEywTohP4FCYUSBSgFSAVYBV2FcwV5BYwFlAWyhcIFzwXbheaGEIYdBi8GNAY4hj0GQgZFhk2GU4ZZhl2GeIaQhqyGyIbjhv6HGIczh0sHWQdkh2uHf4eJh5SHngemB64HtgfCB8cHzgfZh+eH9AgGCBQIHQgjCCsIQohQiHSIkwihCK2IvgjRCOGI8Ij+iRqJOglFCUsJWoljiX6JmgmlCbcJxInPid+J6wn9ChQKIoozCjsKQ4pLiliKZwpwCnoKkQqbCqcKtIrQiuiK+YsPix6LM4tAC0yLZAtxi34LnAuoC62LuAvTC+ML9gwTDC0MNoxDDE0MVwxjDG+MfQyQjKCMrAy7jMaM1oznDPYNGA0ljS8NM41GDVONbQ16DYiNmQ2kjbmNyQ3SDdeN6A33Dg6OHI4ojkcOTY5UDlqOYQ5yDniOfA6bjroOww7fjvmPAA8GjwyPJg8/D1OPbY+ID6APtw/KD9mP8A/6D/+QBRAckDYQQRBQEGEQdhCGEJEQrpC3EMOQ1pDkEOiQ9BD7kQ0RKxE1EUKRURFnkXARehGEEZURmZGvEcoR1BHaEeKR75IIEhASHBIpEjYSSZJWkmOSchJ8koQSk5KgEqkSs5LAks4S8hMrEzKTUBNdE2eTchOEk40TpRO4E8gT1pPlk+wUBBQQlBkUIZQ3FEKUS5RYFGaUd5SUlJ2UtxTYlP4VDJUWFRqVKAAAHicY2BkYGAMYZjCIMgAAkxAzAWEDAz/wXwGACE9AhEAeJxtkE1OwzAQhV/6h2glVIGExM5iwQaR/iy66AHafRfZp6nTpEriyHEr9QKcgDNwBk7AkjNwFF7CKAuoR7K/efPGIxvAGJ/wUC8P181erw6umP1ylzQW7pEfhPsY4VF4QP1FeIhnLIRHuEPIG7xefdstnHAHN3gV7lJ/E+6R34X7uMeH8ID6l/AQAb6FR3jyFruwStLIFNVG749ZaNu8hUDbKjWFmvnTVlvrQtvQ6Z3anlV12s+di1VsTa5WpnA6y4wqrTnoyPmJc+VyMolF9yOTY8d3VUiQIoJBQd5AY48jMlbshfp/JWCH5Zk2ucIMPqYXfGv6isYb8gc1HQpbnLlXOHHmnKpDzDymxyAnrZre2p0xDJWyqR2oRNR9Tqi7SiwxYcR//H4zPf8B3ldh6nicbVcFdOO4Fu1Vw1Camd2dZeYsdJaZmeEzKbaSaCtbXktum/3MzMzMzMzMzMzMzP9JtpN0zu85je99kp+fpEeaY3P5X3Xu//7hJjDMo4IqaqijgSZaaKODLhawiCUsYwXbsB07sAf2xF7Yib2xD/bFftgfB+BAHISDcQgOxWE4HEfgSByFo3EMjkUPx+F4nIATsYpdOAkn4xScitNwOs7AmTgLZ+McnIvzcD4uwIW4CBfjElyKy3A5rsCVuApX4xpci+twPW7AjWTlzbgdbo874I64E+6Mu+CuuBvujnuAo48AIQQGGGIEiVuwBoUIMTQS3IoUBhYZ1rGBTYxxG+6Je+HeuA/ui/vh/ngAHogH4cF4CB6Kh+HheAQeiUfh0XgMHovH4fF4Ap6IJ+HJeAqeiqfh6XgGnoln4dl4Dp6L5+H5eAFeiBfhxXgJXoqX4eV4BV6JV+HVeA1ei9fh9XgD3og34c14C96Kt+HteAfeiXfh3XgP3ov34f34AD6ID+HD+Ag+io/h4/gEPolP4dP4DD6Lz+Hz+AK+iC/hy/gKvoqv4ev4Br6Jb+Hb+A6+i+/h+/gBfogf4cf4CX6Kn+Hn+AV+iV/h1/gNfovf4ff4A/6IP+HP+Av+ir/h7/gH/ol/4d/4D/7L5hgYY/OswqqsxuqswZqsxdqsw7psgS2yJbbMVtg2tp3tYHuwPdlebCfbm+3D9mX7sf3ZAexAdhA7mB3CDmWHscPZEexIdhQ7mh3DjmU9dhw7np3ATmSrbBc7iZ3MTmGnstPY6ewMdiY7i53NzmHnsvPY+ewCdiG7iF3MLmGXssvY5ewKdiW7il3NrmHXsuvY9ewGdiO7id08t8TDSMY9niSCpzwOxEIuCLRSPDFTGkUitqaYHmTG6kjeJtJuLhiKWKQyaOVspCPRzqGS8ZopcCRCyRcLnCkrjbSiUBALu6HTtUJBwoflQKKyoYxNOaCNLUwywloZD01JSVePK7u4la7uxne1prwwy2qtShMzI1LT4DJNFI9Flat+FnW4kkNaM61fpEs5GWRK9TZkaEetXKDEwBYw1rFYzGHiprmhpRmeyuHItnOBx8V7pE7UeMRv03GTx1yNrQxMnafBSK7TOaSp3uiFeiPOV7mFrramvJjpvjozs6TlTMeLIW+DG1vaja+2ZwSdHGeJG+nOktWVCQuzRMmAW9EoRfM8tTW+wdPQ1Po8WMuSSp/Ha5W+ECn9KNXtKx2s9UIx4OQSjb7Wa05pxYGVfhaGMtCx6fHAynVpx3tMRf1+kgpjekoP9c4ZMaHxdGTbdMQ5cRaTkqWpbKDTLDLLM4JUijg0M1OGqc4S05kKkmhmfipoyWJ2vtUJHdyM7TalhZOrNvqZVCGBdj8zMiYLIx4vlDghz9Nxt6QbmgZr/cxaHbcCroJMcavTDkGyj6dukxoloQmRSLmT1XI4H/CUIJ2CrdDDTbViqNNxKxgR7fFU8GYO++59jyhYRSFMJCElk76mo6sG7oza9JuFPcPXRdjJMR235n44CxcCHYqesdwZRKcd6MFAiA4lEp2SumBNpHUiWRSbLm2LTSnqes4lliaMDsN5ysJEkHAKyOlsCsrx4oTRzgtulyfcrJG5pG/7Fkmhc2UiXHc2CDJueXdR3A70ukh7MqL00wy5GfnVd0JueZ8byh9huDghYjPRqZ1yGW3lqYhIW3fC16XYaJSsHgqzRo5SD6WJpDENF7luL5uh80eK/LUWZUs6Ep6SLR66pFhxaMX9aOcBlDaKtDQrcrG9PCvIM04h6WsVdkpMXrC2oyD+/CYRvDiRxs5/Jwrz1O+cpFtIaCPozEv1I6GSckTGIVm3PGGUXG2kUzEZt2ResFCwW0izHIzL1a1JG4xETNGQbwWJlJ18VFMetao5YaUSnVn3zXI/Eipqw5Qno+WJwFAhsGLTbpVQ8Znsyq2ZtmLPguTHSF4UcV9vSlvo66UGCl2lyFZyvVJiU7km7Igyx3BUqqWTV6I0zFngQ6NcQqbKoYx2LXWh2J0IXBUt1axTmdAN+qJMjDRNEXGpXOC3Jmi16mFbRH0R9ngWSt3NcVGmi5FkpK1uFZgKayH2H+iIzUCkifVuWxGb0jbIYpFSXeoMeCDKPN0oSYOCPXThVxtIRRMrA8WHlYHWYSffvB43pHhCnFXtgpA32YUCD7lSIh2X83wslsQfTLcglGlsZsohb3TVEbPgirMJUiF8bdw2Q906nKw6pCRpakOth0o0h6kM/TpreaqvjTh1O2l9JLjL1lV6UhEbyZA8qznSWTpU3JjKyEaqRm+SPibDlre0F6Q66eQw34cdBaHjor4olVTdyeu3zUgp5VC8c7WcyyhjU/j5Ar2yRZKX4VlR/k3jLGhP4WrLxd1mL3C5S8YD7YLC+VPFkU4ehj0+IOO6Bek7Bxe1nDXpYV3URDVqASlJ0WNMKprOJG9EU7nffqb6DeeZ5JgxiUzuLB2qFdxK7Te/UZKFvMqX2aUW8ZQKQte3hL2ix2kXzLlGK8cuJxWTig5hoWA6yFxHupxT6ZKg7xFEITHUAvDQjISwhS4XcsUnvLc0IzGkzEDdWoM0Zc7cZglWJ2hXxaFWJN3Jusn1SNLeWFGlfjEzzYhEY+9THlVctqjH5F60ha2iqyUnqsXaO0qs2zohTxxQFhZpI+EqsuSazYRT/XcFdz4JB23C3q8pu1cSYU3Vf7mZ+GUKaoFdJfQ77jdrSv3CFoueuedzkggbxL1nNEuwWnGommh6uenKFplD4eiSQBFXTd9B2ZE09ST1n3XPdR6MG0mqwyywpkn3hdDfAmqpoF7HVuiha3nCbDgz6Voh51Njqr5naBiyJ8yU6ObRqBPnGKZmhDv/pqGS4lv01gStVj0kgRTKB1othzSZjHbOUTOKlmxa1Eql1u9SjQqqooMwNGPeaFM3iXZ1pUULo2IVJXbc9pDiUwlS5fCIq0HNl91xleoblSiT0SGMROqPrTlhiz6Lu+tRHkFLU54H0YwgFEpQIc0Frh2efcPxLW/4/t2/UfMCO08e1KB/3121Le2nJBeTXDWdJ+ftgPdpO8qivvHNf7PAWdJ2iyHXcebXC1yxtFdtKuexUT4qq4TNqGY3XK1tuwcZmL+R4woVI72dmmZKUobTmoPANdbusrC7sEZlimK8lSUhz+9atRzWii5x3YVv03uoP+YJWp3CXQSN7EtFXXqd+raYQmdpQyhq3X375Vc9EZS30pVSoMiV6G5Jm7pcilxK8re9HaWE7llDtzEurqevbqTuhkiXkWFjg8qRoRtx1zUF+U3C+cCEVTbJqvo4z7bz9Ky79Jj1xdzc/wARDj0u") format("woff"),url(//siplprojects.in/wp-includes/fonts/dashicons.ttf?99ac726223c749443b642ce33df8b800) format("truetype");font-weight:400;font-style:normal}.dashicons,.dashicons-before:before{font-family:dashicons;display:inline-block;line-height:1;font-weight:400;font-style:normal;speak:never;text-decoration:inherit;text-transform:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;width:20px;height:20px;font-size:20px;vertical-align:top;text-align:center;transition:color .1s ease-in}.dashicons-admin-appearance:before{content:"\f100"}.dashicons-admin-collapse:before{content:"\f148"}.dashicons-admin-comments:before{content:"\f101"}.dashicons-admin-customizer:before{content:"\f540"}.dashicons-admin-generic:before{content:"\f111"}.dashicons-admin-home:before{content:"\f102"}.dashicons-admin-links:before{content:"\f103"}.dashicons-admin-media:before{content:"\f104"}.dashicons-admin-multisite:before{content:"\f541"}.dashicons-admin-network:before{content:"\f112"}.dashicons-admin-page:before{content:"\f105"}.dashicons-admin-plugins:before{content:"\f106"}.dashicons-admin-post:before{content:"\f109"}.dashicons-admin-settings:before{content:"\f108"}.dashicons-admin-site-alt:before{content:"\f11d"}.dashicons-admin-site-alt2:before{content:"\f11e"}.dashicons-admin-site-alt3:before{content:"\f11f"}.dashicons-admin-site:before{content:"\f319"}.dashicons-admin-tools:before{content:"\f107"}.dashicons-admin-users:before{content:"\f110"}.dashicons-airplane:before{content:"\f15f"}.dashicons-album:before{content:"\f514"}.dashicons-align-center:before{content:"\f134"}.dashicons-align-full-width:before{content:"\f114"}.dashicons-align-left:before{content:"\f135"}.dashicons-align-none:before{content:"\f138"}.dashicons-align-pull-left:before{content:"\f10a"}.dashicons-align-pull-right:before{content:"\f10b"}.dashicons-align-right:before{content:"\f136"}.dashicons-align-wide:before{content:"\f11b"}.dashicons-amazon:before{content:"\f162"}.dashicons-analytics:before{content:"\f183"}.dashicons-archive:before{content:"\f480"}.dashicons-arrow-down-alt:before{content:"\f346"}.dashicons-arrow-down-alt2:before{content:"\f347"}.dashicons-arrow-down:before{content:"\f140"}.dashicons-arrow-left-alt:before{content:"\f340"}.dashicons-arrow-left-alt2:before{content:"\f341"}.dashicons-arrow-left:before{content:"\f141"}.dashicons-arrow-right-alt:before{content:"\f344"}.dashicons-arrow-right-alt2:before{content:"\f345"}.dashicons-arrow-right:before{content:"\f139"}.dashicons-arrow-up-alt:before{content:"\f342"}.dashicons-arrow-up-alt2:before{content:"\f343"}.dashicons-arrow-up-duplicate:before{content:"\f143"}.dashicons-arrow-up:before{content:"\f142"}.dashicons-art:before{content:"\f309"}.dashicons-awards:before{content:"\f313"}.dashicons-backup:before{content:"\f321"}.dashicons-bank:before{content:"\f16a"}.dashicons-beer:before{content:"\f16c"}.dashicons-bell:before{content:"\f16d"}.dashicons-block-default:before{content:"\f12b"}.dashicons-book-alt:before{content:"\f331"}.dashicons-book:before{content:"\f330"}.dashicons-buddicons-activity:before{content:"\f452"}.dashicons-buddicons-bbpress-logo:before{content:"\f477"}.dashicons-buddicons-buddypress-logo:before{content:"\f448"}.dashicons-buddicons-community:before{content:"\f453"}.dashicons-buddicons-forums:before{content:"\f449"}.dashicons-buddicons-friends:before{content:"\f454"}.dashicons-buddicons-groups:before{content:"\f456"}.dashicons-buddicons-pm:before{content:"\f457"}.dashicons-buddicons-replies:before{content:"\f451"}.dashicons-buddicons-topics:before{content:"\f450"}.dashicons-buddicons-tracking:before{content:"\f455"}.dashicons-building:before{content:"\f512"}.dashicons-businessman:before{content:"\f338"}.dashicons-businessperson:before{content:"\f12e"}.dashicons-businesswoman:before{content:"\f12f"}.dashicons-button:before{content:"\f11a"}.dashicons-calculator:before{content:"\f16e"}.dashicons-calendar-alt:before{content:"\f508"}.dashicons-calendar:before{content:"\f145"}.dashicons-camera-alt:before{content:"\f129"}.dashicons-camera:before{content:"\f306"}.dashicons-car:before{content:"\f16b"}.dashicons-carrot:before{content:"\f511"}.dashicons-cart:before{content:"\f174"}.dashicons-category:before{content:"\f318"}.dashicons-chart-area:before{content:"\f239"}.dashicons-chart-bar:before{content:"\f185"}.dashicons-chart-line:before{content:"\f238"}.dashicons-chart-pie:before{content:"\f184"}.dashicons-clipboard:before{content:"\f481"}.dashicons-clock:before{content:"\f469"}.dashicons-cloud-saved:before{content:"\f137"}.dashicons-cloud-upload:before{content:"\f13b"}.dashicons-cloud:before{content:"\f176"}.dashicons-code-standards:before{content:"\f13a"}.dashicons-coffee:before{content:"\f16f"}.dashicons-color-picker:before{content:"\f131"}.dashicons-columns:before{content:"\f13c"}.dashicons-controls-back:before{content:"\f518"}.dashicons-controls-forward:before{content:"\f519"}.dashicons-controls-pause:before{content:"\f523"}.dashicons-controls-play:before{content:"\f522"}.dashicons-controls-repeat:before{content:"\f515"}.dashicons-controls-skipback:before{content:"\f516"}.dashicons-controls-skipforward:before{content:"\f517"}.dashicons-controls-volumeoff:before{content:"\f520"}.dashicons-controls-volumeon:before{content:"\f521"}.dashicons-cover-image:before{content:"\f13d"}.dashicons-dashboard:before{content:"\f226"}.dashicons-database-add:before{content:"\f170"}.dashicons-database-export:before{content:"\f17a"}.dashicons-database-import:before{content:"\f17b"}.dashicons-database-remove:before{content:"\f17c"}.dashicons-database-view:before{content:"\f17d"}.dashicons-database:before{content:"\f17e"}.dashicons-desktop:before{content:"\f472"}.dashicons-dismiss:before{content:"\f153"}.dashicons-download:before{content:"\f316"}.dashicons-drumstick:before{content:"\f17f"}.dashicons-edit-large:before{content:"\f327"}.dashicons-edit-page:before{content:"\f186"}.dashicons-edit:before{content:"\f464"}.dashicons-editor-aligncenter:before{content:"\f207"}.dashicons-editor-alignleft:before{content:"\f206"}.dashicons-editor-alignright:before{content:"\f208"}.dashicons-editor-bold:before{content:"\f200"}.dashicons-editor-break:before{content:"\f474"}.dashicons-editor-code-duplicate:before{content:"\f494"}.dashicons-editor-code:before{content:"\f475"}.dashicons-editor-contract:before{content:"\f506"}.dashicons-editor-customchar:before{content:"\f220"}.dashicons-editor-expand:before{content:"\f211"}.dashicons-editor-help:before{content:"\f223"}.dashicons-editor-indent:before{content:"\f222"}.dashicons-editor-insertmore:before{content:"\f209"}.dashicons-editor-italic:before{content:"\f201"}.dashicons-editor-justify:before{content:"\f214"}.dashicons-editor-kitchensink:before{content:"\f212"}.dashicons-editor-ltr:before{content:"\f10c"}.dashicons-editor-ol-rtl:before{content:"\f12c"}.dashicons-editor-ol:before{content:"\f204"}.dashicons-editor-outdent:before{content:"\f221"}.dashicons-editor-paragraph:before{content:"\f476"}.dashicons-editor-paste-text:before{content:"\f217"}.dashicons-editor-paste-word:before{content:"\f216"}.dashicons-editor-quote:before{content:"\f205"}.dashicons-editor-removeformatting:before{content:"\f218"}.dashicons-editor-rtl:before{content:"\f320"}.dashicons-editor-spellcheck:before{content:"\f210"}.dashicons-editor-strikethrough:before{content:"\f224"}.dashicons-editor-table:before{content:"\f535"}.dashicons-editor-textcolor:before{content:"\f215"}.dashicons-editor-ul:before{content:"\f203"}.dashicons-editor-underline:before{content:"\f213"}.dashicons-editor-unlink:before{content:"\f225"}.dashicons-editor-video:before{content:"\f219"}.dashicons-ellipsis:before{content:"\f11c"}.dashicons-email-alt:before{content:"\f466"}.dashicons-email-alt2:before{content:"\f467"}.dashicons-email:before{content:"\f465"}.dashicons-embed-audio:before{content:"\f13e"}.dashicons-embed-generic:before{content:"\f13f"}.dashicons-embed-photo:before{content:"\f144"}.dashicons-embed-post:before{content:"\f146"}.dashicons-embed-video:before{content:"\f149"}.dashicons-excerpt-view:before{content:"\f164"}.dashicons-exit:before{content:"\f14a"}.dashicons-external:before{content:"\f504"}.dashicons-facebook-alt:before{content:"\f305"}.dashicons-facebook:before{content:"\f304"}.dashicons-feedback:before{content:"\f175"}.dashicons-filter:before{content:"\f536"}.dashicons-flag:before{content:"\f227"}.dashicons-food:before{content:"\f187"}.dashicons-format-aside:before{content:"\f123"}.dashicons-format-audio:before{content:"\f127"}.dashicons-format-chat:before{content:"\f125"}.dashicons-format-gallery:before{content:"\f161"}.dashicons-format-image:before{content:"\f128"}.dashicons-format-quote:before{content:"\f122"}.dashicons-format-status:before{content:"\f130"}.dashicons-format-video:before{content:"\f126"}.dashicons-forms:before{content:"\f314"}.dashicons-fullscreen-alt:before{content:"\f188"}.dashicons-fullscreen-exit-alt:before{content:"\f189"}.dashicons-games:before{content:"\f18a"}.dashicons-google:before{content:"\f18b"}.dashicons-googleplus:before{content:"\f462"}.dashicons-grid-view:before{content:"\f509"}.dashicons-groups:before{content:"\f307"}.dashicons-hammer:before{content:"\f308"}.dashicons-heading:before{content:"\f10e"}.dashicons-heart:before{content:"\f487"}.dashicons-hidden:before{content:"\f530"}.dashicons-hourglass:before{content:"\f18c"}.dashicons-html:before{content:"\f14b"}.dashicons-id-alt:before{content:"\f337"}.dashicons-id:before{content:"\f336"}.dashicons-image-crop:before{content:"\f165"}.dashicons-image-filter:before{content:"\f533"}.dashicons-image-flip-horizontal:before{content:"\f169"}.dashicons-image-flip-vertical:before{content:"\f168"}.dashicons-image-rotate-left:before{content:"\f166"}.dashicons-image-rotate-right:before{content:"\f167"}.dashicons-image-rotate:before{content:"\f531"}.dashicons-images-alt:before{content:"\f232"}.dashicons-images-alt2:before{content:"\f233"}.dashicons-index-card:before{content:"\f510"}.dashicons-info-outline:before{content:"\f14c"}.dashicons-info:before{content:"\f348"}.dashicons-insert-after:before{content:"\f14d"}.dashicons-insert-before:before{content:"\f14e"}.dashicons-insert:before{content:"\f10f"}.dashicons-instagram:before{content:"\f12d"}.dashicons-laptop:before{content:"\f547"}.dashicons-layout:before{content:"\f538"}.dashicons-leftright:before{content:"\f229"}.dashicons-lightbulb:before{content:"\f339"}.dashicons-linkedin:before{content:"\f18d"}.dashicons-list-view:before{content:"\f163"}.dashicons-location-alt:before{content:"\f231"}.dashicons-location:before{content:"\f230"}.dashicons-lock-duplicate:before{content:"\f315"}.dashicons-lock:before{content:"\f160"}.dashicons-marker:before{content:"\f159"}.dashicons-media-archive:before{content:"\f501"}.dashicons-media-audio:before{content:"\f500"}.dashicons-media-code:before{content:"\f499"}.dashicons-media-default:before{content:"\f498"}.dashicons-media-document:before{content:"\f497"}.dashicons-media-interactive:before{content:"\f496"}.dashicons-media-spreadsheet:before{content:"\f495"}.dashicons-media-text:before{content:"\f491"}.dashicons-media-video:before{content:"\f490"}.dashicons-megaphone:before{content:"\f488"}.dashicons-menu-alt:before{content:"\f228"}.dashicons-menu-alt2:before{content:"\f329"}.dashicons-menu-alt3:before{content:"\f349"}.dashicons-menu:before{content:"\f333"}.dashicons-microphone:before{content:"\f482"}.dashicons-migrate:before{content:"\f310"}.dashicons-minus:before{content:"\f460"}.dashicons-money-alt:before{content:"\f18e"}.dashicons-money:before{content:"\f526"}.dashicons-move:before{content:"\f545"}.dashicons-nametag:before{content:"\f484"}.dashicons-networking:before{content:"\f325"}.dashicons-no-alt:before{content:"\f335"}.dashicons-no:before{content:"\f158"}.dashicons-open-folder:before{content:"\f18f"}.dashicons-palmtree:before{content:"\f527"}.dashicons-paperclip:before{content:"\f546"}.dashicons-pdf:before{content:"\f190"}.dashicons-performance:before{content:"\f311"}.dashicons-pets:before{content:"\f191"}.dashicons-phone:before{content:"\f525"}.dashicons-pinterest:before{content:"\f192"}.dashicons-playlist-audio:before{content:"\f492"}.dashicons-playlist-video:before{content:"\f493"}.dashicons-plugins-checked:before{content:"\f485"}.dashicons-plus-alt:before{content:"\f502"}.dashicons-plus-alt2:before{content:"\f543"}.dashicons-plus:before{content:"\f132"}.dashicons-podio:before{content:"\f19c"}.dashicons-portfolio:before{content:"\f322"}.dashicons-post-status:before{content:"\f173"}.dashicons-pressthis:before{content:"\f157"}.dashicons-printer:before{content:"\f193"}.dashicons-privacy:before{content:"\f194"}.dashicons-products:before{content:"\f312"}.dashicons-randomize:before{content:"\f503"}.dashicons-reddit:before{content:"\f195"}.dashicons-redo:before{content:"\f172"}.dashicons-remove:before{content:"\f14f"}.dashicons-rest-api:before{content:"\f124"}.dashicons-rss:before{content:"\f303"}.dashicons-saved:before{content:"\f15e"}.dashicons-schedule:before{content:"\f489"}.dashicons-screenoptions:before{content:"\f180"}.dashicons-search:before{content:"\f179"}.dashicons-share-alt:before{content:"\f240"}.dashicons-share-alt2:before{content:"\f242"}.dashicons-share:before{content:"\f237"}.dashicons-shield-alt:before{content:"\f334"}.dashicons-shield:before{content:"\f332"}.dashicons-shortcode:before{content:"\f150"}.dashicons-slides:before{content:"\f181"}.dashicons-smartphone:before{content:"\f470"}.dashicons-smiley:before{content:"\f328"}.dashicons-sort:before{content:"\f156"}.dashicons-sos:before{content:"\f468"}.dashicons-spotify:before{content:"\f196"}.dashicons-star-empty:before{content:"\f154"}.dashicons-star-filled:before{content:"\f155"}.dashicons-star-half:before{content:"\f459"}.dashicons-sticky:before{content:"\f537"}.dashicons-store:before{content:"\f513"}.dashicons-superhero-alt:before{content:"\f197"}.dashicons-superhero:before{content:"\f198"}.dashicons-table-col-after:before{content:"\f151"}.dashicons-table-col-before:before{content:"\f152"}.dashicons-table-col-delete:before{content:"\f15a"}.dashicons-table-row-after:before{content:"\f15b"}.dashicons-table-row-before:before{content:"\f15c"}.dashicons-table-row-delete:before{content:"\f15d"}.dashicons-tablet:before{content:"\f471"}.dashicons-tag:before{content:"\f323"}.dashicons-tagcloud:before{content:"\f479"}.dashicons-testimonial:before{content:"\f473"}.dashicons-text-page:before{content:"\f121"}.dashicons-text:before{content:"\f478"}.dashicons-thumbs-down:before{content:"\f542"}.dashicons-thumbs-up:before{content:"\f529"}.dashicons-tickets-alt:before{content:"\f524"}.dashicons-tickets:before{content:"\f486"}.dashicons-tide:before{content:"\f10d"}.dashicons-translation:before{content:"\f326"}.dashicons-trash:before{content:"\f182"}.dashicons-twitch:before{content:"\f199"}.dashicons-twitter-alt:before{content:"\f302"}.dashicons-twitter:before{content:"\f301"}.dashicons-undo:before{content:"\f171"}.dashicons-universal-access-alt:before{content:"\f507"}.dashicons-universal-access:before{content:"\f483"}.dashicons-unlock:before{content:"\f528"}.dashicons-update-alt:before{content:"\f113"}.dashicons-update:before{content:"\f463"}.dashicons-upload:before{content:"\f317"}.dashicons-vault:before{content:"\f178"}.dashicons-video-alt:before{content:"\f234"}.dashicons-video-alt2:before{content:"\f235"}.dashicons-video-alt3:before{content:"\f236"}.dashicons-visibility:before{content:"\f177"}.dashicons-warning:before{content:"\f534"}.dashicons-welcome-add-page:before{content:"\f133"}.dashicons-welcome-comments:before{content:"\f117"}.dashicons-welcome-learn-more:before{content:"\f118"}.dashicons-welcome-view-site:before{content:"\f115"}.dashicons-welcome-widgets-menus:before{content:"\f116"}.dashicons-welcome-write-blog:before{content:"\f119"}.dashicons-whatsapp:before{content:"\f19a"}.dashicons-wordpress-alt:before{content:"\f324"}.dashicons-wordpress:before{content:"\f120"}.dashicons-xing:before{content:"\f19d"}.dashicons-yes-alt:before{content:"\f12a"}.dashicons-yes:before{content:"\f147"}.dashicons-youtube:before{content:"\f19b"}.dashicons-editor-distractionfree:before{content:"\f211"}.dashicons-exerpt-view:before{content:"\f164"}.dashicons-format-links:before{content:"\f103"}.dashicons-format-standard:before{content:"\f109"}.dashicons-post-trash:before{content:"\f182"}.dashicons-share1:before{content:"\f237"}.dashicons-welcome-edit-page:before{content:"\f119"}.clr {
display: block;
clear: both;
}
a:focus {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
.alignnone {
margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
display: block;
margin: 5px auto 5px auto;
}
.alignright {
float: right;
margin: 5px 0 20px 20px;
}
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.alignright {
float: right;
margin: 5px 0 20px 20px;
}
a img.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.wp-caption {
max-width: 100%; text-align: center;
}
.wp-caption.alignnone {
margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
margin: 5px 0 20px 20px;
}
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 98.5%;
padding: 0;
width: auto;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
} .screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; }
.bypostauthor,
.sticky {
color: #e5ae49;
}
div a:focus {
outline: none;
}
.entry-content img {
margin: 0 0 1.5em 0;
}
embed,
iframe,
object,
video {
max-width: 100%;
}
.wp-smiley {
margin: 0 !important;
max-height: 1em;
}
blockquote {
padding: 15px 20px;
margin-top: 20px;
}
blockquote.left {
margin-right: 20px;
text-align: right;
margin-left: 0;
width: 33%;
float: left;
}
blockquote.right {
margin-left: 20px;
text-align: left;
margin-right: 0;
width: 33%;
float: right;
}
div.wpcf7 img.ajax-loader {
display: none;
}
.box1 * {
display: inline;
}
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
.isotope.infinite-scrolling {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
.owl-carousel {
display: none;
width: 100%;
-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.owl-carousel .owl-wrapper {
display: none;
position: relative;
-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
overflow: hidden;
position: relative;
width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
-webkit-transition: height 500ms ease-in-out;
-moz-transition: height 500ms ease-in-out;
-ms-transition: height 500ms ease-in-out;
-o-transition: height 500ms ease-in-out;
transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div {
cursor: pointer;
}
.owl-controls {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.owl-theme .owl-controls {
margin-top: 10px;
text-align: center;
}
.owl-theme .owl-controls .owl-buttons div {
color: #FFF;
display: inline-block;
zoom: 1;
*display: inline;
margin: 5px;
padding: 3px 10px;
font-size: 12px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
border-radius: 30px;
background: #869791;
filter: alpha(opacity=50);
opacity: 0.5;
}
.owl-theme .owl-controls .owl-page {
display: inline-block;
zoom: 1;
*display: inline;
}
.owl-theme .owl-controls .owl-page span {
display: block;
width: 12px;
height: 12px;
margin: 5px 7px;
filter: alpha(opacity=50);
opacity: 0.5;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
background: #869791;
}
.owl-theme .owl-controls .owl-page span.owl-numbers {
height: auto;
width: auto;
color: #FFF;
padding: 2px 10px;
font-size: 12px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-ms-border-radius: 30px;
-o-border-radius: 30px;
border-radius: 30px;
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
filter: alpha(opacity=100);
opacity: 1;
text-decoration: none;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
filter: alpha(opacity=100);
opacity: 1;
}
.owl-item.loading {
min-height: 150px;
background: url(//siplprojects.in/wp-content/themes/interiart/AjaxLoader.gif) no-repeat center center;
}
.plazart-dropcap-type1 {
color: #e5ae49;
display: inline-block;
float: left;
font-family: 'Ubuntu', sans-serif;
font-size: 75px !important;
font-weight: 500 !important;
line-height: 75px !important;
margin: 0px 7px 0 0 !important;
}
.plazart-dropcap-type2 {
color: #ffffff;
background-color: #e5ae49;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
display: inline-block;
float: left;
font-family: 'Ubuntu', sans-serif;
font-size: 45px !important;
font-weight: 400 !important;
line-height: 45px !important;
margin: 8px 7px 0 0 !important;
padding: 7px 11px;
}
table thead tr th {
padding: 10px;
color: #222;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 500;
}
table tbody tr th a {
padding: 10px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #222;
}
table tbody tr th a:hover {
text-decoration: none;
color: #e5ae49;
}
table tbody tr td {
color: #666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
padding: 10px;
}
table tbody tr td a {
color: #666;
}
table tbody tr td a:hover {
color: #e5ae49;
}
dl dt {
color: #222;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
line-height: 24px;
font-weight: 500;
}
dl dd {
color: #666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
}
ul li,
ol li {
color: #666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
}
address {
color: #666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
}
img {
max-width: 100%;
height: auto;
}
form.post-password-form p label {
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 400;
float: left;
}
form.post-password-form p label input {
border: 1px solid #dddddd;
border-radius: 0px;
padding: 5px;
}
form.post-password-form p input[type='submit'] {
border-radius: 0;
background-color: #666;
border: none;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
color: #ffffff;
text-transform: uppercase;
padding: 6px 15px;
}
.gallery {
margin-bottom: 20px;
}
.gallery-item {
float: left;
margin: 0 4px 4px 0;
overflow: hidden;
position: relative;
}
.gallery-columns-1 .gallery-item {
max-width: 100%;
width: auto!important;
}
.gallery-columns-2 .gallery-item {
max-width: 48%;
max-width: -webkit-calc(46%);
max-width: calc(46%);
width: auto!important;
}
.gallery-columns-3 .gallery-item {
max-width: 32%;
max-width: -webkit-calc(29.299999999999997%);
max-width: calc(29.299999999999997%);
width: auto!important;
}
.gallery-columns-4 .gallery-item {
max-width: 23%;
max-width: -webkit-calc(21%);
max-width: calc(21%);
width: auto!important;
}
.gallery-columns-5 .gallery-item {
max-width: 19%;
max-width: -webkit-calc(16%);
max-width: calc(16%);
width: auto!important;
}
.gallery-columns-6 .gallery-item {
max-width: 15%;
max-width: -webkit-calc(12.7%);
max-width: calc(12.7%);
width: auto!important;
}
.gallery-columns-7 .gallery-item {
max-width: 13%;
max-width: -webkit-calc(10.28%);
max-width: calc(10.28%);
width: auto!important;
}
.gallery-columns-8 .gallery-item {
max-width: 11%;
max-width: -webkit-calc(8.5%);
max-width: calc(8.5%);
width: auto!important;
}
.gallery-columns-9 .gallery-item {
max-width: 9%;
max-width: -webkit-calc(7.1%);
max-width: calc(7.1%);
width: auto!important;
}
.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
margin-right: 0;
}
.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
clear: left;
}
.gallery-caption {
background-color: rgba(0, 0, 0, 0.7);
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #fff;
font-size: 12px;
line-height: 1.5;
margin: 0;
max-height: 50%;
opacity: 0;
padding: 6px 8px;
position: absolute;
bottom: 0;
left: 0;
text-align: left;
width: 100%;
}
.gallery-caption:before {
content: "";
height: 100%;
min-height: 49px;
position: absolute;
top: 0;
left: 0;
width: 100%;
}
.gallery-item:hover .gallery-caption {
opacity: 1;
}
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
display: none;
}
#gallery-2 {
width: 300px;
}
#gallery-10 img,
#gallery-9 img,
#gallery-8 img,
#gallery-7 img,
#gallery-6 img,
#gallery-5 img,
#gallery-4 img,
#gallery-3 img,
#gallery-2 img,
#gallery-1 img {
width: 100%;
height: auto;
border: none!important;
}
#gallery-3 {
width: 600px;
}
#wpadminbar {
height: 33px;
}
.tzBackground_loading {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 99999999999999999;
background-color: #fff;
}
#tz-loading {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 999999999;
background-color: #fff;
}
#tz-loading img {
position: absolute;
top: 50%;
left: 50%;
margin-top: -45px;
margin-left: -45px;
}
.tz-blogSingle .tz-blogSingleContent .tz-SingleContentBox .single-content ul li {
color: #444444;
font-family: "Raleway", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
} h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
color: #222222;
margin: 0px 0px 20px;
padding: 0px;
}
h1 {
font-size: 35px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 23px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 15px;
}
h6 {
font-size: 14px;
}
p {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 25px;
color: #666666;
letter-spacing: 0.5px;
}
.tzFontWeight_Regular p {
font-weight: 400;
} .tz-header {
z-index: 99999;  }
.tz-header .tz-headerTop {
background: #e5ae49;
}
.tz-header .tz-headerTop:after {
content: '';
clear: both;
display: block;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support:after {
content: '';
clear: both;
display: block;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml {
float: left;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul {
margin: 0px;
padding: 0px;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li {
list-style: none;
position: relative;
width: auto;
float: none;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > a {
display: block;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 13px;
line-height: 13px;
color: #ffffff;
text-decoration: none;
padding: 16px 20px 16px 0px;
position: relative;
background: none;
border: none;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > a i {
font-size: 14px;
padding-right: 10px;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > a:after {
content: '\f107';
font-family: FontAwesome;
color: #ffffff;
position: absolute;
top: 18px;
right: 0;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > ul {
margin: 0px;
padding: 0px;
position: absolute;
top: 120%;
left: 0;
width: 250px;
height: auto;
border-top: 3px solid #222222;
background: #fff;
visibility: hidden;
opacity: 0;
-webkit-box-shadow: 0 1px 6px -4px #000000;
-moz-box-shadow: 0 1px 6px -4px #000000;
-ms-box-shadow: 0 1px 6px -4px #000000;
-o-box-shadow: 0 1px 6px -4px #000000;
box-shadow: 0 1px 6px -4px #000000;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
z-index: 99;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > ul > li {
list-style: none;
position: relative;
width: auto;
float: none;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > ul > li a {
display: block;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 13px;
line-height: 13px;
color: #ffffff;
text-decoration: none;
position: relative;
background: none;
border: none;
border-bottom: 1px solid #dcdcdc;
padding: 15px 30px;
color: #666666;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > ul > li a:after {
content: none;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > ul > li a img {
margin-right: 15px;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > ul > li a:hover {
background: #ededed;
color: #222222;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li:hover > ul {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_line {
float: left;
font-size: 14px;
color: rgba(255, 255, 255, 0.3);
padding: 11px 15px;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_site {
float: left;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 13px;
line-height: 13px;
color: #ffffff;
text-decoration: none;
padding: 16px 0px;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_site i {
font-size: 14px;
padding-right: 10px;
}
.tz-header .tz-headerTop .tz-headerRight ul.tzheader_social {
margin: 0px;
padding: 0px;
}
.tz-header .tz-headerTop .tz-headerRight ul.tzheader_social:after {
content: '';
clear: both;
display: block;
}
.tz-header .tz-headerTop .tz-headerRight ul.tzheader_social li {
list-style: none;
float: left;
padding: 12px 0px 10px 26px;
}
.tz-header .tz-headerTop .tz-headerRight ul.tzheader_social li:last-child {
border: none;
}
.tz-header .tz-headerTop .tz-headerRight ul.tzheader_social li a i {
font-size: 15px;
color: #FFFFFF;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerTop .tz-headerRight ul.tzheader_social li a:hover i {
color: #222222;
}
.tz-header .tz-headerBottom {
position: relative;
-moz-transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
width: 100%;
}
.tz-header .tz-headerBottom .tz_icon_menu {
display: none;
}
.tz-header .tz-headerBottom a.tz_logo {
font-family: 'Montserrat', sans-serif;
font-size: 40px;
font-weight: 700;
color: #222222;
text-decoration: none;
padding: 20px 0px 21px;
}
.tz-header .tz-headerBottom nav { }
.tz-header .tz-headerBottom nav ul.tz-nav li {
position: relative;
}
.tz-header .tz-headerBottom nav ul.tz-nav li a {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
text-decoration: none;
text-transform: uppercase;
padding: 44px 27px 40px;
margin: 0px;
}
.tz-header .tz-headerBottom nav ul.tz-nav li.current-menu-item a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu {
position: absolute;
top: 120%;
left: 0px;
margin: 0px;
padding: 0px;
background: #FFFFFF;
border-top: 3px solid #222222;
width: 270px;
visibility: hidden;
opacity: 0;
z-index: 9999;
-webkit-box-shadow: 0 1px 6px -4px #000000;
-moz-box-shadow: 0 1px 6px -4px #000000;
-ms-box-shadow: 0 1px 6px -4px #000000;
-o-box-shadow: 0 1px 6px -4px #000000;
box-shadow: 0 1px 6px -4px #000000;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li {
list-style: none;
position: relative;
border-bottom: 1px solid #ededed;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li:last-child {
border: none;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li.menu-item-has-children:after {
content: "\f0da";
font-family: FontAwesome;
font-size: 15px;
content: #222222;
position: absolute;
top: 14px;
right: 20px;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li:hover {
background: #ededed;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li:hover a {
color: #222222;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li.current-menu-item {
background: #ededed;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li.current-menu-item a {
color: #222222;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li a {
display: block;
margin: 0px;
padding: 14px 29px 16px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 24px;
text-decoration: none;
text-transform: none;
color: #666666;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li ul.sub-menu {
position: absolute;
top: 0px;
left: 120%;
margin: 0px;
padding: 0px;
background: #FFFFFF;
border-top: 3px solid #222222;
width: 270px;
opacity: 0;
visibility: hidden;
-webkit-box-shadow: 0 1px 6px -4px #000000;
-moz-box-shadow: 0 1px 6px -4px #000000;
-ms-box-shadow: 0 1px 6px -4px #000000;
-o-box-shadow: 0 1px 6px -4px #000000;
box-shadow: 0 1px 6px -4px #000000;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li:hover ul.sub-menu {
left: 100%;
opacity: 1;
visibility: visible;
}
.tz-header .tz-headerBottom nav ul.tz-nav li:hover ul.non_mega_menu {
top: 100%;
opacity: 1;
visibility: visible;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu {
position: absolute;
top: 120%;
left: 0px;
margin: 0px;
padding: 0px;
background: #fff;
border-top: 3px solid #222222;
visibility: hidden;
opacity: 0;
z-index: 9999;
-webkit-box-shadow: 0 1px 6px -4px #000000;
-moz-box-shadow: 0 1px 6px -4px #000000;
-ms-box-shadow: 0 1px 6px -4px #000000;
-o-box-shadow: 0 1px 6px -4px #000000;
box-shadow: 0 1px 6px -4px #000000;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu.themeple_mega1 {
width: 220px!important;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu.themeple_mega2 {
width: 440px!important;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu.themeple_mega2 > ul > li {
width: 205px!important;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu.themeple_mega3 {
width: 600px!important;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu.themeple_mega3 > ul > li {
width: 190px!important;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu.themeple_mega4 {
width: 800px!important;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu.themeple_mega4 > ul > li {
width: 192px!important;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu.themeple_mega5 {
width: 930px!important;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu.themeple_mega5 > ul > li {
width: 180px!important;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu ul.sub-menu {
margin: 0px;
padding: 0px;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu ul.sub-menu:after {
content: '';
clear: both;
display: block;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu ul.sub-menu > li {
list-style: none;
float: left;
width: 100%;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu ul.sub-menu > li > a {
display: block;
margin: 0px;
padding: 14px 0px 16px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 24px;
text-decoration: none;
text-transform: none;
color: #666666;
border-bottom: 1px solid #ededed;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu ul.sub-menu > li > a:hover {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu ul.sub-menu > li.current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu > ul.sub-menu {
padding: 0px 15px;
}
.tz-header .tz-headerBottom nav ul.tz-nav li .themeple_custom_menu_mega_menu > ul.sub-menu > li {
padding: 0px 15px;
}
.tz-header .tz-headerBottom nav ul.tz-nav li:hover .themeple_custom_menu_mega_menu {
top: 100%;
opacity: 1;
visibility: visible;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu {
top: 120%;
visibility: hidden;
opacity: 0;
left: 0 !important;
display: block!important;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
clear: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item h4 {
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
padding: 36px 0px 26px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a {
display: block;
margin: 0px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
text-decoration: none;
text-transform: none;
color: #666666;
border-bottom: 1px solid #ededed;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a:hover {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.woocommerce ul li a {
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product-categories li a {
padding-top: 14px;
padding-bottom: 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li {
margin: 0px 0px 21px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li:after {
content: '';
display: block;
clear: both;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
float: left;
width: 80px;
height: auto;
margin-right: 20px;
margin-bottom: 20px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
display: block;
margin-bottom: 10px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
font-family: star !important;
font-size: 1em !important;
height: 1em !important;
line-height: 1 !important;
overflow: hidden !important;
position: relative !important;
width: 5.4em !important;
margin-bottom: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating:before {
display: block !important;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating span:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li span.amount {
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li ins {
text-decoration: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_nav_menu ul li a {
padding: 14px 0 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {
font-family: "Ubuntu", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item:hover > ul.mega-sub-menu {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-ancestor > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 120%;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:hover ul.mega-sub-menu {
left: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu
{
top: 120%;
visibility: hidden;
opacity: 0;
display: block!important;
left: 0 !important;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-item > a {
font-family: 'Ubuntu', sans-serif;
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
clear: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item h4 {
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
padding: 36px 0px 26px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a,
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-8 #mega-menu-primary-custom-8 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a
{
display: block;
margin: 0px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
text-decoration: none;
text-transform: none;
color: #666666;
border-bottom: 1px solid #ededed;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a:hover,
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-8 #mega-menu-primary-custom-8 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a:hover
{
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.woocommerce ul li a {
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product-categories li a {
padding-top: 14px;
padding-bottom: 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li {
margin: 0px 0px 21px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li:after {
content: '';
display: block;
clear: both;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
float: left;
width: 80px;
height: auto;
margin-right: 20px;
margin-bottom: 20px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
display: block;
margin-bottom: 10px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
font-family: star !important;
font-size: 1em !important;
height: 1em !important;
line-height: 1 !important;
overflow: hidden !important;
position: relative !important;
width: 5.4em !important;
margin-bottom: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating:before {
display: block !important;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating span:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li span.amount {
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li ins {
text-decoration: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_nav_menu ul li a,
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-8 #mega-menu-primary-custom-8 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_nav_menu ul li a
{
padding: 14px 0 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item:hover > ul.mega-sub-menu {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-ancestor > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {
font-family: 'Ubuntu', sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 120%;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:hover ul.mega-sub-menu {
left: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu {
top: 120%;
visibility: hidden;
opacity: 0;
left: 0 !important;
display: block!important;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
clear: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item h4 {
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
padding: 36px 0px 26px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a {
display: block;
margin: 0px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
text-decoration: none;
text-transform: none;
color: #666666;
border-bottom: 1px solid #ededed;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a:hover {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.woocommerce ul li a {
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product-categories li a {
padding-top: 14px;
padding-bottom: 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li {
margin: 0px 0px 21px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li:after {
content: '';
display: block;
clear: both;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
float: left;
width: 80px;
height: auto;
margin-right: 20px;
margin-bottom: 20px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
display: block;
margin-bottom: 10px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
font-family: star !important;
font-size: 1em !important;
height: 1em !important;
line-height: 1 !important;
overflow: hidden !important;
position: relative !important;
width: 5.4em !important;
margin-bottom: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating:before {
display: block !important;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating span:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li span.amount {
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li ins {
text-decoration: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_nav_menu ul li a {
padding: 14px 0 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item:hover > ul.mega-sub-menu {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-ancestor > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 120%;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:hover ul.mega-sub-menu {
left: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu {
top: 120%;
visibility: hidden;
opacity: 0;
left: 0 !important;
display: block!important;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
clear: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item h4 {
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
padding: 36px 0px 26px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a {
display: block;
margin: 0px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
text-decoration: none;
text-transform: none;
color: #666666;
border-bottom: 1px solid #ededed;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a:hover {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.woocommerce ul li a {
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product-categories li a {
padding-top: 14px;
padding-bottom: 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li {
margin: 0px 0px 21px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li:after {
content: '';
display: block;
clear: both;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
float: left;
width: 80px;
height: auto;
margin-right: 20px;
margin-bottom: 20px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
display: block;
margin-bottom: 10px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
font-family: star !important;
font-size: 1em !important;
height: 1em !important;
line-height: 1 !important;
overflow: hidden !important;
position: relative !important;
width: 5.4em !important;
margin-bottom: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating:before {
display: block !important;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating span:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li span.amount {
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li ins {
text-decoration: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_nav_menu ul li a {
padding: 14px 0 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item:hover > ul.mega-sub-menu {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-ancestor > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 120%;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:hover ul.mega-sub-menu {
left: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu {
top: 120%;
visibility: hidden;
opacity: 0;
left: 0 !important;
display: block!important;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
clear: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item h4 {
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
padding: 36px 0px 26px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a {
display: block;
margin: 0px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
text-decoration: none;
text-transform: none;
color: #666666;
border-bottom: 1px solid #ededed;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a:hover {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.woocommerce ul li a {
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product-categories li a {
padding-top: 14px;
padding-bottom: 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li {
margin: 0px 0px 21px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li:after {
content: '';
display: block;
clear: both;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
float: left;
width: 80px;
height: auto;
margin-right: 20px;
margin-bottom: 20px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
display: block;
margin-bottom: 10px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
font-family: star !important;
font-size: 1em !important;
height: 1em !important;
line-height: 1 !important;
overflow: hidden !important;
position: relative !important;
width: 5.4em !important;
margin-bottom: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating:before {
display: block !important;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating span:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li span.amount {
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li ins {
text-decoration: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_nav_menu ul li a {
padding: 14px 0 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item:hover > ul.mega-sub-menu {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-ancestor > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 120%;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:hover ul.mega-sub-menu {
left: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu {
top: 120%;
visibility: hidden;
opacity: 0;
left: 0 !important;
display: block!important;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
clear: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item h4 {
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
padding: 36px 0px 26px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a {
display: block;
margin: 0px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
text-decoration: none;
text-transform: none;
color: #666666;
border-bottom: 1px solid #ededed;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a:hover {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.woocommerce ul li a {
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product-categories li a {
padding-top: 14px;
padding-bottom: 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li {
margin: 0px 0px 21px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li:after {
content: '';
display: block;
clear: both;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
float: left;
width: 80px;
height: auto;
margin-right: 20px;
margin-bottom: 20px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
display: block;
margin-bottom: 10px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
font-family: star !important;
font-size: 1em !important;
height: 1em !important;
line-height: 1 !important;
overflow: hidden !important;
position: relative !important;
width: 5.4em !important;
margin-bottom: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating:before {
display: block !important;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating span:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li span.amount {
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li ins {
text-decoration: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_nav_menu ul li a {
padding: 14px 0 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item:hover > ul.mega-sub-menu {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-ancestor > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 120%;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:hover ul.mega-sub-menu {
left: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu {
top: 120%;
visibility: hidden;
opacity: 0;
left: 0 !important;
display: block!important;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
clear: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item h4 {
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
padding: 36px 0px 26px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a {
display: block;
margin: 0px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
text-decoration: none;
text-transform: none;
color: #666666;
border-bottom: 1px solid #ededed;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item ul li a:hover {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.woocommerce ul li a {
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product-categories li a {
padding-top: 14px;
padding-bottom: 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li {
margin: 0px 0px 21px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li:after {
content: '';
display: block;
clear: both;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
float: left;
width: 80px;
height: auto;
margin-right: 20px;
margin-bottom: 20px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
display: block;
margin-bottom: 10px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
font-family: star !important;
font-size: 1em !important;
height: 1em !important;
line-height: 1 !important;
overflow: hidden !important;
position: relative !important;
width: 5.4em !important;
margin-bottom: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating:before {
display: block !important;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating span:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li span.amount {
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
line-height: 24px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li ins {
text-decoration: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_top_rated_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products h4 {
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_products ul.product_list_widget li a {
padding: 0;
border: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item.widget_nav_menu ul li a {
padding: 14px 0 16px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item:hover > ul.mega-sub-menu {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-item > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-ancestor > a {
color: #e5ae49;
background: none;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {
font-family: "Ubuntu", sans-serif;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 120%;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:hover ul.mega-sub-menu {
left: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom nav .mega-menu-wrap ul.mega-menu li a {
font-family: "Montserrat", sans-serif;
}
.tz-header .tz-headerBottom .tz-header-cart {
position: relative;
}
.tz-header .tz-headerBottom .tz-header-cart > span {
font-size: 17px;
color: #bebebe;
display: inline-block;
padding: 46px 0 41px 22px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom .tz-header-cart > span:hover {
color: #e5ae49;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart {
position: absolute;
top: 120%;
right: 0px;
width: 430px;
padding: 30px;
border-top: 3px solid #222222;
visibility: hidden;
opacity: 0;
z-index: 9999;
background: #ffffff;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list {
padding: 0;
margin: 0;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li {
list-style: none;
position: relative;
padding: 0px 0px 20px;
margin: 0px 0px 20px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li .tzMiniCart_image {
float: left;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li .tzMiniCart_image a {
display: inline-block;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li .tzMiniCart_image a img {
float: none;
width: 80px;
height: auto;
margin: 0px;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li .tzMiniCart_info {
margin-left: 100px;
padding-right: 50px;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li .tzMiniCart_info a {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
line-height: 24px;
text-decoration: none;
display: block;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li .tzMiniCart_info span.quantity {
padding: 0px;
margin: 0px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li .tzMiniCart_info span.quantity span.amount {
padding: 0px;
margin: 0px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #e5ae49;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li a.remove {
position: absolute;
top: 10px;
right: 0;
left: auto;
font-size: 20px;
color: #222222 !important;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li a.remove:hover {
background: #e5ae49;
color: #ffffff !important;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content ul.cart_list li.empty {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
line-height: 24px;
margin: 0px;
padding: 0px;
border: none;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content p.total {
float: right;
margin: 0px;
padding: 3px 0px 0px;
border: none;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content p.total strong {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #151515;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content p.total span.amount {
padding: 0;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #e5ae49;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content p.buttons {
float: left;
margin: 0px;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content p.buttons a {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #ffffff;
padding: 8px 20px;
margin-right: 7px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
background: #222222;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
text-align: center;
}
.tz-header .tz-headerBottom .tz-header-cart .widget_shopping_cart .widget_shopping_cart_content p.buttons a:hover {
background: #e5ae49;
}
.tz-header .tz-headerBottom .tz-header-cart:hover {
cursor: pointer;
}
.tz-header .tz-headerBottom .tz-header-cart:hover .widget_shopping_cart {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom .tz-header-search {
position: relative;
}
.tz-header .tz-headerBottom .tz-header-search span {
font-size: 17px;
color: #bebebe;
display: inline-block;
padding: 46px 0 41px 8px;
}
.tz-header .tz-headerBottom .tz-header-search span.icon_close {
display: none;
}
.tz-header .tz-headerBottom .tz-header-search span:hover {
color: #e5ae49;
cursor: pointer;
}
.tz-header .tz-headerBottom .tz-header-search .tz-header-search-form {
position: absolute;
top: 120%;
right: 0px;
width: 270px;
border-top: 3px solid #222222;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
visibility: hidden;
opacity: 0;
z-index: 9999;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom .tz-header-search .tz-header-search-form .searchform label {
display: none;
}
.tz-header .tz-headerBottom .tz-header-search .tz-header-search-form .searchform input {
width: 100%;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
color: #bebebe;
padding: 15px 21px;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
position: relative;
}
.tz-header .tz-headerBottom .tz-header-search .tz-header-search-form .searchform input.searchsubmit {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
display: block;
font-size: 0;
height: 20px;
padding: 0;
position: absolute;
right: 9px;
top: 14px;
width: 20px;
z-index: 9;
}
.tz-header .tz-headerBottom .tz-header-search .tz-header-search-form .searchform span {
position: absolute;
right: 11px;
top: 17px;
padding: 0;
font-size: 14px;
color: #e5ae49;
}
.tz-header .tz-headerBottom .tz-header-search .tz-header-search-form.tz-header-search-form-show {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header.scroll {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
z-index: 999999;
-webkit-transform: translate(0, -100%);
-moz-transform: translate(0, -100%);
-ms-transform: translate(0, -100%);
-o-transform: translate(0, -100%);
transform: translate(0, -100%);
-webkit-transition: all 0.1s;
-moz-transition: all 0.1s;
-ms-transition: all 0.1s;
-o-transition: all 0.1s;
transition: all 0.1s;
}
.tz-header.scroll.active {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-ms-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
-webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
-o-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.tz-header.tz-header-type-1 .tz-headerBottom {
background: #FFFFFF;
}
.tz-header.tz-header-type-2 .tz-headerTop {
background: #FFFFFF;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box {
border-bottom: 1px solid #e3e3e3;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box:after {
content: '';
clear: both;
display: block;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel ul li a {
color: #333333;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel ul li a:after {
color: #333333;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel ul li ul {
border-top: 3px solid #333333;
background: #fff;
-webkit-box-shadow: 0 1px 6px -4px #000000;
-moz-box-shadow: 0 1px 6px -4px #000000;
-ms-box-shadow: 0 1px 6px -4px #000000;
-o-box-shadow: 0 1px 6px -4px #000000;
box-shadow: 0 1px 6px -4px #000000;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
z-index: 99;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel ul li ul li a {
border-bottom: 1px solid #dcdcdc;
padding: 15px 30px;
color: #333333;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel ul li ul li a:after {
content: none;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel ul li ul li a img {
margin-right: 15px;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel ul li ul li a:hover {
background: #ededed;
color: #222222;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel ul li:hover ul {
top: 100%;
visibility: visible;
opacity: 1;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_line {
color: #e3e3e3;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerLeft .tzheader_support .tzheader_site {
color: #333333;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerRight ul.tzheader_social li a i {
color: #222222;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header.tz-header-type-2 .tz-headerTop .tz-headerTop-box .tz-headerRight ul.tzheader_social li a:hover i {
color: #e5ae49;
}
.tz-header.tz-header-type-2 .tz-headerBottom {
background: #FFFFFF;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav ul.tz-nav > li > a {
padding: 44px 22px 40px;
font-size: 15px;
text-transform: none;
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav ul.tz-nav > li > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav ul.tz-nav > li > a:hover {
background: none;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav ul.tz-nav > li > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav ul.tz-nav > li.current-menu-item > a {
color: #222222;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav ul.tz-nav > li.current-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav ul.tz-nav > li.current-one-page a {
color: #e5ae49;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-2 .tz-header .tz-headerBottom nav ul.tz-nav li.current-menu-item a {
color: #fbc02d;
}
.tz-header.tz-header-type-3 {
position: relative;
}
.tz-header.tz-header-type-3 .tz-headerBottom {
display: block;
width: 100%;
position: fixed;
top: 0;
left: 0;
padding: 22px 0 0;
background: rgba(0, 0, 0, 0.5);
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(12%, rgba(0, 0, 0, 0.44)), color-stop(50%, rgba(0, 0, 0, 0.25)), color-stop(73%, rgba(0, 0, 0, 0.14)), color-stop(100%, rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
}
.tz-header.tz-header-type-3 .tz-headerBottom nav ul.tz-nav li a {
color: #FFFFFF;
padding: 44px 30px 40px;
}
.tz-header.tz-header-type-3 .tz-headerBottom nav ul.tz-nav li a:hover {
background: none;
color: #e5ae49;
}
.tz-header.tz-header-type-3 .tz-headerBottom nav ul.tz-nav li a:focus {
background: none;
}
.tz-header.tz-header-type-3 .tz-headerBottom nav ul.tz-nav li.current-menu-item > a {
color: #e5ae49;
}
.tz-header.tz-header-type-3 .tz-headerBottom nav ul.tz-nav li.current-one-page a {
color: #e5ae49;
}
.tz-header.tz-header-type-3 .tz-headerBottom .tz-header-search span {
color: #FFFFFF;
}
.tz-header.tz-header-type-3 .tz-headerBottom .tz-header-cart span {
color: #FFFFFF;
}
.tz-header.tz-header-type-4 .tz-headerBottom {
padding: 0 15px;
-webkit-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
background: #ffffff;
}
.tz-header.tz-header-type-4 .tz-headerBottom .container {
width: 100%;
}
.tz-header.tz-header-type-4 .tz-headerBottom a.tz_logo {
padding: 16px 0 17px 13px;
}
.tz-header.tz-header-type-4 .tz-headerBottom .tz-header-cart span {
padding: 36px 15px 37px 0;
}
.tz-header.tz-header-type-4 .tz-headerBottom .tz-header-search span {
padding: 36px 32px 37px 25px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav ul.tz-nav > li > a {
padding: 44px 22px 40px;
font-size: 15px;
text-transform: none;
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav ul.tz-nav > li > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav ul.tz-nav > li > a:hover {
background: none;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav ul.tz-nav > li > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav ul.tz-nav > li.current-menu-item > a {
color: #222222;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav ul.tz-nav > li.current-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav ul.tz-nav > li.current-one-page a {
color: #e5ae49;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-4 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom {
padding: 0 15px;
-webkit-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
background: #ffffff;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-5 .tz-headerBottom .container {
width: 100%;
}
.tz-header.tz-header-type-5 .tz-headerBottom a.tz_logo {
padding: 12px 0 15px 13px;
}
.tz-header.tz-header-type-5 .tz-headerBottom .tz-header-cart > span {
font-size: 20px;
padding: 30px 0px 34px 30px;
border-left: 1px solid rgba(102, 102, 102, 0.1);
}
.tz-header.tz-header-type-5 .tz-headerBottom .tz-header-search > span {
font-size: 20px;
padding: 32px 30px;
border-left: 1px solid rgba(102, 102, 102, 0.1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav ul.tz-nav > li > a {
padding: 44px 22px 40px;
font-size: 15px;
text-transform: none;
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav ul.tz-nav > li > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav ul.tz-nav > li > a:hover {
background: none;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav ul.tz-nav > li > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav ul.tz-nav > li.current-menu-item > a {
color: #222222;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav ul.tz-nav > li.current-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav ul.tz-nav > li.current-one-page a {
color: #e5ae49;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a:after {
content: none;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a:after {
content: none;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a:after {
content: none;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-5 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerTop {
background: #eee;
}
.tz-header.tz-header-type-6 .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > a {
color: #333333;
}
.tz-header.tz-header-type-6 .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_wpml #lang_sel > ul > li > a:after {
color: #333333;
}
.tz-header.tz-header-type-6 .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_line {
color: #333333;
}
.tz-header.tz-header-type-6 .tz-headerTop .tz-headerLeft .tzheader_support .tzheader_site {
color: #333333;
}
.tz-header.tz-header-type-6 .tz-headerTop .tz-headerRight ul.tzheader_social li a i {
color: #333333;
}
.tz-header.tz-header-type-6 .tz-headerTop .tz-headerRight ul.tzheader_social li a i:hover {
color: #e5ae49;
}
.tz-header.tz-header-type-6 .tz-headerBottom {
background: #FFFFFF;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-logo {
text-align: center;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-logo a.tz_logo {
float: none !important;
display: inline-block;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu {
border-top: 1px solid #e3e3e3;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu .container {
display: flex;
flex-direction: row-reverse;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu .tz-header-cart {
float: none !important;
width: 39px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu .tz-header-cart > span {
padding: 20px 0 20px 22px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu .tz-header-search {
float: none !important;
width: 25px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu .tz-header-search span {
padding: 20px 0 20px 8px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu .tz-header-search .tz-header-search-form .searchform span {
padding: 0;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav {
float: none !important;
flex-grow: 1;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav ul.tz-nav > li > a {
padding: 44px 22px 40px;
font-size: 15px;
text-transform: none;
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav ul.tz-nav > li > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav ul.tz-nav > li > a:hover {
background: none;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav ul.tz-nav > li > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav ul.tz-nav > li.current-menu-item > a {
color: #222222;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav ul.tz-nav > li.current-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: -1px;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav ul.tz-nav > li.current-one-page a {
color: #e5ae49;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: -1px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 5px;
left: 0;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(0.6);
-moz-transform: scale(0.6);
-ms-transform: scale(0.6);
-o-transform: scale(0.6);
transform: scale(0.6);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a:after {
content: none;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a:after {
content: none;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a:after {
content: none;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a:hover:after {
opacity: 1;
visibility: visible;
top: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-item > a:after {
opacity: 1;
visibility: visible;
top: 0px;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-parent > a {
position: relative;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-current-menu-parent > a:after {
content: '';
display: block;
width: 100%;
height: 2px;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
margin: 0px;
}
.tz-header.tz-header-type-6 .tz-headerBottom .tz-header-menu .tz-header-menu-space {
width: 64px;
}
.tz-header.tz-header-type-7 {
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 320px;
background: #2A2A2A;
padding: 30px;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
-webkit-box-direction: normal;
-webkit-box-orient: vertical;
-ms-flex-direction: column;
-webkit-flex-direction: column;
}
.tz-header.tz-header-type-7 .tz-headerBottom {
flex-grow: 1;
-ms-flex-positive: 1;
-webkit-flex-grow: 1;
flex-shrink: 1;
-ms-flex-negative: 1;
-webkit-flex-shrink: 1;
flex-basis: 0;
-ms-preferred-size: 0;
-webkit-flex-basis: 0;
}
.tz-header.tz-header-type-7 .tz-header-social {
flex-grow: 0;
-ms-flex-positive: 0;
-webkit-flex-grow: 0;
}
.tz-header.tz-header-type-7 .tz-header-social span {
display: block;
text-align: center;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
text-transform: uppercase;
margin: 0 0 18px;
}
.tz-header.tz-header-type-7 .tz-header-social ul {
margin: 0;
padding: 0;
}
.tz-header.tz-header-type-7 .tz-header-social ul:after {
content: '';
display: block;
clear: both;
}
.tz-header.tz-header-type-7 .tz-header-social ul li {
float: left;
list-style: none;
}
.tz-header.tz-header-type-7 .tz-header-social ul li a {
display: inline-block;
width: 51px;
text-align: center;
padding: 6px 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-header-social ul li a i {
font-size: 18px;
color: #95979d;
}
.tz-header.tz-header-type-7 .tz-header-social ul li:hover i {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom:after {
content: '';
display: block;
clear: both;
}
.tz-header.tz-header-type-7 .tz-headerBottom a.tz_logo {
float: none !important;
display: block;
text-align: center;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav {
float: none !important;
margin-top: 100px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav {
float: none !important;
padding: 0;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li {
float: none;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li.menu-item-has-children::after {
content: "\f105";
font-family: FontAwesome;
font-size: 15px;
color: #95979d;
position: absolute;
top: 12px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li a {
font-family: 'Ubuntu', sans-serif;
font-size: 15px;
font-weight: 700;
color: #95979d;
padding: 12px 30px 12px;
background: none;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu {
top: 0;
left: 100%;
-webkit-transform: translate(53px, 0);
-moz-transform: translate(53px, 0);
-ms-transform: translate(53px, 0);
-o-transform: translate(53px, 0);
transform: translate(53px, 0);
border-top: none;
border-left: 3px solid #2A2A2A;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li.menu-item-has-children::after {
content: "\f105";
color: #2A2A2A;
top: 16px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li ul.sub-menu {
left: 100%;
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
border-top: none;
border-left: 3px solid #2A2A2A;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li:hover > ul.sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(3px, 0);
-moz-transform: translate(3px, 0);
-ms-transform: translate(3px, 0);
-o-transform: translate(3px, 0);
transform: translate(3px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li:hover.menu-item-has-children::after {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li:hover > a {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav ul.tz-nav li:hover > ul.non_mega_menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(33px, 0);
-moz-transform: translate(33px, 0);
-ms-transform: translate(33px, 0);
-o-transform: translate(33px, 0);
transform: translate(33px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item {
display: block;
position: relative;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a {
font-family: 'Ubuntu', sans-serif;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu {
top: 0;
left: 100% !important;
-webkit-transform: translate(53px, 0);
-moz-transform: translate(53px, 0);
-ms-transform: translate(53px, 0);
-o-transform: translate(53px, 0);
transform: translate(53px, 0);
margin-top: 0;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #666;
position: absolute;
top: 15px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
z-index: 9;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 100% !important;
top: 0;
margin-top: 0;
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(3px, 0);
-moz-transform: translate(3px, 0);
-ms-transform: translate(3px, 0);
-o-transform: translate(3px, 0);
transform: translate(3px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #95979d;
position: absolute;
top: 10px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item:hover.mega-menu-item-has-children::before {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(33px, 0);
-moz-transform: translate(33px, 0);
-ms-transform: translate(33px, 0);
-o-transform: translate(33px, 0);
transform: translate(33px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item {
display: block;
position: relative;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a {
font-family: 'Ubuntu', sans-serif;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu {
top: 0;
left: 100% !important;
-webkit-transform: translate(53px, 0);
-moz-transform: translate(53px, 0);
-ms-transform: translate(53px, 0);
-o-transform: translate(53px, 0);
transform: translate(53px, 0);
margin-top: 0;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #666;
position: absolute;
top: 15px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
z-index: 9;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 100% !important;
top: 0;
margin-top: 0;
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(3px, 0);
-moz-transform: translate(3px, 0);
-ms-transform: translate(3px, 0);
-o-transform: translate(3px, 0);
transform: translate(3px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #95979d;
position: absolute;
top: 10px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item:hover.mega-menu-item-has-children::before {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(33px, 0);
-moz-transform: translate(33px, 0);
-ms-transform: translate(33px, 0);
-o-transform: translate(33px, 0);
transform: translate(33px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item {
display: block;
position: relative;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > a {
font-family: 'Ubuntu', sans-serif;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > ul.mega-sub-menu {
top: 0;
left: 100% !important;
-webkit-transform: translate(53px, 0);
-moz-transform: translate(53px, 0);
-ms-transform: translate(53px, 0);
-o-transform: translate(53px, 0);
transform: translate(53px, 0);
margin-top: 0;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #666;
position: absolute;
top: 15px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
z-index: 9;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 100% !important;
top: 0;
margin-top: 0;
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(3px, 0);
-moz-transform: translate(3px, 0);
-ms-transform: translate(3px, 0);
-o-transform: translate(3px, 0);
transform: translate(3px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #95979d;
position: absolute;
top: 10px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item:hover.mega-menu-item-has-children::before {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(33px, 0);
-moz-transform: translate(33px, 0);
-ms-transform: translate(33px, 0);
-o-transform: translate(33px, 0);
transform: translate(33px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item {
display: block;
position: relative;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a {
font-family: 'Ubuntu', sans-serif;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu {
top: 0;
left: 100% !important;
-webkit-transform: translate(53px, 0);
-moz-transform: translate(53px, 0);
-ms-transform: translate(53px, 0);
-o-transform: translate(53px, 0);
transform: translate(53px, 0);
margin-top: 0;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #666;
position: absolute;
top: 15px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
z-index: 9;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 100% !important;
top: 0;
margin-top: 0;
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(3px, 0);
-moz-transform: translate(3px, 0);
-ms-transform: translate(3px, 0);
-o-transform: translate(3px, 0);
transform: translate(3px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #95979d;
position: absolute;
top: 10px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item:hover.mega-menu-item-has-children::before {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(33px, 0);
-moz-transform: translate(33px, 0);
-ms-transform: translate(33px, 0);
-o-transform: translate(33px, 0);
transform: translate(33px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item {
display: block;
position: relative;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a {
font-family: 'Ubuntu', sans-serif;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu {
top: 0;
left: 100% !important;
-webkit-transform: translate(53px, 0);
-moz-transform: translate(53px, 0);
-ms-transform: translate(53px, 0);
-o-transform: translate(53px, 0);
transform: translate(53px, 0);
margin-top: 0;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #666;
position: absolute;
top: 15px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
z-index: 9;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 100% !important;
top: 0;
margin-top: 0;
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(3px, 0);
-moz-transform: translate(3px, 0);
-ms-transform: translate(3px, 0);
-o-transform: translate(3px, 0);
transform: translate(3px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #95979d;
position: absolute;
top: 10px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item:hover.mega-menu-item-has-children::before {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(33px, 0);
-moz-transform: translate(33px, 0);
-ms-transform: translate(33px, 0);
-o-transform: translate(33px, 0);
transform: translate(33px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item {
display: block;
position: relative;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a {
font-family: 'Ubuntu', sans-serif;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu {
top: 0;
left: 100% !important;
-webkit-transform: translate(53px, 0);
-moz-transform: translate(53px, 0);
-ms-transform: translate(53px, 0);
-o-transform: translate(53px, 0);
transform: translate(53px, 0);
margin-top: 0;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #666;
position: absolute;
top: 15px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
z-index: 9;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 100% !important;
top: 0;
margin-top: 0;
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(3px, 0);
-moz-transform: translate(3px, 0);
-ms-transform: translate(3px, 0);
-o-transform: translate(3px, 0);
transform: translate(3px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #95979d;
position: absolute;
top: 10px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item:hover.mega-menu-item-has-children::before {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(33px, 0);
-moz-transform: translate(33px, 0);
-ms-transform: translate(33px, 0);
-o-transform: translate(33px, 0);
transform: translate(33px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item {
display: block;
position: relative;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a {
font-family: 'Ubuntu', sans-serif;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu {
top: 0;
left: 100% !important;
-webkit-transform: translate(53px, 0);
-moz-transform: translate(53px, 0);
-ms-transform: translate(53px, 0);
-o-transform: translate(53px, 0);
transform: translate(53px, 0);
margin-top: 0;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #666;
position: absolute;
top: 15px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
z-index: 9;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
left: 100% !important;
top: 0;
margin-top: 0;
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(3px, 0);
-moz-transform: translate(3px, 0);
-ms-transform: translate(3px, 0);
-o-transform: translate(3px, 0);
transform: translate(3px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-menu-item-has-children::before {
content: "\f105";
display: block;
width: 6px;
height: 24px;
font-family: FontAwesome;
font-size: 15px;
color: #95979d;
position: absolute;
top: 10px;
right: 30px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item:hover.mega-menu-item-has-children::before {
color: #FFFFFF;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item:hover > ul.mega-sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translate(33px, 0);
-moz-transform: translate(33px, 0);
-ms-transform: translate(33px, 0);
-o-transform: translate(33px, 0);
transform: translate(33px, 0);
}
.tz-header .container {
position: relative;
}
.tz-header .container .mega-menu-horizontal,
.tz-header .container .mega-menu-wrap {
position: static !important;
}
.tz-homeEff {
background: rgba(0, 0, 0, 0.7) !important;
padding-top: 0 !important;
}
.tz-homeEff-1 {
-moz-box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.2);
-o-box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.2);
box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.2);
position: fixed !important;
top: 0 !important;
width: 100% !important;
z-index: 999999;
} .tz-Breadcrumb {
background-image: url(//siplprojects.in/wp-content/themes/interiart/images/breadcrumb.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: top center;
}
.tz-Breadcrumb .tzOverlayBreadcrumb {
background-image: url(//siplprojects.in/wp-content/themes/interiart/images/pattern.png);
background-repeat: repeat;
background-color: rgba(0, 0, 0, 0.43);
padding: 103px 0 105px;
}
.tz-Breadcrumb .tzOverlayBreadcrumb h1 {
margin: 0px;
padding: 0px;
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 30px;
color: #eaeaea;
text-align: center;
text-transform: uppercase;
}
.tz-Breadcrumb .tzOverlayBreadcrumb .tz-breadcrumb-navxt {
text-align: center;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 12px;
color: #fff;
text-transform: uppercase;
padding-top: 10px;
}
.tz-Breadcrumb .tzOverlayBreadcrumb .tz-breadcrumb-navxt span a {
color: #FFFFFF;
text-decoration: none;
} .tzFooter .tzFooterTop {
background-image: url(//siplprojects.in/wp-content/themes/interiart/images/background_footer.png);
background-repeat: no-repeat;
background-size: cover;
background-position: top center;
position: relative;
padding: 70px 0px 50px;
}
.tzFooter .tzFooterTop:after {
content: '';
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 0;
}
.tzFooter .tzFooterTop .footerattr {
z-index: 1;
}
.tzFooter .tzFooterTop .footerattr .widget {
margin: 0 0 22px;
}
.tzFooter .tzFooterTop .footerattr .widget h3.title-widget {
margin: 0 0 20px;
padding: 0px;
}
.tzFooter .tzFooterTop .footerattr .widget h3.title-widget span {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
line-height: 27px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
}
.tzFooter .tzFooterTop .footerattr .widget h3.title-widget span a {
color: #FFFFFF;
}
.tzFooter .tzFooterTop .footerattr .widget label {
display: none;
}
.tzFooter .tzFooterTop .footerattr .widget p {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
}
.tzFooter .tzFooterTop .footerattr .widget ul {
margin: 0px;
padding: 0px;
}
.tzFooter .tzFooterTop .footerattr .widget ul li {
list-style: none;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
}
.tzFooter .tzFooterTop .footerattr .widget ul li a {
color: #868686;
text-decoration: none;
}
.tzFooter .tzFooterTop .footerattr .widget select {
width: 260px;
max-width: 100%;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
padding: 12px;
-moz-appearance: none;
background: #ffffff url(//siplprojects.in/wp-content/themes/interiart/images/bg_down.png) no-repeat scroll right 20px top 20px;
}
.tzFooter .tzFooterTop .footerattr .widget select option {
width: 240px;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_contact_info .tzwidget-contact span {
display: block;
margin: 15px 0px 0px;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_contact_info .tzwidget-contact span i {
font-size: 16px;
color: #868686;
margin-right: 20px;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_calendar .calendar_wrap table#wp-calendar caption {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 23px;
color: #868686;
text-transform: uppercase;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_calendar .calendar_wrap table#wp-calendar thead {
border-width: 1px 1px 0px;
border-style: solid;
border-color: #868686;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_calendar .calendar_wrap table#wp-calendar thead tr th {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 23px;
color: #868686;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_calendar .calendar_wrap table#wp-calendar tbody {
border-width: 1px;
border-style: solid;
border-color: #868686;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_calendar .calendar_wrap table#wp-calendar tbody tr td {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
padding: 5px 10px;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_calendar .calendar_wrap table#wp-calendar tfoot a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_search .searchform {
position: relative;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_search .searchform .Tzsearchform {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
width: 100%;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
padding: 12px 12px 13px;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_search .searchform .searchsubmit {
background: none;
border: medium none;
border-radius: 0;
font-size: 0;
height: 48px;
margin: 0;
padding: 0;
position: absolute;
right: 0;
top: 0;
width: 48px;
z-index: 1;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_search .searchform .icon_search {
background: #fbc02d none repeat scroll 0 0;
color: #ffffff;
font-size: 17px;
font-weight: bold;
height: 48px;
padding: 15px 0;
position: absolute;
right: 0;
text-align: center;
top: 0;
width: 48px;
z-index: 0;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_tag_cloud .tagcloud a {
background: #868686 none repeat scroll 0 0;
color: #ffffff;
display: inline-block;
font-family: "Ubuntu", sans-serif;
font-size: 14px !important;
font-weight: 300;
line-height: 23px;
margin: 0 1px 5px 0;
padding: 5px 15px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_tag_cloud .tagcloud a:hover {
background: #e5ae49;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_nav_menu .megamenu_container ul.sub-menu {
padding-left: 20px;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_nav_menu .megamenu_container ul.sub-menu li a {
border-bottom: 1px solid #8686868;
}
.tzFooter .tzFooterTop .footerattr .widget.dw_twitter .dw-twitter-inner .tweet-item {
position: relative;
padding-left: 30px;
margin-bottom: 35px;
}
.tzFooter .tzFooterTop .footerattr .widget.dw_twitter .dw-twitter-inner .tweet-item:after {
content: "\f099";
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
font-size: 16px;
color: #e5ae49;
position: absolute;
top: 4px;
left: 0;
}
.tzFooter .tzFooterTop .footerattr .widget.dw_twitter .dw-twitter-inner .tweet-item .twitter-user a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #e4e4e4;
text-decoration: none;
}
.tzFooter .tzFooterTop .footerattr .widget.dw_twitter .dw-twitter-inner .tweet-item .tweet-content {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
overflow: hidden;
}
.tzFooter .tzFooterTop .footerattr .widget.dw_twitter .dw-twitter-inner .tweet-item .tweet-content a {
color: #e4e4e4;
text-decoration: none;
}
.tzFooter .tzFooterTop .footerattr .widget.dw_twitter .dw-twitter-inner .tweet-item .tweet-content span.time {
display: block;
margin-top: 10px;
}
.tzFooter .tzFooterTop .footerattr .widget.dw_twitter .dw-twitter-inner .tweet-item .tweet-content span.time a {
color: #868686;
}
.tzFooter .tzFooterTop .footerattr .widget.dw_twitter .dw-twitter-inner .tweet-item iframe {
margin-top: 20px;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_flickr .tz-flickr a {
display: block;
float: left;
margin-bottom: 12px;
margin-right: 12px;
position: relative;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_flickr .tz-flickr a img {
margin: 0px;
float: none;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_flickr .tz-flickr a:before {
content: "";
background: rgba(251, 192, 45, 0.75);
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_flickr .tz-flickr a:after {
content: "\f00e";
color: #ffffff;
font-family: FontAwesome;
font-size: 14px;
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
text-align: center;
padding: 29px 0px;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
}
.tzFooter .tzFooterTop .footerattr .widget.widget_flickr .tz-flickr a:hover:before {
width: 100%;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_flickr .tz-flickr a:hover:after {
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tzFooter .tzFooterTop .footerattr .widget.widget_flickr .tz-flickr:after {
content: '';
display: block;
clear: both;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_newsletterwidget {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_newsletterwidget .tnp-widget {
margin-top: 36px;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_newsletterwidget .tnp-widget form {
position: relative;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_newsletterwidget .tnp-widget form .tnp-email {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
width: 100%;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
padding: 12px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_newsletterwidget .tnp-widget form .tnp-submit {
background: none;
border: medium none;
border-radius: 0;
font-size: 0;
height: 48px;
margin: 0;
padding: 0;
position: absolute;
right: 0;
top: 0;
width: 48px;
z-index: 1;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_newsletterwidget .tnp-widget form:after {
content: "\f00c";
display: block;
width: 47px;
height: 47px;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
font-size: 16px;
color: #ffffff;
background: #e5ae49;
position: absolute;
top: 0px;
right: 0;
text-align: center;
padding: 10px 0;
}
.tzFooter .tzFooterBottom {
background: #151515;
}
.tzFooter .tzFooterBottom .tzCopyright {
padding: 37px 0 33px;
}
.tzFooter .tzFooterBottom .tzCopyright p {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #868686;
margin: 0px;
padding: 0px;
}
.tzFooter .tzFooterBottom .tzCopyright p a {
color: #868686;
}
.tzFooter .tzFooterBottom .tzCopyright p a:hover {
color: #e5ae49;
}
.tzFooter .tzFooterBottom .tzFooterSocial {
padding: 25px 0px;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul {
margin: 0px;
padding: 0px;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul:after {
content: '';
display: block;
clear: both;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul li {
list-style: none;
float: left;
padding: 0px 5px;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul li a {
display: inline-block;
width: 40px;
height: 40px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
background: #313131;
text-align: center;
position: relative;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul li a i {
padding: 12px 0px;
color: #868686;
font-size: 15px;
position: relative;
z-index: 99;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul li a:after {
content: '';
display: block;
width: 100%;
height: 100%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
background: #e5ae49;
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul li a:hover i {
color: #FFFFFF;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul li a:hover:after {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tzFooter.tzFooter-Type-2 .tzFooterTop {
padding: 90px 0 55px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop:after {
background-color: rgba(0, 0, 0, 0.5);
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .tzFooterTop_center {
z-index: 1;
position: relative;
margin-bottom: 73px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .tzFooterTop_center aside.widget {
margin-bottom: 40px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget h3.title-widget {
margin-bottom: 30px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget h3.title-widget span {
font-size: 25px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget p {
color: #9b9b9b;
line-height: 25px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget .tzwidget-contact .tzContact_description {
margin-bottom: 32px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget ul.tz-recent-post {
padding-top: 10px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget ul.tz-recent-post li {
margin-bottom: 35px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget ul.tz-recent-post li:after {
display: block;
clear: both;
content: '';
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget ul.tz-recent-post li img {
width: 80px;
height: 80px;
float: left;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget ul.tz-recent-post li .tz-recent-content {
padding-left: 100px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget ul.tz-recent-post li .tz-recent-content a {
letter-spacing: 1px;
display: block;
font-weight: 400;
color: #ffffff;
margin-bottom: 15px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget ul.tz-recent-post li .tz-recent-content span {
color: #9b9b9b;
letter-spacing: 1px;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget .wpcf7-form .TzContactForm p input {
width: 100%;
background: none;
border-width: 0 0 1px;
border-style: solid;
border-color: #ffffff;
margin-bottom: 13px;
padding: 0 0 8px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget .wpcf7-form .TzContactForm p input.wpcf7-submit {
font-size: 13px;
font-weight: 400;
width: auto;
color: #e5ae49;
border-color: #e5ae49;
padding: 10px 22px 3px 0;
}
.tzFooter.tzFooter-Type-2 .tzFooterTop .footerattr .widget .wpcf7-form .TzContactForm p textarea {
width: 100%;
background: none;
border-width: 0 0 1px;
border-style: solid;
border-color: #ffffff;
height: 75px;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom {
background: #000000;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzCopyright {
padding-top: 40px;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzCopyright p {
color: #9b9b9b;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial {
padding: 36px 0 25px;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li {
padding: 0 8px;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a {
width: auto;
height: auto;
background: none;
border: none;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a:after {
content: none;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i {
font-size: 18px;
color: #ffffff;
width: 32px;
height: 32px;
text-align: center;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
padding: 7px 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-facebook {
background: #3c5899;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-twitter {
background: #2caae1;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-instagram {
background: #125688;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-google {
background: #db4437;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-linkedin {
background: #0177b5;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-tumblr {
background: #304E6C;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-youtube-play {
background: #C8302A;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-dribbble {
background: #EB4D88;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-behance {
background: #359DD4;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-skype {
background: #02B4EB;
}
.tzFooter.tzFooter-Type-2 .tzFooterBottom .tzFooterSocial ul li a i.fa-pinterest-p {
background: #CB2027;
}
.tzFooter.tzFooter-Type-3 {
background: #161b25;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop {
background: none;
padding: 70px 0 55px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop:after {
content: none;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget h3.title-widget {
margin-bottom: 13px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget h3.title-widget span {
font-size: 16px;
font-weight: 500;
color: #ffffff;
letter-spacing: 1px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget p {
font-size: 13px;
color: #a2a4a8;
line-height: 25px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget p a {
text-decoration: none;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget .tzwidget-contact .tzContact_description {
margin-bottom: 32px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget .tzwidget-contact span {
font-size: 13px;
color: #a2a4a8;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget .tzwidget-contact span i {
font-size: 14px;
color: #ffffff;
margin-right: 15px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul li {
padding: 0 0 8px 15px;
position: relative;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul li:before {
content: "\f101";
font-family: FontAwesome;
text-decoration: inherit;
color: #a2a4a8;
font-size: 13px;
position: absolute;
top: 2px;
left: 0;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul li a {
font-size: 13px;
color: #a2a4a8;
line-height: 25px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget .tz-flickr ul li {
padding: 0;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget .tz-flickr ul li:before {
content: none;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul.tz-recent-post {
padding-top: 10px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul.tz-recent-post li {
margin-bottom: 35px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul.tz-recent-post li:after {
display: block;
clear: both;
content: '';
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul.tz-recent-post li img {
width: 80px;
height: 80px;
float: left;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul.tz-recent-post li .tz-recent-content {
padding-left: 100px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul.tz-recent-post li .tz-recent-content a {
letter-spacing: 1px;
display: block;
font-weight: 700;
color: #ffffff;
margin-bottom: 15px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget ul.tz-recent-post li .tz-recent-content span {
color: #9b9b9b;
letter-spacing: 1px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget .wpcf7-form .TzContactForm p input {
width: 100%;
background: none;
border-width: 0 0 1px;
border-style: solid;
border-color: #ffffff;
margin-bottom: 13px;
padding: 0 0 8px;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget .wpcf7-form .TzContactForm p input.wpcf7-submit {
font-size: 13px;
font-weight: 400;
width: auto;
color: #e5ae49;
border-color: #e5ae49;
padding: 10px 22px 3px 0;
}
.tzFooter.tzFooter-Type-3 .tzFooterTop .footerattr .widget .wpcf7-form .TzContactForm p textarea {
width: 100%;
background: none;
border-width: 0 0 1px;
border-style: solid;
border-color: #ffffff;
height: 75px;
}
.tzFooter.tzFooter-Type-3 .tzFooterBottom {
background: #222730;
}
.tzFooter.tzFooter-Type-3 .tzFooterBottom .tzCopyright {
padding-top: 40px;
}
.tzFooter.tzFooter-Type-3 .tzFooterBottom .tzCopyright p {
font-size: 13px;
color: #a2a4a8;
text-align: center;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop {
padding: 65px 0 45px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop:after {
background-color: rgba(0, 0, 0, 0.9);
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center {
z-index: 1;
position: relative;
margin-bottom: 50px;
text-align: center;
padding-bottom: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget {
margin-bottom: 40px;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
color: #868686;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget h3.title-widget {
font-size: 30px;
font-weight: 700;
text-transform: uppercase;
color: #FFFFFF;
margin-bottom: 10px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget h3.title-widget a {
color: #FFFFFF;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget ul {
padding: 0;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget ul li {
color: #868686;
list-style: none;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget ul li a {
color: #868686;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget ul li a :hover {
color: #e5ae49;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget select {
width: 260px;
max-width: 100%;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
padding: 12px;
-moz-appearance: none;
background: #ffffff url(//siplprojects.in/wp-content/themes/interiart/images/bg_down.png) no-repeat scroll right 20px top 20px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget select option {
width: 240px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap {
display: inline-block;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table {
border: 1px solid #868686;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table caption {
text-align: center;
color: #868686;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table thead {
border-bottom: 1px solid #868686;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table thead tr th {
color: #868686;
font-weight: 700;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table tbody tr td {
color: #868686;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table tbody tr td#today {
color: #e5ae49;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table tfoot {
border-top: 1px solid #868686;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table tfoot tr td {
color: #868686;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table tfoot tr td a {
color: #868686;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .calendar_wrap table tfoot tr td a:hover {
color: #e5ae49;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .tnp-widget form {
width: 65.5%;
display: inline-block;
position: relative;
margin-top: 34px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .tnp-widget form .tnp-field {
margin: 0;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .tnp-widget form .tnp-field label {
display: none;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .tnp-widget form .tnp-field input.tnp-email {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
color: #868686;
background: #FFFFFF;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
padding: 10px 140px 11px 20px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .tnp-widget form .tnp-field input.tnp-submit {
display: inline-block;
position: absolute;
top: 0;
right: 0;
width: auto;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 13px;
line-height: 24px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.5px;
background: #e5ae49;
padding: 11px 30px 10px;
border: none;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget.widget_search .searchform {
position: relative;
width: 260px;
display: inline-block;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget.widget_search .searchform label {
display: none;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget.widget_search .searchform .Tzsearchform {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 23px;
color: #868686;
width: 100%;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
padding: 12px 12px 13px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget.widget_search .searchform .searchsubmit {
background: none;
border: medium none;
border-radius: 0;
font-size: 0;
height: 48px;
margin: 0;
padding: 0;
position: absolute;
right: 0;
top: 0;
width: 48px;
z-index: 1;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget.widget_search .searchform .icon_search {
background: #fbc02d none repeat scroll 0 0;
color: #ffffff;
font-size: 17px;
font-weight: bold;
height: 48px;
padding: 15px 0;
position: absolute;
right: 0;
text-align: center;
top: 0;
width: 48px;
z-index: 0;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget.widget_tag_cloud .tagcloud a {
border: 1px solid #868686;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
color: #868686;
display: inline-block;
font-family: "Ubuntu", sans-serif;
font-size: 14px !important;
font-weight: 300;
line-height: 23px;
margin: 0 1px 5px 0;
padding: 5px 15px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget.widget_tag_cloud .tagcloud a:hover {
border-color: #e5ae49;
color: #e5ae49;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget h3.title-widget {
margin-bottom: 25px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget h3.title-widget span {
font-size: 14px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget p {
color: #a2a4a8;
line-height: 25px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul li {
position: relative;
color: #a2a4a8;
padding: 0 0 8px 15px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul li:before {
content: "\f101";
font-family: FontAwesome;
text-decoration: inherit;
color: #a2a4a8;
font-size: 13px;
position: absolute;
top: 2px;
left: 0;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul li a {
color: #a2a4a8;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul li:hover:before {
color: #e5ae49;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul li:hover a {
color: #e5ae49;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget.widget_contact_info .tzwidget-contact span i {
color: #e5ae49;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget .tzwidget-contact .tzContact_description {
margin-bottom: 32px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul.tz-recent-post {
padding-top: 10px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul.tz-recent-post li {
margin-bottom: 35px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul.tz-recent-post li:after {
display: block;
clear: both;
content: '';
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul.tz-recent-post li img {
width: 80px;
height: 80px;
float: left;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul.tz-recent-post li .tz-recent-content {
padding-left: 100px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul.tz-recent-post li .tz-recent-content a {
letter-spacing: 1px;
display: block;
font-weight: 400;
color: #ffffff;
margin-bottom: 15px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget ul.tz-recent-post li .tz-recent-content span {
color: #9b9b9b;
letter-spacing: 1px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget .wpcf7-form .TzContactForm p input {
width: 100%;
background: none;
border-width: 0 0 1px;
border-style: solid;
border-color: #ffffff;
margin-bottom: 13px;
padding: 0 0 8px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget .wpcf7-form .TzContactForm p input.wpcf7-submit {
font-size: 13px;
font-weight: 400;
width: auto;
color: #e5ae49;
border-color: #e5ae49;
padding: 10px 22px 3px 0;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget .wpcf7-form .TzContactForm p textarea {
width: 100%;
background: none;
border-width: 0 0 1px;
border-style: solid;
border-color: #ffffff;
height: 75px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget.dw_twitter .dw-twitter-inner .tweet-item .tweet-content {
color: #a2a4a8;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .footerattr .widget.widget_contact_info .tzwidget-contact span {
color: #a2a4a8;
}
.tzFooter.tzFooter-Type-5 {
background: #222222;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop {
background: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: 80px 0 50px;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop:after {
content: none;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget {
margin: 0 0 34px;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget h3.title-widget {
margin-top: -2px;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget h3.title-widget span {
line-height: 14px;
display: block;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget p {
color: #a2a4a8;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget ul li {
color: #a2a4a8;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget ul li a {
color: #a2a4a8;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_recent_entries ul li {
margin: 0 0 15px;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_recent_entries ul li a {
font-weight: 500;
display: block;
margin: 0 0 7px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_recent_entries ul li span.post-date {
font-size: 13px;
color: #6c7273;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_recent_entries ul li:hover a {
color: #e5ae49;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_newsletterwidget {
margin-bottom: 50px;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_newsletterwidget h3.title-widget {
margin: 0 0 16px;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_newsletterwidget .tnp-widget {
margin-top: 15px;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_newsletterwidget .tnp-widget form .tnp-email {
background: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_newsletterwidget .tnp-widget form:after {
content: "\f0a9";
color: #aaaaaa;
background: none;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_social .tzwidget-social a {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background: #313131;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
margin: 0 5px 10px 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_social .tzwidget-social a i {
font-size: 14px;
color: #868686;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_social .tzwidget-social a:hover {
background: #e5ae49;
}
.tzFooter.tzFooter-Type-5 .tzFooterTop .footerattr .widget.widget_social .tzwidget-social a:hover i {
color: #FFFFFF;
}
.tzFooter.tzFooter-Type-5 .tzFooterBottom {
background: none;
}
.tzFooter.tzFooter-Type-5 .tzFooterBottom:after {
content: '';
display: block;
clear: both;
}
.tzFooter.tzFooter-Type-5 .tzFooterBottom .tzCopyright {
padding: 22px 0 27px;
}
.tzFooter.tzFooter-Type-5 .tzFooterBottom .tz-footer-menu nav ul {
margin: 0;
padding: 0;
}
.tzFooter.tzFooter-Type-5 .tzFooterBottom .tz-footer-menu nav ul li {
list-style: none;
float: left;
}
.tzFooter.tzFooter-Type-5 .tzFooterBottom .tz-footer-menu nav ul li a {
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
color: #868686;
padding: 22px 0px 27px 36px;
display: inline-block;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzFooter.tzFooter-Type-5 .tzFooterBottom .tz-footer-menu nav ul li:hover a {
color: #e5ae49;
}  .tzBlogDefault {
background: #fafafa;
padding: 90px 0px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem {
background: #fff;
margin-bottom: 50px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote {
position: relative;
z-index: 1;
padding: 47px 0px 48px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_bg {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_bg img {
position: relative;
max-width: none;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_overlay {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background: rgba(1, 7, 20, 0.75);
z-index: -1;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_char {
display: block;
text-align: center;
font-size: 90px;
color: #e5ae49;
line-height: 90px;
margin-bottom: 13px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote p {
font-family: 'Ubuntu', sans-serif;
font-size: 20px;
font-weight: 400;
font-style: italic;
color: #ffffff;
line-height: 35px;
text-align: center;
padding: 0px 52px;
margin: 0px 0px 72px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_info {
display: block;
margin: 0px;
text-align: center;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_info a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #FFFFFF;
margin: 0 3px 0 0;
text-decoration: none;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_info small {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #FFFFFF;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_info small i {
margin: 0 5px 0 0;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_info span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote .tzBlogQuote_info span i {
margin: 0 5px 0 0;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 {
width: 100%;
overflow: hidden;
position: relative;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzblog_autoplay {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
opacity: 1;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzblog_autoplay i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzblog_autoplay:hover {
cursor: pointer;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzblog_pauses {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
opacity: 1;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
display: none;
opacity: 0;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzblog_pauses i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzblog_pauses:hover {
cursor: pointer;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5:hover .tzblog_pauses {
opacity: 1;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .bg-video {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .videoID {
width: 100%;
height: auto;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 9;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_videoHtml5 .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogAudio {
position: relative;
padding: 0px 0px 0px 90px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogAudio iframe {
width: 100%;
border: none;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogAudio .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 9;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogAudio .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogAudio .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogAudio .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogAudio .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogAudio .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_video {
position: relative;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_video iframe {
width: 100%;
height: 100%;
border: none;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_video .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 9;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_video .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_video .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_video .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_video .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlog_video .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider {
position: relative;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider ul.flex-direction-nav {
z-index: 9999;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider ul.flex-direction-nav li a {
top: 50%;
opacity: 1;
height: 30px;
width: 30px;
margin: -15px 0 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
border: 1px solid #FFFFFF;
text-align: center;
background: none;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider ul.flex-direction-nav li a:before {
font-size: 10px;
font-weight: lighter;
color: #ffffff;
text-shadow: none;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider ul.flex-direction-nav li a.flex-prev {
left: 30px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider ul.flex-direction-nav li a.flex-next {
right: 30px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider ul.flex-direction-nav li a:hover {
border: 1px solid #e5ae49;
background: #e5ae49;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 9;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogSlider .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogImage {
position: relative;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogImage img {
display: block;
margin: 0 auto;
max-width: 100%;
height: auto;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogImage .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 9;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogImage .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogImage .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogImage .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogImage .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogImage .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent {
margin: 0px;
padding: 48px 30px 45px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent h3.title {
margin: 0px 0px 17px;
padding: 0px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent h3.title a {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 27px;
color: #222222;
text-decoration: none;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent h3.title a span {
background: #e5ae49;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
color: #fff;
display: inline-block;
font-size: 9px;
line-height: 14px;
margin-left: 10px;
padding: 0 5px;
position: relative;
text-transform: uppercase;
top: -10px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent .tzInfomation {
display: block;
margin: 0px 0px 22px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent .tzInfomation a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
margin: 0 3px 0 0;
text-decoration: none;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent .tzInfomation small {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent .tzInfomation small i {
margin: 0 5px 0 0;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent .tzInfomation span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent .tzInfomation span i {
margin: 0 5px 0 0;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent p {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 25px;
color: #666666;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent a.tzreadmore {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
color: #FFFFFF;
font-weight: 300;
line-height: 25px;
margin: 25px 0 0;
padding: 8px 27px;
background: #e5ae49;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
text-decoration: none;
}
.tzBlogDefault .tzBlogContainer .tzserach_notda .page-content form {
position: relative;
width: 263px;
margin-top: 30px;
}
.tzBlogDefault .tzBlogContainer .tzserach_notda .page-content form label {
display: none;
}
.tzBlogDefault .tzBlogContainer .tzserach_notda .page-content form input.Tzsearchform {
width: 263px;
background: none;
border: 1px solid #dedede;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
line-height: 24px;
font-weight: 300;
font-style: italic;
padding: 9px 45px 10px 15px;
color: #111111;
}
.tzBlogDefault .tzBlogContainer .tzserach_notda .page-content form input.searchsubmit {
background-color: #e5ae49;
background-image: url(//siplprojects.in/wp-content/themes/interiart/images/search.png) !important;
background-position: center!important;
background-repeat: no-repeat !important;
border: none;
font-size: 0;
width: 45px;
height: 45px;
position: absolute;
top: 0;
right: 0;
}
.tzBlogDefault .tzBlogContainer .tzserach_notda .page-content form input.searchsubmit:after {
content: '';
display: block;
width: 20px;
height: 20px;
position: absolute;
top: 0px;
left: 0px;
background: #ffffff;
}
.tzBlogDefault .tzBlogContainer .tzserach_notda .page-content form span.icon_search {
display: none;
}
.tzBlogDefault .wp-pagenavi span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 500;
line-height: 24px;
color: #666666;
padding: 10px 15px;
background: #dfdfdf;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
border: none;
}
.tzBlogDefault .wp-pagenavi span.current {
color: #FFFFFF;
background: #e5ae49;
}
.tzBlogDefault .wp-pagenavi a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 500;
line-height: 24px;
color: #666666;
padding: 10px 15px;
background: #dfdfdf;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
text-decoration: none;
border: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzBlogDefault .wp-pagenavi a:hover {
color: #FFFFFF;
background: #e5ae49;
}
.tzBlogDefault ol.flex-control-nav {
bottom: 8px;
}
.tzBlogDefault ol.flex-control-nav li {
margin: 0 5px;
}
.tzBlogDefault ol.flex-control-nav li a {
height: 10px;
width: 10px;
background: #ffffff;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzBlogDefault ol.flex-control-nav li a.flex-active {
background: #e5ae49;
}
.tzBlogDefault ol.flex-control-nav li a:hover {
background: #e5ae49;
} .tzBlogColumn {
padding: 90px 0px 100px;
background: #fafafa;
}
.tzBlogColumn .tzBlogContainer {
margin-right: -30px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner {
margin: 0 30px 30px 0;
padding: 0;
background: #ffffff;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote {
position: relative;
z-index: 1;
padding: 47px 0px 48px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_bg {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_bg img {
max-width: none;
position: relative;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_overlay {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background: rgba(1, 7, 20, 0.75);
z-index: -1;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_char {
display: block;
text-align: center;
font-size: 90px;
color: #e5ae49;
line-height: 90px;
margin-bottom: 13px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_char:before {
font-family: "ElegantIcons" !important;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote p {
font-family: 'Ubuntu', sans-serif;
font-size: 20px;
font-weight: 400;
font-style: italic;
color: #ffffff;
line-height: 35px;
text-align: center;
padding: 0px 52px;
margin: 0px 0px 72px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_info {
display: block;
margin: 0px;
text-align: center;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_info a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #FFFFFF;
margin: 0 3px 0 0;
text-decoration: none;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_info small {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #FFFFFF;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_info small i {
margin: 0 5px 0 0;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_info span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote .tzBlogQuote_info span i {
margin: 0 5px 0 0;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 {
width: 100%;
overflow: hidden;
position: relative;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzblog_autoplay {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
opacity: 1;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzblog_autoplay i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzblog_autoplay:hover {
cursor: pointer;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzblog_pauses {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
opacity: 1;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
display: none;
opacity: 0;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzblog_pauses i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzblog_pauses:hover {
cursor: pointer;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5:hover .tzblog_pauses {
opacity: 1;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .bg-video {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .videoID {
width: 100%;
height: auto;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogAudio {
position: relative;
padding: 0px 0px 0px 90px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogAudio iframe {
width: 100%;
border: none;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogAudio .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogAudio .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogAudio .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogAudio .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogAudio .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogAudio .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogVideo {
position: relative;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogVideo iframe {
width: 100%;
height: 100%;
border: none;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider {
position: relative;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider .flex-viewport ul.slides li img {
width: 100%;
height: auto;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ul.flex-direction-nav {
z-index: 9999;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ul.flex-direction-nav li a {
top: 50%;
opacity: 1;
height: 30px;
width: 30px;
margin: -15px 0 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
border: 1px solid #FFFFFF;
text-align: center;
background: none;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ul.flex-direction-nav li a:before {
font-size: 10px;
font-weight: lighter;
color: #ffffff;
text-shadow: none;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ul.flex-direction-nav li a.flex-prev {
left: 30px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ul.flex-direction-nav li a.flex-next {
right: 30px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ul.flex-direction-nav li a:hover {
border: 1px solid #e5ae49;
background: #e5ae49;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ol.flex-control-nav {
bottom: 8px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ol.flex-control-nav li {
margin: 0 5px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ol.flex-control-nav li a {
height: 10px;
width: 10px;
background: #ffffff;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ol.flex-control-nav li a.flex-active {
background: #e5ae49;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider ol.flex-control-nav li a:hover {
background: #e5ae49;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogSlider .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogImage {
position: relative;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogImage img {
width: 100%;
height: auto;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogImage .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogImage .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogImage .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogImage .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogImage .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogImage .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent {
margin: 0px;
padding: 48px 30px 38px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent h3.title {
margin: 0px 0px 17px;
padding: 0px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent h3.title a {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 27px;
color: #222222;
text-decoration: none;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent .tzInfomation {
display: block;
margin: 0px 0px 22px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent .tzInfomation a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
margin: 0 3px 0 0;
text-decoration: none;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent .tzInfomation small {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent .tzInfomation small i {
margin: 0 5px 0 0;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent .tzInfomation span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent .tzInfomation span i {
margin: 0 5px 0 0;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent p {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 25px;
color: #666666;
margin: 0px;
padding: 0px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogContent a.tzreadmore {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
color: #FFFFFF;
font-weight: 300;
line-height: 25px;
margin: 31px 0 6px;
padding: 8px 27px;
background: #e5ae49;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
text-decoration: none;
}
.tzBlogColumn .tzBlogContainer.no_sidebar.tzBlogDesktop-4-Column .blogColumn-item .tzBlogInner .tzBlogQuote p {
padding: 0 30px;
}
.tzBlogColumn .tzBlogContainer.no_sidebar.tzBlogDesktop-4-Column .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 {
height: 147px;
}
.tzBlogColumn .tzBlogContainer.no_sidebar.tzBlogDesktop-4-Column .blogColumn-item .tzBlogInner .tzBlogVideo iframe {
height: 147px;
}
.tzBlogColumn .tzBlogContainer.no_sidebar.tzBlogDesktop-3-Column .blogColumn-item .tzBlogInner .tzBlogQuote p {
padding: 0 52px;
}
.tzBlogColumn .tzBlogContainer.no_sidebar.tzBlogDesktop-3-Column .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 {
height: 203px;
}
.tzBlogColumn .tzBlogContainer.no_sidebar.tzBlogDesktop-3-Column .blogColumn-item .tzBlogInner .tzBlogVideo iframe {
height: 203px;
}
.tzBlogColumn .tzBlogContainer.no_sidebar.tzBlogDesktop-2-Column .blogColumn-item .tzBlogInner .tzBlogQuote p {
padding: 0 52px;
}
.tzBlogColumn .tzBlogContainer.no_sidebar.tzBlogDesktop-2-Column .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 {
height: 304px;
}
.tzBlogColumn .tzBlogContainer.no_sidebar.tzBlogDesktop-2-Column .blogColumn-item .tzBlogInner .tzBlogVideo iframe {
height: 304px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-4-Column .blogColumn-item .tzBlogInner .tzBlogQuote p {
padding: 0 10px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-4-Column .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 {
height: 106px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-4-Column .blogColumn-item .tzBlogInner .tzBlogVideo iframe {
height: 106px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-3-Column .blogColumn-item .tzBlogInner .tzBlogQuote p {
padding: 0 25px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-3-Column .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 {
height: 147px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-3-Column .blogColumn-item .tzBlogInner .tzBlogVideo iframe {
height: 147px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-2-Column .blogColumn-item .tzBlogInner .tzBlogQuote p {
padding: 0 35px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-2-Column .blogColumn-item .tzBlogInner .tzBlog_videoHtml5 {
height: 230px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-2-Column .blogColumn-item .tzBlogInner .tzBlogVideo iframe {
height: 230px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-2-Column .blogColumn-item .tzBlogContent {
padding: 22px 30px 30px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-2-Column .blogColumn-item .tzBlogContent h3.title {
margin: 0 0 10px;
}
.tzBlogColumn .tzBlogContainer.yes_sidebar.tzBlogDesktop-2-Column .blogColumn-item .tzBlogContent .tzInfomation {
margin: 0 0 13px;
}
.tzBlogColumn .wp-pagenavi span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 500;
line-height: 24px;
color: #666666;
padding: 10px 15px;
background: #dfdfdf;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
border: none;
}
.tzBlogColumn .wp-pagenavi span.current {
color: #FFFFFF;
background: #e5ae49;
}
.tzBlogColumn .wp-pagenavi a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 500;
line-height: 24px;
color: #666666;
padding: 10px 15px;
background: #dfdfdf;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
text-decoration: none;
border: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzBlogColumn .wp-pagenavi a:hover {
color: #FFFFFF;
background: #e5ae49;
} .tzBlogSingle {
padding: 90px 0px 120px;
background: #fafafa;
}
.tzBlogSingle .tzBlogSingleContainer {
background: #FFFFFF;
margin-bottom: 30px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleImage {
position: relative;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleImage img {
max-width: 100%;
height: auto;
margin: 0 auto;
display: block;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleImage .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleImage .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleImage .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleImage .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleImage .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleImage .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleAudio {
position: relative;
padding: 0px 0px 0px 90px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleAudio iframe {
width: 100%;
border: none;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleAudio .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleAudio .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleAudio .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleAudio .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleAudio .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleAudio .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_video {
position: relative;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_video iframe {
width: 100%;
height: 100%;
border: none;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_video .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_video .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_video .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_video .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_video .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_video .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider {
position: relative;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider ol.flex-control-nav {
bottom: 8px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider ol.flex-control-nav li {
margin: 0 5px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider ol.flex-control-nav li a {
height: 10px;
width: 10px;
background: #ffffff;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider ol.flex-control-nav li a.flex-active {
background: #e5ae49;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider ol.flex-control-nav li a:hover {
background: #e5ae49;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingleSlider .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 {
width: 100%;
overflow: hidden;
position: relative;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzblog_autoplay {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
opacity: 1;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzblog_autoplay i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzblog_autoplay:hover {
cursor: pointer;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzblog_pauses {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
opacity: 1;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
display: none;
opacity: 0;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzblog_pauses i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzblog_pauses:hover {
cursor: pointer;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5:hover .tzblog_pauses {
opacity: 1;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .bg-video {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .videoID {
width: 100%;
height: auto;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzBlogDate {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzBlogDate .tzDateText {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzBlogDate .tzDateText .tzTextDay {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzBlogDate .tzDateText .tzTextMonth {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzBlogDate .tzBlogIcon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_videoHtml5 .tzBlogDate .tzBlogIcon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content {
padding: 35px 32px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content h3.tzBlogSingle_title {
margin: 0px 0px 16px;
padding: 0px;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 400;
color: #222222;
line-height: 27px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzInfomation {
display: block;
margin: 0px 0px 27px;
padding: 0px 0px 28px;
border-bottom: 1px solid #ededed;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzInfomation a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
margin: 0 3px 0 0;
text-decoration: none;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzInfomation small {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzInfomation small i {
margin: 0 5px 0 0;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzInfomation span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzInfomation span i {
margin: 0 5px 0 0;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .single-content {
padding: 0px 0px 32px;
margin: 0px 0px 25px;
border-bottom: 1px solid #ededed;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .single-content p {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 25px;
color: #666666;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tztag {
margin-top: 5px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tztag span {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
line-height: 25px;
color: #222222;
margin: 0px 8px 0px 0px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tztag a {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 25px;
color: #666666;
text-decoration: none;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare {
text-align: right;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare .TzLikeButtonInner {
display: inline-block;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare .TzLikeButtonInner span {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
line-height: 25px;
color: #222222;
margin: 5px 15px 0px 0px;
display: block;
float: left;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare .TzLikeButtonInner a {
padding-left: 6px;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare .TzLikeButtonInner a i {
display: inline-block;
width: 36px;
height: 36px;
font-size: 14px;
color: #ffffff;
line-height: 36px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
text-align: center;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare .TzLikeButtonInner a i.fa-facebook {
background: #4361a7;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare .TzLikeButtonInner a i.fa-twitter {
background: #60b5f0;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare .TzLikeButtonInner a i.fa-pinterest {
background: #ffa400;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare .TzLikeButtonInner a i.fa-google-plus {
background: #e35640;
}
.tzBlogSingle .tzBlogSingleContainer .tzBlogSingle_content .tzBlogSingle_bottom .tzshare .TzLikeButtonInner:after {
content: '';
display: block;
clear: both;
}
.tzBlogSingle .author {
background: #FFFFFF;
padding: 30px;
margin: 0px 0px 30px;
}
.tzBlogSingle .author .author-avata {
float: left;
position: relative;
}
.tzBlogSingle .author .author-avata .author-img {
width: 140px;
height: 140px;
border-radius: 50%;
overflow: hidden;
}
.tzBlogSingle .author .author-avata .author-social {
position: absolute;
top: 50%;
right: -33px;
}
.tzBlogSingle .author .author-avata .author-social .TzSocialLink {
display: block;
}
.tzBlogSingle .author .author-avata .author-social .TzSocialLink i {
font-size: 15px;
margin-bottom: 16px;
}
.tzBlogSingle .author .author-avata .author-social .TzSocialLink:last-child i {
margin: 0px;
}
.tzBlogSingle .author .author-avata .author-social .TzSocialLink.TzSocialFacebook i {
color: #4361a7;
}
.tzBlogSingle .author .author-avata .author-social .TzSocialLink.TzSocialTwitter i {
color: #60b5f0;
}
.tzBlogSingle .author .author-avata .author-social .TzSocialLink.TzSocialLinkedin i {
color: #0274b3;
}
.tzBlogSingle .author .author-avata .author-social .TzSocialLink.TzSocialDribbble i {
color: #f26798;
}
.tzBlogSingle .author .author-avata .author-social .TzSocialLink.TzSocialGPlus i {
color: #e35640;
}
.tzBlogSingle .author .author-info {
margin-left: 210px;
}
.tzBlogSingle .author .author-info h3 {
margin: 0px;
padding: 0px;
}
.tzBlogSingle .author .author-info h3 a {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
line-height: 22px;
color: #222222;
text-decoration: none;
text-transform: uppercase;
}
.tzBlogSingle .author .author-info span {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
display: block;
margin-bottom: 12px;
}
.tzBlogSingle .author .author-info p {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 22px;
color: #666666;
}
.tzBlogSingle .author:after {
content: '';
display: block;
clear: both;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent {
background: #FFFFFF;
padding: 47px 30px 1px;
margin-bottom: 30px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent .comments-title {
margin: 0px 0px 42px;
padding: 0px;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
color: #222222;
line-height: 22px;
text-transform: uppercase;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list {
margin: 0px;
padding: 0px;
position: relative;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list:after {
content: '';
display: block;
width: 100%;
height: 1px;
background: #FFFFFF;
position: absolute;
bottom: 0;
left: 0;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li {
list-style: none;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article {
padding: 0px 0px 30px;
border-bottom: 1px solid #ededed;
margin: 0px 0px 30px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-author {
display: block;
float: left;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
overflow: hidden;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content {
margin-left: 120px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content h5 {
float: left;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 22px;
color: #222222;
text-decoration: none;
text-transform: uppercase;
margin-bottom: 12px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content h5 a {
color: #222;
text-decoration: none;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content h5 a:hover {
color: #e5ae49;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo {
margin-bottom: 13px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comments-datetime {
text-decoration: none;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comments-datetime time {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comment-edit-link {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 22px;
color: #e5ae49;
text-decoration: none;
margin-left: 20px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comment-edit-link i {
font-size: 13px;
margin-right: 5px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comment-reply-link {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 22px;
color: #e5ae49;
text-decoration: none;
margin-left: 20px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comment-reply-link i {
font-size: 13px;
margin-right: 5px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article p {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 24px;
color: #666666;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li ol.children {
padding-left: 120px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond {
background: #FFFFFF;
padding: 30px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond h3.comment-reply-title {
margin: 0px;
padding: 0px;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
color: #222222;
line-height: 22px;
text-transform: uppercase;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 24px;
color: #666666;
margin: 0 0 50px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p.comment-form-comment {
margin: 0 0 43px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p label {
display: none;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p a {
color: #e5ae49;
text-decoration: none;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p textarea {
width: 100%;
height: 95px;
border-width: 0 0 1px;
border-color: #ededed;
border-style: solid;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
line-height: 24px;
font-size: 14px;
color: #b5b5b5;
padding: 5px 0px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p.form-submit {
text-align: center;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p.form-submit input.submit {
background: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
border-width: 0 0 1px;
border-style: solid;
border-color: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-size: 12px;
font-weight: 300;
color: #e5ae49;
line-height: 22px;
text-transform: uppercase;
padding: 5px 15px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form .tzCommentForm_Top {
margin-bottom: 37px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form .tzCommentForm_Top p {
margin: 0px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form .tzCommentForm_Top p input {
width: 100%;
border-width: 0 0 1px;
border-color: #ededed;
border-style: solid;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
line-height: 24px;
font-size: 14px;
color: #b5b5b5;
padding: 5px 0px;
} .tz-sidebar .widget {
margin-bottom: 43px;
}
.tz-sidebar .widget h3.title-widget {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 700;
line-height: 24px;
color: #222222;
text-transform: uppercase;
margin: 0 0 13px;
padding: 0px;
}
.tz-sidebar .widget label {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
line-height: 24px;
margin: 0;
padding: 0;
}
.tz-sidebar .widget ul {
margin: 0px;
padding: 0px;
}
.tz-sidebar .widget ul li {
list-style: none;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
line-height: 24px;
position: relative;
border-bottom: 1px solid #ededed;
padding: 14px;
}
.tz-sidebar .widget ul li:first-child {
padding-top: 0;
}
.tz-sidebar .widget ul li:first-child:before {
top: 2px;
}
.tz-sidebar .widget ul li:before {
position: absolute;
top: 15px;
left: 0px;
content: '\f0da';
font-family: FontAwesome;
color: #666666;
font-size: 10px;
}
.tz-sidebar .widget ul li a {
color: #666666;
text-decoration: none;
}
.tz-sidebar .widget ul.product_list_widget li {
padding: 0 0 20px;
margin: 0 0 20px;
}
.tz-sidebar .widget ul.product_list_widget li:before {
content: none;
}
.tz-sidebar .widget ul.product_list_widget li:after {
content: '';
display: block;
clear: both;
}
.tz-sidebar .widget ul.product_list_widget li a {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 24px;
color: #222222;
}
.tz-sidebar .widget ul.product_list_widget li a img {
width: 70px;
height: auto;
margin: 0 15px 0 0;
float: left;
}
.tz-sidebar .widget ul.product_list_widget li a span {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 24px;
color: #222222;
margin: 0 0 2px;
padding: 0px;
}
.tz-sidebar .widget ul.product_list_widget li .star-rating span:before {
color: #e5ae49;
}
.tz-sidebar .widget ul.product_list_widget li span.reviewer {
color: #e5ae49;
}
.tz-sidebar .widget ul.product_list_widget li span.amount {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
line-height: 24px;
color: #e5ae49;
}
.tz-sidebar .widget ul.product_list_widget li del span.amount {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
line-height: 24px;
color: #666;
}
.tz-sidebar .widget ul.product_list_widget li ins {
text-decoration: none;
color: #e5ae49;
}
.tz-sidebar .widget ul.product_list_widget li ins span.amount {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
line-height: 24px;
color: #e5ae49;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li {
padding: 0 0 20px;
margin: 0 0 20px;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li:before {
content: none;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li:after {
content: '';
display: block;
clear: both;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li .tzMiniCart_image {
float: left;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li .tzMiniCart_image a img {
float: none;
width: 70px;
height: auto;
margin: 0;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li .tzMiniCart_info {
margin-left: 85px;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li .tzMiniCart_info a {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 24px;
color: #222222;
margin: 0 0 2px;
padding: 0px;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li .tzMiniCart_info span.quantity {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
line-height: 24px;
color: #e5ae49;
margin: 0px;
padding: 0px;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li a.remove {
right: 0;
left: auto;
color: #222 !important;
height: 24px;
width: 24px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li a.remove:hover {
background: #e5ae49;
color: #fff !important;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget li:last-child {
border: none;
padding: 0;
margin: 0;
}
.tz-sidebar .widget .widget_shopping_cart_content ul.product_list_widget.cart_list {
margin-bottom: 20px;
}
.tz-sidebar .widget .widget_shopping_cart_content p.total {
border-top: 1px solid #ededed;
padding: 20px 0;
margin: 0;
}
.tz-sidebar .widget .widget_shopping_cart_content p.buttons a {
background-color: #222;
border-radius: 20px;
color: #ffffff;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
padding: 7px 20px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-sidebar .widget .widget_shopping_cart_content p.buttons a:hover {
background: #e5ae49;
}
.tz-sidebar .widget select {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
-o-appearance: none;
border: 1px solid #dedede;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-style: italic;
font-size: 14px;
line-height: 24px;
color: #b5b5b5;
width: 100%;
padding: 10px 15px;
}
.tz-sidebar .widget.widget_archive h3.title-widget {
margin-bottom: 18px;
}
.tz-sidebar .widget.widget_archive label {
display: none;
}
.tz-sidebar .widget.widget_categories h3.title-widget {
margin-bottom: 18px;
}
.tz-sidebar .widget.widget_categories label {
display: none;
}
.tz-sidebar .widget.widget_categories ul li {
padding: 0 0 0 15px;
border-bottom: 1px solid #ededed;
}
.tz-sidebar .widget.widget_categories ul li:first-child:before {
top: 15px;
}
.tz-sidebar .widget.widget_categories ul li a {
display: inline-block;
padding: 14px 0px;
}
.tz-sidebar .widget.widget_categories ul li ul.children li {
border-bottom: none;
border-top: 1px solid #ededed;
}
.tz-sidebar .widget.widget_pages ul li {
padding: 0 0 0 15px;
border: none;
}
.tz-sidebar .widget.widget_pages ul li:before {
content: none;
}
.tz-sidebar .widget.widget_pages ul li a {
display: block;
padding: 14px 0px;
border-bottom: 1px solid #ededed;
}
.tz-sidebar .widget.widget_search h3.title-widget {
margin-bottom: 18px;
}
.tz-sidebar .widget.widget_search form {
position: relative;
}
.tz-sidebar .widget.widget_search form label {
display: none;
}
.tz-sidebar .widget.widget_search form input.Tzsearchform {
width: 100%;
background: none;
border: 1px solid #dedede;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
line-height: 24px;
font-weight: 300;
font-style: italic;
padding: 9px 45px 10px 15px;
color: #111111;
}
.tz-sidebar .widget.widget_search form input.searchsubmit {
background-color: #e5ae49;
background-image: url(//siplprojects.in/wp-content/themes/interiart/images/search.png) !important;
background-position: center!important;
background-repeat: no-repeat !important;
border: none;
font-size: 0;
width: 45px;
height: 45px;
position: absolute;
top: 0;
right: 0;
}
.tz-sidebar .widget.widget_search form input.searchsubmit:after {
content: '';
display: block;
width: 20px;
height: 20px;
position: absolute;
top: 0px;
left: 0px;
background: #ffffff;
}
.tz-sidebar .widget.widget_search form span.icon_search {
display: none;
}
.tz-sidebar .widget.widget_tag_cloud h3.title-widget {
margin-bottom: 18px;
}
.tz-sidebar .widget.widget_tag_cloud .tagcloud a {
display: inline-block;
float: left;
margin: 0px 10px 10px 0px;
padding: 4px 11px 6px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px !important;
text-decoration: none;
background: #fafafa;
color: #666666;
border: 1px solid #dedede;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-sidebar .widget.widget_tag_cloud .tagcloud a:hover {
border-color: #e5ae49;
background: #e5ae49;
color: #ffffff;
}
.tz-sidebar .widget.widget_tag_cloud .tagcloud:after {
content: '';
clear: both;
display: block;
}
.tz-sidebar .widget.widget_calendar #calendar_wrap table {
width: 100%;
}
.tz-sidebar .widget.widget_calendar #calendar_wrap table caption {
color: #222222;
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
padding: 15px 0;
text-align: center;
}
.tz-sidebar .widget.widget_calendar #calendar_wrap table thead {
border-width: 1px 1px 1px 1px;
border-style: solid;
border-color: #dddddd;
}
.tz-sidebar .widget.widget_calendar #calendar_wrap table thead tr th {
text-align: center;
color: #222222;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
padding: 15px 9px;
}
.tz-sidebar .widget.widget_calendar #calendar_wrap table tbody {
border-width: 1px 1px 1px 1px;
border-style: solid;
border-color: #dddddd;
}
.tz-sidebar .widget.widget_calendar #calendar_wrap table tbody tr td {
text-align: center;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
padding: 8px;
}
.tz-sidebar .widget.widget_calendar #calendar_wrap table tbody tr td#today {
background-color: #e5ae49;
color: #FFFFFF;
}
.tz-sidebar .widget.widget_calendar #calendar_wrap table tfoot tr td a {
color: #666666;
font-family: "Roboto Slab", serif;
font-size: 13px;
font-weight: 400;
padding: 6px;
display: inline-block;
}
.tz-sidebar .widget.widget_text .textwidget {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
line-height: 25px;
}
.tz-sidebar .widget.widget_rss h3.title-widget span a {
color: #222222;
}
.tz-sidebar .widget.widget_nav_menu ul li {
padding: 0 0 0 15px;
border: none;
}
.tz-sidebar .widget.widget_nav_menu ul li:first-child:before {
top: 15px;
}
.tz-sidebar .widget.widget_nav_menu ul li a {
display: block;
padding: 14px 0px;
border-bottom: 1px solid #ededed;
}
.tz-sidebar .widget.widget_price_filter form {
margin-top: 45px;
}
.tz-sidebar .widget.widget_price_filter form .price_slider_wrapper .ui-widget-content {
background-color: #ededed;
}
.tz-sidebar .widget.widget_price_filter form .price_slider_wrapper .ui-widget-content .ui-slider-range {
background: #e5ae49;
}
.tz-sidebar .widget.widget_price_filter form .price_slider_wrapper .ui-widget-content .ui-slider-handle {
border: 3px solid #e5ae49;
background: #fff;
}
.tz-sidebar .widget.widget_price_filter form .price_slider_wrapper .price_slider_amount {
margin-top: 30px;
}
.tz-sidebar .widget.widget_price_filter form .price_slider_wrapper .price_slider_amount button.button {
float: right;
background-color: #222;
border-radius: 20px;
color: #ffffff;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
padding: 3px 26px 5px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-sidebar .widget.widget_price_filter form .price_slider_wrapper .price_slider_amount button.button:hover {
background: #e5ae49;
}
.tz-sidebar .widget.widget_price_filter form .price_slider_wrapper .price_slider_amount .price_label {
text-align: left;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
color: #666666;
padding-top: 7px;
}
.tz-sidebar .widget.widget_product_search form.woocommerce-product-search {
position: relative;
}
.tz-sidebar .widget.widget_product_search form.woocommerce-product-search label {
display: none;
}
.tz-sidebar .widget.widget_product_search form.woocommerce-product-search button[type="submit"] {
background-color: #e5ae49;
background-image: url(//siplprojects.in/wp-content/themes/interiart/images/search.png) !important;
background-position: center!important;
background-repeat: no-repeat !important;
border: none;
font-size: 0;
width: 45px;
height: 45px;
position: absolute;
top: 0;
right: 0;
}
.tz-sidebar .widget.widget_product_search form.woocommerce-product-search input.search-field {
width: 100%;
background: none;
border: 1px solid #dedede;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
line-height: 24px;
font-weight: 300;
font-style: italic;
padding: 9px 45px 10px 15px;
color: #111111;
}
.tz-sidebar .widget.widget_product_search form.woocommerce-product-search:after {
content: '';
display: block;
clear: both;
}
.tz-sidebar .widget.widget_product_tag_cloud .tagcloud a {
display: inline-block;
float: left;
margin: 0px 10px 10px 0px;
padding: 4px 11px 6px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px !important;
text-decoration: none;
background: #fafafa;
color: #666666;
border: 1px solid #dedede;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-sidebar .widget.widget_product_tag_cloud .tagcloud a:hover {
border-color: #e5ae49;
background: #e5ae49;
color: #ffffff;
}
.tz-sidebar .widget.widget_product_tag_cloud .tagcloud:after {
content: '';
clear: both;
display: block;
}
.tz-sidebar .widget.tz-recent-w ul li {
margin: 0 0 20px;
padding: 0 0 20px;
}
.tz-sidebar .widget.tz-recent-w ul li:before {
content: none;
}
.tz-sidebar .widget.tz-recent-w ul li:after {
content: '';
display: block;
clear: both;
}
.tz-sidebar .widget.tz-recent-w ul li:last-child {
border: none;
margin: 0;
padding: 0;
}
.tz-sidebar .widget.tz-recent-w ul li img {
float: left;
width: 77px;
height: auto;
margin-right: 15px;
}
.tz-sidebar .widget.tz-recent-w ul li .tz-recent-content a {
display: block;
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
line-height: 24px;
text-decoration: none;
margin-bottom: 4px;
}
.tz-sidebar .widget.tz-recent-w ul li .tz-recent-content span {
color: #e5ae49;
}
.tz-sidebar .widget.tz-recent-w.tz-recent-grid ul li {
margin: 0 10px 10px 0px;
padding: 0;
border: none;
float: left;
position: relative;
}
.tz-sidebar .widget.tz-recent-w.tz-recent-grid ul li:nth-child(3n+1) {
clear: both;
}
.tz-sidebar .widget.tz-recent-w.tz-recent-grid ul li img {
margin: 0;
}
.tz-sidebar .widget.tz-recent-w.tz-recent-grid ul li .tz-recent-overlay {
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
background: rgba(251, 192, 45, 0.75);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-sidebar .widget.tz-recent-w.tz-recent-grid ul li a {
position: absolute;
top: 30%;
left: 40%;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
}
.tz-sidebar .widget.tz-recent-w.tz-recent-grid ul li a i {
color: #fff;
}
.tz-sidebar .widget.tz-recent-w.tz-recent-grid ul li:hover .tz-recent-overlay {
width: 100%;
}
.tz-sidebar .widget.tz-recent-w.tz-recent-grid ul li:hover a {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-sidebar .widget.tz-recent-w.tz-recent-grid ul:after {
content: '';
display: block;
clear: both;
}
.tz-sidebar .widget.tz-latest-project ul li {
margin: 0 0 20px;
padding: 0 0 20px;
}
.tz-sidebar .widget.tz-latest-project ul li:before {
content: none;
}
.tz-sidebar .widget.tz-latest-project ul li:after {
content: '';
display: block;
clear: both;
}
.tz-sidebar .widget.tz-latest-project ul li:last-child {
border: none;
margin: 0;
padding: 0;
}
.tz-sidebar .widget.tz-latest-project ul li img {
float: left;
width: 77px;
height: auto;
margin-right: 15px;
}
.tz-sidebar .widget.tz-latest-project ul li .tz-latest-content a {
display: block;
font-family: 'Montserrat', sans-serif;
font-size: 13px;
font-weight: 400;
color: #222222;
line-height: 24px;
text-decoration: none;
margin-bottom: 4px;
}
.tz-sidebar .widget.tz-latest-project ul li .tz-latest-content span {
color: #e5ae49;
}
.tz-sidebar .widget.tz-latest-project.tz-latest-grid ul li {
margin: 0 10px 10px 0px;
padding: 0;
border: none;
float: left;
position: relative;
max-height: 77px;
overflow: hidden;
}
.tz-sidebar .widget.tz-latest-project.tz-latest-grid ul li:nth-child(3n+1) {
clear: both;
}
.tz-sidebar .widget.tz-latest-project.tz-latest-grid ul li img {
margin: 0;
}
.tz-sidebar .widget.tz-latest-project.tz-latest-grid ul li .tz-latest-overlay {
position: absolute;
top: 0;
left: 0;
width: 0%;
height: 100%;
background: rgba(251, 192, 45, 0.75);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-sidebar .widget.tz-latest-project.tz-latest-grid ul li a {
position: absolute;
top: 30%;
left: 40%;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
}
.tz-sidebar .widget.tz-latest-project.tz-latest-grid ul li a i {
color: #fff;
}
.tz-sidebar .widget.tz-latest-project.tz-latest-grid ul li:hover .tz-latest-overlay {
width: 100%;
}
.tz-sidebar .widget.tz-latest-project.tz-latest-grid ul li:hover a {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.tz-sidebar .widget.tz-latest-project.tz-latest-grid ul:after {
content: '';
display: block;
clear: both;
}
.tz-sidebar .widget.WOOF_Widget .woof_container_product_cat .woof_container_inner_productcategories ul.woof_list_radio li {
margin: 0 0 12px !important;
padding: 0 0 14px 22px !important;
}
.tz-sidebar .widget.WOOF_Widget .woof_container_product_cat .woof_container_inner_productcategories ul.woof_list_radio li input.woof_radio_term {
margin: 0;
padding: 0;
position: absolute;
top: 6px;
left: 0;
}
.tz-sidebar .widget.WOOF_Widget .woof_container_product_cat .woof_container_inner_productcategories ul.woof_list_radio li label {
display: block;
}
.tz-sidebar .widget.WOOF_Widget .woof_container_product_cat .woof_container_inner_productcategories ul.woof_list_radio li label span {
float: right;
}
.tz-sidebar .widget.WOOF_Widget .woof_container_product_cat .woof_container_inner_productcategories ul.woof_list_radio li a.woof_radio_term_reset {
display: block;
width: 15px;
height: 15px;
position: absolute;
top: 3px;
right: 0;
}
.tz-sidebar .widget.WOOF_Widget .woof_container_product_cat .woof_container_inner_productcategories ul.woof_list_radio li a.woof_radio_term_reset:after {
display: block;
content: '\f00d';
font-family: FontAwesome;
font-size: 18px;
color: #222222;
line-height: 18px;
position: absolute;
top: 0;
left: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-sidebar .widget.WOOF_Widget .woof_container_product_cat .woof_container_inner_productcategories ul.woof_list_radio li a.woof_radio_term_reset img {
display: none;
}
.tz-sidebar .widget.WOOF_Widget .woof_container_product_cat .woof_container_inner_productcategories ul.woof_list_radio li a.woof_radio_term_reset:hover:after {
font-size: 20px;
color: #e5ae49;
}
.tz-sidebar .widget.WOOF_Widget .woof_container_product_cat .woof_container_inner_productcategories ul.woof_list_radio li:before {
content: none;
}
.tz-sidebar .widget.WOOF_Widget .woof_submit_search_form_container {
margin: 13px 0 0;
}
.tz-sidebar .widget.WOOF_Widget .woof_submit_search_form_container button {
background-color: #222;
border-radius: 20px;
color: #ffffff;
float: right;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
padding: 3px 26px 5px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-sidebar .widget.WOOF_Widget .woof_submit_search_form_container button:hover {
background-color: #e5ae49;
} .not_pagenavi {
display: none !important;
}
.TZHide {
display: none !important;
}
.tzPortfolio_Container {
overflow: hidden;
background: #ffffff;
position: relative;
margin: 0px;
}
.tzPortfolio_Container.tzPortfolio_full > .container {
width: 100%;
padding: 0;
}
.tzPortfolio_Container .tzFilter {
padding: 20px 0 7px;
text-align: center;
background: #252525;
margin-bottom: 0;
}
.tzPortfolio_Container .tzFilter .tzFillter_box {
display: inline-block;
}
.tzPortfolio_Container .tzFilter .tzFillter_box a {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
border-right: 1px solid rgba(255, 255, 255, 0.1);
padding: 13px 25px;
float: left;
text-decoration: none;
margin-left: -1px;
z-index: 0;
margin-bottom: 10px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPortfolio_Container .tzFilter .tzFillter_box a.selected {
z-index: 1;
position: relative;
background: #e5ae49;
color: #ffffff;
border: none;
}
.tzPortfolio_Container .tzFilter .tzFillter_box a:last-child {
border: none;
}
.tzPortfolio_Container .tzFilter .tzFillter_box a:hover {
z-index: 1;
position: relative;
background: #e5ae49;
color: #ffffff;
}
.tzPortfolio_Container .tzPortfolio {
margin-right: -1px;
padding: 0;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner {
padding: 0;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox {
position: relative;
overflow: hidden;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .item-img {
position: relative;
overflow: hidden;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .item-img img {
position: relative;
width: 100%;
height: auto;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-ms-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_link_image {
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info {
position: absolute;
top: 32px;
right: 30px;
text-align: right;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info h3 {
margin: 0 0 6px;
padding: 0;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info h3 a {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
color: #e5ae49;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info .tzcat {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
letter-spacing: 2px;
color: #ffffff;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info .tzcat a {
color: #ffffff;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more {
position: absolute;
bottom: 33px;
right: 30px;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.5px;
overflow: hidden;
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more i {
padding-right: 10px;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more:after {
content: '';
display: block;
width: 100%;
height: 1px;
background: #e5ae49;
position: absolute;
bottom: 0;
left: -100%;
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more:hover {
color: #e5ae49;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more:hover:after {
left: 100%;
}
.tzPortfolio_Container .tzPortfolio .portfolio-item:hover .tz-inner .tzPortfolioBox .item-img img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.tzPortfolio_Container .tzPortfolio .portfolio-item:hover .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_overlay {
background: rgba(0, 0, 0, 0.8);
}
.tzPortfolio_Container .tzPortfolio.tzPortfolio_Fix_Height .portfolio-item .tz-inner .tzPortfolioBox .item-img img {
max-width: none;
}
.tzPortfolio_Container #tz_append {
text-align: center;
margin: 20px 0;
}
.tzPortfolio_Container #tz_append a {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 700;
color: #FFFFFF;
line-height: 24px;
display: inline-block;
padding: 11px 32px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
background: #e5ae49;
text-decoration: none;
text-transform: uppercase;
}
.tzPortfolio_Container #loadajax {
margin: 20px 0;
}
.tzPortfolio_Container #loadajax .navigation .tzpagination2 {
text-align: center;
}
.tzPortfolio_Container #loadajax .navigation .tzpagination2 span {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 500;
line-height: 24px;
color: #666666;
padding: 7px 15px;
background: #dfdfdf;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
border: none;
}
.tzPortfolio_Container #loadajax .navigation .tzpagination2 span.current {
color: #FFFFFF;
background: #e5ae49;
}
.tzPortfolio_Container #loadajax .navigation .tzpagination2 a {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 500;
line-height: 24px;
color: #666666;
padding: 7px 15px;
background: #dfdfdf;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
text-decoration: none;
border: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPortfolio_Container #loadajax .navigation .tzpagination2 a:hover {
color: #FFFFFF;
background: #e5ae49;
} .mfp-zoom-in .tzPortfolio_Single {
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
background: #252525;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
z-index: 9999999;
}
.mfp-zoom-in.mfp-ready .tzPortfolio_Single {
opacity: 1;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
opacity: 1;
}
.mfp-zoom-in.mfp-wrap {
z-index: 9999999;
}
.tzPortfolio_Single_Close {
display: block;
text-align: center;
}
.tzPortfolio_Single_Close i {
color: #ffffff !important;
font-weight: bold;
font-size: 30px;
opacity: 1;
width: auto;
height: auto;
margin: 0;
padding: 0;
position: relative;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPortfolio_Single_Close i:hover {
cursor: pointer;
color: #e5ae49 !important;
}
.tzPortfolio_Single {
padding: 50px 0 85px;
}
.tzPortfolio_Single h3.tzPortfolio_Single_title {
font-size: 30px;
font-weight: 700;
color: #e5ae49;
text-transform: uppercase;
letter-spacing: 1px;
margin: 48px 0 44px;
text-align: center;
}
.tzPortfolio_Single .tzPortfolio_Single_Content {
margin-bottom: 45px;
}
.tzPortfolio_Single .tzPortfolio_Single_Content p {
color: #ffffff;
}
.tzPortfolio_Single .tzPortfolio_Single_Info {
margin-bottom: 45px;
}
.tzPortfolio_Single .tzPortfolio_Single_Info ul {
padding: 0;
margin: 0;
}
.tzPortfolio_Single .tzPortfolio_Single_Info ul li {
list-style: none;
line-height: 25px;
color: #e5ae49;
}
.tzPortfolio_Single .tzPortfolio_Single_Info ul li label {
min-width: 100px;
font-weight: 400;
color: #ffffff;
margin: 0;
padding: 0;
}
.tzPortfolio_Single .tzPortfolio_Single_Info ul li a {
color: #e5ae49;
}
.tzPortfolio_Single .tzPortfolio_Single_Media {
margin-bottom: 64px;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_SingleImage {
text-align: center;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_Slider {
position: relative;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_Slider ul.slides li {
list-style: none;
padding-bottom: 70px;
text-align: center;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_Slider ul.slides li h3 {
color: #ffffff;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_Slider ul.slides li image {
max-width: 100%;
height: auto;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_Slider ul.slides li:last-child {
padding-bottom: 0;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_Slider ul.flex-direction-nav li a {
color: #FFFFFF;
opacity: 1;
font-size: 0;
text-shadow: none;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_Slider ul.flex-direction-nav li a:before {
font-size: 35px;
line-height: 40px;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_Slider ul.flex-direction-nav li a.flex-prev {
left: 0;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_Slider ul.flex-direction-nav li a.flex-next {
right: 0;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_video iframe {
width: 100%;
height: 100%;
border: none;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5 {
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5 .tzPortfolio_autoplay {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
opacity: 1;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5 .tzPortfolio_autoplay i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5 .tzPortfolio_autoplay:hover {
cursor: pointer;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5 .tzPortfolio_pauses {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
opacity: 1;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
display: none;
opacity: 0;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5 .tzPortfolio_pauses i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5 .tzPortfolio_pauses:hover {
cursor: pointer;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5:hover .tzPortfolio_pauses {
opacity: 1;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5 .bg-video {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.tzPortfolio_Single .tzPortfolio_Single_Media .tzPortfolio_Single_videoHtml5 .videoID {
width: 100%;
height: auto;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}
.tzPortfolio_Single .tzPortfolio_Single_tks {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #e5ae49;
text-transform: uppercase;
text-align: center;
margin-top: 14px;
}
.tzPortfolio_Single.tzPortfolio_Single_page .tzPortfolio_Single_Content p {
color: #666666;
}
.tzPortfolio_Single.tzPortfolio_Single_page .tzPortfolio_Single_Info ul li {
color: #666666;
}
.tzPortfolio_Single.tzPortfolio_Single_page .tzPortfolio_Single_Info ul li label {
font-weight: 700;
color: #666666;
}
.tzPortfolio_Single.tzPortfolio_Single_page .tzPortfolio_Single_Info ul li a {
color: #666666;
}  .wpb_content_element,
ul.wpb_thumbnails-fluid  > li,
.last_toggle_el_margin,
.wpb_button {
margin-bottom: 0px!important;
}
.overlay_parallax {
height: 100%;
left: 0;
position: absolute !important;
top: 0;
width: 100%;
z-index: -9999998 !important;
}
.tzPattern {
height: 100%;
left: 0;
position: absolute !important;
top: 0;
width: 100%;
z-index: -9999997 !important;
background-image: url(//siplprojects.in/wp-content/themes/interiart/images/pattern.png);
background-repeat: repeat;
}
.vc_parallax .vc_parallax-inner {
z-index: -9999999 !important;
}
body#bd {
overflow-X: hidden;
position: relative;
}
body#bd.tz-header-left {
margin-left: 320px;
}
body > .vc_row {
margin: 0px;
}
body > .vc_row-fluid > .no_container > .vc_col-sm-12 {
padding: 0px;
}
body > .vc_row-fluid > .no_container > .vc_col-sm-6 {
padding: 0px;
}
body > .vc_row-fluid > .no_container > .vc_col-sm-6 > .wpb_wrapper > .vc_row {
margin: 0;
}
.no_container:after {
content: '';
display: block;
clear: both;
}
.wpb_wrapper:after {
content: '';
display: block;
clear: both;
}
.vc_row {
position: relative;
}
.vc_row .vc_column_container {
padding-left: 15px;
padding-right: 15px;
}
.vc_row .vc_column_container > .vc_column-inner {
padding: 0;
}
.vc_row .tzRow-ruler {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 12px;
background-image: url(//siplprojects.in/wp-content/themes/interiart/images/ruler.png);
background-repeat: repeat-x;
z-index: 998;
} .tzTextAlign_center {
text-align: center;
}
.tzTextAlign_right {
text-align: right;
}
.tzTextAlign_left {
text-align: left;
} .tz-plazart-list {
margin: 0px;
padding: 0px;
}
.tz-plazart-list li {
list-style: none;
border-bottom: 1px dashed #dbd9d9;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #444444;
padding: 15px 0px;
}
.tz-plazart-list li i {
margin-right: 12px;
color: #e5ae49;
}
.tz-plazart-list.tzList-no_underlined li {
border: none;
padding: 8px 0px;
}
.tz-plazart-list.tzList-icon_highlight li {
border: none;
padding: 0px 0px 11px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
color: #666666;
}
.tz-plazart-list.tzList-icon_highlight li i {
width: 16px;
height: 16px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
background: #e5ae49;
color: #ffffff;
font-size: 12px;
line-height: 15px;
text-align: center;
} .tzPricing_table.tzPricing_table_type1 .pricing-header {
border-width: 1px 1px 0px;
border-style: solid;
border-color: #f3f3f3;
text-align: center;
padding: 30px 0px 18px;
background: #fdfdfd;
}
.tzPricing_table.tzPricing_table_type1 .pricing-header h3.pricinge-title {
letter-spacing: 0.5px;
}
.tzPricing_table.tzPricing_table_type1 .pricing-header span {
font-size: 41px;
font-size: #222222;
}
.tzPricing_table.tzPricing_table_type1 .pricing-cn {
border-width: 1px 1px 0px;
border-style: solid;
border-color: #f3f3f3;
}
.tzPricing_table.tzPricing_table_type1 .pricing-cn ul {
margin: 0px;
padding: 22px 0px 35px;
}
.tzPricing_table.tzPricing_table_type1 .pricing-cn ul li {
list-style: none;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 24px;
color: #666666;
text-align: center;
padding: 9px;
letter-spacing: 0.5px;
}
.tzPricing_table.tzPricing_table_type1 .pricing-footer {
border-width: 1px 1px 0px;
border-style: solid;
border-color: #f3f3f3;
background: #fdfdfd;
text-align: center;
padding: 11px 0px 5px;
}
.tzPricing_table.tzPricing_table_type1 .pricing-footer .pricing-footer-box {
display: inline-block;
padding-right: 45px;
}
.tzPricing_table.tzPricing_table_type1 .pricing-footer .pricing-footer-box .pricing-footer-iner {
position: relative;
}
.tzPricing_table.tzPricing_table_type1 .pricing-footer .pricing-footer-box .pricing-footer-iner span {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
color: #222222;
}
.tzPricing_table.tzPricing_table_type1 .pricing-footer .pricing-footer-box .pricing-footer-iner span.pricing-price {
font-size: 50px;
}
.tzPricing_table.tzPricing_table_type1 .pricing-footer .pricing-footer-box .pricing-footer-iner span.pricing-curren {
font-size: 16px;
left: 100%;
position: absolute;
top: 3px;
}
.tzPricing_table.tzPricing_table_type1 .pricing-footer .pricing-footer-box .pricing-footer-iner span.pricing-period {
bottom: 15px;
font-size: 12px;
left: 100%;
position: absolute;
}
.tzPricing_table.tzPricing_table_type1 .pricing-button {
background: #e5ae49;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPricing_table.tzPricing_table_type1 .pricing-button a {
display: block;
text-align: center;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #ffffff;
line-height: 24px;
text-decoration: none;
padding: 13px;
letter-spacing: 0.5px;
}
.tzPricing_table.tzPricing_table_type1 .pricing-button a:hover {
cursor: pointer;
}
.tzPricing_table.tzPricing_table_type1:hover .pricing-button {
background: #222222;
}
.tzPricing_table.tzPricing_table_type2 {
border: 1px solid #3a3a3a;
padding: 0px 11px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPricing_table.tzPricing_table_type2 .pricing-header {
text-align: center;
padding: 27px 0px 21px;
}
.tzPricing_table.tzPricing_table_type2 .pricing-header h3.pricinge-title {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 27px;
color: #222222;
padding: 0px;
margin: 13px 0px 0px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPricing_table.tzPricing_table_type2 .pricing-header span {
font-size: 41px;
color: #222222;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPricing_table.tzPricing_table_type2 .pricing-footer {
border-width: 1px 1px 0px;
border-style: solid;
border-color: #dfdfdf;
text-align: center;
padding: 13px 0px 9px;
}
.tzPricing_table.tzPricing_table_type2 .pricing-footer .pricing-footer-box {
display: inline-block;
padding-right: 45px;
}
.tzPricing_table.tzPricing_table_type2 .pricing-footer .pricing-footer-box .pricing-footer-iner {
position: relative;
}
.tzPricing_table.tzPricing_table_type2 .pricing-footer .pricing-footer-box .pricing-footer-iner span {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
color: #222222;
}
.tzPricing_table.tzPricing_table_type2 .pricing-footer .pricing-footer-box .pricing-footer-iner span.pricing-price {
font-size: 50px;
}
.tzPricing_table.tzPricing_table_type2 .pricing-footer .pricing-footer-box .pricing-footer-iner span.pricing-curren {
font-size: 16px;
left: 100%;
position: absolute;
top: 3px;
}
.tzPricing_table.tzPricing_table_type2 .pricing-footer .pricing-footer-box .pricing-footer-iner span.pricing-period {
bottom: 15px;
font-size: 12px;
left: 100%;
position: absolute;
}
.tzPricing_table.tzPricing_table_type2 .pricing-cn {
border-width: 0px 1px 1px;
border-style: solid;
border-color: #dfdfdf;
}
.tzPricing_table.tzPricing_table_type2 .pricing-cn ul {
margin: 0px;
padding: 0px 20px;
}
.tzPricing_table.tzPricing_table_type2 .pricing-cn ul li {
border-top: 1px solid #f1f1f1;
list-style: none;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 24px;
color: #666666;
text-align: center;
padding: 15px 0px;
}
.tzPricing_table.tzPricing_table_type2 .pricing-button {
text-align: center;
padding: 25px 0px;
}
.tzPricing_table.tzPricing_table_type2 .pricing-button a {
display: inline-block;
text-align: center;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #ffffff;
line-height: 24px;
text-decoration: none;
padding: 8px 28px;
background: #3a3a3a;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPricing_table.tzPricing_table_type2 .pricing-button a:hover {
cursor: pointer;
}
.tzPricing_table.tzPricing_table_type2:hover {
border: 1px solid #e5ae49;
}
.tzPricing_table.tzPricing_table_type2:hover .pricing-header h3.pricinge-title {
color: #e5ae49;
}
.tzPricing_table.tzPricing_table_type2:hover .pricing-header span {
font-size: 41px;
color: #e5ae49;
}
.tzPricing_table.tzPricing_table_type2:hover .pricing-button a {
background: #e5ae49;
} .tzSkill.tzskill-item-type1 {
overflow: hidden;
}
.tzSkill.tzskill-item-type1 .tzSkill-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 700;
font-size: 14px;
color: #222222;
margin: 0px;
padding: 10px 0 5px;
}
.tzSkill.tzskill-item-type1 .tzskill-item {
width: 100%;
height: 3px;
background: #e5e5e5;
}
.tzSkill.tzskill-item-type1 .tzskill-item .tzskill-item-width {
height: 100%;
background: #e5ae49;
position: relative;
}
.tzSkill.tzskill-item-type1 .tzskill-item .tzskill-item-width span {
background: #222222 none repeat scroll 0 0;
border-radius: 2px;
color: #ffffff;
display: inline-block;
font-family: "Ubuntu", sans-serif;
font-size: 12px;
font-weight: 300;
padding: 2px 8px;
position: absolute;
right: -19px;
top: -33px;
}
.tzSkill.tzskill-item-type1 .tzskill-item .tzskill-item-width span:after {
content: '';
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #222222;
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
}
.tzSkill.tzskill-item-type2 {
overflow: hidden;
position: relative;
padding: 0 0 5px;
}
.tzSkill.tzskill-item-type2 .tzSkill-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
margin: 0px;
padding: 0 0 5px;
}
.tzSkill.tzskill-item-type2 span {
color: #222222;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
position: absolute;
right: 0;
top: 2px;
}
.tzSkill.tzskill-item-type2 .tzskill-item {
width: 100%;
height: 5px;
background: #e5e5e5;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
.tzSkill.tzskill-item-type2 .tzskill-item .tzskill-item-width {
height: 100%;
background: #e5ae49;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
position: relative;
}
.tzSkill.tzskill-item-type2 .tzskill-item .tzskill-item-width .tzSkill_Circle {
width: 15px;
height: 15px;
background: #FFFFFF;
border: 4px solid #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: absolute;
top: -5px;
right: 0;
}
.tzSkill.tzskill-item-type3 {
overflow: hidden;
position: relative;
}
.tzSkill.tzskill-item-type3 .tzSkill-title {
font-family: 'Ubuntu', sans-serif;
font-weight: 700;
font-size: 14px;
color: #222222;
margin: 0px;
padding: 0 0 5px;
}
.tzSkill.tzskill-item-type3 span {
color: #222222;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
position: absolute;
right: 0;
top: 2px;
}
.tzSkill.tzskill-item-type3 .tzskill-item {
width: 100%;
height: 8px;
background: #e5e5e5;
padding: 2px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
}
.tzSkill.tzskill-item-type3 .tzskill-item .tzskill-item-width {
height: 100%;
background: #e5ae49;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
position: relative;
}
.tzSkill.tzskill-item-type4 {
text-align: center;
}
.tzSkill.tzskill-item-type4 .chart {
position: relative;
display: inline-block;
margin: 0 0 30px;
padding: 0px;
}
.tzSkill.tzskill-item-type4 .chart canvas {
position: absolute;
top: 0;
left: 0;
}
.tzSkill.tzskill-item-type4 .chart .tzSkill-box {
width: 100%;
height: 100%;
padding: 30px;
display: table;
}
.tzSkill.tzskill-item-type4 .chart .tzSkill-box .tzSkill-box-1 {
width: 100%;
height: 100%;
background: #f3f3f3;
padding: 18px 0px;
display: table-cell;
vertical-align: middle;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzSkill.tzskill-item-type4 .chart .tzSkill-box .tzSkill-box-1 .percent {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 33px;
font-weight: 300;
color: #222222;
z-index: 2;
position: relative;
padding-right: 15px;
}
.tzSkill.tzskill-item-type4 .chart .tzSkill-box .tzSkill-box-1 .percent:after {
content: '%';
font-family: 'Ubuntu', sans-serif;
font-size: 20px;
color: #222222;
position: absolute;
top: 5px;
right: 0;
}
.tzSkill.tzskill-item-type4 .tzSkill-title {
font-weight: 700;
margin-bottom: 18px;
padding: 0px 20px;
}
.tzSkill.tzskill-item-type4 .tzSkill-des {
padding: 0px 20px;
}
.tzSkill.tzskill-item-type5 {
text-align: center;
}
.tzSkill.tzskill-item-type5 .chart {
position: relative;
display: inline-block;
margin: 0 0 30px;
padding: 0px;
}
.tzSkill.tzskill-item-type5 .chart canvas {
position: absolute;
top: 0;
left: 0;
}
.tzSkill.tzskill-item-type5 .chart .tzSkill-box {
width: 100%;
height: 100%;
padding: 30px;
display: table;
}
.tzSkill.tzskill-item-type5 .chart .tzSkill-box .tzSkill-box-1 {
width: 100%;
height: 100%;
padding: 18px 0px;
display: table-cell;
vertical-align: middle;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzSkill.tzskill-item-type5 .chart .tzSkill-box .tzSkill-box-1 .percent {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 33px;
font-weight: 300;
color: #222222;
z-index: 2;
position: relative;
padding-right: 15px;
}
.tzSkill.tzskill-item-type5 .chart .tzSkill-box .tzSkill-box-1 .percent:after {
content: '%';
font-family: 'Ubuntu', sans-serif;
font-size: 20px;
color: #222222;
position: absolute;
top: 5px;
right: 0;
}
.tzSkill.tzskill-item-type5 .tzSkill-title {
font-weight: 700;
margin-bottom: 18px;
padding: 0px 20px;
}
.tzSkill.tzskill-item-type5 .tzSkill-des {
padding: 0px 20px;
}
.tzSkill.tzskill-item-type6 {
text-align: center;
}
.tzSkill.tzskill-item-type6 .chart {
position: relative;
display: inline-block;
margin: 0 0 8px;
padding: 0px;
}
.tzSkill.tzskill-item-type6 .chart canvas {
position: absolute;
top: 0;
left: 0;
}
.tzSkill.tzskill-item-type6 .chart .tzSkill-box {
width: 100%;
height: 100%;
padding: 30px;
display: table;
}
.tzSkill.tzskill-item-type6 .chart .tzSkill-box .tzSkill-box-1 {
width: 100%;
height: 100%;
padding: 0px;
display: table-cell;
vertical-align: middle;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzSkill.tzskill-item-type6 .chart .tzSkill-box .tzSkill-box-1 .percent {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 27px;
font-weight: 300;
color: #FFFFFF;
z-index: 2;
position: relative;
padding-right: 15px;
}
.tzSkill.tzskill-item-type6 .chart .tzSkill-box .tzSkill-box-1 .percent:after {
content: '%';
font-family: 'Ubuntu', sans-serif;
font-size: 16px;
color: #FFFFFF;
position: absolute;
top: 3px;
right: 0;
}
.tzSkill.tzskill-item-type6 .tzSkill-title {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
color: #FFFFFF;
margin-bottom: 18px;
padding: 0px 20px;
}
.tzSkill.tzskill-item-type6 .tzSkill-des {
padding: 0px 20px;
} .tzElement-title {
text-align: center;
}
.tzElement-title.tz-text-align-left {
text-align: left;
}
.tzElement-title.tz-text-align-left .tzDescription {
padding: 0 30% 0 0;
}
.tzElement-title.tz-text-align-left.tz-title-type-2 .tzTitle::after {
left: 0;
margin-left: 0;
}
.tzElement-title.tz-text-align-right {
text-align: right;
}
.tzElement-title.tz-text-align-right .tzDescription {
padding: 0 0 0 30%;
}
.tzElement-title.tz-text-align-right.tz-title-type-2 .tzTitle::after {
left: auto;
right: 0;
margin-left: 0;
}
.tzElement-title .tzTitle {
position: relative;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 65px;
color: rgba(34, 34, 34, 0.08);
text-transform: uppercase;
display: block;
line-height: 70px;
letter-spacing: 0.5px;
}
.tzElement-title .tzTitle em {
font-style: normal;
color: #e5ae49;
}
.tzElement-title.tz-title-type-2 .tzTitle {
font-family: 'Montserrat', sans-serif;
font-size: 35px;
color: #222222;
font-weight: 700;
line-height: 45px;
margin-bottom: 31px;
}
.tzElement-title.tz-title-type-2 .tzTitle:after {
content: '';
display: block;
width: 70px;
height: 4px;
position: absolute;
bottom: -15px;
left: 50%;
margin-left: -35px;
background: #e5ae49;
}
.tzElement-title.tz-title-type-3 .tzTitle {
font-family: 'Montserrat', sans-serif;
font-size: 34px;
color: #222222;
font-weight: 700;
line-height: 45px;
margin-bottom: 15px;
}
.tzElement-title.tz-title-type-3 .tzTitle:after {
content: none;
}
.tzElement-title .tzSubTitle {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 21px;
color: #222222;
text-transform: uppercase;
display: block;
line-height: 22px;
margin: 0 0 17px;
padding: 0;
}
.tzElement-title .tzDescription {
padding: 0 20%;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.5px;
}
.tzShortcode-title {
font-family: 'Ubuntu', sans-serif;
font-size: 20px;
font-weight: 500;
color: #222222;
} .tzElement_Counter {
padding: 0px 35px;
}
.tzElement_Counter .tzElement_counterIcon {
border-bottom: 1px solid #353535;
text-align: center;
padding-bottom: 28px;
margin-bottom: 12px;
}
.tzElement_Counter .tzElement_counterIcon i {
font-size: 46px;
color: #ffffff;
}
.tzElement_Counter .tzElement_counterIcon span {
font-size: 46px;
color: #FFFFFF;
}
.tzElement_Counter .tzElement_count {
display: block;
text-align: center;
}
.tzElement_Counter .tzElement_count em {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 50px;
color: #e5ae49;
font-style: normal;
}
.tzElement_Counter p {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #e5ae49;
text-transform: uppercase;
text-align: center;
letter-spacing: 2.8px;
}
.tzElement_Counter.tz_Counter_type2 {
padding: 0;
}
.tzElement_Counter.tz_Counter_type2 .tzElement_counterIcon {
border: none;
padding: 0;
margin: 0 0 13px;
}
.tzElement_Counter.tz_Counter_type2 .tzElement_count {
margin-bottom: 5px;
}
.tzElement_Counter.tz_Counter_type2 .tzElement_count em {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 50px;
color: #e5ae49;
}
.tzElement_Counter.tz_Counter_type2 p {
font-family: 'Raleway', sans-serif;
font-size: 13px;
font-weight: 300;
color: #FFFFFF;
letter-spacing: 2px;
}
.tzElement_Counter.tz_Counter_type3 .tzElement_count {
position: relative;
margin-bottom: 13px;
}
.tzElement_Counter.tz_Counter_type3 .tzElement_count:after {
content: '';
display: block;
width: 30px;
height: 1px;
position: absolute;
bottom: -1px;
left: 50%;
margin-left: -15px;
background: rgba(255, 255, 255, 0.2);
}
.tzElement_Counter.tz_Counter_type3 p {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
color: #FFFFFF;
letter-spacing: 2px;
} @keyframes tz_rotate {
from {
-webkit-transform: rotateY(0);
-moz-transform: rotateY(0);
-ms-transform: rotateY(0);
-o-transform: rotateY(0);
transform: rotateY(0);
}
to {
-webkit-transform: rotateY(360deg);
-moz-transform: rotateY(360deg);
-ms-transform: rotateY(360deg);
-o-transform: rotateY(360deg);
transform: rotateY(360deg);
}
}
.tzElement_Feature.tzFeature_type1 .tzFeature_Icon .tzFeature_iconBox {
width: 42px;
height: 42px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
text-align: center;
padding: 11px 0px;
position: relative;
margin: 4px;
float: left;
}
.tzElement_Feature.tzFeature_type1 .tzFeature_Icon .tzFeature_iconBox:after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
border: 2px solid #e5ae49;
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Feature.tzFeature_type1 .tzFeature_Icon .tzFeature_iconBox span {
font-size: 20px;
color: #ffffff;
}
.tzElement_Feature.tzFeature_type1 .tzFeature_Icon .tzFeature_iconBox i {
font-size: 20px;
color: #ffffff;
}
.tzElement_Feature.tzFeature_type1 h5.tzFeature_title {
font-weight: 700;
padding: 3px 0px;
margin: 0px 0px 0px 70px;
}
.tzElement_Feature.tzFeature_type1 p.tzFeature_subTitle {
margin: 0px 0px 20px 70px;
}
.tzElement_Feature.tzFeature_type2 .tzFeature_Icon {
float: left;
}
.tzElement_Feature.tzFeature_type2 .tzFeature_Icon .tzFeature_iconBox {
width: 75px;
height: 75px;
background: #e5ae49;
border: 2px solid #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
text-align: center;
padding: 25px 0px;
position: relative;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Feature.tzFeature_type2 .tzFeature_Icon .tzFeature_iconBox span {
font-size: 25px;
color: #ffffff;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Feature.tzFeature_type2 .tzFeature_Icon .tzFeature_iconBox i {
font-size: 25px;
color: #ffffff;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Feature.tzFeature_type2 .tzFeature_Icon .tzFeature_iconBox small.tzFeature_Number {
position: absolute;
top: -2px;
left: -2px;
width: 25px;
height: 25px;
border: 2px solid #e5ae49;
background: #FFFFFF;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #e5ae49;
text-align: center;
padding: 1px 0px;
}
.tzElement_Feature.tzFeature_type2 h5.tzFeature_title {
font-weight: 700;
padding: 3px 0px;
margin: 0px 0px 13px 100px;
}
.tzElement_Feature.tzFeature_type2 p.tzFeature_description {
margin: 0px 0px 0px 100px;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon .tzFeature_Icon {
float: right;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon .tzFeature_Icon .tzFeature_iconBox small.tzFeature_Number {
left: auto;
right: -2px;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon h5.tzFeature_title {
font-weight: 700;
padding: 3px 0px;
margin: 0px 100px 13px 0px;
text-align: right;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon p.tzFeature_description {
margin: 0px 100px 0px 0px;
text-align: right;
}
.tzElement_Feature.tzFeature_type2:hover .tzFeature_Icon .tzFeature_iconBox {
background: #FFFFFF;
border: 2px solid #e5ae49;
}
.tzElement_Feature.tzFeature_type2:hover .tzFeature_Icon .tzFeature_iconBox span {
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type2:hover .tzFeature_Icon .tzFeature_iconBox i {
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type3 {
text-align: center;
}
.tzElement_Feature.tzFeature_type3 .tzFeature_Icon {
display: inline-block;
margin-bottom: 35px;
}
.tzElement_Feature.tzFeature_type3 .tzFeature_Icon .tzFeature_iconBox {
width: 96px;
height: 96px;
background: #e5ae49;
border: 2px solid #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
text-align: center;
padding: 33px 0px;
position: relative;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Feature.tzFeature_type3 .tzFeature_Icon .tzFeature_iconBox span {
font-size: 25px;
color: #ffffff;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Feature.tzFeature_type3 .tzFeature_Icon .tzFeature_iconBox i {
font-size: 30px;
color: #ffffff;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Feature.tzFeature_type3 .tzFeature_Icon .tzFeature_iconBox small.tzFeature_Number {
position: absolute;
top: -2px;
left: -2px;
width: 30px;
height: 30px;
border: 2px solid #e5ae49;
background: #FFFFFF;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #e5ae49;
text-align: center;
padding: 3px 0px;
}
.tzElement_Feature.tzFeature_type3 h5.tzFeature_title {
font-weight: 700;
padding: 3px 0px;
margin: 0px 0px 13px;
text-transform: uppercase;
}
.tzElement_Feature.tzFeature_type3 p.tzFeature_description {
margin: 0px;
}
.tzElement_Feature.tzFeature_type3:hover .tzFeature_Icon .tzFeature_iconBox {
background: #FFFFFF;
}
.tzElement_Feature.tzFeature_type3:hover .tzFeature_Icon .tzFeature_iconBox span {
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type3:hover .tzFeature_Icon .tzFeature_iconBox i {
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type4 {
text-align: center;
}
.tzElement_Feature.tzFeature_type4 .tzFeature_Icon {
margin-bottom: 33px;
}
.tzElement_Feature.tzFeature_type4 .tzFeature_Icon .tzFeature_iconBox i {
font-size: 65px;
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type4 .tzFeature_Icon .tzFeature_iconBox span {
font-size: 65px;
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type4 h5.tzFeature_title {
font-family: "Montserrat", sans-serif;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
}
.tzElement_Feature.tzFeature_type4 .tzFeature_description {
font-family: 'Ubuntu', sans-serif;
}
.tzElement_Feature.tzFeature_type4 a.tzFeature_readmore {
display: block;
font-family: 'Raleway', sans-serif;
font-size: 12px;
font-weight: 800;
color: #e5ae49;
text-decoration: none;
text-transform: uppercase;
margin-top: 32px;
}
.tzElement_Feature.tzFeature_type4:hover .tzFeature_Icon .tzFeature_iconBox i {
animation-name: tz_rotate;
animation-duration: 1.5s;
animation-delay: 0s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.tzElement_Feature.tzFeature_type5 .tzFeature_Icon {
float: left;
}
.tzElement_Feature.tzFeature_type5 .tzFeature_Icon .tzFeature_iconBox span {
font-size: 32px;
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type5 .tzFeature_Icon .tzFeature_iconBox i {
font-size: 32px;
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type5 h5.tzFeature_title {
font-weight: 400;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 2px;
padding: 3px 0px 18px;
margin: 0px 0px 12px 60px;
position: relative;
}
.tzElement_Feature.tzFeature_type5 h5.tzFeature_title:after {
content: '';
display: block;
width: 30px;
height: 1px;
position: absolute;
bottom: 0;
left: 0;
background: #e5ae49;
}
.tzElement_Feature.tzFeature_type5 p.tzFeature_description {
margin: 0px 0px 0px 60px;
}
.tzElement_Feature.tzFeature_type6 .tzFeature_Icon {
margin: 0 0 23px;
}
.tzElement_Feature.tzFeature_type6 .tzFeature_Icon .tzFeature_iconBox span {
font-size: 32px;
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type6 .tzFeature_Icon .tzFeature_iconBox i {
font-size: 32px;
color: #e5ae49;
}
.tzElement_Feature.tzFeature_type6 h5.tzFeature_title {
font-weight: 400;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 2px;
padding: 3px 0px 18px;
margin: 0px 0px 12px;
position: relative;
}
.tzElement_Feature.tzFeature_type6 h5.tzFeature_title:after {
content: '';
display: block;
width: 30px;
height: 1px;
position: absolute;
bottom: 0;
left: 0;
background: #e5ae49;
}
.tzElement_Feature.tzFeature_type6 p.tzFeature_description {
margin: 0;
}
.tzElement_Feature.tzFeature_type6.tzFeature_center {
text-align: center;
}
.tzElement_Feature.tzFeature_type6.tzFeature_center h5.tzFeature_title:after {
left: 50%;
margin-left: -15px;
}
.tzElement_Feature.tzFeature_type6.tzFeature_right {
text-align: right;
}
.tzElement_Feature.tzFeature_type6.tzFeature_right h5.tzFeature_title:after {
left: auto;
right: 0;
} .vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a span.vc_tta-title-text {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 700;
letter-spacing: 1px;
}
.vc_tta-accordion .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon {
height: 8px;
width: 8px;
}
.vc_tta-style-classic .vc_tta-panels .vc_tta-panel {
margin-bottom: 10px;
}
.vc_tta-style-classic.vc_tta-color-white .vc_tta-panel .vc_tta-panel-heading {
background-color: rgba(0, 0, 0, 0.02) !important;
border-color: #e1e1e1 !important;
}
.vc_tta-style-classic.vc_tta-color-white .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a span.vc_tta-title-text {
color: #222222;
}
.vc_tta-style-classic.vc_tta-color-white .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:after {
border-color: #222222;
}
.vc_tta-style-classic.vc_tta-color-white .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-controls-icon:before {
border-color: #222222;
}
.vc_tta-style-classic.vc_tta-color-white .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a .vc_tta-icon {
color: #222222;
}
.vc_tta-style-classic.vc_tta-color-white .vc_tta-panel.vc_active .vc_tta-panel-heading {
background-color: #ffffff !important;
}
.vc_tta-style-classic.vc_tta-color-white .vc_tta-panel .vc_tta-panel-body {
border-color: #e1e1e1 !important;
padding: 19px;
}
.vc_tta-style-classic.vc_tta-shape-rounded .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
border-radius: 2px !important;
-webkit-border-radius: 2px !important;
-ms-border-radius: 2px !important;
-moz-border-radius: 2px !important;
-o-border-radius: 2px !important;
}
.vc_tta-style-classic.vc_tta-shape-rounded .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
border-radius: 2px !important;
-webkit-border-radius: 2px !important;
-ms-border-radius: 2px !important;
-moz-border-radius: 2px !important;
-o-border-radius: 2px !important;
}
.vc_tta-style-classic.vc_tta-shape-rounded .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading {
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
}
.vc_tta-style-classic.vc_tta-shape-rounded .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-body {
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel {
margin-bottom: 15px;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
border: 1px solid #f0f0f0 !important;
margin-bottom: 0px !important;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a {
padding: 12px 68px;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a span.vc_tta-title-text {
font-weight: 400;
text-transform: uppercase;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a .vc_tta-controls-icon {
width: 43px;
height: 31px;
left: 6px;
background: #dfdfdf;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a .vc_tta-controls-icon:after {
width: 8px;
height: 8px;
border-color: #FFFFFF;
left: 24px;
top: 11px;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a .vc_tta-controls-icon:before {
width: 8px;
height: 8px;
border-color: #FFFFFF;
left: 17px;
top: 18px;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
border: none;
padding: 30px 70px 20px;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading h4.vc_tta-panel-title a .vc_tta-controls-icon {
background: #e5ae49;
}
.vc_tta-style-modern.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a span.vc_tta-title-text {
color: #222222 !important;
}
.vc_tta-style-modern.vc_tta-color-white .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a .vc_tta-icon {
color: #222222;
}
.vc_tta-style-modern.vc_tta-shape-rounded .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
border-radius: 21px !important;
}
.vc_tta-style-modern.vc_tta-shape-rounded .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-controls-icon {
width: 43px;
height: 31px;
left: 6px;
background: #e5ae49;
border-radius: 21px;
} .tzElement_Video {
width: 100%;
height: 500px;
overflow: hidden;
position: relative;
}
.tzElement_Video .tzElement_autoplay {
background: #e5ae49;
border: 0 none;
height: 60px;
left: 50%;
margin-left: -30px;
margin-top: -30px;
opacity: 1;
position: absolute;
top: 50%;
width: 60px;
z-index: 99;
text-align: center;
}
.tzElement_Video .tzElement_autoplay i {
display: inline-block;
font-size: 20px;
color: #FFFFFF;
padding: 20px 0px;
}
.tzElement_Video .tzElement_autoplay:hover {
cursor: pointer;
}
.tzElement_Video .tzElement_pauses {
background: #e5ae49;
border: 0 none;
height: 60px;
left: 50%;
margin-left: -30px;
margin-top: -30px;
opacity: 1;
position: absolute;
top: 50%;
width: 60px;
z-index: 99;
text-align: center;
display: none;
opacity: 0;
}
.tzElement_Video .tzElement_pauses i {
display: inline-block;
font-size: 20px;
color: #FFFFFF;
padding: 20px 0px;
}
.tzElement_Video .tzElement_pauses:hover {
cursor: pointer;
}
.tzElement_Video:hover .tzElement_pauses {
opacity: 1;
}
.tzElement_Video .tzElement_bgVideo {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.tzElement_Video .tzElement_videoID {
width: 100%;
height: auto;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}
.tzElement_Video .tzElement_Overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 1;
}
.tzElement_Video .tzElement_textLeft {
max-width: 50%;
position: absolute;
top: 50%;
right: 50%;
font-family: 'Montserrat', sans-serif;
font-size: 30px;
font-weight: 400;
color: #fafafa;
z-index: 9;
padding: 0px 65px;
}
.tzElement_Video .tzElement_textRight {
max-width: 50%;
position: absolute;
top: 50%;
left: 50%;
font-family: 'Montserrat', sans-serif;
font-size: 30px;
font-weight: 400;
color: #fafafa;
z-index: 9;
padding: 0px 65px;
}
.tzElement_Video.tzElement_Video_type2 .tzElement_autoplay {
background: none;
border: 4px solid #ffffff;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
width: 70px;
height: 70px;
margin-top: -35px;
margin-left: -35px;
}
.tzElement_Video.tzElement_Video_type2 .tzElement_pauses {
background: none;
border: 4px solid #ffffff;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
width: 70px;
height: 70px;
margin-top: -35px;
margin-left: -35px;
} @keyframes tz_scale_rotate {
from {
-webkit-transform: scale(2) rotateY(0);
-moz-transform: scale(2) rotateY(0);
-ms-transform: scale(2) rotateY(0);
-o-transform: scale(2) rotateY(0);
transform: scale(2) rotateY(0);
}
to {
-webkit-transform: scale(2) rotateY(360deg);
-moz-transform: scale(2) rotateY(360deg);
-ms-transform: scale(2) rotateY(360deg);
-o-transform: scale(2) rotateY(360deg);
transform: scale(2) rotateY(360deg);
}
}
.tzElement_Ourteam.tzOurteam_type1 {
text-align: center;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_imageContainer {
position: relative;
padding: 0px 20px;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_imageContainer .tzOurteam_ImageBox {
position: relative;
border-width: 0px 0px 1px;
border-style: solid;
border-color: #ececec;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_imageContainer .tzOurteam_ImageBox .tzOurteam_shapeLeft {
position: absolute;
bottom: -2px;
height: 3px;
left: -6px;
width: 3px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_imageContainer .tzOurteam_ImageBox .tzOurteam_shapeLeft:after {
position: absolute;
top: -3px;
left: -3px;
content: '';
display: block;
width: 9px;
height: 9px;
border: 1px solid #e5ae49;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_imageContainer .tzOurteam_ImageBox .tzOurteam_shapeRight {
position: absolute;
bottom: -2px;
height: 3px;
right: -6px;
width: 3px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_imageContainer .tzOurteam_ImageBox .tzOurteam_shapeRight:after {
position: absolute;
top: -3px;
left: -3px;
content: '';
display: block;
width: 9px;
height: 9px;
border: 1px solid #e5ae49;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_imageContainer .tzOurteam_ImageBox .tzOurteam_Image {
width: 230px;
height: 230px;
position: relative;
overflow: hidden;
border-width: 1px 1px 0px;
border-style: solid;
border-color: #ececec;
margin: auto;
padding: 0px;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_imageContainer .tzOurteam_ImageBox .tzOurteam_Image img {
position: relative;
width: 100%;
height: auto;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_Info {
padding: 28px 25px 17px;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_Info .tzOurteam_Name {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 700;
color: #222222;
text-transform: uppercase;
margin: 0 0 12px;
padding: 0px;
letter-spacing: 1px;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_Info .tzOurteam_Job {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-style: italic;
font-size: 14px;
color: #666666;
margin: 0 0 19px;
padding: 0;
display: block;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_Info .tzOurteam_des {
line-height: 22px;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_Social a.tzSocial_Item {
display: inline-block;
width: 40px;
height: 40px;
border: 1px solid #dadada;
text-align: center;
padding: 9px 0px;
margin: 0px 5px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_Social a.tzSocial_Item i {
font-size: 15px;
color: #9e9e9e;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_Social a.tzSocial_Item:hover {
border: 1px solid #e5ae49;
background: #e5ae49;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_Social a.tzSocial_Item:hover i {
color: #ffffff;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image {
position: relative;
overflow: hidden;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image img {
width: 100%;
height: auto;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image .tzOurteam_Overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(251, 192, 45, 0);
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image .tzOurteam_Social {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
-webkit-transition: all 0.3s ease-in-out 0.1s;
-moz-transition: all 0.3s ease-in-out 0.1s;
-ms-transition: all 0.3s ease-in-out 0.1s;
-o-transition: all 0.3s ease-in-out 0.1s;
transition: all 0.3s ease-in-out 0.1s;
-webkit-transform: scale(2);
-moz-transform: scale(2);
-ms-transform: scale(2);
-o-transform: scale(2);
transform: scale(2);
visibility: hidden;
opacity: 0;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image .tzOurteam_Social .tzOurteam_Social_table {
display: table;
width: 100%;
height: 100%;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image .tzOurteam_Social .tzOurteam_Social_table .tzOurteam_Social_table_cell {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image .tzOurteam_Social .tzOurteam_Social_table .tzOurteam_Social_table_cell a.tzSocial_Item {
display: inline-block;
margin: 0 12px;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image .tzOurteam_Social .tzOurteam_Social_table .tzOurteam_Social_table_cell a.tzSocial_Item i {
font-size: 18px;
color: #FFFFFF;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image .tzOurteam_Social .tzOurteam_Social_table .tzOurteam_Social_table_cell a.tzSocial_Item:hover i {
animation-name: tz_scale_rotate;
animation-duration: 1.5s;
animation-delay: 0s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image:hover .tzOurteam_Overlay {
background: rgba(251, 192, 45, 0.5);
visibility: visible;
opacity: 1;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Image:hover .tzOurteam_Social {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Info {
background: #FFFFFF;
border-width: 0px 1px 1px;
border-style: solid;
border-color: #f3f3f3;
text-align: center;
padding: 21px;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Info .tzOurteam_Name {
font-family: 'Ubuntu', sans-serif;
font-size: 15px;
font-weight: 700;
color: #222222;
margin: 0px 0px 10px;
padding: 0px;
text-transform: uppercase;
}
.tzElement_Ourteam.tzOurteam_type2 .tzOurteam_Info .tzOurteam_Job {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
font-style: italic;
color: #666666;
}
.tzElement_Ourteam.tzOurteam_type3 {
text-align: center;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox {
position: relative;
display: inline-block;
margin-bottom: 55px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Image {
width: 160px;
height: 160px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
overflow: hidden;
position: relative;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Image:after {
content: '';
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
position: absolute;
top: 0;
left: 0;
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transform: scale(0.8);
visibility: hidden;
opacity: 0;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-1-item .item-1 {
position: absolute;
left: 50%;
margin-left: -15px;
bottom: -18px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-2-item .item-1 {
position: absolute;
left: 40px;
bottom: -10px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-2-item .item-2 {
position: absolute;
right: 40px;
bottom: -10px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-3-item .item-1 {
position: absolute;
left: 25px;
bottom: -5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-3-item .item-2 {
position: absolute;
left: 50%;
margin-left: -15px;
bottom: -18px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-3-item .item-3 {
position: absolute;
right: 25px;
bottom: -5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-4-item .item-1 {
position: absolute;
left: 10px;
bottom: 5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-4-item .item-2 {
position: absolute;
left: 45px;
bottom: -14px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-4-item .item-3 {
position: absolute;
right: 45px;
bottom: -14px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-4-item .item-4 {
position: absolute;
right: 10px;
bottom: 5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-5-item .item-1 {
position: absolute;
left: -5px;
bottom: 25px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-5-item .item-2 {
position: absolute;
left: 25px;
bottom: -5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-5-item .item-3 {
position: absolute;
left: 50%;
margin-left: -15px;
bottom: -18px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-5-item .item-4 {
position: absolute;
right: 25px;
bottom: -5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-5-item .item-5 {
position: absolute;
right: -5px;
bottom: 25px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-6-item .item-1 {
position: absolute;
left: -10px;
bottom: 37px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-6-item .item-2 {
position: absolute;
left: 10px;
bottom: 5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-6-item .item-3 {
position: absolute;
left: 45px;
bottom: -14px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-6-item .item-4 {
position: absolute;
right: 45px;
bottom: -14px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-6-item .item-5 {
position: absolute;
right: 10px;
bottom: 5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-6-item .item-6 {
position: absolute;
right: -10px;
bottom: 37px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-7-item .item-1 {
position: absolute;
left: -18px;
bottom: 62px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-7-item .item-2 {
position: absolute;
left: -5px;
bottom: 25px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-7-item .item-3 {
position: absolute;
left: 25px;
bottom: -5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-7-item .item-4 {
position: absolute;
left: 50%;
margin-left: -15px;
bottom: -18px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-7-item .item-5 {
position: absolute;
right: 25px;
bottom: -5px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-7-item .item-6 {
position: absolute;
right: -5px;
bottom: 25px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social.tzSocial-7-item .item-7 {
position: absolute;
right: -18px;
bottom: 62px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social .tzSocial_Item i {
text-align: center;
width: 30px;
height: 30px;
background: #e5ae49;
color: #ffffff;
padding: 8px 0;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social .tzSocial_Item i.fa-facebook {
background: #334d93;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social .tzSocial_Item i.fa-twitter {
background: #00aced;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social .tzSocial_Item i.fa-google-plus {
background: #df4b38;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_ImageBox .tzOurteam_Social .tzSocial_Item i.fa-pinterest-p {
background: #bb252a;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_Info .tzOurteam_Name {
font-weight: 700;
text-transform: uppercase;
position: relative;
padding: 0 0 18px;
margin: 0 0 12px;
}
.tzElement_Ourteam.tzOurteam_type3 .tzOurteam_Info .tzOurteam_Name:after {
content: '';
display: block;
width: 40px;
height: 1px;
background: #e5ae49;
position: absolute;
bottom: 0;
left: 50%;
margin-left: -20px;
}
.tzElement_Ourteam.tzOurteam_type3:hover .tzOurteam_ImageBox .tzOurteam_Image:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
} .tzElement_Quote_Container {
position: relative;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote {
position: relative;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item {
padding: 0px 170px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Image {
width: 100px;
height: 100px;
padding: 5px;
background: rgba(255, 255, 255, 0.1);
float: left;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox {
width: 100%;
height: 100%;
overflow: hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox img {
width: 100%;
height: auto;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Content {
font-family: 'Ubuntu', sans-serif;
font-size: 18px;
font-weight: 300;
font-style: italic;
color: #FFFFFF;
margin-left: 130px;
margin-bottom: 23px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Info {
margin-left: 130px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Image {
display: none;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Name {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
color: #e5ae49;
letter-spacing: 1px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Info small {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #FFFFFF;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Employment {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
font-style: italic;
color: #FFFFFF;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls {
margin: 0px;
padding: 0px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination {
position: absolute;
right: 60px;
top: 5px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination .owl-page {
display: block;
margin: 0 0 15px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination .owl-page span {
width: 7px;
height: 7px;
background: #ffffff;
opacity: 1;
position: relative;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination .owl-page span:after {
content: '';
display: block;
width: 15px;
height: 15px;
border: 1px solid #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: absolute;
top: -5px;
left: -5px;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span {
width: 5px;
height: 5px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span {
width: 5px;
height: 5px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type1 button {
background: none;
border: none;
position: absolute;
top: 0;
}
.tzElement_Quote_Container.tzQuote_type1 button.tzprevslider {
left: 0;
}
.tzElement_Quote_Container.tzQuote_type1 button.tznextslider {
left: 50px;
}
.tzElement_Quote_Container.tzQuote_type1 button i {
color: #ffffff;
font-size: 30px;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote {
position: relative;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item {
padding: 0px 170px;
text-align: center;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Image {
display: inline-block;
width: 100px;
height: 100px;
padding: 5px;
margin: 0 0 80px;
background: rgba(255, 255, 255, 0.1);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox {
width: 100%;
height: 100%;
overflow: hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox img {
width: 100%;
height: auto;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Content {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-style: italic;
font-size: 17px;
color: #ececec;
margin-bottom: 56px;
line-height: 30px;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Info {
position: relative;
display: inline-block;
padding-left: 50px;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Image {
display: none;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Name {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
color: #FFFFFF;
display: block;
text-align: left;
text-transform: uppercase;
letter-spacing: 2px;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Info small {
display: none;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Employment {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
font-style: italic;
color: #FFFFFF;
display: block;
text-align: left;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item .tzQuote_Info:after {
content: '{';
display: block;
width: 40px;
height: 40px;
position: absolute;
top: 0;
left: 0;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
text-align: center;
font-family: "ElegantIcons";
font-variant: normal;
font-weight: normal;
line-height: 1;
color: #FFFFFF;
font-size: 25px;
text-transform: none;
padding: 7px 0px;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .owl-controls {
margin: 80px 0 0;
padding: 0px;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .owl-controls .owl-pagination .owl-page {
width: 7px;
height: 7px;
margin: 0 7px 0;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .owl-controls .owl-pagination .owl-page span {
width: 7px;
height: 7px;
background: #ffffff;
opacity: 1;
position: relative;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .owl-controls .owl-pagination .owl-page span:after {
content: '';
display: block;
width: 15px;
height: 15px;
border: 1px solid #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: absolute;
top: -5px;
left: -5px;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span {
width: 5px;
height: 5px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span {
width: 5px;
height: 5px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote {
position: relative;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item {
padding: 0px 170px;
text-align: center;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Image {
display: none;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Content {
font-family: 'Ubuntu', sans-serif;
font-size: 18px;
font-weight: 300;
font-style: italic;
color: #ffffff;
margin-bottom: 65px;
line-height: 32px;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Info {
position: relative;
display: inline-block;
width: 330px;
padding-bottom: 68px;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Image {
display: inline-block;
width: 100px;
height: 100px;
padding: 3px;
margin: 0 0 30px;
border: 1px solid #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Image .tzQuote_imageBox {
width: 100%;
height: 100%;
overflow: hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Image .tzQuote_imageBox img {
width: 100%;
height: auto;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Name {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 14px;
color: #e5ae49;
display: block;
text-align: center;
text-transform: uppercase;
padding-bottom: 5px;
letter-spacing: 2px;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Info small {
display: none;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Employment {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #FFFFFF;
display: block;
text-align: center;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .owl-controls {
padding: 0px;
margin-top: 50px;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .owl-controls .owl-pagination .owl-page {
width: 7px;
height: 7px;
margin: 0 7px 0;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .owl-controls .owl-pagination .owl-page span {
width: 7px;
height: 7px;
background: #ffffff;
opacity: 1;
position: relative;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .owl-controls .owl-pagination .owl-page span:after {
content: '';
display: block;
width: 15px;
height: 15px;
border: 1px solid #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: absolute;
top: -5px;
left: -5px;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span {
width: 5px;
height: 5px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span {
width: 5px;
height: 5px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type3 button {
background: none;
border: none;
position: absolute;
top: 50%;
}
.tzElement_Quote_Container.tzQuote_type3 button.tzprevslider {
left: 50%;
margin-left: -150px;
}
.tzElement_Quote_Container.tzQuote_type3 button.tznextslider {
right: 50%;
margin-right: -150px;
}
.tzElement_Quote_Container.tzQuote_type3 button i {
color: #686868;
font-size: 30px;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote {
position: relative;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item {
padding: 0px 170px;
text-align: center;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item .tzQuote_Image {
display: inline-block;
width: 110px;
height: 110px;
padding: 3px;
margin: 0 0 40px;
background: #ffffff;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox {
width: 100%;
height: 100%;
overflow: hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox img {
width: 100%;
height: auto;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item .tzQuote_Content {
font-family: 'Ubuntu', sans-serif;
font-size: 16px;
color: #ffffff;
margin-bottom: 35px;
line-height: 28px;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item .tzQuote_Info {
position: relative;
display: inline-block;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Image {
display: none;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Name {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
color: #e5ae49;
display: block;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 10px;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item .tzQuote_Info small {
display: none;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Employment {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 13px;
font-style: italic;
color: #ffffff;
display: block;
text-align: center;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .owl-controls {
margin: 20px 0 0;
padding: 0px;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .owl-controls .owl-pagination .owl-page {
width: 10px;
height: 10px;
margin: 0 7px 0;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .owl-controls .owl-pagination .owl-page span {
width: 10px;
height: 10px;
margin: 0;
background: #ffffff;
opacity: 1;
position: relative;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .owl-controls .owl-pagination .owl-page span:after {
content: '';
display: block;
width: 12px;
height: 12px;
border: 1px solid #ffffff;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: absolute;
top: -1px;
left: -1px;
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
transform: scale(1.2);
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span {
background: none;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span {
background: none;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type5 {
position: relative;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_ImageBg {
text-align: center;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box {
width: 100%;
position: absolute;
bottom: -80px;
left: 0;
z-index: 9999;
padding: 0px 175px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap {
position: relative;
background: #ffffff;
padding: 15px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote_Icon {
position: absolute;
top: 30px;
left: 50%;
margin-left: -35px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote {
border: 2px solid #e5ae49;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item {
text-align: center;
padding: 50px 70px 0px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item .tzQuote_Image {
display: inline-block;
width: 100px;
height: 100px;
padding: 5px;
background: rgba(0, 0, 0, 0.1);
margin-bottom: 25px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox {
width: 100%;
height: 100%;
overflow: hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox img {
width: 100%;
height: auto;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item .tzQuote_Content {
font-family: 'Droid Serif', serif;
font-size: 16px;
color: #222222;
margin-bottom: 23px;
line-height: 32px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Image {
display: none;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Name {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
color: #222222;
text-transform: uppercase;
letter-spacing: 1px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item .tzQuote_Info small {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #222222;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Employment {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
font-style: italic;
color: #222222;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .owl-controls {
margin: 0px;
padding: 0 0 18px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .owl-controls .owl-pagination {
position: relative;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .owl-controls .owl-pagination .owl-page {
padding: 0 5px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .owl-controls .owl-pagination .owl-page span {
width: 10px;
height: 10px;
margin: 0px;
background: #dfdfdf;
opacity: 1;
position: relative;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .owl-controls .owl-pagination .owl-page span:after {
content: '';
display: block;
width: 12px;
height: 12px;
border: 1px solid #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: absolute;
top: -1px;
left: -1px;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span {
background: none;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span {
background: none;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote {
position: relative;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item {
padding: 0px 90px;
text-align: center;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Image {
width: 100px;
height: 100px;
padding: 5px;
background: rgba(255, 255, 255, 0.1);
display: inline-block;
margin-bottom: 20px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox {
width: 100%;
height: 100%;
overflow: hidden;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Image .tzQuote_imageBox img {
width: 100%;
height: auto;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Content {
font-family: 'Noticia Text', serif;
font-size: 24px;
font-weight: 400;
color: #FFFFFF;
margin-bottom: 14px;
letter-spacing: 1.5px;
text-transform: uppercase;
line-height: 36px;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Info_Box {
position: relative;
display: inline-block;
padding: 0 15px;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Info_Box:after {
content: '';
display: block;
width: 20px;
height: 1px;
background: rgba(238, 238, 238, 0.5);
position: absolute;
top: 50%;
right: 100%;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Info_Box:before {
content: '';
display: block;
width: 20px;
height: 1px;
background: rgba(238, 238, 238, 0.5);
position: absolute;
top: 50%;
left: 100%;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Info_Box .tzQuote_Image {
display: none;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Info_Box .tzQuote_Name {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #FFFFFF;
letter-spacing: 1px;
text-transform: uppercase;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Info_Box small {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #FFFFFF;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Info .tzQuote_Info_Box .tzQuote_Employment {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #FFFFFF;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .owl-controls {
margin: 0px;
padding: 0px;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .owl-controls .owl-pagination {
position: absolute;
right: 60px;
top: 5px;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .owl-controls .owl-pagination .owl-page {
display: block;
margin: 0 0 15px;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .owl-controls .owl-pagination .owl-page span {
width: 7px;
height: 7px;
background: #ffffff;
opacity: 1;
position: relative;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .owl-controls .owl-pagination .owl-page span:after {
content: '';
display: block;
width: 15px;
height: 15px;
border: 1px solid #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: absolute;
top: -5px;
left: -5px;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span {
width: 5px;
height: 5px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .owl-controls .owl-pagination .owl-page.active span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span {
width: 5px;
height: 5px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
position: relative;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .owl-controls .owl-pagination .owl-page:hover span:after {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
visibility: visible;
opacity: 1;
}
.tzElement_Quote_Container.tzQuote_type6 button {
background: none;
border: none;
position: absolute;
top: 0;
}
.tzElement_Quote_Container.tzQuote_type6 button.tzprevslider {
left: 0;
}
.tzElement_Quote_Container.tzQuote_type6 button.tznextslider {
left: 50px;
}
.tzElement_Quote_Container.tzQuote_type6 button i {
color: #ffffff;
font-size: 30px;
} .tzElement_viewPost .tzViewPost_slider {
position: relative;
margin: 0px -15px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item {
padding: 0px 15px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 {
width: 100%;
height: 197px;
overflow: hidden;
position: relative;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_autoplay {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
opacity: 1;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_autoplay i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_autoplay:hover {
cursor: pointer;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_pauses {
background: #e5ae49;
border: 0 none;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
height: 50px;
left: 50%;
margin-left: -25px;
margin-top: -25px;
position: absolute;
top: 50%;
width: 50px;
z-index: 99;
text-align: center;
display: none;
opacity: 0;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_pauses i {
display: inline-block;
font-size: 16px;
color: #FFFFFF;
padding: 17px 0px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_pauses:hover {
cursor: pointer;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5:hover .tzPost_pauses {
opacity: 1;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_bgVideo {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 1;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_videoID {
width: 100%;
height: auto;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_video {
height: 197px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_video iframe {
width: 100%;
height: 100%;
border: none;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_Slider {
position: relative;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_Slider ul.flex-direction-nav li a {
width: 30px;
height: 30px;
border: 1px solid #FFFFFF;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
opacity: 1;
top: auto;
bottom: 30px;
text-align: center;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_Slider ul.flex-direction-nav li a.flex-prev {
left: 35px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_Slider ul.flex-direction-nav li a.flex-next {
right: 35px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_Slider ul.flex-direction-nav li a:before {
font-size: 10px;
font-weight: lighter;
color: #FFFFFF;
text-shadow: none;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_Slider ul.flex-direction-nav li a:hover {
border-color: #e5ae49;
background: #e5ae49;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info {
padding: 20px 0 0;
background: #ffffff;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_title {
margin: 0px 0px 12px;
padding: 0px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_title a {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 700;
color: #222222;
text-decoration: none;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_infomation {
display: block;
margin: 0 0 20px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_infomation a {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
color: #c3c3c3;
text-decoration: none;
margin-right: 10px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_infomation a:hover {
color: #e5ae49;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_infomation span {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
color: #c3c3c3;
text-decoration: none;
margin-right: 10px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_infomation span a {
margin: 0px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_infomation small {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
color: #c3c3c3;
text-decoration: none;
margin-right: 10px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info p {
margin-bottom: 27px;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_readMore {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #e5ae49;
text-decoration: none;
}
.tzElement_viewPost .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_readMore i {
font-size: 14px;
padding-left: 7px;
}
.tzElement_viewPost .tzViewPost_slider .owl-controls {
margin: 0;
}
.tzElement_viewPost .tzViewPost_slider .owl-controls .owl-buttons .owl-prev {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
left: -55px;
margin: -20px 0 0;
}
.tzElement_viewPost .tzViewPost_slider .owl-controls .owl-buttons .owl-prev i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
}
.tzElement_viewPost .tzViewPost_slider .owl-controls .owl-buttons .owl-next {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
right: -55px;
margin: -20px 0 0;
}
.tzElement_viewPost .tzViewPost_slider .owl-controls .owl-buttons .owl-next i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider {
position: relative;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPostImage {
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
overflow: hidden;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 {
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
overflow: hidden;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_autoplay {
background: none;
border: 3px solid #FFFFFF;
height: 40px;
left: 20px;
margin-left: 0;
margin-top: 0;
position: absolute;
top: 20px;
width: 40px;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_autoplay i {
padding: 0;
font-size: 16px;
padding: 9px 0;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_pauses {
background: none;
border: 3px solid #FFFFFF;
height: 40px;
left: 20px;
margin-left: 0;
margin-top: 0;
position: absolute;
top: 20px;
width: 40px;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_videoHtml5 .tzPost_pauses i {
padding: 0;
font-size: 16px;
padding: 9px 0;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_video {
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
overflow: hidden;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_Slider {
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
-o-border-radius: 10px;
overflow: hidden;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_info {
padding-top: 30px;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_title {
margin-bottom: 16px;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_title a {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 700;
color: #222222;
text-transform: uppercase;
letter-spacing: 1px;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_info .tzPost_infomation {
display: none;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .tzViewPost_item .tzPost_info p {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .owl-controls {
margin: 0;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .owl-controls .owl-buttons .owl-prev {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
left: -55px;
margin: -20px 0 0;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .owl-controls .owl-buttons .owl-prev i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .owl-controls .owl-buttons .owl-next {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
right: -55px;
margin: -20px 0 0;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .owl-controls .owl-buttons .owl-next i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
}
.tzElement_viewPost.tzElement_viewPost_slide-advance {
margin: -15px;
}
.tzElement_viewPost .tzViewPost_slider_advance {
position: relative;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item {
width: 100%;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item:after {
content: '';
display: block;
clear: both;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 {
float: left;
width: 50%;
height: 600px;
position: relative;
padding: 15px;
display: block;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
display: block;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_Overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#bf000000', GradientType=0); }
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_image {
width: 100%;
height: 100%;
position: relative;
display: block;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_image img {
max-width: none;
position: relative;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info {
display: block;
width: 100%;
padding: 30px;
position: absolute;
left: 0;
bottom: 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info h3.tzViewPost_title {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 15px;
color: #e5ae49;
margin-bottom: 10px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info h3.tzViewPost_title a {
font-weight: 300;
color: #e5ae49;
text-decoration: none;
text-transform: uppercase;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info p {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #FFFFFF;
line-height: 22px;
margin-bottom: 30px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta small {
color: #FFFFFF;
padding: 0 18px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta a {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
color: #FFFFFF;
text-decoration: none;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta span {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
color: #FFFFFF;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta i {
font-size: 13px;
padding: 0 10px 0 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 {
float: left;
width: 25%;
height: 300px;
position: relative;
padding: 15px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_Overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#bf000000', GradientType=0); }
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_image {
width: 100%;
height: 100%;
position: relative;
display: block;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_image img {
max-width: none;
position: relative;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_info {
display: block;
width: 100%;
padding: 13px 30px;
position: absolute;
left: 0;
bottom: 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_info h3.tzViewPost_title {
font-family: 'Montserrat', sans-serif;
font-weight: 800;
font-size: 15px;
color: #e5ae49;
margin-bottom: 25px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_info h3.tzViewPost_title a {
color: #e5ae49;
text-decoration: none;
text-transform: uppercase;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_info p {
display: none;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta small {
display: none;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta a {
display: block;
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
color: #FFFFFF;
text-decoration: none;
margin-bottom: 13px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta span {
display: block;
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
color: #FFFFFF;
margin-bottom: 13px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta i {
font-size: 13px;
padding: 0 10px 0 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 {
float: left;
width: 25%;
height: 300px;
position: relative;
padding: 15px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_Overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#bf000000', GradientType=0); }
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_image {
width: 100%;
height: 100%;
position: relative;
display: block;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_image img {
max-width: none;
position: relative;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_info {
display: block;
width: 100%;
padding: 13px 30px;
position: absolute;
left: 0;
bottom: 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_info h3.tzViewPost_title {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 15px;
color: #e5ae49;
margin-bottom: 25px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_info h3.tzViewPost_title a {
color: #e5ae49;
text-decoration: none;
text-transform: uppercase;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_info p {
display: none;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta small {
display: none;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta a {
display: block;
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
color: #FFFFFF;
text-decoration: none;
margin-bottom: 13px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta span {
display: block;
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
color: #FFFFFF;
margin-bottom: 13px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta i {
font-size: 13px;
padding: 0 10px 0 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 {
float: left;
width: 50%;
height: 300px;
position: relative;
padding: 15px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_Overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.75) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#bf000000', GradientType=0); }
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_image {
width: 100%;
height: 100%;
position: relative;
display: block;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_image img {
max-width: none;
position: relative;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_info {
display: block;
width: 100%;
padding: 30px;
position: absolute;
left: 0;
bottom: 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_info h3.tzViewPost_title {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 15px;
color: #e5ae49;
margin-bottom: 25px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_info h3.tzViewPost_title a {
color: #e5ae49;
text-decoration: none;
text-transform: uppercase;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_info p {
display: none;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta small {
color: #FFFFFF;
padding: 0 18px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta a {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
color: #FFFFFF;
text-decoration: none;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta span {
font-family: 'Ubuntu0', sans-serif;
font-size: 13px;
color: #FFFFFF;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta i {
font-size: 13px;
padding: 0 10px 0 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .owl-controls {
margin: 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .owl-controls .owl-buttons .owl-prev {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
left: -55px;
margin: -20px 0 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .owl-controls .owl-buttons .owl-prev i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
}
.tzElement_viewPost .tzViewPost_slider_advance .owl-controls .owl-buttons .owl-next {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
right: -55px;
margin: -20px 0 0;
}
.tzElement_viewPost .tzViewPost_slider_advance .owl-controls .owl-buttons .owl-next i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
}
.tzElement_viewPost .tzViewPost_Grid {
margin: -15px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box {
padding: 15px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content {
background: #FFFFFF;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage {
width: 50%;
float: left;
position: relative;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage.tzPostImage_fixHeight {
position: relative;
overflow: hidden;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage.tzPostImage_fixHeight img {
max-width: none;
position: relative;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage .tzViewPost_Date {
position: absolute;
top: 0px;
left: 0px;
z-index: 999;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage .tzViewPost_Date .tzViewPost_Text {
width: 60px;
height: 55px;
background: #e5ae49;
padding: 8px 5px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage .tzViewPost_Date .tzViewPost_Text .tzViewPost_Day {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 20px;
color: #ffffff;
text-align: center;
margin-bottom: 4px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage .tzViewPost_Date .tzViewPost_Text .tzViewPost_Month {
display: block;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 11px;
line-height: 11px;
color: #ffffff;
text-align: center;
text-transform: uppercase;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage .tzViewPost_Date .tzViewPost_Icon {
width: 60px;
height: 55px;
background: #444444;
text-align: center;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage .tzViewPost_Date .tzViewPost_Icon i {
font-size: 22px;
color: #fff;
padding: 18px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content:hover {
-webkit-box-shadow: 2px 2px 5px -3px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 2px 2px 5px -3px rgba(0, 0, 0, 0.3);
-ms-box-shadow: 2px 2px 5px -3px rgba(0, 0, 0, 0.3);
-o-box-shadow: 2px 2px 5px -3px rgba(0, 0, 0, 0.3);
box-shadow: 2px 2px 5px -3px rgba(0, 0, 0, 0.3);
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content:hover .tzPostImage.tzPostImage_fixHeight img {
-webkit-transition: all 2s ease-in-out 0s;
-moz-transition: all 2s ease-in-out 0s;
-ms-transition: all 2s ease-in-out 0s;
-o-transition: all 2s ease-in-out 0s;
transition: all 2s ease-in-out 0s;
-webkit-transform: scale(1.2) rotate(4deg);
-moz-transform: scale(1.2) rotate(4deg);
-ms-transform: scale(1.2) rotate(4deg);
-o-transform: scale(1.2) rotate(4deg);
transform: scale(1.2) rotate(4deg);
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info {
margin-left: 50%;
padding: 35px 30px 20px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_infomation {
margin: 0 0 8px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_infomation a {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
font-style: italic;
color: #b5b5b5;
text-decoration: none;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_infomation small {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
font-style: italic;
color: #b5b5b5;
padding: 0px 5px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_title {
position: relative;
padding: 0 0 18px;
margin: 0 0 13px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_title a {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 700;
color: #222222;
text-decoration: none;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_title:after {
content: '';
display: block;
width: 30px;
height: 1px;
background: #e5ae49;
position: absolute;
bottom: 0;
left: 0;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_readMore {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #e5ae49;
text-decoration: none;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_readMore i {
font-size: 14px;
padding-left: 7px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content:after {
content: '';
display: block;
clear: both;
} .tzElement_Portfolio {
position: relative;
}
.tzPortfolio_Grid .tzfilter {
text-align: center;
margin-bottom: 55px;
}
.tzPortfolio_Grid .tzfilter .tzFillter_box {
display: inline-block;
padding: 0 25px;
}
.tzPortfolio_Grid .tzfilter .tzFillter_box a {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
padding: 13px 25px;
background: #fdfdfd;
border: 1px solid #f0f0f0;
float: left;
text-decoration: none;
margin-left: -1px;
margin-bottom: 10px;
z-index: 0;
letter-spacing: 0.5px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPortfolio_Grid .tzfilter .tzFillter_box a.selected {
z-index: 1;
position: relative;
border: 1px solid #e5ae49;
background: #e5ae49;
color: #ffffff;
}
.tzPortfolio_Grid .tzfilter .tzFillter_box a:hover {
z-index: 1;
position: relative;
border: 1px solid #e5ae49;
background: #e5ae49;
color: #ffffff;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner {
padding: 0;
background: #d5d5d5;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox {
position: relative;
overflow: hidden;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .item-img {
position: relative;
overflow: hidden;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .item-img img {
position: relative;
max-width: none;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-ms-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info {
position: absolute;
top: 32px;
right: 30px;
text-align: right;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info h3 {
margin: 0 0 6px;
padding: 0;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info h3 a {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
color: #e5ae49;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info .tzcat {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
letter-spacing: 2px;
color: #ffffff;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info .tzcat a {
color: #ffffff;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more {
position: absolute;
bottom: 33px;
right: 30px;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.5px;
overflow: hidden;
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more i {
padding-right: 10px;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more:after {
content: '';
display: block;
width: 100%;
height: 1px;
background: #e5ae49;
position: absolute;
bottom: 0;
left: -100%;
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more:hover {
color: #e5ae49;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_more:hover:after {
left: 100%;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item:hover .tz-inner .tzPortfolioBox .item-img img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item:hover .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_overlay {
background: rgba(0, 0, 0, 0.8);
}
.tzPortfolio_Grid #tz_append {
text-align: center;
}
.tzPortfolio_Grid #tz_append a {
display: block;
background: #333333;
padding: 23px 0 25px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 24px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.5px;
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.tzPortfolio_Grid #tz_append a:hover {
color: #e5ae49;
}
.tzPortfolio_Grid .tz-custom-link {
text-align: center;
}
.tzPortfolio_Grid .tz-custom-link a {
display: block;
background: #333333;
padding: 23px 0 25px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 24px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.5px;
-webkit-transition: all 0.3s linear 0s;
-moz-transition: all 0.3s linear 0s;
-ms-transition: all 0.3s linear 0s;
-o-transition: all 0.3s linear 0s;
transition: all 0.3s linear 0s;
}
.tzPortfolio_Grid .tz-custom-link a:hover {
color: #e5ae49;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tzfilter {
margin-bottom: 35px;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tzfilter .tzFillter_box a {
background: none;
border: none;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 13px;
text-transform: uppercase;
margin-left: 0;
letter-spacing: 0;
padding: 10px 30px;
margin: 0 5px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tzfilter .tzFillter_box a.selected {
background: #e5ae49;
color: #FFFFFF;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tzfilter .tzFillter_box a:hover {
background: #e5ae49;
color: #FFFFFF;
border: none;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info {
width: 100%;
text-align: center;
left: 0;
right: auto;
top: 50%;
-webkit-transform: translate(0, -50%);
-moz-transform: translate(0, -50%);
-ms-transform: translate(0, -50%);
-o-transform: translate(0, -50%);
transform: translate(0, -50%);
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info h3 a {
letter-spacing: 1px;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info .tzcat {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 13px;
letter-spacing: 0.5px;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item:hover .tz-inner .tzPortfolioBox .tzPortfolio_hover .tzPortfolio_hover_info {
visibility: visible;
opacity: 1;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tz-custom-link a {
display: inline-block;
padding: 11px 30px 10px;
border: 1px solid #222222;
background: none;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 13px;
text-transform: uppercase;
color: #222222;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
letter-spacing: 1px;
margin: 50px 0 0;
}
.tzElement_portfolio_style_modern .tzPortfolio_Grid .tz-custom-link a:hover {
color: #FFFFFF;
background: #e5ae49;
border-color: #e5ae49;
}
.tzElement_portfolio_color_type_dark .tzPortfolio_Grid .tzfilter .tzFillter_box a {
color: #bebebe;
}
.tzElement_portfolio_color_type_dark .tzPortfolio_Grid .tz-custom-link a {
border-color: #FFFFFF;
color: #FFFFFF;
}
.tzPortfolio_slide .tzPortfolio_slide_item {
position: relative;
overflow: hidden;
border-right: 1px solid #d5d5d5;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolioSlide_image {
height: 320px;
position: relative;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolioSlide_image img {
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
position: relative;
max-width: none;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_info {
position: absolute;
top: 32px;
right: 30px;
text-align: right;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_info h3 {
margin: 0 0 6px;
padding: 0;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_info h3 a {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 14px;
color: #e5ae49;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_info .tzcat {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
letter-spacing: 2px;
color: #ffffff;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_info .tzcat a {
color: #ffffff;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_more {
position: absolute;
bottom: 33px;
right: 30px;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.5px;
overflow: hidden;
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_more i {
padding-right: 10px;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_more:after {
content: '';
display: block;
width: 100%;
height: 1px;
background: #e5ae49;
position: absolute;
bottom: 0;
left: -100%;
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_more:hover {
color: #e5ae49;
}
.tzPortfolio_slide .tzPortfolio_slide_item .tzPortfolio_hover .tzPortfolio_hover_more:hover:after {
left: 100%;
}
.tzPortfolio_slide .tzPortfolio_slide_item:hover .tzPortfolioSlide_image img {
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-ms-transform: scale(1.1);
-o-transform: scale(1.1);
transform: scale(1.1);
}
.tzPortfolio_slide .tzPortfolio_slide_item:hover .tzPortfolio_hover .tzPortfolio_hover_overlay {
background: rgba(0, 0, 0, 0.8);
}
.tzprevslider {
display: block;
width: 60px;
height: 60px;
border: none;
background: rgba(255, 255, 255, 0.75);
position: absolute;
top: 50%;
margin-top: -30px;
left: 0;
}
.tzprevslider i {
font-size: 25px;
}
.tznextslider {
display: block;
width: 60px;
height: 60px;
border: none;
background: rgba(255, 255, 255, 0.75);
position: absolute;
top: 50%;
margin-top: -30px;
right: 0;
}
.tznextslider i {
font-size: 25px;
}
.tzPortfolio_slick {
position: relative;
z-index: 9;
}
.tzPortfolio_slick .slick-list {
margin: -65px 0;
padding: 65px 0 !important;
}
.tzPortfolio_slick button {
position: absolute;
top: 50%;
margin-top: -25px;
width: 50px;
height: 50px;
font-size: 0;
background: #ffffff;
z-index: 99999;
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
border: none;
}
.tzPortfolio_slick button:after {
display: block;
width: 100%;
height: 100%;
font-family: FontAwesome;
font-size: 25px;
font-style: normal;
font-weight: normal;
color: #222222;
text-align: center;
line-height: 50px;
position: absolute;
top: 0;
left: 0;
}
.tzPortfolio_slick button.slick-prev {
left: 0px;
}
.tzPortfolio_slick button.slick-prev:after {
content: "\f104";
}
.tzPortfolio_slick button.slick-next {
right: 0px;
}
.tzPortfolio_slick button.slick-next:after {
content: "\f105";
}
.tzPortfolio_slick button:hover {
background: rgba(255, 255, 255, 0.75);
}
.tzPortfolio_slick .tzPortfolio_slick_item {
position: relative;
overflow: hidden;
transition: all 300ms ease 0s;
-webkit-transition: all 300ms ease 0s;
-moz-transition: all 300ms ease 0s;
-ms-transition: all 300ms ease 0s;
-o-transition: all 300ms ease 0s;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_image {
height: 600px;
position: relative;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_image img {
max-width: none;
position: relative;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_image:after {
content: '';
display: block;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
position: absolute;
top: 0;
left: 0;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover {
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
padding: 25px 16px;
visibility: hidden;
opacity: 0;
transform: scale(0.8);
-webkit-transform: scale(0.8);
-moz-transform: scale(0.8);
-ms-transform: scale(0.8);
-o-transform: scale(0.8);
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table {
position: relative;
background: rgba(255, 255, 255, 0.1);
display: table;
height: 100%;
width: 100%;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_table_cell {
position: relative;
display: table-cell;
vertical-align: middle;
z-index: 1;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_table_cell h3 {
position: relative;
text-align: center;
padding: 0 0 13px;
margin-bottom: 14px;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_table_cell h3 a {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 700;
color: #e5ae49;
line-height: 24px;
letter-spacing: 0.5px;
text-transform: uppercase;
text-decoration: none;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_table_cell h3:after {
content: '';
display: block;
width: 40px;
height: 1px;
background: rgba(255, 255, 255, 0.1);
position: absolute;
bottom: 0;
left: 50%;
margin-left: -20px;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_table_cell span.tzcat {
display: block;
text-align: center;
font-family: 'Ubuntu', sans-serif;
font-size: 12px;
font-weight: 300;
font-style: italic;
color: #ffffff;
letter-spacing: 1px;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_table_cell span.tzcat a {
color: #ffffff;
text-decoration: none;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_line_left {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_line_left:before {
background: rgba(255, 255, 255, 0.2);
content: "";
height: 1px;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_line_left:after {
background: rgba(255, 255, 255, 0.2);
content: "";
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 1px;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_line_right {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_line_right:before {
background: rgba(255, 255, 255, 0.2);
content: "";
height: 1px;
left: 0;
position: absolute;
bottom: 0;
width: 100%;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_hover .tzPortfolioslick_table .tzPortfolioslick_line_right:after {
background: rgba(255, 255, 255, 0.2);
content: "";
height: 100%;
right: 0;
position: absolute;
top: 0;
width: 1px;
}
.tzPortfolio_slick .tzPortfolio_slick_item.slick-center {
transform: scale(1.25);
-webkit-transform: scale(1.25);
-moz-transform: scale(1.25);
-ms-transform: scale(1.25);
-o-transform: scale(1.25);
z-index: 999999;
}
.tzPortfolio_slick .tzPortfolio_slick_item.slick-center .tzPortfolioslick_image:after {
background: rgba(0, 0, 0, 0.8);
}
.tzPortfolio_slick .tzPortfolio_slick_item.slick-center .tzPortfolioslick_hover {
visibility: visible;
opacity: 1;
transform: scale(1);
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
}
.tzPortfolio_slide_special {
width: 100%;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item {
position: relative;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolioSlide_special_image {
max-height: 800px;
min-height: 500px;
width: 100%;
overflow: hidden;
position: relative;
text-align: center;
background: #eeeeee;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover {
width: 100%;
position: absolute;
bottom: 30px;
left: 0;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-webkit-box-direction: normal;
-moz-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left {
flex-grow: 1;
background: #000000;
padding: 20px 40px;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-webkit-box-direction: normal;
-moz-box-direction: normal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
align-items: center;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info {
flex-grow: 1;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info h3 {
font-size: 18px;
color: #e5ae49;
text-transform: uppercase;
font-weight: 700;
margin: 0 0 8px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info h3 a {
display: inline-block;
color: #e5ae49;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info h3 a:hover {
text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.6);
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info .tzcat {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #FFFFFF;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info .tzcat a {
color: #FFFFFF;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info .tzcat a:hover {
color: #e5ae49;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_more {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #ffffff;
text-transform: uppercase;
position: relative;
overflow: hidden;
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-ms-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_more i {
margin-right: 10px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_more:after {
content: '';
display: block;
width: 100%;
height: 1px;
background: #e5ae49;
position: absolute;
bottom: 0;
left: -100%;
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-ms-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_more:hover {
color: #e5ae49;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_more:hover:after {
left: 100%;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider {
width: 120px;
height: auto;
position: relative;
top: auto;
left: auto;
margin-top: 0;
background: #f9f7f4;
padding: 0;
border-left: 1px solid #aaaaaa;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider i {
font-size: 30px;
color: #aaaaaa;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider:hover {
background: #e5ae49;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider:hover i {
color: #ffffff;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider {
width: 120px;
height: auto;
position: relative;
top: auto;
right: auto;
margin-top: 0;
background: #f9f7f4;
padding: 0;
border-left: 1px solid #aaaaaa;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider i {
font-size: 30px;
color: #aaaaaa;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider:hover {
background: #e5ae49;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider:hover i {
color: #ffffff;
} .vc_btn3 {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
text-transform: uppercase;
border-width: 2px !important;
letter-spacing: 2px;
}
.vc_btn3.tz-font-raleway {
font-family: 'Raleway', sans-serif;
}
.vc_btn3.tz-font-montserrat {
font-family: 'Montserrat', sans-serif;
}
.vc_btn3.tz-font-droidserif {
font-family: 'Droid Serif', serif;
}
.vc_btn3.vc_btn3-size-sm {
padding: 10px 22px !important;
}
.vc_btn3.vc_btn3-size-md {
font-size: 13px !important;
padding: 11px 32px !important;
}
.vc_btn3.vc_btn3-shape-rounded {
border-radius: 30px !important;
-webkit-border-radius: 30px !important;
-moz-border-radius: 30px !important;
-ms-border-radius: 30px !important;
-o-border-radius: 30px !important;
}
.vc_btn3.vc_btn3-color-warning.vc_btn3-shape-rounded {
background-color: #e5ae49 !important;
border-color: #e5ae49 !important;
background-image: none;
}
.vc_btn3.vc_btn3-color-warning.vc_btn3-shape-rounded:hover {
background: transparent !important;
color: #e5ae49 !important;
}
.vc_btn3.vc_btn3-color-warning.vc_btn3-shape-square {
background-color: #e5ae49 !important;
border-color: #e5ae49 !important;
background-image: none;
color: #262626 !important;
}
.vc_btn3.vc_btn3-color-warning.vc_btn3-shape-square:hover {
background: transparent !important;
color: #e5ae49 !important;
}
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline {
background-color: transparent !important;
border-color: #e5ae49 !important;
color: #e5ae49 !important;
}
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:hover {
background: #e5ae49 !important;
color: #FFFFFF !important;
}
.vc_btn3.vc_btn3-style-outline.vc_btn3-color-white {
color: #ffffff !important;
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}
.vc_btn3.vc_btn3-style-outline.vc_btn3-color-white:hover {
color: #e5ae49 !important;
}
.vc_btn3.vc_btn3-style-classic {
padding: 0 !important;
border: none !important;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-default {
background: none;
color: #f7f7f7;
}
.woocommerce .cart .button, .woocommerce .cart input.button {
padding: 16px 20px !important;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-default:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-primary {
background: none;
color: #08c;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-primary:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-info {
background: none;
color: #58b9da;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-info:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-success {
background: none;
color: #6ab165;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-success:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-warning {
background: none;
color: #f90;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-warning:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-danger {
background: none;
color: #ff675b;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-danger:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-inverse {
background: none;
color: #555;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-inverse:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-blue {
background: none;
color: #5472d2;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-blue:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-turquoise {
background: none;
color: #00c1cf;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-turquoise:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-pink {
background: none;
color: #fe6c61;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-pink:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-violet {
background: none;
color: #8d6dc4;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-violet:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-peacoc {
background: none;
color: #4cadc9;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-peacoc:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-chino {
background: none;
color: #cec2ab;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-chino:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-mulled-wine {
background: none;
color: #50485b;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-mulled-wine:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-vista-blue {
background: none;
color: #75d69c;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-vista-blue:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-black {
background: none;
color: #222;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-black:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-grey {
background: none;
color: #ebebeb;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-grey:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-orange {
background: none;
color: #f7be68;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-orange:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-sky {
background: none;
color: #5aa1e3;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-sky:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-green {
background: none;
color: #6dab3c;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-green:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-juicy-pink {
background: none;
color: #f4524d;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-juicy-pink:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-sandy-brown {
background: none;
color: #f79468;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-sandy-brown:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-purple {
background: none;
color: #b97ebb;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-purple:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-white {
background: none;
color: #ffffff;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-color-white:hover {
background: none;
color: #e5ae49;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-icon-left .vc_btn3-icon {
display: inline-block;
position: relative;
top: auto;
left: auto !important;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
margin-top: 2px;
}
.vc_btn3.vc_btn3-style-classic.vc_btn3-icon-right .vc_btn3-icon {
position: relative;
top: auto;
right: auto !important;
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
margin-top: 2px;
display: inline-block;
} .slickslider .slick-list {
padding: 65px 0 !important;
margin: -65px 0;
}
.slickslider .slick-list .slickslider-item {
transition: all 300ms ease 0s;
-webkit-transition: all 300ms ease 0s;
-moz-transition: all 300ms ease 0s;
-ms-transition: all 300ms ease 0s;
-o-transition: all 300ms ease 0s;
}
.slickslider .slick-list .slickslider-item img {
width: 100%;
height: auto;
}
.slickslider .slick-list .slickslider-item.slick-center {
transform: scale(1.2);
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
z-index: 999999;
}
.slickslider .slick-arrow {
background: rgba(0, 0, 0, 0.5);
border: none;
border-radius: 0px;
position: absolute;
top: 50%;
margin-top: -20px;
z-index: 9999999;
font-size: 0;
width: 40px;
height: 40px;
border-radius: 50%;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}
.slickslider .slick-arrow.slick-prev {
left: 20px;
}
.slickslider .slick-arrow.slick-prev:before {
font-family: FontAwesome;
content: "\f104";
font-size: 30px;
color: #ffffff;
}
.slickslider .slick-arrow.slick-next {
right: 20px;
}
.slickslider .slick-arrow.slick-next:before {
font-family: FontAwesome;
content: "\f105";
font-size: 30px;
color: #ffffff;
}
.slickslider:hover .slick-arrow {
opacity: 1;
visibility: visible;
}
.tzOwlCarouselSlider {
border: 1px solid #ebebeb;
}
.tzOwlCarouselSlider .owl-wrapper-outer .owl-wrapper .owl-item {
border-right: 1px solid #ebebeb;
}
.tzOwlCarouselSlider .owl-wrapper-outer .owl-wrapper .owl-item:last-child {
border: none;
}
.tzOwlCarouselSlider .owl-wrapper-outer .owl-wrapper .owl-item .tzOwlCarouselSlider-item {
padding: 12px 0;
text-align: center;
} .vc_tta-tabs .vc_tta-tabs-container {
margin-bottom: 35px !important;
}
.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list {
text-align: center;
margin-bottom: 25px;
}
.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
border: none;
background: none;
position: relative;
}
.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a span {
font-family: 'Ubuntu', sans-serif;
font-weight: 500;
font-size: 17px;
color: #222222;
text-transform: uppercase;
padding: 20px 39px;
letter-spacing: 0.5px;
}
.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a span:after {
content: '\f006';
font-family: FontAwesome;
font-size: 14px;
color: #d9d9d9;
position: absolute;
right: -6px;
top: 15px;
}
.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a:hover {
background: none;
}
.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a:hover span {
color: #e5ae49;
}
.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab:last-child a span:after {
content: '';
}
.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a {
background: none;
}
.vc_tta-tabs .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a span {
color: #e5ae49;
}
.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels {
background: none;
}
.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
padding: 0;
border: none !important;
border-radius: 0 !important;
-webkit-border-radius: 0 !important;
-moz-border-radius: 0 !important;
-ms-border-radius: 0 !important;
-o-border-radius: 0 !important;
}
.vc_tta-tabs.vc_tta-color-grey.vc_tta-style-classic .vc_tta-panels-container .vc_tta-panels {
background: none !important;
border: none !important;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list {
text-align: left;
margin: 0 0 166px;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab {
margin: 0 30px 0 0;
padding: 0;
border: 1px solid #ffffff;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
display: block;
width: 169px;
height: 169px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
position: relative;
margin: 0;
padding: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a:after {
content: '';
display: block;
width: 1px;
height: 30px;
background: #ffffff;
position: absolute;
top: 19px;
left: 33px;
-webkit-transform: rotateZ(0deg);
-moz-transform: rotateZ(0deg);
-ms-transform: rotateZ(0deg);
-o-transform: rotateZ(0deg);
transform: rotateZ(0deg);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a:before {
content: '';
display: block;
width: 30px;
height: 1px;
background: #ffffff;
position: absolute;
top: 33px;
left: 19px;
-webkit-transform: rotateZ(0deg);
-moz-transform: rotateZ(0deg);
-ms-transform: rotateZ(0deg);
-o-transform: rotateZ(0deg);
transform: rotateZ(0deg);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a span {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: auto;
padding: 13px 20px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #ffffff;
letter-spacing: 0.5px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a span:after {
content: '';
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a:hover {
background: #ffffff;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a:hover:after {
background: #222222;
-webkit-transform: rotateZ(90deg);
-moz-transform: rotateZ(90deg);
-ms-transform: rotateZ(90deg);
-o-transform: rotateZ(90deg);
transform: rotateZ(90deg);
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a:hover:before {
background: #222222;
-webkit-transform: rotateZ(90deg);
-moz-transform: rotateZ(90deg);
-ms-transform: rotateZ(90deg);
-o-transform: rotateZ(90deg);
transform: rotateZ(90deg);
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a:hover span {
color: #222222;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a {
background: #ffffff;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a:after {
content: '';
display: block;
width: 1px;
height: 30px;
background: #222222;
position: absolute;
top: 19px;
left: 33px;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a:before {
content: '';
display: block;
width: 30px;
height: 1px;
background: #222222;
position: absolute;
top: 33px;
left: 19px;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab.vc_active a span {
color: #222222;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels {
border: none !important;
} .wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li {
position: relative;
padding: 30px 30px 24px;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: column;
-webkit-box-direction: normal;
-webkit-box-orient: vertical;
-ms-flex-direction: column;
-webkit-flex-direction: column;
justify-content: center;
text-align: center;
white-space: normal;
margin: 0 -1px 0 0;
border: 1px solid #e3e3e3;
width: 25%;
background-position: center top;
background-repeat: no-repeat;
background-size: cover;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li .tz-background-overlay {
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #FFFFFF;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
margin: 0 !important;
padding: 0 !important;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li a {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
letter-spacing: 2px;
text-transform: uppercase;
padding: 0 !important;
line-height: 24px;
position: relative;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li span {
font-size: 35px;
color: #222222;
position: relative;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
padding-bottom: 5px;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li i {
font-size: 35px;
color: #222222;
position: relative;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.tz_icon_before_title {
flex-direction: row;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.tz_icon_before_title span {
margin-right: 15px;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.tz_icon_before_title i {
margin-right: 15px;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.tz_icon_after_title {
flex-direction: row;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.tz_icon_after_title span {
margin-left: 15px;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.tz_icon_after_title i {
margin-left: 15px;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.ui-tabs-active .tz-background-overlay {
background: rgba(0, 0, 0, 0.8);
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.ui-tabs-active a {
color: #FFFFFF;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.ui-tabs-active span {
color: #FFFFFF;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li.ui-tabs-active i {
color: #FFFFFF;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li:hover .tz-background-overlay {
background: rgba(0, 0, 0, 0.8);
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li:hover a {
color: #FFFFFF;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li:hover span {
color: #FFFFFF;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li:hover i {
color: #FFFFFF;
}
.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {
background: none !important;
} .tzOurProcess_Container .tzOurProcess_title {
font-family: 'Montserrat', sans-serif;
font-size: 35px;
color: #222222;
font-weight: 800;
line-height: 45px;
margin-bottom: 31px;
text-align: center;
text-transform: uppercase;
position: relative;
}
.tzOurProcess_Container .tzOurProcess_title:after {
content: '';
display: block;
width: 70px;
height: 4px;
position: absolute;
bottom: -15px;
left: 50%;
margin-left: -35px;
background: #e5ae49;
}
.tzOurProcess_Container .tzOurProcess_des {
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
line-height: 24px;
text-align: center;
padding: 0 20%;
letter-spacing: 0.5px;
}
.tzOurProcess_Container .tzOurProcess {
margin-top: 110px;
}
.tzOurProcess_Container .tzOurProcess:after {
display: block;
clear: both;
content: '';
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top {
padding-left: 40px;
position: relative;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top:after {
display: block;
clear: both;
content: '';
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon {
display: block;
width: 88px;
height: 88px;
border: 1px solid #e3e3e3;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
float: left;
text-align: center;
position: absolute;
bottom: 0;
left: 40px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon i {
font-size: 35px;
color: #222222;
padding: 25px 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon span {
font-size: 35px;
color: #222222;
padding: 25px 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
display: block;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_year {
display: block;
font-family: "Montserrat", sans-serif;
font-size: 40px;
font-weight: 500;
color: #222222;
line-height: 40px;
padding: 11px 20px 7px 110px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_name {
display: block;
font-family: "Montserrat", sans-serif;
font-size: 14px;
font-weight: 400;
color: #666666;
line-height: 24px;
padding: 0 20px 0 110px;
letter-spacing: 0.5px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom {
height: 68px;
width: 100%;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom:after {
display: block;
clear: both;
content: '';
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_left {
width: 85px;
height: 100%;
float: left;
border-width: 0 1px 1px 0;
border-style: solid;
border-color: #e3e3e3;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_right {
height: 100%;
padding-left: 85px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_right .tzOurProcessItem_rightbox {
width: 100%;
height: 100%;
border-bottom: 1px solid #e3e3e3;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem:first-child .tzOurProcessItem_bottom .tzOurProcessItem_left {
border-width: 0 1px 0px 0;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem:last-child .tzOurProcessItem_bottom .tzOurProcessItem_right .tzOurProcessItem_rightbox {
border: none;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem:hover .tzOurProcessItem_top .tzOurProcessItem_icon {
background: #e5ae49;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem:hover .tzOurProcessItem_top .tzOurProcessItem_icon i {
color: #ffffff;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem:hover .tzOurProcessItem_top .tzOurProcessItem_icon span {
color: #ffffff;
}
.tzOurProcess_Container.tzOurProcess_2_phase .tzOurProcess .tzOurProcessItem {
width: 50%;
float: left;
}
.tzOurProcess_Container.tzOurProcess_3_phase .tzOurProcess .tzOurProcessItem {
width: 33.33%;
float: left;
}
.tzOurProcess_Container.tzOurProcess_4_phase .tzOurProcess .tzOurProcessItem {
width: 25%;
float: left;
}
.tzOurProcess_Container.tzOurProcess_5_phase .tzOurProcess .tzOurProcessItem {
width: 20%;
float: left;
}
.tzOurProcess_Container.tzOurProcess_5_phase .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top {
padding-left: 25px;
}
.tzOurProcess_Container.tzOurProcess_5_phase .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon {
width: 78px;
height: 78px;
left: 25px;
}
.tzOurProcess_Container.tzOurProcess_5_phase .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon i {
font-size: 26px;
}
.tzOurProcess_Container.tzOurProcess_5_phase .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_year {
padding: 11px 10px 7px 90px;
font-size: 34px;
}
.tzOurProcess_Container.tzOurProcess_5_phase .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_name {
padding: 0 10px 0 90px;
}
.tzOurProcess_Container.tzOurProcess_5_phase .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_left {
width: 65px;
}
.tzOurProcess_Container.tzOurProcess_5_phase .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_right {
padding-left: 65px;
} .tzElement_Category_Grid:after {
display: block;
clear: both;
content: '';
}
.tzElement_Category_Grid.tzCategory_Grid_2_column .tzCategory_Grid_Item {
width: 50%;
float: left;
}
.tzElement_Category_Grid.tzCategory_Grid_2_column .tzCategory_Grid_Item:nth-child(2n+1) {
clear: both;
}
.tzElement_Category_Grid.tzCategory_Grid_3_column .tzCategory_Grid_Item {
width: 33.33%;
float: left;
}
.tzElement_Category_Grid.tzCategory_Grid_3_column .tzCategory_Grid_Item:nth-child(3n+1) {
clear: both;
}
.tzElement_Category_Grid.tzCategory_Grid_4_column .tzCategory_Grid_Item {
width: 25%;
float: left;
}
.tzElement_Category_Grid.tzCategory_Grid_4_column .tzCategory_Grid_Item:nth-child(4n+1) {
clear: both;
}
.tzElement_Category_Grid .tzCategory_Grid_Item {
position: relative;
margin-left: -1px;
margin-top: -1px;
border: 1px solid #e3e3e3;
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-ms-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
overflow: hidden;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Image {
position: relative;
opacity: 0;
-webkit-transition: all 0.4s linear 0s;
-moz-transition: all 0.4s linear 0s;
-ms-transition: all 0.4s linear 0s;
-o-transition: all 0.4s linear 0s;
transition: all 0.4s linear 0s;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Image:after {
content: '';
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
position: absolute;
top: 0;
left: 0;
-webkit-transition: all 0.4s linear 0s;
-moz-transition: all 0.4s linear 0s;
-ms-transition: all 0.4s linear 0s;
-o-transition: all 0.4s linear 0s;
transition: all 0.4s linear 0s;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Image img {
width: 100%;
height: auto;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content {
padding: 35px;
position: absolute;
top: 0;
left: 0;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Icon {
width: 65px;
float: left;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Icon i {
font-size: 35px;
color: #222222;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Icon span {
font-size: 35px;
color: #222222;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Info {
padding-left: 65px;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Info .tzCategory_Grid_subTitle {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
color: #e5ae49;
letter-spacing: 1px;
margin: 0 0 9px;
padding: 0;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Info .tzCategory_Grid_Title {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
color: #222222;
letter-spacing: 1px;
margin: 0 0 18px;
padding: 0 0 23px;
position: relative;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Info .tzCategory_Grid_Title:after {
background: #e5ae49;
bottom: 0px;
content: "";
display: block;
height: 1px;
left: 0;
position: absolute;
width: 30px;
}
.tzElement_Category_Grid .tzCategory_Grid_Item:hover .tzCategory_Grid_Item_Image {
opacity: 1;
}
.tzElement_Category_Grid .tzCategory_Grid_Item:hover .tzCategory_Grid_Item_Content .tzCategory_Grid_Icon i {
color: #ffffff;
}
.tzElement_Category_Grid .tzCategory_Grid_Item:hover .tzCategory_Grid_Item_Content .tzCategory_Grid_Icon span {
color: #ffffff;
}
.tzElement_Category_Grid .tzCategory_Grid_Item:hover .tzCategory_Grid_Item_Content .tzCategory_Grid_Info .tzCategory_Grid_Title {
color: #ffffff;
}
.tzElement_Category_Grid .tzCategory_Grid_Item:hover .tzCategory_Grid_Item_Content .tzCategory_Grid_Info .tzCategory_Grid_description {
color: #ffffff;
}
.tzElement_Category_Grid .tzCategory_Grid_Item.tzCategory_Grid_Item_active {
background: #222222;
}
.tzElement_Category_Grid .tzCategory_Grid_Item.tzCategory_Grid_Item_active .tzCategory_Grid_Item_Content .tzCategory_Grid_Icon i {
color: #ffffff;
}
.tzElement_Category_Grid .tzCategory_Grid_Item.tzCategory_Grid_Item_active .tzCategory_Grid_Item_Content .tzCategory_Grid_Icon span {
color: #ffffff;
}
.tzElement_Category_Grid .tzCategory_Grid_Item.tzCategory_Grid_Item_active .tzCategory_Grid_Item_Content .tzCategory_Grid_Info .tzCategory_Grid_Title {
color: #ffffff;
}
.tzElement_Category_Grid .tzCategory_Grid_Item.tzCategory_Grid_Item_active .tzCategory_Grid_Item_Content .tzCategory_Grid_Info .tzCategory_Grid_description {
color: #ffffff;
} .tzElement-newsletter {
padding: 38px;
background: rgba(229, 174, 73, 0.8);
}
.tzElement-newsletter h3.tzNewsletter-Title {
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
color: #ffffff;
letter-spacing: 1px;
margin: 0 0 2px;
padding: 0;
}
.tzElement-newsletter p {
font-family: 'Ubuntu', sans-serif;
font-size: 18px;
font-weight: 300;
color: #ffffff;
}
.tzElement-newsletter .tnp-subscription form .tnp-field input {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
color: #e5ae49;
font-weight: 300;
line-height: 24px;
margin-top: 11px;
padding: 5px 20px;
background: #ffffff;
border: none;
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
}
.tzElement-newsletter .tnp-subscription form .tnp-field input.tnp-submit {
margin-top: 29px;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
color: #e5ae49;
letter-spacing: 2px;
text-transform: uppercase;
}
.tzElement-newsletter.tzNewsletter-modern {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 52px 60px 40px;
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}
.tzElement-newsletter.tzNewsletter-modern h3.tzNewsletter-Title {
color: #e5ae49;
}
.tzElement-newsletter.tzNewsletter-modern .tnp-subscription form {
position: relative;
z-index: 999;
}
.tzElement-newsletter.tzNewsletter-modern .tnp-subscription form .tnp-field {
position: relative;
}
.tzElement-newsletter.tzNewsletter-modern .tnp-subscription form .tnp-field label {
display: none;
}
.tzElement-newsletter.tzNewsletter-modern .tnp-subscription form .tnp-field input {
background: none;
border-bottom: 1px solid #ffffff;
margin-top: 53px;
}
.tzElement-newsletter.tzNewsletter-modern .tnp-subscription form .tnp-field input.tnp-submit {
color: #ffffff;
border: none;
margin-top: 26px;
padding: 0;
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}
.tzElement-newsletter.tzNewsletter-modern .tnp-subscription form .tnp-field.tnp-field-button:after {
position: absolute;
top: 3px;
left: 100px;
content: '\f1d8';
font-family: FontAwesome;
font-size: 14px;
color: #ffffff;
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}
.tzElement-newsletter.tzNewsletter-modern .tnp-subscription form .tnp-field.tnp-field-button:hover input.tnp-submit {
color: #e5ae49;
}
.tzElement-newsletter.tzNewsletter-modern .tnp-subscription form .tnp-field.tnp-field-button:hover:after {
color: #e5ae49;
}
.tzElement-newsletter.tzNewsletter-modern:hover {
border-color: #ffffff;
} .vc_cta3-container {
margin-bottom: 0 !important;
}
.vc_general.vc_cta3.vc_cta3-style-classic {
border: none;
}
.vc_general.vc_cta3.vc_cta3-style-outline {
border-width: 1px !important;
}
.vc_general.vc_cta3.vc_cta3-style-outline.vc_cta3-color-white {
border-color: rgba(255, 255, 255, 0.2) !important;
transition: all 0.3s ease-in-out 0s;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
}
.vc_general.vc_cta3.vc_cta3-style-outline.vc_cta3-color-white:hover {
border-color: #ffffff !important;
}
.vc_general.vc_cta3.vc_cta3-style-outline.vc_cta3-color-black {
border-color: rgba(0, 0, 0, 0.2) !important;
}
.vc_general.vc_cta3.vc_cta3-style-outline.vc_cta3-color-black .line-left:before {
background: #222;
}
.vc_general.vc_cta3.vc_cta3-style-outline.vc_cta3-color-black .line-left:after {
background: #222;
}
.vc_general.vc_cta3.vc_cta3-style-outline.vc_cta3-color-black .line-right:before {
background: #222;
}
.vc_general.vc_cta3.vc_cta3-style-outline.vc_cta3-color-black .line-right:after {
background: #222;
}
.vc_general.vc_cta3 .vc_cta3_content-container .vc_cta3-content .vc_cta3-content-header h2 {
margin: 0 0 3px;
padding: 0;
text-transform: uppercase;
letter-spacing: 1px;
}
.vc_general.vc_cta3 .vc_cta3_content-container .vc_cta3-content .vc_cta3-content-header h4 {
margin-bottom: 10px;
}
.vc_general.vc_cta3 .vc_cta3_content-container .vc_cta3-actions .vc_btn3-container .vc_btn3 {
letter-spacing: 2px;
} .tzElement_Category_Slide_Container.tzCategory_Slide_in_grid {
box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 -1px 3px 2px rgba(0, 0, 0, 0.1);
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide {
position: relative;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item {
position: relative;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item a {
display: block;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item a img {
width: 100%;
height: auto;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content:after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #ffffff;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content .tzCategory_Slide_Item_Content_box {
position: relative;
z-index: 99;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content .tzCategory_Slide_Item_Content_box span {
font-size: 30px;
color: #222222;
margin-bottom: 13px;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content .tzCategory_Slide_Item_Content_box h5 {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
margin: 0;
padding: 0;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item:hover .tzCategory_Slide_Item_Content:after {
background: rgba(255, 255, 255, 0.7);
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .owl-controls {
margin: 0;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .owl-controls .owl-buttons .owl-prev {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
left: -55px;
margin: -20px 0 0;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .owl-controls .owl-buttons .owl-prev i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .owl-controls .owl-buttons .owl-next {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
right: -55px;
margin: -20px 0 0;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .owl-controls .owl-buttons .owl-next i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide {
position: relative;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item {
position: relative;
border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item.tzCategory_Slide_Image_hide {
height: 600px;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item a {
display: block;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item a img {
width: 100%;
height: auto;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content .tzCategory_Slide_Item_Content_box {
position: relative;
z-index: 99;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
align-content: center;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content .tzCategory_Slide_Item_Content_box:after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.5);
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content .tzCategory_Slide_Item_Content_box span {
position: relative;
z-index: 99;
font-size: 48px;
color: #ffffff;
margin-bottom: 3px;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content .tzCategory_Slide_Item_Content_box h5 {
color: #ffffff;
position: relative;
z-index: 99;
font-size: 18px;
margin: 0;
padding: 0;
text-transform: uppercase;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item a:hover .tzCategory_Slide_Item_Content_box:after {
background: rgba(0, 0, 0, 0.8);
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .tzCategory_Slide_Item a:hover .tzCategory_Slide_Item_Content_box h5 {
color: #e5ae49;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .owl-controls {
margin: 0;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .owl-controls .owl-buttons .owl-prev {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #ffffff;
padding: 0;
position: absolute;
top: 50%;
left: 0;
margin: -20px 0 0;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .owl-controls .owl-buttons .owl-prev i {
font-size: 20px;
color: #000000;
line-height: 38px;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .owl-controls .owl-buttons .owl-next {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #ffffff;
padding: 0;
position: absolute;
top: 50%;
right: 0;
margin: -20px 0 0;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_full_width .tzElement_Category_Slide .owl-controls .owl-buttons .owl-next i {
font-size: 20px;
color: #000000;
line-height: 38px;
} .tzElement_viewService {
margin: 0 -15px;
}
.tzElement_viewService .tzView_Service_Slide .tzView_Service_Slide_Item {
padding: 0 15px;
}
.tzElement_viewService .tzView_Service_Slide .tzView_Service_Slide_Item .tzView_Service_Image {
margin-bottom: 24px;
}
.tzElement_viewService .tzView_Service_Slide .tzView_Service_Slide_Item .tzView_Service_Image img {
width: 100%;
height: auto;
}
.tzElement_viewService .tzView_Service_Slide .tzView_Service_Slide_Item .tzView_Service_Content {
position: relative;
}
.tzElement_viewService .tzView_Service_Slide .tzView_Service_Slide_Item .tzView_Service_Content span {
font-size: 85px;
color: rgba(0, 0, 0, 0.1);
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
.tzElement_viewService .tzView_Service_Slide .tzView_Service_Slide_Item .tzView_Service_Content h3.tzView_Service_Content_title {
margin-bottom: 15px;
font-weight: 700;
font-size: 15px;
text-transform: uppercase;
color: #222222;
letter-spacing: 1px;
}
.tzElement_viewService .tzView_Service_Slide .tzView_Service_Slide_Item .tzView_Service_Content p {
margin-bottom: 3px;
}
.tzElement_viewService .tzView_Service_Slide .tzView_Service_Slide_Item .tzView_Service_Content a.tzViewService-readmore {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 13px;
color: #e5ae49;
letter-spacing: 0.5px;
text-decoration: none;
}
.tzElement_viewService .tzView_Service_Slide .owl-controls {
margin: 0;
}
.tzElement_viewService .tzView_Service_Slide .owl-controls .owl-buttons .owl-prev {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
left: -55px;
margin: -20px 0 0;
}
.tzElement_viewService .tzView_Service_Slide .owl-controls .owl-buttons .owl-prev i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
}
.tzElement_viewService .tzView_Service_Slide .owl-controls .owl-buttons .owl-next {
width: 40px;
height: 40px;
text-align: center;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
background: #000000;
padding: 0;
position: absolute;
top: 50%;
right: -55px;
margin: -20px 0 0;
}
.tzElement_viewService .tzView_Service_Slide .owl-controls .owl-buttons .owl-next i {
font-size: 20px;
color: #ffffff;
line-height: 38px;
} .wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper {
padding: 0 !important;
}
.wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper .wpb_map_wraper {
position: relative;
}
.wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper .wpb_map_wraper iframe {
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper .wpb_map_wraper .tz_map_overlay {
width: 100%;
height: 100%;
background: rgba(229, 174, 73, 0.9);
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper .wpb_map_wraper .tz_map_overlay .tz_map_button_view {
width: 200px;
height: 50px;
background: none;
border: none;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 16px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
position: absolute;
top: 50%;
margin-top: -25px;
left: 50%;
margin-left: -100px;
}
.wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper .wpb_map_wraper .tz_map_overlay .tz_map_button_view i {
font-size: 25px;
margin-right: 10px;
}
.wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper .wpb_map_wraper .tz_map_overlay .tz_map_button_close {
display: none;
width: 200px;
height: 50px;
background: none;
border: none;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 16px;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 2px;
position: absolute;
top: 50%;
margin-top: -25px;
left: 50%;
margin-left: -100px;
}
.wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper .wpb_map_wraper .tz_map_overlay .tz_map_button_close i {
font-size: 25px;
margin-right: 10px;
}
.wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper .wpb_map_wraper.tz_map_active iframe {
height: 400px !important;
}
.wpb_gmaps_widget.tzGoogleMap_modern .wpb_wrapper .wpb_map_wraper.tz_map_active .tz_map_overlay {
height: 50px;
}
.wpb_gmaps_widget.tzGoogleMap_classic .wpb_wrapper {
padding: 0;
}
.wpb_gmaps_widget.tzGoogleMap_classic .wpb_wrapper .wpb_map_wraper iframe {
height: 545px;
} .woocommerce.columns-4 ul.product li.product {
width: 25%;
}
.woocommerce.columns-3 ul.product li.product {
width: 33.33333%;
}
.woocommerce.columns-2 ul.product li.product {
width: 50%;
}
.woocommerce ul.products {
margin: 0 -15px;
padding: 0;
}
.woocommerce ul.products li.product {
margin: 0;
padding: 0 15px;
width: 25%;
}
.woocommerce ul.products li.product .tzProduct-item_inner {
position: relative;
overflow: hidden;
}
.woocommerce ul.products li.product .tzProduct-item_inner .line-left:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
left: 1px;
position: absolute;
top: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
}
.woocommerce ul.products li.product .tzProduct-item_inner .line-left:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 100%;
left: 0;
position: absolute;
bottom: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .line-right:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
right: 1px;
position: absolute;
bottom: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
}
.woocommerce ul.products li.product .tzProduct-item_inner .line-right:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 100%;
right: 0;
position: absolute;
top: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image {
position: relative;
overflow: hidden;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image img {
width: 100%;
height: auto;
margin: 0;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(229, 174, 73, 0);
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist {
position: absolute;
top: 50%;
margin-top: -21px;
left: 50%;
margin-left: -67px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
float: left;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
width: 100%;
height: 100%;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
width: 100%;
height: 100%;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_button {
position: absolute;
top: 50%;
margin-top: -43px;
right: 50%;
margin-right: -45px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
float: left;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_button a { width: 100%;
height: 100%;
text-align: center;
padding: 13px 0px;
margin: 0px;
background: none;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_button a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 9px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_button a.added:after {
display: none;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_button a.wc-forward {
position: absolute;
top: 55px;
left: 50%;
margin-left: -53px;
width: 106px;
height: 30px;
padding: 3px 0;
background: #fff;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #666666;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-item_button a.wc-forward:after {
border-bottom: 4px solid #fff;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
bottom: 100%;
content: "";
display: block;
left: 50%;
margin-left: -4px;
position: absolute;
z-index: 9999;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-View-detail {
position: absolute;
bottom: -45px;
visibility: hidden;
opacity: 0;
left: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
text-align: center;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_image .tzProduct-View-detail a {
display: inline-block;
background-color: #e5ae49;
border-radius: 20px;
color: #ffffff;
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 24px;
padding: 7px 26px;
text-transform: uppercase;
letter-spacing: 2px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info {
position: relative;
background: rgba(229, 174, 73, 0);
padding: 36px 0 30px;
text-align: center;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info h3.tzProduct-item_title {
margin: 0px;
padding: 0px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info h3.tzProduct-item_title a {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
text-transform: uppercase;
letter-spacing: 1px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info .star-rating {
height: 15px;
display: inline-block;
margin: 12px 0 0;
font-size: 14px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info .star-rating:before {
color: #b5b5b5;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info .star-rating span:before {
color: #f5d608;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info .price {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #e5ae49;
margin: 5px 0 0;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info .price del {
display: inline-block;
color: #b5b5b5;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info .price del span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #b5b5b5;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info .price ins {
display: inline-block;
text-decoration: none;
margin-left: 8px;
}
.woocommerce ul.products li.product .tzProduct-item_inner .tzProduct-item_info .price ins span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #e5ae49;
}
.woocommerce ul.products li.product .tzProduct-item_inner:hover .tzProduct-item_image .tzProduct-item_overlay {
background: rgba(229, 174, 73, 0.1);
}
.woocommerce ul.products li.product .tzProduct-item_inner:hover .tzProduct-item_image .yith-wcwl-add-to-wishlist {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
}
.woocommerce ul.products li.product .tzProduct-item_inner:hover .tzProduct-item_image .tzProduct-item_button {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
}
.woocommerce ul.products li.product .tzProduct-item_inner:hover .tzProduct-item_image .tzProduct-View-detail {
opacity: 1;
visibility: visible;
bottom: 0;
}
.woocommerce ul.products li.product .tzProduct-item_inner:hover .tzProduct-item_info {
background: rgba(229, 174, 73, 0.1);
}
.woocommerce ul.products li.product .tzProduct-item_inner:hover .line-left:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
left: 5px;
}
.woocommerce ul.products li.product .tzProduct-item_inner:hover .line-left:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
bottom: 5px;
width: 5px;
}
.woocommerce ul.products li.product .tzProduct-item_inner:hover .line-right:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
right: 5px;
}
.woocommerce ul.products li.product .tzProduct-item_inner:hover .line-right:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
top: 5px;
width: 5px;
} .tz-box-shadow > .wpb_wrapper {
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.02);
background: #ffffff;
}
.tzElement_Member {
padding: 0 0 65px 18px;
}
.tzElement_Member .tzMember_Wrap {
position: relative;
}
.tzElement_Member .tzMember_Wrap .tzMember_image {
background: #ffffff;
border: 10px solid #222222;
position: relative;
z-index: 1;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Member .tzMember_Wrap .tzMember_image img {
width: 100%;
height: auto;
}
.tzElement_Member .tzMember_Wrap .tzMember_Info {
position: absolute;
top: 65px;
left: -18px;
display: block;
width: 100%;
height: 100%;
border: 1px solid #222222;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Member .tzMember_Wrap .tzMember_Info .tzMember_Info_Box {
position: absolute;
bottom: 0;
left: 0;
display: block;
width: 100%;
padding: 13px 17px;
}
.tzElement_Member .tzMember_Wrap .tzMember_Info .tzMember_Info_Box .tzMember_name {
font-size: 14px;
color: #222222;
margin: 0;
text-transform: uppercase;
letter-spacing: 0.5px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Member .tzMember_Wrap .tzMember_Info .tzMember_Info_Box .tzMember_position {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
color: #222222;
margin: 0;
padding: 0;
text-transform: uppercase;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzElement_Member:hover .tzMember_Wrap .tzMember_image {
border: 10px solid #e5ae49;
}
.tzElement_Member:hover .tzMember_Wrap .tzMember_Info {
border: 1px solid #e5ae49;
}
.tzElement_Member:hover .tzMember_Wrap .tzMember_Info .tzMember_Info_Box .tzMember_name {
color: #e5ae49;
}
.tzElement_Member:hover .tzMember_Wrap .tzMember_Info .tzMember_Info_Box .tzMember_position {
color: #e5ae49;
}
.wpcf7-form input.wpcf7-submit {
letter-spacing: 1px;
} .tzcountdown h3.tzCountdowntitle {
font-family: 'Ubuntu', sans-serif;
font-weight: 700;
font-size: 48px;
color: #FFFFFF;
text-transform: uppercase;
padding: 0;
margin: 0 0 34px;
}
.tzcountdown p.tzCountdowndes {
font-size: 18px;
color: #ffffff;
margin-bottom: 19px;
}
.tzcountdown .countdown:after {
content: '';
display: block;
clear: both;
}
.tzcountdown .countdown .tzdivide {
float: left;
display: block;
width: 1px;
height: 25px;
margin: 52px 22px;
background: #e5ae49;
}
.tzcountdown .countdown .tzcountdownitem {
float: left;
}
.tzcountdown .countdown .tzcountdownitem span {
display: block;
text-align: center;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 65px;
line-height: 65px;
color: #FFFFFF;
padding: 14px 0 12px;
}
.tzcountdown .countdown .tzcountdownitem p {
font-size: 16px;
color: #FFFFFF;
text-transform: uppercase;
letter-spacing: 2px;
text-align: center;
} .tzElement-notify h3.tzNotify-Title {
font-size: 20px;
color: #db4437;
text-transform: uppercase;
margin: 0 0 22px;
}
.tzElement-notify .newsletter {
margin-top: 30px;
}
.tzElement-notify .newsletter .newsletter-field label {
display: none;
}
.tzElement-notify .newsletter .newsletter-field input.newsletter-email {
border-width: 0 0 1px !important;
border-style: solid !important;
border-color: #dcdcdc !important;
color: #535353;
border-radius: 0 !important;
box-shadow: none;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
padding: 12px 0 !important;
width: 100% !important;
}
.tzElement-notify .newsletter .newsletter-field.newsletter-field-button {
position: relative;
margin-top: 38px;
}
.tzElement-notify .newsletter .newsletter-field.newsletter-field-button:after {
color: #ffffff;
content: '\f003';
font-family: FontAwesome;
font-size: 14px;
left: 25px;
position: absolute;
top: 12px;
}
.tzElement-notify .newsletter .newsletter-field.newsletter-field-button input.newsletter-button {
border: 1px solid #e5ae49 !important;
background: #e5ae49;
padding: 12px 23px 12px 48px !important;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
color: #FFFFFF;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
} .contact-box-shadow {
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07);
-moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07);
-ms-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07);
-o-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.07);
}
.tzElement_Contact {
text-align: center;
padding: 0 15px;
}
.tzElement_Contact .contact-icon {
margin-bottom: 20px;
}
.tzElement_Contact .contact-icon i {
font-size: 50px;
color: #e5ae49;
}
.tzElement_Contact .contact-image {
height: 80px;
display: flex;
justify-content: center;
align-items: center;
}
.tzElement_Contact .contact-image img {
max-height: 100%;
}
.tzElement_Contact .contact-title {
font-family: 'Montserrat', sans-serif;
font-size: 19px;
font-weight: 400;
color: #e1e1e3;
line-height: 26px;
letter-spacing: 1px;
margin-top: 10px;
}
.tzElement_Contact .contact-info {
font-family: 'Ubuntu', sans-serif;
font-size: 16px;
font-weight: 400;
color: #e1e1e3;
line-height: 26px;
margin-top: 12px;
} .tzElement-recent-post .tz-recent-inner {
margin: 0 0 40px;
}
.tzElement-recent-post .tz-recent-inner img {
max-width: 100%;
height: auto;
margin: 0 0 34px;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-meta {
margin: 0 0 16px;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-meta span {
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
font-weight: 300;
color: #aaaaaa;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-meta span i {
font-size: 14px;
margin-right: 10px;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-meta span small {
font-size: 13px;
padding: 0 18px;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-title {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 700;
color: #222222;
text-transform: uppercase;
margin: 0 0 25px;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-title a {
color: #222222;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-title a:hover {
color: #e5ae49;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-readmore {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 400;
color: #AAAAAA;
text-transform: uppercase;
letter-spacing: 1px;
display: inline-block;
margin: 19px 0 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-readmore:hover {
color: #e5ae49;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner {
margin: 0 0 50px;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-title {
font-size: 18px;
text-transform: none;
margin: 0 0 20px;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-meta {
margin: 16px 0 0;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-meta span small {
padding: 0 10px;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-meta span i {
margin-right: 5px;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-readmore {
display: inline-block;
width: 21px;
height: 21px;
position: relative;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-readmore:before {
content: '';
display: block;
width: 1px;
height: 21px;
background: #99aab2;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
-webkit-transition: all 0.3 ease 0s;
-moz-transition: all 0.3 ease 0s;
-ms-transition: all 0.3 ease 0s;
-o-transition: all 0.3 ease 0s;
transition: all 0.3 ease 0s;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-readmore:after {
content: '';
display: block;
width: 21px;
height: 1px;
background: #99aab2;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
-webkit-transition: all 0.3 ease 0s;
-moz-transition: all 0.3 ease 0s;
-ms-transition: all 0.3 ease 0s;
-o-transition: all 0.3 ease 0s;
transition: all 0.3 ease 0s;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-readmore:hover:before {
background: #e5ae49;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-readmore:hover:after {
background: #e5ae49;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-image {
position: relative;
overflow: hidden;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-image img {
margin: 0;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-image.tz-image-fix-height {
height: 220px;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-image.tz-image-fix-height img {
position: relative;
max-width: none;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_center .tz-recent-inner img {
margin: 0 0 26px;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_center .tz-recent-inner .tz-recent-title {
font-family: "Ubuntu", sans-serif;
font-size: 18px;
font-weight: 500;
text-align: center;
margin: 0 0 9px;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_center .tz-recent-inner .tz-recent-meta {
text-align: center;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_center .tz-recent-inner .tz-recent-meta span {
padding: 0 13px;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_center .tz-recent-inner .tz-recent-meta span i {
margin-right: 4px;
} .tzElement-recent-post.tzRecent-post-type-3.tz_align_left .tz-recent-inner img {
margin: 0 0 26px;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_left .tz-recent-inner .tz-recent-title {
font-family: "Ubuntu", sans-serif;
font-size: 18px;
font-weight: 500;
text-align: left;
margin: 0 0 9px;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_left .tz-recent-inner .tz-recent-meta {
text-align: left;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_left .tz-recent-inner .tz-recent-meta span {
padding: 0 26px 0 0;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_left .tz-recent-inner .tz-recent-meta span i {
margin-right: 4px;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_right .tz-recent-inner img {
margin: 0 0 26px;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_right .tz-recent-inner .tz-recent-title {
font-family: "Ubuntu", sans-serif;
font-size: 18px;
font-weight: 500;
text-align: right;
margin: 0 0 9px;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_right .tz-recent-inner .tz-recent-meta {
text-align: right;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_right .tz-recent-inner .tz-recent-meta span {
padding: 0 0 26px 20px;
}
.tzElement-recent-post.tzRecent-post-type-3.tz_align_right .tz-recent-inner .tz-recent-meta span i {
margin-right: 4px;
} .wpb_images_carousel .vc_images_carousel .vc_carousel-control {
width: 40px;
height: 40px;
margin-top: -20px;
opacity: 1;
text-shadow: none;
border: 1px solid #efefee;
font-size: 23px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.wpb_images_carousel .vc_images_carousel .vc_carousel-control i {
font-size: 18px;
color: #999999;
}
.wpb_images_carousel .vc_images_carousel .vc_carousel-control.vc_left {
left: -90px;
}
.wpb_images_carousel .vc_images_carousel .vc_carousel-control.vc_right {
right: -90px;
}
.wpb_images_carousel .vc_images_carousel .vc_carousel-control:hover {
border-color: #e5ae49;
background: #e5ae49;
}
.wpb_images_carousel .vc_images_carousel .vc_carousel-control:hover i {
color: #ffffff;
} .tzElement_Image_slide {
margin: 0 -15px;
}
.tzElement_Image_slide .owl-item {
padding: 0 15px;
}
.tzElement_Image_slide .owl-item .tzImage_Slide_Item {
text-align: center;
}
.tzElement_Image_slide .owl-item .tzImage_Slide_Item img {
display: inline-block;
max-width: 100%;
width: auto;
}
.tzElement_Image_slide .owl-nav .owl-prev {
width: 40px;
height: 40px;
border: 1px solid #efefef;
position: absolute;
top: 50%;
margin-top: -20px;
left: -76px;
text-align: center;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_Image_slide .owl-nav .owl-prev i {
font-size: 18px;
color: #999999;
line-height: 38px;
}
.tzElement_Image_slide .owl-nav .owl-prev:hover {
border-color: #e5ae49;
background: #e5ae49;
}
.tzElement_Image_slide .owl-nav .owl-prev:hover i {
color: #ffffff;
}
.tzElement_Image_slide .owl-nav .owl-next {
width: 40px;
height: 40px;
border: 1px solid #efefef;
position: absolute;
top: 50%;
margin-top: -20px;
right: -76px;
text-align: center;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_Image_slide .owl-nav .owl-next i {
font-size: 18px;
color: #999999;
line-height: 38px;
}
.tzElement_Image_slide .owl-nav .owl-next:hover {
border-color: #e5ae49;
background: #e5ae49;
}
.tzElement_Image_slide .owl-nav .owl-next:hover i {
color: #ffffff;
}
.tzElement_Image_slide .owl-dots {
text-align: center;
margin-top: 30px;
}
.tzElement_Image_slide .owl-dots .owl-dot {
display: inline-block;
margin: 0 3px;
}
.tzElement_Image_slide .owl-dots .owl-dot span {
display: inline-block;
width: 15px;
height: 15px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
border: 1px solid #999999;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_Image_slide .owl-dots .owl-dot.active span {
border-color: #e5ae49;
background: #e5ae49;
}
.tzElement_Image_slide .owl-dots .owl-dot:hover span {
border-color: #e5ae49;
background: #e5ae49;
} .mfp-bg {
position: fixed !important;
z-index: 999998;
}
.mfp-wrap {
z-index: 999999;
}
.tzElement_Video_Popup {
width: 100%;
height: 600px;
overflow: hidden;
position: relative;
}
.tzElement_Video_Popup .tzElement_bgVideo {
width: 100%;
height: 100%;
position: relative;
z-index: 1;
}
.tzElement_Video_Popup .tzElement_bgVideo:after {
content: '';
display: block;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.2);
position: absolute;
top: 0;
left: 0;
}
.tzElement_Video_Popup a.tz-open-popup-video {
display: block;
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
background: #FFFFFF;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
border: 5px solid #ffffff;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_Video_Popup a.tz-open-popup-video i {
font-size: 36px;
color: #e5ae49;
line-height: 90px;
}
.tzElement_Video_Popup a.tz-open-popup-video:hover {
border: 5px solid #e5ae49;
} .TzPage_Default {
padding: 125px 0;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent {
margin: 65px 0px 0px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent h2.comments-title {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 24px;
color: #222222;
text-transform: uppercase;
margin: 0 0 25px;
padding: 0px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list {
margin: 0px 0px 55px;
padding: 0px;
position: relative;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li {
list-style: none;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article {
padding: 0px 0px 30px;
border-bottom: 1px solid #ededed;
margin: 0px 0px 30px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-author {
display: block;
float: left;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
overflow: hidden;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content {
margin-left: 120px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content cite {
float: left;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 22px;
color: #222222;
text-decoration: none;
text-transform: uppercase;
margin-bottom: 13px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo {
margin-bottom: 13px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comments-datetime {
text-decoration: none;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comments-datetime time {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
font-style: italic;
line-height: 22px;
color: #b5b5b5;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comment-edit-link {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 22px;
color: #e5ae49;
text-decoration: none;
margin-left: 20px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comment-edit-link i {
font-size: 13px;
margin-right: 5px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comment-reply-link {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 22px;
color: #e5ae49;
text-decoration: none;
margin-left: 20px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content .tz-commentInfo .comment-reply-link i {
font-size: 13px;
margin-right: 5px;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li article p {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 24px;
color: #666666;
}
.TzPage_Default .tzComments .comments-area .tzCommentContent ol.comment-list li ol.children {
padding-left: 120px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond {
margin: 65px 0px 0px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond h3.comment-reply-title {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 400;
line-height: 24px;
color: #222222;
text-transform: uppercase;
margin: 0px;
padding: 0px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p {
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
line-height: 24px;
color: #666666;
margin: 0 0 23px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p.comment-form-comment {
margin: 0px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p label {
display: none;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p a {
color: #e5ae49;
text-decoration: none;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p textarea {
width: 100%;
height: 95px;
border-width: 1px;
border-color: #ededed;
border-style: solid;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
line-height: 24px;
font-size: 14px;
color: #b5b5b5;
padding: 10px 20px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p.form-submit {
margin: 17px 0px 0px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form p.form-submit input.submit {
background: #e5ae49;
border: none;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 700;
color: #FFFFFF;
line-height: 22px;
text-transform: uppercase;
padding: 11px 25px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form .tzCommentForm_Top {
margin-bottom: 20px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form .tzCommentForm_Top p {
margin: 0px;
}
.TzPage_Default .tzComments .comments-area .tzCommentForm .comment-respond form.comment-form .tzCommentForm_Top p input {
width: 100%;
border-width: 1px;
border-color: #ededed;
border-style: solid;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
line-height: 24px;
font-size: 14px;
color: #b5b5b5;
padding: 10px 20px;
margin: 0px;
} .tzUnder_Construction_top {
position: relative;
background: #ededed no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.tzUnder_Construction_top .tzUnder_Construction_overlay {
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.8);
}
.tzUnder_Construction_top .container {
position: relative;
}
.tzUnder_Construction_top .container .tzUnder_Construction_logo {
position: absolute;
top: 0;
left: 15px;
padding: 72px 0 25px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown {
position: relative;
display: flex;
align-items: center;
padding-top: 120px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown h3.tzCountdowntitle {
font-family: 'Ubuntu', sans-serif;
font-weight: 700;
font-size: 48px;
color: #FFFFFF;
text-transform: uppercase;
padding: 0;
margin: 0 0 34px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown p.tzCountdowndes {
font-size: 18px;
color: #ffffff;
margin-bottom: 19px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .countdown:after {
content: '';
display: block;
clear: both;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .countdown .tzdivide {
float: left;
display: block;
width: 1px;
height: 25px;
margin: 52px 22px;
background: #e5ae49;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .countdown .tzcountdownitem {
float: left;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .countdown .tzcountdownitem span {
display: block;
text-align: center;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 65px;
line-height: 65px;
color: #FFFFFF;
padding: 14px 0 12px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .countdown .tzcountdownitem p {
font-size: 16px;
color: #FFFFFF;
text-transform: uppercase;
letter-spacing: 2px;
text-align: center;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .tzbutton {
margin-top: 75px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .tzbutton a.tzbtn {
display: inline-block;
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 400;
color: #FFFFFF;
letter-spacing: 2px;
padding: 10px 27px;
margin: 20px 0;
background: #e5ae49;
text-transform: uppercase;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
border: 2px solid #e5ae49;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .tzbutton a.tzbtn:hover {
background: none;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .tzbutton a.tzbtn.tzbtn-left {
margin-right: 20px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .tzbutton a.tzbtn.tzbtn-right {
background: none;
border: 2px solid #FFFFFF;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .tzbutton a.tzbtn.tzbtn-right:hover {
background: #e5ae49;
border: 2px solid #e5ae49;
}
.tzUnder_Construction_Section:after {
display: block;
clear: both;
content: '';
}
.tzUnder_Construction_Section .tzUnder_Construction_left {
width: 50%;
height: 500px;
overflow: hidden;
float: left;
padding: 50px 105px;
display: flex;
align-items: center;
}
.tzUnder_Construction_Section .tzUnder_Construction_left .tzUnder_Construction_About h3.tzUnder_Construction_About_title {
font-size: 25px;
color: #252525;
text-transform: uppercase;
}
.tzUnder_Construction_Section .tzUnder_Construction_left .tzUnder_Construction_About h3.tzUnder_Construction_About_title em {
font-style: normal;
color: #e5ae49;
}
.tzUnder_Construction_Section .tzUnder_Construction_left .tzUnder_Construction_Map {
width: 100%;
height: 100%;
}
.tzUnder_Construction_Section .tzUnder_Construction_left .tzUnder_Construction_Map iframe {
width: 100%;
height: 100%;
}
.tzUnder_Construction_Section .tzUnder_Construction_right {
width: 50%;
float: right;
height: 500px;
overflow: hidden;
}
.tzUnder_Construction_Section.tzUnder_Construction_About_Section .tzUnder_Construction_right {
position: relative;
background: #ededed no-repeat scroll center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_left {
padding: 0;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right {
padding: 50px 105px;
display: flex;
align-items: center;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right .tzUnder_Construction_Form h3.tzUnder_Construction_Notify_title {
font-size: 20px;
color: #db4437;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 22px;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right .tzUnder_Construction_Form form.newsletter {
margin-top: 30px;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right .tzUnder_Construction_Form form.newsletter .tnp-field label {
display: none;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right .tzUnder_Construction_Form form.newsletter .tnp-field input.tnp-email {
border-width: 0 0 1px !important;
border-style: solid !important;
border-color: #dcdcdc !important;
color: #535353;
border-radius: 0 !important;
box-shadow: none;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
padding: 12px 0 !important;
width: 100% !important;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right .tzUnder_Construction_Form form.newsletter .tnp-field.tnp-field-button {
position: relative;
margin-top: 38px;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right .tzUnder_Construction_Form form.newsletter .tnp-field.tnp-field-button:after {
color: #ffffff;
content: '\f003';
font-family: FontAwesome;
font-size: 14px;
left: 25px;
position: absolute;
top: 12px;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right .tzUnder_Construction_Form form.newsletter .tnp-field.tnp-field-button input.tnp-button {
border: 1px solid #e5ae49 !important;
background: #e5ae49;
padding: 12px 23px 12px 48px !important;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
color: #FFFFFF;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
}  .tzshop-wrap {
padding: 80px 0px;
}
.tzshop-wrap .woof_show_auto_form {
background-image: none;
position: relative;
width: 45px;
height: 45px;
background-color: #e5ae49;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
}
.tzshop-wrap .woof_show_auto_form:after {
display: block;
content: '\f002 ';
font-family: FontAwesome;
font-size: 18px;
color: #ffffff;
position: absolute;
top: 10px;
left: 14px;
}
.tzshop-wrap .woof_hide_auto_form {
background-image: none;
position: relative;
width: 45px;
height: 45px;
background-color: #e5ae49;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
}
.tzshop-wrap .woof_hide_auto_form:after {
display: block;
content: '\f002 ';
font-family: FontAwesome;
font-size: 18px;
color: #ffffff;
position: absolute;
top: 10px;
left: 14px;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode {
background: none;
border: 1px solid #dedede;
padding: 70px 20px 20px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_edit_view {
background: #e5ae49;
border-radius: 20px;
color: #ffffff;
display: inline-block;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
margin: -50px 0 0;
padding: 7px 21px 9px;
opacity: 1;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_container .woof_container_inner ul {
margin: 0;
padding: 0;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_container .woof_container_inner ul li {
position: relative;
margin: 0!important;
padding: 0 0 0 22px !important;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_container .woof_container_inner ul li input.woof_radio_term {
margin: 0;
padding: 0;
position: absolute;
top: 10px;
left: 0;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_container .woof_container_inner ul li label {
font-weight: 300;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_container .woof_container_inner ul li a.woof_radio_term_reset {
position: relative;
display: inline-block;
width: 15px;
height: 15px;
margin-left: 7px;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_container .woof_container_inner ul li a.woof_radio_term_reset:after {
display: block;
content: '\f00d';
font-family: FontAwesome;
font-size: 15px;
color: #222222;
line-height: 15px;
position: absolute;
top: 2px;
left: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_container .woof_container_inner ul li a.woof_radio_term_reset img {
display: none;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_container .woof_container_inner ul li a.woof_radio_term_reset:hover:after {
font-size: 20px;
color: #e5ae49;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_container .woof_container_inner ul li:before {
content: none;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_submit_search_form_container {
margin: 0;
padding: 0;
}
.tzshop-wrap .woof_auto_show .woof_auto_show_indent .woof_sid_auto_shortcode .woof_redraw_zone .woof_submit_search_form_container button {
background: #e5ae49;
border-radius: 20px;
color: #ffffff;
display: inline-block;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
margin: 0;
padding: 7px 21px 9px;
}
.tzshop-wrap .woof_products_top_panel {
margin: 20px 0;
}
.tzshop-wrap .woof_products_top_panel ul {
border: 1px solid #ededed;
display: inline-block;
padding: 7px 0 7px 15px !important;
}
.tzshop-wrap .woof_products_top_panel ul:after {
content: '';
display: block;
clear: both;
}
.tzshop-wrap .woof_products_top_panel ul li a span {
color: #666666;
background: none;
position: relative;
padding-right: 25px;
}
.tzshop-wrap .woof_products_top_panel ul li a span:after {
display: block;
content: '\f00d';
font-family: FontAwesome;
font-size: 18px;
color: #222222;
line-height: 18px;
position: absolute;
top: 0;
right: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .grid_pagination_block {
margin-bottom: 20px;
padding: 0 0 25px;
border-width: 0 0 1px;
border-style: solid;
border-color: #ededed;
}
.tzshop-wrap .grid_pagination_block form.woocommerce-ordering {
z-index: 99;
float: left;
margin: 0;
}
.tzshop-wrap .grid_pagination_block form.woocommerce-ordering select.orderby {
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
-o-appearance: none;
background: url(//siplprojects.in/wp-content/themes/interiart/images/orderby.png);
background-repeat: no-repeat;
background-position: 174px 16px;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
border: 1px solid #dedede;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
-ms-border-radius: 1px;
-o-border-radius: 1px;
border-radius: 1px;
padding: 4px 11px;
line-height: 28px;
width: 198px;
}
.tzshop-wrap .grid_pagination_block p.woocommerce-result-count {
float: left;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
border: 1px solid #dedede;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
-ms-border-radius: 1px;
-o-border-radius: 1px;
border-radius: 1px;
line-height: 20px;
margin: 0 0 0 20px;
padding: 9px 15px;
}
.tzshop-wrap .grid_pagination_block .tzview-style {
float: right;
margin-top: 13px;
}
.tzshop-wrap .grid_pagination_block .tzview-style label {
float: left;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 14px;
color: #222222;
margin-right: 7px;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToList {
float: left;
position: relative;
width: 30px;
text-align: center;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToList i {
font-size: 18px;
color: #222222;
line-height: 18px;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToList span {
width: 80px;
height: 25px;
display: block;
position: absolute;
top: -40px;
left: 50%;
font-family: 'Ubuntu', sans-serif;
font-size: 12px;
font-weight: 400;
color: #ffffff;
text-align: center;
background: #e5ae49;
padding: 3px 9px;
margin-left: -43px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
opacity: 0;
visibility: hidden;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToList span:after {
border-left: 5px solid rgba(0, 0, 0, 0);
border-right: 5px solid rgba(0, 0, 0, 0);
border-top: 5px solid #e5ae49;
content: "";
left: 50%;
margin-left: -2px;
position: absolute;
top: 100%;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToList:hover {
cursor: pointer;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToList:hover i {
color: #e5ae49;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToList:hover span {
top: -32px;
opacity: 1;
visibility: visible;
-webkit-transition: all 0.3s ease-in 0s;
-moz-transition: all 0.3s ease-in 0s;
-ms-transition: all 0.3s ease-in 0s;
-o-transition: all 0.3s ease-in 0s;
transition: all 0.3s ease-in 0s;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToGrid {
float: left;
position: relative;
width: 30px;
text-align: center;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToGrid i {
font-size: 18px;
color: #222222;
line-height: 18px;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToGrid span {
width: 80px;
height: 25px;
display: block;
position: absolute;
top: -40px;
left: 50%;
font-family: 'Ubuntu', sans-serif;
font-size: 12px;
font-weight: 400;
color: #ffffff;
text-align: center;
background: #e5ae49;
padding: 3px 9px;
margin-left: -43px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
opacity: 0;
visibility: hidden;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToGrid span:after {
border-left: 5px solid rgba(0, 0, 0, 0);
border-right: 5px solid rgba(0, 0, 0, 0);
border-top: 5px solid #e5ae49;
content: "";
left: 50%;
margin-left: -2px;
position: absolute;
top: 100%;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToGrid:hover {
cursor: pointer;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToGrid:hover i {
color: #e5ae49;
}
.tzshop-wrap .grid_pagination_block .tzview-style .switchToGrid:hover span {
top: -32px;
opacity: 1;
visibility: visible;
-webkit-transition: all 0.3s ease-in 0s;
-moz-transition: all 0.3s ease-in 0s;
-ms-transition: all 0.3s ease-in 0s;
-o-transition: all 0.3s ease-in 0s;
transition: all 0.3s ease-in 0s;
}
.tzshop-wrap .grid_pagination_block:after {
content: '';
display: block;
clear: both;
}
.tzshop-wrap .product-grid {
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
padding-bottom: 20px;
}
.tzshop-wrap .product-grid ul.products {
margin: 0px -15px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item {
margin: 0px;
padding: 20px 15px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item.tzShop-4column {
width: 25%;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item.tzShop-4column:nth-child(4n+1) {
clear: both;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item.tzShop-3column {
width: 33.33333%;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item.tzShop-3column:nth-child(3n+1) {
clear: both;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item.tzShop-2column {
width: 50%;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item.tzShop-2column:nth-child(2n+1) {
clear: both;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner {
position: relative;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image {
position: relative;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image.tzShop-item_image_fix img {
position: relative;
max-width: none;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(229, 174, 73, 0);
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzOut-of-stock {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 18px 10px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzFeatured_product {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
left: 20px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductSale {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductfree {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductNew {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist {
position: absolute;
top: 50%;
margin-top: -21px;
left: 50%;
margin-left: -67px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
float: left;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
width: 100%;
height: 100%;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
width: 100%;
height: 100%;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button {
position: absolute;
top: 50%;
margin-top: -43px;
right: 50%;
margin-right: -45px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
float: left;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a { width: 100%;
height: 100%;
text-align: center;
padding: 13px 0px;
margin: 0px;
background: none;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 9px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a.added:after {
display: none;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a.wc-forward {
position: absolute;
top: 55px;
left: 50%;
margin-left: -53px;
width: 106px;
height: 30px;
padding: 3px 0;
background: #fff;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #666666;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a.wc-forward:after {
border-bottom: 4px solid #fff;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
bottom: 100%;
content: "";
display: block;
left: 50%;
margin-left: -4px;
position: absolute;
z-index: 9999;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail {
position: absolute;
bottom: -45px;
visibility: hidden;
opacity: 0;
left: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
text-align: center;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail a {
display: inline-block;
background-color: #e5ae49;
border-radius: 20px;
color: #ffffff;
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 24px;
padding: 7px 26px;
text-transform: uppercase;
letter-spacing: 2px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info {
position: relative;
background: rgba(229, 174, 73, 0);
padding: 36px 0 30px;
text-align: center;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title {
margin: 0px;
padding: 0px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title a {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
text-transform: uppercase;
letter-spacing: 1px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating {
height: 15px;
display: inline-block;
margin: 12px 0 0;
font-size: 14px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating:before {
color: #b5b5b5;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating span:before {
color: #f5d608;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #e5ae49;
margin: 5px 0 0;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del {
display: inline-block;
color: #b5b5b5;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #b5b5b5;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins {
display: inline-block;
text-decoration: none;
margin-left: 8px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #e5ae49;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_des {
display: none;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list {
display: none;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .line-left:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
left: 1px;
position: absolute;
top: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: auto;
right:0;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .line-left:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 100%;
left: 0;
right:0;
position: absolute;
bottom: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
top:0;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .line-right:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
right: 0;
position: absolute;
bottom: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: auto;
left:1px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .line-right:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: auto;
right: 0;
position: absolute;
top: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
bottom:1px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_image .tzShop-item_overlay {
background: rgba(229, 174, 73, 0.1);
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_image .tzShop-item_detail {
bottom: 0;
visibility: visible;
opacity: 1;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_info {
background: rgba(229, 174, 73, 0.1);
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner:hover .line-left:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
left: 5px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner:hover .line-left:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
bottom: 5px;
width: 5px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner:hover .line-right:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
right: 5px;
left:5px;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner:hover .line-right:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
top: 5px;
width: 5px;
bottom:0;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner:hover:hover .yith-wcwl-add-to-wishlist {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
}
.tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner:hover:hover .tzShop-item_button {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
}
.tzshop-wrap .product-list {
position: relative;
margin-bottom: 40px;
border-color: #ededed;
border-style: solid;
border-width: 0 0 1px;
padding-bottom: 20px;
}
.tzshop-wrap .product-list ul.products {
margin: 0;
}
.tzshop-wrap .product-list ul.products li.tzShop-item {
width: 100%;
margin: 20px 0;
padding: 0;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner {
position: relative;
overflow: hidden;
padding: 24px 20px 28px;
background: rgba(229, 174, 73, 0);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image {
width: 260px;
float: left;
position: relative;
overflow: hidden;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image.tzShop-item_image_fix img {
position: relative;
max-width: none;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(229, 174, 73, 0);
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzOut-of-stock {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 18px 10px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzFeatured_product {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
left: 20px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductSale {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductfree {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductNew {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist {
display: none;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button {
display: none;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail {
position: absolute;
top: 50%;
margin-top: -19px;
visibility: hidden;
opacity: 0;
left: 0;
-webkit-transform: rotateX(90deg);
-moz-transform: rotateX(90deg);
-o-transform: rotateX(90deg);
transform: rotateX(90deg);
-webkit-transition: all 0.5s ease-in-out 0s;
-moz-transition: all 0.5s ease-in-out 0s;
-o-transition: all 0.5s ease-in-out 0s;
transition: all 0.5s ease-in-out 0s;
width: 100%;
text-align: center;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail a {
display: inline-block;
background-color: #e5ae49;
border-radius: 20px;
color: #ffffff;
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 24px;
padding: 7px 26px;
text-transform: uppercase;
letter-spacing: 2px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info {
margin-left: 280px;
padding: 0px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title {
margin: 0px;
padding: 0px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title a {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
letter-spacing: 1px;
text-transform: uppercase;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating {
margin: 2px 0 0;
font-size: 14px;
height: 15px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating:before {
color: #b5b5b5;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating span:before {
color: #f5d608;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 400;
color: #e5ae49;
margin: 12px 0 0;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del {
display: inline-block;
color: #b5b5b5;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 400;
color: #b5b5b5;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins {
display: inline-block;
text-decoration: none;
margin-left: 8px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 400;
color: #e5ae49;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_des {
margin: 17px 0 0;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_des p {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 25px;
color: #666666;
letter-spacing: 0.5px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list {
margin: 23px 0 7px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist {
float: left;
margin: 0px;
padding: 0px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
float: left;
margin-right: 10px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
display: inline-block;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
background: #c7c7c7;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
color: #ffffff;
letter-spacing: 0.5px;
padding: 7px 21px 9px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover {
background: #e5ae49;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
float: left;
margin-right: 10px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
display: inline-block;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
background: #c7c7c7;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
color: #ffffff;
letter-spacing: 0.5px;
padding: 7px 21px 9px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover {
background: #e5ae49;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a i {
margin-right: 10px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .tzShop-item_button a {
display: inline-block;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
background: #c7c7c7;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 24px;
color: #ffffff;
padding: 7px 21px 9px;
margin: 0px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .tzShop-item_button a:hover {
background: #e5ae49;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .tzShop-item_button a i {
margin-right: 10px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .line-left:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
left: 1px;
position: absolute;
top: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .line-left:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 100%;
left: 0;
position: absolute;
bottom: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .line-right:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
right: 1px;
position: absolute;
bottom: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner .line-right:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 100%;
right: 0;
position: absolute;
top: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner:after {
content: '';
display: block;
clear: both;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner:hover {
background: rgba(229, 174, 73, 0.1);
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_image .tzShop-item_overlay {
background: rgba(229, 174, 73, 0.1);
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_image .tzShop-item_detail {
visibility: visible;
opacity: 1;
-webkit-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
-o-transform: rotateX(0deg);
transform: rotateX(0deg);
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner:hover .line-left:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
left: 5px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner:hover .line-left:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
bottom: 5px;
width: 5px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner:hover .line-right:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
right: 5px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item .tzShop-item_inner:hover .line-right:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
top: 5px;
width: 5px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.first {
clear: none;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column {
width: 50%;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column:nth-child(2n+1) {
clear: both;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
width: 40px;
height: 40px;
padding: 8px 12px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
overflow: hidden;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span {
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover {
background: #e5ae49;
width: 150px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover span {
opacity: 1;
visibility: visible;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
width: 40px;
height: 40px;
padding: 8px 12px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
overflow: hidden;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span {
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover {
background: #e5ae49;
width: 165px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover span {
opacity: 1;
visibility: visible;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .tzShop-item_button a {
width: 40px;
height: 40px;
padding: 8px 12px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
overflow: hidden;
text-align: center;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .tzShop-item_button a span {
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .tzShop-item_button a:hover {
background: #e5ae49;
width: 165px;
}
.tzshop-wrap .product-list ul.products li.tzShop-item.tzShopList-2column .tzShop-item_info .tzShop-item_button_list .tzShop-item_button a:hover span {
opacity: 1;
visibility: visible;
}
.tzshop-wrap .woocommerce-pagination {
text-align: right !important;
margin-top: 40px;
}
.tzshop-wrap .woocommerce-pagination ul.page-numbers {
margin: 0px;
padding: 0px;
border: none;
}
.tzshop-wrap .woocommerce-pagination ul.page-numbers li {
border: none;
}
.tzshop-wrap .woocommerce-pagination ul.page-numbers li span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #666666;
border-width: 1px;
border-style: solid;
border-color: #dedede;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
-ms-border-radius: 1px;
-o-border-radius: 1px;
border-radius: 1px;
margin-left: 10px;
padding: 12px 14px;
}
.tzshop-wrap .woocommerce-pagination ul.page-numbers li span.current {
background: #e5ae49;
color: #ffffff;
border-color: #e5ae49;
}
.tzshop-wrap .woocommerce-pagination ul.page-numbers li a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #666666;
border: 1px solid #dedede;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
-ms-border-radius: 1px;
-o-border-radius: 1px;
border-radius: 1px;
margin-left: 10px;
padding: 12px 14px;
}
.tzshop-wrap .woocommerce-pagination ul.page-numbers li a:hover {
background: #e5ae49;
color: #ffffff;
border-color: #e5ae49;
} .tzshop-wrap ul.products li.product-category {
margin: 0px;
width: 25%;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory {
padding: 15px;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner {
position: relative;
overflow: hidden;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner img {
width: 100%;
height: auto;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner .tz-subcategory-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner .tz-subcategory-info {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
opacity: 0;
visibility: hidden;
-webkit-transform: scale(2);
-moz-transform: scale(2);
-ms-transform: scale(2);
-o-transform: scale(2);
transform: scale(2);
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner .tz-subcategory-info .tz-subcategory-table {
width: 100%;
height: 100%;
display: table;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner .tz-subcategory-info .tz-subcategory-table .tz-subcategory-table-cell {
display: table-cell;
vertical-align: middle;
text-align: center;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner .tz-subcategory-info .tz-subcategory-table .tz-subcategory-table-cell a {
font-family: 'Montserrat', sans-serif;
font-size: 30px;
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
color: #ffffff;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner .tz-subcategory-info .tz-subcategory-table .tz-subcategory-table-cell a:hover {
color: #e5ae49;
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner:hover .tz-subcategory-overlay {
background: rgba(0, 0, 0, 0.5);
}
.tzshop-wrap ul.products li.product-category .tz-shop-subcategory .tz-shop-subcategory-inner:hover .tz-subcategory-info {
opacity: 1;
visibility: visible;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
} .tzShopDetail-wrap {
padding: 64px 0 100px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images:after {
content: '';
display: block;
clear: left;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide {
float: right;
margin-right: 0px;
position: relative;
height: 585px;
overflow: hidden;
border: 5px solid rgba(229, 174, 73, 0.5);
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide ul {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide ul li {
width: 100%;
height: 585px;
display: none;
margin: 0px;
padding: 0px;
position: relative;
overflow: hidden;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide ul li img {
position: relative;
max-width: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide ul li:after {
display: block;
content: '';
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(229, 174, 73, 0.1);
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide ul li a {
position: absolute;
top: 10px;
left: 15px;
font-family: 'Roboto', sans-serif;
font-weight: 400;
font-size: 10px;
line-height: 18px;
color: #656565;
z-index: 1;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide ul li a i {
padding-right: 5px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide ul li a:hover {
text-decoration: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide ul li img {
width: 100% !important;
height: auto !important;
left: 0 !important;
top: 50% !important;
transform: translateY(-50%) !important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide ul li:after{
background: transparent !important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide li.active {
display: block !important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide li span.opacity {
position: absolute;
bottom: 0;
left: 0;
display: block;
width: 100%;
height: 60px;
background: #000;
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
z-index: 500;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide li span.content {
position: absolute;
bottom: 0;
left: 0;
display: block;
width: 100%;
height: 60px;
z-index: 1000;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide li span.content h1 {
font-size: 14px;
margin: 5px 0;
padding: 0 10px;
color: #42e2e8;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide li span.content p {
font-size: 11px;
margin: 5px 0;
padding: 0 10px;
color: #42e2e8;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide .tzOut-of-stock {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 18px 10px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide .tzFeatured_product {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
left: 20px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide .tzProductSale {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide .tzProductfree {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide .tzProductNew {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel {
float: left;
width: 85px;
margin-right: 14px;
position: relative;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel .jcarousel-skin-tango .jcarousel-container-vertical {
width: 100%!important;
height: 585px!important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel .jcarousel-skin-tango .jcarousel-container-vertical .jcarousel-next {
display: none!important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel .jcarousel-skin-tango .jcarousel-container-vertical .jcarousel-prev {
display: none!important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel .jcarousel-skin-tango .jcarousel-container-vertical .jcarousel-clip-vertical {
width: 100%!important;
height: 585px!important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul {
margin: 0;
padding: 0;
list-style: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul li {
background: #fff;
height: 105px;
width: 85px;
margin-bottom: 15px;
position: relative;
border: 1px solid rgba(229, 174, 73, 0.2);
float: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul li a {
display: inline-block;
height: 103px;
width: 83px;
position: relative;
overflow: hidden;
z-index: 1;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul li a img {
position: relative;
max-width: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul li .arrow {
left: 3px;
top: 28px;
position: absolute;
width: 20px;
height: 40px;
background: url(//siplprojects.in/wp-content/themes/interiart/images/arrow_white.png) no-repeat 0 0;
display: block;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul li.bd_active {
border: 1px solid rgba(229, 174, 73, 0.5);
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul li:hover {
border: 1px solid rgba(229, 174, 73, 0.5);
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul .active {
filter: alpha(opacity=100);
-moz-opacity: 1.0;
-khtml-opacity: 1.0;
opacity: 1.0;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul .faded {
filter: alpha(opacity=50);
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info {
width: 100%;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info h1.product_title {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 400;
text-decoration: none;
text-transform: uppercase;
color: #222222;
margin: 15px 0 8px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .woocommerce-product-rating {
margin-bottom: 15px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .woocommerce-product-rating .star-rating {
font-size: 14px;
height: 15px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .woocommerce-product-rating .star-rating span:before {
color: #f5d608;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .woocommerce-product-rating a.woocommerce-review-link {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #b5b5b5;
line-height: 24px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info p.price {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 25px;
color: #e5ae49;
line-height: 25px;
margin-bottom: 27px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info p.price span.amount {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 25px;
color: #e5ae49;
line-height: 25px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info p.price del {
text-decoration: none;
opacity: 1;
margin-right: 13px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info p.price del span.amount {
font-weight: 400;
color: #b5b5b5;
text-decoration: line-through;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info p.price ins {
text-decoration: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info div[itemprop="description"] {
border-bottom: 1px solid #ededed;
padding-bottom: 39px;
margin-bottom: 30px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.cart {
display: inline-block;
float: left;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.cart .quantity {
margin-right: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.cart .quantity input {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
line-height: 24px;
border: 1px solid #ededed;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
padding: 7px 10px;
width: 70px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.cart button {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
line-height: 24px;
background: #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
padding: 7px 20px !important;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.cart button:hover {
background: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.cart table.group_table tbody tr td label a {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
text-decoration: none;
color: #222222;
display: inline-block;
padding: 22px 0px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.cart table.group_table tbody tr td.price span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
text-decoration: none;
color: #e5ae49;
padding: 8px 0px;
display: inline-block;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.cart table.group_table tbody tr td.price del span.amount {
text-decoration: line-through;
color: #b5b5b5;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info p.cart {
display: inline-block;
float: left;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info p.cart a {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
line-height: 24px;
background: #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
padding: 7px 20px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info p.cart a:hover {
background: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form table.variations {
margin-bottom: 0px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form table.variations tbody tr td label {
font-family: 'Ubuntu', sans-serif;
font-size: 16px;
font-weight: 400;
color: #666666;
padding: 20px 0px;
text-transform: capitalize;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form table.variations tbody tr td.value select {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
line-height: 24px;
border: 1px solid #ededed;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
padding: 7px 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form table.variations tbody tr td.value a.reset_variations {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
line-height: 24px;
text-decoration: none;
display: inline-block !important;
margin-top: 5px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form table.variations tbody tr td.value a.reset_variations:hover {
color: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form .single_variation_wrap .single_variation {
margin-left: 40px;
margin-bottom: 17px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form .single_variation_wrap .single_variation .woocommerce-variation-image {
width: 250px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form .single_variation_wrap .single_variation span.price {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 20px;
color: #e5ae49;
line-height: 25px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form .single_variation_wrap .single_variation span.price span.amount {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 20px;
color: #e5ae49;
line-height: 25px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form .single_variation_wrap .single_variation span.price del {
text-decoration: none;
opacity: 1;
margin-right: 13px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form .single_variation_wrap .single_variation span.price del span.amount {
font-weight: 400;
color: #b5b5b5;
text-decoration: line-through;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form .single_variation_wrap .single_variation span.price ins {
text-decoration: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info form.variations_form .single_variation_wrap .variations_button:after {
content: '';
display: block;
clear: both;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info p.out-of-stock {
font-family: 'Ubuntu', sans-serif;
font-size: 24px;
font-weight: 400;
margin-bottom: 20px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist {
display: inline-block;
margin: 0 0 30px;
float: left;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
margin-left: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
line-height: 24px;
background: #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
padding: 7px 20px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover {
background: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-add-button img {
display: none !important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
margin-left: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse span.feedback {
display: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
line-height: 24px;
background: #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
padding: 7px 20px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:hover {
background: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
margin-left: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse span.feedback {
display: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
line-height: 24px;
background: #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
padding: 7px 20px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover {
background: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_meta {
border-top: 1px solid #ededed;
margin-top: 2px;
padding-top: 44px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_meta span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #666666;
margin-right: 15px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_meta span span {
font-weight: 300;
margin-right: 0;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_meta span a {
font-weight: 300;
color: #666666;
text-decoration: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_meta span a:hover {
color: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_share {
margin-top: 25px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_share span {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #666666;
margin-right: 15px;
float: left;
line-height: 40px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_share .product_share_social .tz_social {
background-color: #c7c7c7;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
cursor: pointer;
display: inline-block;
font-size: 15px;
height: 40px;
line-height: 25px;
margin: 0 5px;
position: relative;
text-align: center;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 40px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_share .product_share_social .tz_social span {
background: #e5ae49;
border-radius: 0;
display: block;
height: 0;
left: 50%;
margin: 0;
position: absolute;
top: 50%;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
width: 0;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_share .product_share_social .tz_social:hover {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_share .product_share_social .tz_social:hover span {
width: 40px;
height: 40px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
top: 0;
left: 0;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info .product_share .product_share_social .tz_social i {
background: none;
color: #ffffff;
height: 40px;
left: 0;
line-height: 40px;
position: absolute;
top: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
width: 40px;
z-index: 10;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-grouped .tzShopDetail_info form.cart {
display: block;
float: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-grouped .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
margin-left: 0px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-grouped .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
margin-left: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-grouped .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse span.feedback {
display: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-grouped .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
line-height: 24px;
background: #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
padding: 7px 20px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-grouped .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:hover {
background: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-grouped .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
margin-left: 0px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-variable .tzShopDetail_info form.cart {
display: block;
float: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-variable .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
margin-left: 0px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-variable .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
margin-left: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-variable .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse span.feedback {
display: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-variable .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
line-height: 24px;
background: #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
padding: 7px 20px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-variable .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:hover {
background: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.product-type-variable .tzShopDetail_info .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
margin-left: 0px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.outofstock .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
margin-left: 0px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.outofstock .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
margin-left: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.outofstock .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse span.feedback {
display: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.outofstock .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
line-height: 24px;
background: #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
padding: 7px 20px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.outofstock .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:hover {
background: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.outofstock .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
margin-left: 0px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs {
border-bottom: 2px solid rgba(229, 174, 73, 0.2);
display: block;
padding: 0 0 52px;
margin-bottom: 44px;
margin-top: 59px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs ul.tabs {
margin: 0 0 -1px;
padding: 0 5px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs ul.tabs:before {
border: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs ul.tabs li {
margin: 0 2px 0 0;
padding: 0;
border: none;
background: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs ul.tabs li:before {
content: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs ul.tabs li:after {
content: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs ul.tabs li a {
margin: 0px;
padding: 13px 29px;
background: #e5ae49;
border-width: 3px 1px 0 1px;
border-color: #e5ae49;
border-style: solid;
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
text-transform: uppercase;
letter-spacing: 0.5px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs ul.tabs li a:hover {
background: none;
color: #e5ae49;
border-left-color: rgba(229, 174, 73, 0.2);
border-right-color: rgba(229, 174, 73, 0.2);
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs ul.tabs li.active a {
background: none;
color: #e5ae49;
border-left-color: rgba(229, 174, 73, 0.2);
border-right-color: rgba(229, 174, 73, 0.2);
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel {
margin: 0px;
padding: 24px 28px 13px;
border: 1px solid rgba(229, 174, 73, 0.2);
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
background: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel h2 {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 20px;
color: #222222;
margin-bottom: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel table.shop_attributes {
margin: 20px 0 0;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #comments {
margin-bottom: 20px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #comments ol.commentlist {
margin: 20px 0 0;
padding: 0px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container:after {
content: '';
display: block;
clear: both;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container img {
width: 90px;
height: 90px;
background: none;
border: none;
padding: 0px;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text {
margin-left: 120px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
padding: 10px 15px;
border: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text p.meta {
margin-bottom: 2px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text p.meta strong[itemprop="author"] {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
text-transform: uppercase;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #comments ol.commentlist li .comment_container .comment-text p.meta time {
font-style: italic;
font-size: 14px;
color: #b5b5b5;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form .comment-respond h3.comment-reply-title {
font-size: 20px;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
color: #222222;
margin-bottom: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form .comment-respond form#commentform p label {
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 14px;
color: #222222;
margin-bottom: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form .comment-respond form#commentform p p.stars span a {
color: #b5b5b5;
text-align: left;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form .comment-respond form#commentform p p.stars span a.active:after {
color: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form .comment-respond form#commentform p p.stars span a:hover:after {
color: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form .comment-respond form#commentform p textarea {
border: 1px solid #ededed;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14px;
color: #666666;
padding: 10px 15px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form .comment-respond form#commentform p.form-submit input {
display: inline-block;
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 400;
color: #FFFFFF;
line-height: 24px;
background: #c7c7c7;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
border-radius: 20px;
padding: 7px 20px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .woocommerce-tabs .panel #reviews #review_form_wrapper #review_form .comment-respond form#commentform p.form-submit input:hover {
background: #e5ae49;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.tzShopDetail_navigationSlide_right .tzShopDetail_images #tzShopDetail_slide {
float: left;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product.tzShopDetail_navigationSlide_right .tzShopDetail_images #tzShopDetailSlide-carousel {
margin-left: 15px;
margin-right: 0px;
} .related h2 {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 400;
color: #222222;
line-height: 25px;
text-transform: uppercase;
margin-bottom: 15px;
letter-spacing: 0.5px;
}
.related ul.products {
margin: 0px -15px;
}
.related ul.products li.tzShop-item {
margin: 0px;
padding: 15px;
width: 25%;
}
.related ul.products li.tzShop-item .tzShop-item_inner {
position: relative;
overflow: hidden;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image {
width: 100%;
position: relative;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image img {
position: relative;
max-width: none;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(229, 174, 73, 0);
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzOut-of-stock {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 18px 10px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzFeatured_product {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
left: 20px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductSale {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductfree {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductNew {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist {
position: absolute;
top: 50%;
margin-top: -21px;
left: 50%;
margin-left: -67px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
float: left;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
width: 100%;
height: 100%;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
position: absolute;
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
width: 100%;
height: 100%;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button {
position: absolute;
top: 50%;
margin-top: -43px;
right: 50%;
margin-right: -45px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
float: left;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a { width: 100%;
height: 100%;
text-align: center;
padding: 13px 0px;
margin: 0px;
background: none;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 9px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a.added:after {
display: none;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a.wc-forward {
position: absolute;
top: 55px;
left: 50%;
margin-left: -53px;
width: 106px;
height: 30px;
padding: 3px 0;
background: #fff;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #666666;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a.wc-forward:after {
border-bottom: 4px solid #fff;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
bottom: 100%;
content: "";
display: block;
left: 50%;
margin-left: -4px;
position: absolute;
z-index: 9999;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail {
position: absolute;
bottom: -45px;
visibility: hidden;
opacity: 0;
left: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
text-align: center;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail a {
display: inline-block;
background-color: #e5ae49;
border-radius: 20px;
color: #ffffff;
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 24px;
padding: 7px 26px;
text-transform: uppercase;
letter-spacing: 2px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info {
position: relative;
background: rgba(229, 174, 73, 0);
padding: 36px 0 30px;
text-align: center;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title {
margin: 0px;
padding: 0px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title a {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
text-transform: uppercase;
letter-spacing: 1px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating {
height: 15px;
display: inline-block;
margin: 12px 0 0;
font-size: 14px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating:before {
color: #b5b5b5;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating span:before {
color: #f5d608;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #e5ae49;
margin: 5px 0 0;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del {
display: inline-block;
color: #b5b5b5;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #b5b5b5;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins {
display: inline-block;
text-decoration: none;
margin-left: 8px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #e5ae49;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_des {
display: none;
}
.related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list {
display: none;
}
.related ul.products li.tzShop-item .tzShop-item_inner .line-left:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
left: 1px;
position: absolute;
top: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
}
.related ul.products li.tzShop-item .tzShop-item_inner .line-left:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 100%;
left: 0;
position: absolute;
bottom: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
}
.related ul.products li.tzShop-item .tzShop-item_inner .line-right:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
right: 1px;
position: absolute;
bottom: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
}
.related ul.products li.tzShop-item .tzShop-item_inner .line-right:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 100%;
right: 0;
position: absolute;
top: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
}
.related ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_image .tzShop-item_overlay {
background: rgba(229, 174, 73, 0.1);
}
.related ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_image .tzShop-item_detail {
bottom: 0;
visibility: visible;
opacity: 1;
}
.related ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_info {
background: rgba(229, 174, 73, 0.1);
}
.related ul.products li.tzShop-item .tzShop-item_inner:hover .line-left:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
left: 5px;
}
.related ul.products li.tzShop-item .tzShop-item_inner:hover .line-left:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
bottom: 5px;
width: 5px;
}
.related ul.products li.tzShop-item .tzShop-item_inner:hover .line-right:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
right: 5px;
}
.related ul.products li.tzShop-item .tzShop-item_inner:hover .line-right:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
top: 5px;
width: 5px;
}
.related ul.products li.tzShop-item .tzShop-item_inner:hover:hover .yith-wcwl-add-to-wishlist {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
}
.related ul.products li.tzShop-item .tzShop-item_inner:hover:hover .tzShop-item_button {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
} .upsells h2 {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 400;
color: #222222;
line-height: 25px;
text-transform: uppercase;
margin-bottom: 15px;
letter-spacing: 0.5px;
}
.upsells ul.products {
margin: 0px -15px;
}
.upsells ul.products li.tzShop-item {
margin: 0px;
padding: 15px;
width: 25%;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner {
position: relative;
overflow: hidden;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image {
position: relative;
overflow: hidden;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image img {
position: relative;
max-width: none;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(229, 174, 73, 0);
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzOut-of-stock {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 18px 10px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzFeatured_product {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
left: 20px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductSale {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductfree {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductNew {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist {
position: absolute;
top: 50%;
margin-top: -21px;
left: 50%;
margin-left: -67px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
float: left;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
width: 100%;
height: 100%;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
position: absolute;
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
width: 100%;
height: 100%;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button {
position: absolute;
top: 50%;
margin-top: -43px;
right: 50%;
margin-right: -45px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
float: left;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a { width: 100%;
height: 100%;
text-align: center;
padding: 13px 0px;
margin: 0px;
background: none;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a i {
font-size: 14px;
color: #ffffff;
margin: 0px;
padding: 0px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 9px 0;
background: #e5ae49;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #ffffff;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #e5ae49;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a.added:after {
display: none;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a.wc-forward {
position: absolute;
top: 55px;
left: 50%;
margin-left: -53px;
width: 106px;
height: 30px;
padding: 3px 0;
background: #fff;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #666666;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a.wc-forward:after {
border-bottom: 4px solid #fff;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
bottom: 100%;
content: "";
display: block;
left: 50%;
margin-left: -4px;
position: absolute;
z-index: 9999;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail {
position: absolute;
bottom: -45px;
visibility: hidden;
opacity: 0;
left: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
text-align: center;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail a {
display: inline-block;
background-color: #e5ae49;
border-radius: 20px;
color: #ffffff;
font-family: "Montserrat", sans-serif;
font-size: 13px;
font-weight: 400;
line-height: 24px;
padding: 7px 26px;
text-transform: uppercase;
letter-spacing: 2px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info {
position: relative;
background: rgba(229, 174, 73, 0);
padding: 36px 0 30px;
text-align: center;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title {
margin: 0px;
padding: 0px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title a {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-weight: 400;
color: #222222;
line-height: 24px;
text-transform: uppercase;
letter-spacing: 1px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating {
height: 15px;
display: inline-block;
margin: 12px 0 0;
font-size: 14px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating:before {
color: #b5b5b5;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating span:before {
color: #f5d608;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #e5ae49;
margin: 5px 0 0;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del {
display: inline-block;
color: #b5b5b5;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #b5b5b5;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins {
display: inline-block;
text-decoration: none;
margin-left: 8px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-weight: 400;
color: #e5ae49;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_des {
display: none;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list {
display: none;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .line-left:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
left: 1px;
position: absolute;
top: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .line-left:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 100%;
left: 0;
position: absolute;
bottom: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .line-right:before {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 1px;
right: 1px;
position: absolute;
bottom: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 100%;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner .line-right:after {
background: rgba(229, 174, 73, 0.2) none repeat scroll 0 0;
content: "";
height: 100%;
right: 0;
position: absolute;
top: 1px;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
width: 1px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_image .tzShop-item_overlay {
background: rgba(229, 174, 73, 0.1);
}
.upsells ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_image .tzShop-item_detail {
bottom: 0;
visibility: visible;
opacity: 1;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_info {
background: rgba(229, 174, 73, 0.1);
}
.upsells ul.products li.tzShop-item .tzShop-item_inner:hover .line-left:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
left: 5px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner:hover .line-left:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
bottom: 5px;
width: 5px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner:hover .line-right:before {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
height: 5px;
right: 5px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner:hover .line-right:after {
background: rgba(229, 174, 73, 0.5) none repeat scroll 0 0;
top: 5px;
width: 5px;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner:hover .yith-wcwl-add-to-wishlist {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
}
.upsells ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_button {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
} .woocommerce .woocommerce-message {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
color: #666666;
}
.woocommerce ul.woocommerce-error li {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
color: #666666;
}
.woocommerce p.return-to-shop a.button {
background: #222222 none repeat scroll 0 0;
border: medium none;
border-radius: 25px;
color: #ffffff !important;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
padding: 10px 30px;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce p.return-to-shop a.button:hover {
background: #e5ae49;
}
.woocommerce form table.shop_table {
border: none;
margin-bottom: 78px;
}
.woocommerce form table.shop_table thead tr th {
font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-weight: 400;
color: #212121;
line-height: 24px;
text-transform: uppercase;
text-align: center;
padding: 14px 20px;
}
.woocommerce form table.shop_table thead tr th.product-name {
text-align: left;
}
.woocommerce form table.shop_table tbody tr.cart_item td {
text-align: center;
padding: 20px;
}
.woocommerce form table.shop_table tbody tr.cart_item td a {
font-size: 15px;
color: #222222 !important;
font-weight: 400;
font-family: 'Montserrat', sans-serif;
line-height: 24px;
text-decoration: none;
}
.woocommerce form table.shop_table tbody tr.cart_item td a.remove {
display: inline-block;
}
.woocommerce form table.shop_table tbody tr.cart_item td a img {
width: 80px;
height: auto;
}
.woocommerce form table.shop_table tbody tr.cart_item td span.amount {
font-size: 15px;
color: #222222 !important;
font-weight: 400;
font-family: 'Montserrat', sans-serif;
line-height: 24px;
}
.woocommerce form table.shop_table tbody tr.cart_item td.product-remove {
padding: 20px 0px;
}
.woocommerce form table.shop_table tbody tr.cart_item td.product-remove a {
width: 22px;
height: 22px;
}
.woocommerce form table.shop_table tbody tr.cart_item td.product-remove a:hover {
background: #e5ae49;
color: #fff !important;
}
.woocommerce form table.shop_table tbody tr.cart_item td.product-thumbnail {
width: 80px;
padding: 20px 0px;
}
.woocommerce form table.shop_table tbody tr.cart_item td.product-name {
text-align: left;
}
.woocommerce form table.shop_table tbody tr.cart_item td.product-subtotal span.amount {
color: #e5ae49 !important;
}
.woocommerce form table.shop_table tbody tr.cart_item td.product-quantity .quantity input {
font-size: 14px;
color: #666666 !important;
font-weight: 300;
font-family: 'Ubuntu', sans-serif;
line-height: 24px;
padding: 9px 15px;
border: 1px solid #e0e0e0;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
width: 90px;
}
.woocommerce form table.shop_table tbody tr td.actions {
padding: 30px 0;
}
.woocommerce form table.shop_table tbody tr td.actions input {
background: #222222;
font-size: 14px;
color: #FFFFFF;
font-weight: 300;
font-family: 'Ubuntu', sans-serif;
line-height: 24px;
padding: 10px 30px;
border: none;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
width: auto;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce form table.shop_table tbody tr td.actions input:hover {
background: #e5ae49;
}
.woocommerce form table.shop_table tbody tr td.actions .coupon input {
font-size: 14px;
color: #666666 !important;
font-weight: 300;
font-family: 'Ubuntu', sans-serif;
line-height: 24px !important;
padding: 10px 15px !important;
border: 1px solid #e0e0e0 !important;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
width: 270px;
background: none;
}
.woocommerce form table.shop_table tbody tr td.actions .coupon input.input-text {
margin: 0 10px 0 0;
}
.woocommerce form table.shop_table tbody tr td.actions .coupon input.button {
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
background: #222222;
color: #ffffff !important;
border: none !important;
padding: 10px 30px !important;
width: auto;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce form table.shop_table tbody tr td.actions .coupon input.button:hover {
background: #e5ae49;
}
.woocommerce .cart-collaterals .cross-sells {
margin-bottom: 78px;
padding: 0px;
float: none;
width: 100%;
}
.woocommerce .cart-collaterals .cross-sells h2 {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 700;
color: #222222;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 15px;
}
.woocommerce .cart-collaterals .cross-sells ul.products {
margin: 0px -15px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item {
margin: 0px;
padding: 15px;
width: 25%;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image {
position: relative;
overflow: hidden;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image img {
position: relative;
max-width: none;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_overlay {
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0);
position: absolute;
top: 0;
left: 0;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzOut-of-stock {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 18px 10px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzFeatured_product {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
left: 20px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductSale {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductfree {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductNew {
display: inline-block;
width: 68px;
height: 68px;
background: none repeat scroll 0 0 #454545;
border-radius: 50%;
text-align: center;
padding: 26px 5px;
font-family: "Montserrat", sans-serif;
font-size: 10px;
font-weight: 400;
color: #ffffff;
text-transform: uppercase;
line-height: 16px;
position: absolute;
top: 20px;
right: 20px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist {
position: absolute;
top: 50%;
margin-top: -20px;
left: 50%;
margin-left: -45px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
float: left;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
width: 100%;
height: 100%;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a i {
font-size: 14px;
color: #000;
margin: 0px;
padding: 0px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #fff;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #666666;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #fff;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
width: 100%;
height: 100%;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 9px 0px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a i {
font-size: 14px;
color: #000;
margin: 0px;
padding: 0px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 3px 0;
background: #fff;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #666666;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #fff;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button {
position: absolute;
top: 50%;
margin-top: -20px;
right: 50%;
margin-right: -45px;
width: 40px;
height: 40px;
padding: 0px;
background: #e5ae49;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
border-radius: 50%;
float: left;
-webkit-transform: scale(1.5);
-moz-transform: scale(1.5);
-ms-transform: scale(1.5);
-o-transform: scale(1.5);
transform: scale(1.5);
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.3s ease-in-out 0.3s;
-moz-transition: all 0.3s ease-in-out 0.3s;
-ms-transition: all 0.3s ease-in-out 0.3s;
-o-transition: all 0.3s ease-in-out 0.3s;
transition: all 0.3s ease-in-out 0.3s;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a {
display: inline-block;
width: 100%;
height: 100%;
text-align: center;
padding: 13px 0px;
margin: 0px;
background: none;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a i {
font-size: 14px;
color: #000;
margin: 0px;
padding: 0px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a span {
position: absolute;
top: -60px;
left: 50%;
margin-left: -53px;
width: 106px;
padding: 9px 0;
background: #fff;
font-family: 'Ubuntu', sans-serif;
font-weight: 400;
font-size: 12px;
color: #666666;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
opacity: 0;
visibility: hidden;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a span:after {
content: '';
display: block;
border-left: 4px solid rgba(0, 0, 0, 0);
border-right: 4px solid rgba(0, 0, 0, 0);
border-top: 4px solid #fff;
left: 50%;
margin-left: -4px;
position: absolute;
top: 100%;
z-index: 9999;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button a:hover span {
top: -44px;
opacity: 1;
visibility: visible;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_overlay {
background: rgba(0, 0, 0, 0.5);
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner:hover .yith-wcwl-add-to-wishlist {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner:hover .tzShop-item_button {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
opacity: 1;
visibility: visible;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info {
padding: 18px 0 13px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title {
margin: 0px;
padding: 0px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title a {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 700;
color: #222222;
line-height: 24px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating {
margin: 12px 0 0;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating:before {
color: #b5b5b5;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .star-rating span:before {
color: #e5ae49;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 700;
color: #e5ae49;
margin: 10px 0 0;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del {
display: inline-block;
color: #b5b5b5;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price del span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 400;
color: #b5b5b5;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins {
display: inline-block;
text-decoration: none;
margin-left: 8px;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .price ins span.amount {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 700;
color: #e5ae49;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_des {
display: none;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list {
display: none;
}
.woocommerce .cart-collaterals form.woocommerce-shipping-calculator p {
margin-bottom: 30px;
}
.woocommerce .cart-collaterals form.woocommerce-shipping-calculator p a {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 400;
color: #222222;
line-height: 24px;
margin-bottom: 15px;
text-decoration: none;
}
.woocommerce .cart-collaterals form.woocommerce-shipping-calculator .shipping-calculator-form {
border: 1px solid #dadada;
padding: 59px 49px;
}
.woocommerce .cart-collaterals form.woocommerce-shipping-calculator .shipping-calculator-form p {
margin: 0px;
padding: 0px;
}
.woocommerce .cart-collaterals form.woocommerce-shipping-calculator .shipping-calculator-form p select {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
line-height: 24px;
padding: 12px 12px;
margin-bottom: 20px;
border: 1px solid #dadada;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
}
.woocommerce .cart-collaterals form.woocommerce-shipping-calculator .shipping-calculator-form p input {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
color: #666666;
line-height: 24px;
padding: 10px 15px;
margin-bottom: 20px;
border: 1px solid #dadada;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
}
.woocommerce .cart-collaterals form.woocommerce-shipping-calculator .shipping-calculator-form p button.button {
background: #222222;
font-size: 14px;
color: #FFFFFF;
font-weight: 300;
font-family: 'Ubuntu', sans-serif;
line-height: 24px;
padding: 10px 30px;
border: none;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
width: 100%;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce .cart-collaterals form.woocommerce-shipping-calculator .shipping-calculator-form p button.button:hover {
background: #e5ae49;
}
.woocommerce .cart-collaterals .cart_totals {
width: 100%;
}
.woocommerce .cart-collaterals .cart_totals h2 {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 700;
color: #222222;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 31px;
}
.woocommerce .cart-collaterals .cart_totals table {
padding: 45px 70px 0px;
background: #ededed;
margin: 0px;
width: 100%;
}
.woocommerce .cart-collaterals .cart_totals table tbody tr th {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 400;
color: #222222;
line-height: 24px;
border: none;
padding: 13px 0px;
}
.woocommerce .cart-collaterals .cart_totals table tbody tr td {
border: none;
line-height: 24px;
padding: 13px 0px;
}
.woocommerce .cart-collaterals .cart_totals table tbody tr td span {
font-family: 'Montserrat', sans-serif;
font-size: 15px;
font-weight: 400;
color: #222222;
line-height: 24px;
}
.woocommerce .cart-collaterals .cart_totals table tbody tr.order-total td span {
color: #e5ae49;
}
.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
background: #ededed;
margin: 0px;
padding: 19px 70px 50px;
}
.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout a {
background: #222222;
font-size: 14px;
color: #FFFFFF;
font-weight: 300;
font-family: 'Ubuntu', sans-serif;
line-height: 24px;
padding: 10px 30px;
border: none;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
width: auto;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
display: inline-block;
}
.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout a:hover {
background: #e5ae49;
} form#yith-wcwl-form .wishlist-title h2 {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 700;
color: #222222;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 15px;
}
form#yith-wcwl-form table.wishlist_table {
margin-bottom: 0px;
}
form#yith-wcwl-form table.wishlist_table thead tr th {
border: none;
}
form#yith-wcwl-form table.wishlist_table tbody tr td {
text-align: center;
padding: 20px;
}
form#yith-wcwl-form table.wishlist_table tbody tr td a {
font-size: 15px;
color: #222222 !important;
font-weight: 400;
font-family: 'Montserrat', sans-serif;
line-height: 24px;
text-decoration: none;
}
form#yith-wcwl-form table.wishlist_table tbody tr td a.remove {
display: inline-block;
}
form#yith-wcwl-form table.wishlist_table tbody tr td a img {
width: 80px;
height: auto;
}
form#yith-wcwl-form table.wishlist_table tbody tr td span.amount {
font-size: 15px;
color: #222222 !important;
font-weight: 400;
font-family: 'Montserrat', sans-serif;
line-height: 24px;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-remove {
padding: 20px 0px;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-remove a {
width: 22px;
height: 22px;
}
.woocommerce form .form-row .input-checkbox{
margin: 8px 8px 0 0;
}
.woocommerce-terms-and-conditions-checkbox-text{
margin-left: 20px;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-remove a:hover {
background: #e5ae49;
color: #fff !important;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-thumbnail {
width: 80px;
padding: 20px 0px;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-name {
text-align: left;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-price ins {
text-decoration: none;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-stock-status span {
font-size: 15px;
font-weight: 400;
font-family: 'Montserrat', sans-serif;
line-height: 24px;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-add-to-cart a {
background: #222222;
font-size: 14px;
color: #FFFFFF !important;
font-weight: 300;
font-family: 'Ubuntu', sans-serif;
line-height: 24px;
padding: 10px 30px;
border: none;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
width: 100%;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-add-to-cart a:hover {
background: #e5ae49;
}
form#yith-wcwl-form table.wishlist_table tfoot tr td {
padding: 0px;
}
form#yith-wcwl-form table.wishlist_table tfoot tr td .yith-wcwl-share {
margin: 20px 0 0;
}
form#yith-wcwl-form table.wishlist_table tfoot tr td .yith-wcwl-share h4.yith-wcwl-share-title {
display: inline-block;
float: left;
margin: 0 10px 0 0;
}
form#yith-wcwl-form table.wishlist_table tfoot tr td .yith-wcwl-share ul li {
margin: 0px 5px;
} .woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul {
margin: 0;
padding: 0;
background: #ffffff;
border-width: 1px 1px 1px 1px;
border-style: solid;
border-color: rgba(229, 174, 73, 0.2);
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li {
list-style: none;
border-bottom: 1px solid rgba(229, 174, 73, 0.2);
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li:last-child {
border: none;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
color: #120d14;
margin: 0;
padding: 10px 30px;
display: block;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active {
background: #e5ae49;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active a {
color: #ffffff;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li:hover {
background: #e5ae49;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li:hover a {
color: #ffffff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
margin: 0;
padding: 30px;
background: #ffffff;
border-width: 1px 1px 1px 1px;
border-style: solid;
border-color: rgba(229, 174, 73, 0.2);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Message .woocommerce-Button {
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
color: #ffffff;
background: #120d14;
padding: 10px 20px;
margin: 0;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses {
margin: 30px 0 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title a {
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
color: #ffffff;
background: #120d14;
padding: 6px 20px 5px;
margin: -3px 0 0;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address-title a:hover {
background: #e5ae49;
}
.woocommerce-account .woocommerce p.myaccount_user {
margin-bottom: 66px;
}
.woocommerce-account .woocommerce p.myaccount_user strong {
color: #e5ae49;
}
.woocommerce-account .woocommerce p.myaccount_user a {
color: #666666;
}
.woocommerce-account .woocommerce p.myaccount_user a:hover {
color: #e5ae49;
text-decoration: none;
}
.woocommerce-account .woocommerce h2 {
font-weight: 700;
text-transform: uppercase;
}
.woocommerce-account .woocommerce .addresses {
margin-top: 55px;
}
.woocommerce-account .woocommerce .addresses .address {
border: 1px solid #dadada;
padding: 55px 49px 32px;
}
.woocommerce-account .woocommerce .addresses .address header.title h3 {
font-weight: 700;
text-transform: uppercase;
}
.woocommerce-account .woocommerce .addresses .address header.title a {
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
background: #222222;
color: #ffffff;
font-size: 14px;
font-weight: 300;
font-family: 'Ubuntu', sans-serif;
line-height: 24px;
border: none;
padding: 10px 30px;
width: auto;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce-account .woocommerce .addresses .address header.title a:hover {
background: #e5ae49;
text-decoration: none;
}
.woocommerce-account .woocommerce form h3 {
font-weight: 700;
text-transform: uppercase;
}
.woocommerce-account .woocommerce form p label {
color: #222222;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 24px;
padding: 13px 0;
}
.woocommerce-account .woocommerce form p label .required {
font-weight: 400;
color: #222222;
}
.woocommerce-account .woocommerce form p input {
border: 1px solid #dadada;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px !important;
margin-bottom: 20px;
padding: 10px 15px;
}
.woocommerce-account .woocommerce form p input.button {
background: #222222;
color: #FFFFFF;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
border: none;
padding: 10px 30px;
margin-bottom: 0px;
margin-top: 11px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce-account .woocommerce form p input.button:hover {
background: #e5ae49;
}
.woocommerce-account .woocommerce form p .country_select a {
border: 1px solid #dadada;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px !important;
margin-bottom: 20px;
padding: 10px 15px;
}
.woocommerce-account .woocommerce form p#billing_address_1_field {
margin-bottom: 15px;
} .woocommerce-checkout .woocommerce .woocommerce-info {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
color: #666666;
border-color: #e5ae49;
}
.woocommerce-checkout .woocommerce .woocommerce-info:before {
color: #e5ae49;
}
.woocommerce-checkout .woocommerce .woocommerce-info a {
color: #e5ae49;
}
.woocommerce-checkout .woocommerce ul.woocommerce-error li {
font-family: 'Ubuntu', sans-serif;
font-size: 14px;
line-height: 24px;
color: #666666;
font-weight: 300;
}
.woocommerce-checkout .woocommerce form.checkout_coupon {
border: 1px solid #dadada;
padding: 59px 49px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.woocommerce-checkout .woocommerce form.checkout_coupon p input.input-text {
border: 1px solid #dadada;
border-radius: 2px;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
padding: 10px 15px;
}
.woocommerce-checkout .woocommerce form.checkout_coupon p input.button {
background: #222222 none repeat scroll 0 0;
border: medium none;
border-radius: 25px;
color: #ffffff;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px;
padding: 10px 30px;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce-checkout .woocommerce form.checkout_coupon p input.button:hover {
background: #e5ae49;
}
.woocommerce-checkout .woocommerce form.checkout {
margin-top: 75px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set {
margin-bottom: 45px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields h3 {
font-weight: 700;
text-transform: uppercase;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields p label {
color: #222222;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 24px;
padding: 13px 0;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields p label .required {
font-weight: 400;
color: #222222;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields p input {
border: 1px solid #dadada;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px !important;
margin-bottom: 20px;
padding: 10px 15px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields p input.button {
background: #222222;
color: #FFFFFF;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
border: none;
padding: 10px 30px;
margin-bottom: 0px;
margin-top: 11px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields p input.button:hover {
background: #e5ae49;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields p .country_select a {
border: 1px solid #dadada;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px !important;
margin-bottom: 20px;
padding: 10px 15px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields p#billing_address_1_field {
margin-bottom: 15px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields h3 label {
font-weight: 700;
text-transform: uppercase;
padding: 0px 25px 0px 0px;
margin: 0;
float: left;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address {
margin-bottom: 10px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address p label {
color: #222222;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 24px;
padding: 13px 0;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address p label .required {
font-weight: 400;
color: #222222;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address p input {
border: 1px solid #dadada;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px !important;
margin-bottom: 20px;
padding: 10px 15px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address p input.button {
background: #222222;
color: #FFFFFF;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
border: none;
padding: 10px 30px;
margin-bottom: 0px;
margin-top: 11px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address p input.button:hover {
background: #e5ae49;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address p .country_select a {
border: 1px solid #dadada;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px !important;
margin-bottom: 20px;
padding: 10px 15px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address p#billing_address_1_field {
margin-bottom: 15px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields p label {
color: #222222;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 24px;
padding: 13px 0;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields p label .required {
font-weight: 400;
color: #222222;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields p textarea {
border: 1px solid #dadada;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
-ms-border-radius: 2px;
-o-border-radius: 2px;
border-radius: 2px;
color: #666666;
font-family: "Ubuntu", sans-serif;
font-size: 14px;
font-weight: 300;
line-height: 24px !important;
margin-bottom: 20px;
padding: 10px 15px;
}
.woocommerce-checkout .woocommerce form.checkout h3#order_review_heading {
font-weight: 700;
text-transform: uppercase;
}
.woocommerce-checkout .woocommerce form.checkout #order_review table.woocommerce-checkout-review-order-table {
margin-bottom: 53px;
}
.woocommerce-checkout .woocommerce form.checkout #order_review table.woocommerce-checkout-review-order-table thead tr th {
padding: 14px 0px;
text-align: left;
}
.woocommerce-checkout .woocommerce form.checkout #order_review table.woocommerce-checkout-review-order-table tbody tr td {
color: #222222;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 24px;
padding: 20px 0px;
text-align: left;
}
.woocommerce-checkout .woocommerce form.checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr th {
color: #222222;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 24px;
padding: 20px 0px;
text-align: left;
text-transform: uppercase;
}
.woocommerce-checkout .woocommerce form.checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr td {
padding: 0px;
}
.woocommerce-checkout .woocommerce form.checkout #order_review table.woocommerce-checkout-review-order-table tfoot tr td span.amount {
color: #222222;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 24px;
padding: 20px 0px;
text-align: left;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment {
background: #ededed none repeat scroll 0 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment ul.payment_methods {
padding: 45px 70px 0;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment ul.payment_methods li label {
color: #222222;
font-family: "Montserrat", sans-serif;
font-size: 15px;
font-weight: 400;
line-height: 24px;
padding: 13px 0;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment ul.payment_methods li label a {
color: #222;
text-decoration: none;
margin-left: 10px;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment ul.payment_methods li label a:hover {
color: #e5ae49;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment ul.payment_methods li .payment_box {
margin: 0px;
padding: 0px 30px;
background: none;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment ul.payment_methods li .payment_box:after {
content: none;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment ul.payment_methods li .payment_box.payment_method_paypal {
margin-bottom: 24px;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .place-order {
padding: 30px 70px 65px;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .place-order input#place_order {
float: left;
background: #222222 none repeat scroll 0 0;
border: medium none;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
-ms-border-radius: 25px;
-o-border-radius: 25px;
border-radius: 25px;
font-family: 'Ubuntu', sans-serif;
font-weight: 300;
font-size: 14;
line-height: 24px;
color: #ffffff;
margin-bottom: 0;
margin-top: 11px;
padding: 10px 30px;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .place-order input#place_order:hover {
background: #e5ae49;
} .plusgallery {
padding: 1px 0 0;
}
.plusgallery ul.tzmasonry {
padding: 1px 0;
}
.plusgallery ul.tzmasonry li.pgthumb.everline .effect-folio {
padding: 0 1px 1px 0;
}
.plusgallery ul.tzmasonry li.pgthumb.everline .effect-folio .image img {
transform: none;
}
.plusgallery ul.tzmasonry li.pgthumb.everline .effect-folio .image .folio-btn {
background: rgba(63, 63, 63, 0);
opacity: 1;
}
.plusgallery ul.tzmasonry li.pgthumb.everline .effect-folio .image .folio-btn a {
top: 43%;
}
.plusgallery ul.tzmasonry li.pgthumb.everline .effect-folio figcaption {
width: 100%;
background: none !important;
position: absolute;
top: 60%;
height: auto;
padding: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.4s ease-in-out 0s;
-moz-transition: all 0.4s ease-in-out 0s;
-ms-transition: all 0.4s ease-in-out 0s;
-o-transition: all 0.4s ease-in-out 0s;
transition: all 0.4s ease-in-out 0s;
}
.plusgallery ul.tzmasonry li.pgthumb.everline .effect-folio figcaption .ming-info h3 {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 400;
color: #ffffff;
line-height: 20px;
text-transform: uppercase;
letter-spacing: 1px;
}
.plusgallery ul.tzmasonry li.pgthumb.everline .effect-folio:hover figcaption {
top: 70%;
visibility: visible;
opacity: 1;
}
.plusgallery ul.tzmasonry li.pgthumb.everline .effect-folio:hover .image .folio-btn {
background: rgba(63, 63, 63, 0.5);
opacity: 1;
}
.plusgallery ul.tzmasonry li.pgthumb.everline .effect-folio:hover .image .folio-btn a {
opacity: 1;
transform: scale(1);
} .tp-dottedoverlay.twoxtwo {
background-image: none !important;
background-color: rgba(0, 0, 0, 0.4) !important;
}
.tp-dottedoverlay.threexthree {
background-image: url(//siplprojects.in/wp-content/themes/interiart/images/partern-doc.png);
background-color: rgba(0, 0, 0, 0.4) !important;
}
.tp-bullets .tp-bullet {
width: 40px;
height: 1px;
background: #fff;
}
.tp-bullets .tp-bullet.selected {
background: #e5ae49;
}
.tzText_line0 {
font-family: 'Ubuntu', sans-serif !important;
font-weight: 400 !important;
color: #FFFFFF !important;
}
.tzText_line1 {
font-family: 'Montserrat', sans-serif !important;
font-weight: 700 !important;
color: #FFFFFF !important;
}
.tzText_line2 {
font-family: 'Ubuntu', sans-serif !important;
font-weight: 300 !important;
color: #FFFFFF !important;
}
.tzButton_left {
background: #e5ae49 !important;
border-width: 2px !important;
border-style: solid !important;
border-color: #e5ae49 !important;
color: #ffffff !important;
font-family: 'Ubuntu', sans-serif !important;
font-weight: 700 !important;
text-transform: uppercase !important;
border-radius: 25px !important;
letter-spacing: 2px !important;
}
.tzButton_right {
background: none !important;
border-width: 2px !important;
border-style: solid !important;
border-color: #e5ae49 !important;
color: #e5ae49 !important;
font-family: 'Ubuntu', sans-serif !important;
font-weight: 700 !important;
text-transform: uppercase !important;
border-radius: 25px !important;
letter-spacing: 2px !important;
}
.woocommerce-ordering select option {
padding: 5px 10px;
} .page-404 {
padding: 75px 0 120px;
background-repeat: no-repeat;
background-size: cover;
background-position: top center;
}
.page-404 .error .bug-content h3 {
text-align: center;
margin-bottom: 10px;
}
.page-404 .error .bug-content p {
font-size: 16px;
text-align: center;
}
.page-404 .error .bug-content span {
display: block;
text-align: center;
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 250px;
line-height: 250px;
color: #bebebe;
}
.page-404 .error .bug-content a.go-back {
display: block;
text-align: center;
font-family: 'Ubuntu', sans-serif;
font-size: 16px;
color: #666;
}
.page-404 .error .bug-content a.go-back:hover {
color: #e5ae49;
text-decoration: none;
} @media (max-width: 1600px) {
body#bd.tz-header-left {
margin-left: 270px;
}
.tz-header-left .container {
width: 970px;
}
.tz-header.tz-header-type-7 {
width: 270px;
padding: 30px 21px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown h3.tzCountdowntitle {
font-size: 40px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown p.tzCountdowndes {
font-size: 16px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .countdown .tzcountdownitem span {
font-size: 50px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(43px, 0);
-moz-transform: translate(43px, 0);
-ms-transform: translate(43px, 0);
-o-transform: translate(43px, 0);
transform: translate(43px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(43px, 0);
-moz-transform: translate(43px, 0);
-ms-transform: translate(43px, 0);
-o-transform: translate(43px, 0);
transform: translate(43px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(43px, 0);
-moz-transform: translate(43px, 0);
-ms-transform: translate(43px, 0);
-o-transform: translate(43px, 0);
transform: translate(43px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(43px, 0);
-moz-transform: translate(43px, 0);
-ms-transform: translate(43px, 0);
-o-transform: translate(43px, 0);
transform: translate(43px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(43px, 0);
-moz-transform: translate(43px, 0);
-ms-transform: translate(43px, 0);
-o-transform: translate(43px, 0);
transform: translate(43px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(43px, 0);
-moz-transform: translate(43px, 0);
-ms-transform: translate(43px, 0);
-o-transform: translate(43px, 0);
transform: translate(43px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(43px, 0);
-moz-transform: translate(43px, 0);
-ms-transform: translate(43px, 0);
-o-transform: translate(43px, 0);
transform: translate(43px, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(23px, 0);
-moz-transform: translate(23px, 0);
-ms-transform: translate(23px, 0);
-o-transform: translate(23px, 0);
transform: translate(23px, 0);
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolioSlide_special_image {
max-height: 600px;
min-height: 300px;
}
.tz-header-left .tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item {
padding: 0px 100px;
}
.tz-header-left .wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li {
padding: 30px 20px 24px;
}
.tz-header-left .tzElement_Image_slide .owl-nav .owl-prev {
left: -40px;
}
.tz-header-left .tzElement_Image_slide .owl-nav .owl-next {
right: -40px;
}
}
@media (max-width: 1281px) {
body#bd.tz-header-left {
margin-left: 220px;
}
.tz-header-left .container {
width: 750px;
}
.tz-header .tz-headerBottom nav ul.tz-nav li a {
padding: 44px 15px 40px;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu {
width: 230px;
}
.tz-header .tz-headerBottom nav ul.tz-nav li ul.non_mega_menu li ul.sub-menu {
width: 230px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {
padding-left: 15px;
padding-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
margin-bottom: 10px;
margin-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > a.mega-menu-link {
padding-left: 15px;
padding-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
margin-bottom: 10px;
margin-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > a.mega-menu-link {
padding-left: 15px;
padding-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
margin-bottom: 10px;
margin-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > a.mega-menu-link {
padding-left: 15px;
padding-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
margin-bottom: 10px;
margin-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > a.mega-menu-link {
padding-left: 15px;
padding-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
margin-bottom: 10px;
margin-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > a.mega-menu-link {
padding-left: 15px;
padding-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
margin-bottom: 10px;
margin-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > a.mega-menu-link {
padding-left: 15px;
padding-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a img {
margin-bottom: 10px;
margin-right: 15px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li a span.product-title {
margin-bottom: 5px;
}
.tz-header .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu > li.mega-menu-item .product_list_widget li .star-rating {
margin-bottom: 5px;
}
.tz-header.tz-header-type-3 .tz-headerBottom nav ul.tz-nav li a {
padding: 44px 20px 40px;
}
.tz-header.tz-header-type-7 {
width: 220px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu {
width: 750px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu {
width: 750px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > ul.mega-sub-menu {
width: 750px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu {
width: 750px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu {
width: 750px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu {
width: 750px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu {
width: 750px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
width: 180px;
}
.tz-header.tz-header-type-7 .tz-header-social ul li a {
width: 42px;
}
.tzwidth50 > .vc_col-sm-3 {
width: 50% !important;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_image {
height: 400px;
}
.tzElement_Category_Grid.tzCategory_Grid_3_column .tzCategory_Grid_Item {
width: 50%;
}
.tzElement_Category_Grid.tzCategory_Grid_3_column .tzCategory_Grid_Item:nth-child(3n+1) {
clear: none;
}
.tzElement_Category_Grid.tzCategory_Grid_3_column .tzCategory_Grid_Item:nth-child(2n+1) {
clear: both;
}
.tzElement-newsletter.tzNewsletter-modern .newsletter form table tbody tr td input {
width: 100%;
}
.tzElement-newsletter.tzNewsletter-modern .newsletter form table tbody tr td input.newsletter-submit {
width: auto;
}
.tzUnder_Construction_Section .tzUnder_Construction_left {
padding: 50px;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right {
padding: 50px;
}
.tzElement_Image_slide .owl-nav .owl-prev {
left: -5px;
visibility: hidden;
opacity: 0;
}
.tzElement_Image_slide .owl-nav .owl-next {
visibility: hidden;
opacity: 0;
right: -5px;
}
.tzElement_Image_slide:hover .owl-nav .owl-prev {
visibility: visible;
opacity: 1;
}
.tzElement_Image_slide:hover .owl-nav .owl-next {
visibility: visible;
opacity: 1;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left {
padding: 15px 15px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider {
width: 90px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider {
width: 90px;
}
.tz-header-left .wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li {
padding: 15px 15px 10px;
}
.tz-header-left .wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li a {
font-size: 12px;
letter-spacing: 1px;
}
.tz-header-left .tzElement_Video_Popup {
height: 500px;
}
.tz-header-left .tzElement_Video_Popup a.tz-open-popup-video {
width: 80px;
height: 80px;
line-height: 80px;
}
.tz-header-left .tzElement_Video_Popup a.tz-open-popup-video i {
font-size: 30px;
color: #e5ae49;
line-height: 70px;
}
.tz-header-left .tzElement_Image_slide .owl-nav .owl-prev {
left: 0;
}
.tz-header-left .tzElement_Image_slide .owl-nav .owl-next {
right: 0;
}
.tz-header-left .tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li ol.children {
padding-left: 50px;
}
}
@media (min-width: 992px) and (max-width: 1281px) {
.tz-header-left .tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top {
padding-left: 20px;
}
.tz-header-left .tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_year {
font-size: 30px;
padding: 11px 20px 7px 80px;
}
.tz-header-left .tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_name {
padding: 0 20px 0 80px;
}
.tz-header-left .tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon {
left: 20px;
width: 70px;
height: 70px;
}
.tz-header-left .tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon span {
font-size: 25px;
padding: 21px 0;
}
.tz-header-left .tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_left {
width: 55px;
}
.tz-header-left .tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_right {
padding-left: 55px;
}
.tz-header-left .tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzOut-of-stock {
width: 50px;
height: 50px;
padding: 13px 10px;
font-size: 8px;
line-height: 8px;
top: 5px;
right: 5px;
}
.tz-header-left .tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzFeatured_product {
width: 50px;
height: 50px;
padding: 20px 5px;
font-size: 7px;
line-height: 10px;
top: 5px;
left: 5px;
}
.tz-header-left .tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductSale {
width: 50px;
height: 50px;
padding: 18px 5px;
font-size: 8px;
line-height: 16px;
top: 5px;
right: 5px;
}
.tz-header-left .tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail a {
font-size: 11px;
padding: 3px 18px;
letter-spacing: 1px;
}
.tz-header-left .tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist {
margin-top: -20px;
}
.tz-header-left .tzshop-wrap .product-grid ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button {
margin-top: -20px;
}
.tz-header-left .upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzOut-of-stock {
width: 50px;
height: 50px;
padding: 13px 10px;
font-size: 8px;
line-height: 8px;
top: 5px;
right: 5px;
}
.tz-header-left .upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzFeatured_product {
width: 50px;
height: 50px;
padding: 20px 5px;
font-size: 7px;
line-height: 10px;
top: 5px;
left: 5px;
}
.tz-header-left .upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductSale {
width: 50px;
height: 50px;
padding: 18px 5px;
font-size: 8px;
line-height: 16px;
top: 5px;
right: 5px;
}
.tz-header-left .upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail a {
font-size: 11px;
padding: 3px 18px;
letter-spacing: 1px;
}
.tz-header-left .upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist {
margin-top: -20px;
}
.tz-header-left .upsells ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button {
margin-top: -20px;
}
.tz-header-left .related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzOut-of-stock {
width: 50px;
height: 50px;
padding: 13px 10px;
font-size: 8px;
line-height: 8px;
top: 5px;
right: 5px;
}
.tz-header-left .related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzFeatured_product {
width: 50px;
height: 50px;
padding: 20px 5px;
font-size: 7px;
line-height: 10px;
top: 5px;
left: 5px;
}
.tz-header-left .related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzProductSale {
width: 50px;
height: 50px;
padding: 18px 5px;
font-size: 8px;
line-height: 16px;
top: 5px;
right: 5px;
}
.tz-header-left .related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_detail a {
font-size: 11px;
padding: 3px 18px;
letter-spacing: 1px;
}
.tz-header-left .related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .yith-wcwl-add-to-wishlist {
margin-top: -20px;
}
.tz-header-left .related ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image .tzShop-item_button {
margin-top: -20px;
}
.tz-header-left .vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
width: 135px;
height: 145px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide{
width: 335px !important;
}
}
@media (max-width: 992px) {
body#bd.tz-header-left {
margin-left: 0;
}
.tz-header-left .container {
width: 100%;
}
.container {
width: 100%;
}
.tzwidth100 .vc_col-sm-6 {
width: 100% !important;
}
.tzwidth100 .vc_col-sm-4 {
width: 100% !important;
}
div .hades.tparrows {
height: 50px;
width: 50px;
background: #000;
}
div .hades.tparrows:before {
line-height: 50px;
font-family: FontAwesome;
font-size: 20px;
}
div .hades .tp-arr-allwrapper {
display: none;
}
.tz-header .tz-headerTop .tz-headerLeft {
float: none !important;
text-align: center;
}
.tz-header .tz-headerTop .tz-headerLeft .tzheader_support {
display: inline-block;
}
.tz-header .tz-headerTop .tz-headerRight {
float: none !important;
display: block;
text-align: center;
}
.tz-header .tz-headerTop .tz-headerRight ul.tzheader_social {
display: inline-block;
}
.tz-header .tz-headerTop .tz-headerRight ul.tzheader_social li:first-child {
padding-left: 0;
}
.tz-header .tz-headerBottom .tz-header-cart {
display: none;
}
.tz-header .tz-headerBottom .tz-header-search {
display: none;
}
.tz-header .tz-headerBottom .navbar-toggle {
display: block;
color: #bebebe;
font-size: 17px;
font-weight: 300;
padding: 41px 12px 37px 0;
margin: 0px;
}
.tz-header .tz-headerBottom nav {
position: absolute;
top: 100%;
right: 0;
z-index: 999999;
width: 100%;
padding: 0 15px;
}
.tz-header .tz-headerBottom nav .navbar-collapse.collapse {
display: none !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.tz-header .tz-headerBottom nav .navbar-collapse.collapse.in {
display: block!important;
}
.tz-header .tz-headerBottom nav ul.navbar-nav {
width: 100%;
background: #ffffff;
border-top: 3px solid #222222;
padding: 0;
margin: 0;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.tz-header .tz-headerBottom nav ul.navbar-nav > li {
float: none;
z-index: 999999;
}
.tz-header .tz-headerBottom nav ul.navbar-nav > li.menu-item-has-children:after {
color: #454545;
content: "\f105";
font-family: FontAwesome;
font-size: 14px;
position: absolute;
right: 20px;
top: 12px;
}
.tz-header .tz-headerBottom nav ul.navbar-nav > li.menu-item-has-children:hover:after {
color: #454545;
content: "\f107";
font-family: FontAwesome;
font-size: 14px;
position: absolute;
right: 20px;
top: 12px;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li a {
padding: 15px;
border-bottom: 1px solid #ededed;
background: #ffffff;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li a:hover {
background-color: #dfdfdf;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li ul.non_mega_menu {
position: relative;
top: 0;
background: none;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
visibility: hidden;
opacity: 1;
width: 100%;
height: 0;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li ul.non_mega_menu li {
border: none;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li ul.non_mega_menu li a {
padding: 15px;
border-bottom: 1px solid #ededed;
background: #ffffff;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li ul.non_mega_menu li a:hover {
background-color: #eee;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li .themeple_custom_menu_mega_menu {
position: relative;
top: 0;
background: none;
border: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
visibility: hidden;
opacity: 1;
height: 0;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li .themeple_custom_menu_mega_menu.themeple_mega2 {
width: 100% !important;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li .themeple_custom_menu_mega_menu.themeple_mega3 {
width: 100% !important;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li .themeple_custom_menu_mega_menu.themeple_mega4 {
width: 100% !important;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li .themeple_custom_menu_mega_menu.themeple_mega5 {
width: 100% !important;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li .themeple_custom_menu_mega_menu ul.sub-menu {
padding: 0px;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li .themeple_custom_menu_mega_menu ul.sub-menu li {
padding: 0px;
float: none;
width: 100% !important;
border: none;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li .themeple_custom_menu_mega_menu ul.sub-menu li a {
padding: 15px;
background: #ffffff;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li .themeple_custom_menu_mega_menu ul.sub-menu li a:hover {
background-color: #eee;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li:hover > a {
background-color: #dfdfdf;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li:hover ul.non_mega_menu {
top: 0;
visibility: visible;
opacity: 1;
height: auto;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom nav ul.navbar-nav li:hover .themeple_custom_menu_mega_menu {
top: 0;
visibility: visible;
opacity: 1;
height: auto;
-webkit-transition: all 0.3s ease-in-out 0s;
-moz-transition: all 0.3s ease-in-out 0s;
-ms-transition: all 0.3s ease-in-out 0s;
-o-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s;
}
.tz-header .tz-headerBottom.tz-max-mega-menu .navbar-toggle {
display: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle {
background: none;
position: absolute;
top: -70px;
right: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle:after {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle:hover:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary {
border-top: 3px solid #222222;
background: #ffffff;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-item-has-children {
position: relative;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-item-has-children:before {
content: "\f0d7";
font-family: FontAwesome;
color: #000;
font-size: 12px;
position: absolute;
top: 10px;
right: 10px;
display: block;
z-index: 999;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li a {
color: #222;
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-flyout ul.mega-sub-menu {
width: 100%;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li ul.mega-sub-menu {
display: block !important;
visibility: hidden;
opacity: 1;
top: 100%;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
height: 0;
-webkit-transition: all 0s ease-in-out 0s;
-moz-transition: all 0s ease-in-out 0s;
-ms-transition: all 0s ease-in-out 0s;
-o-transition: all 0s ease-in-out 0s;
transition: all 0s ease-in-out 0s;
overflow: hidden;
width: 100% !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li ul.mega-sub-menu li a {
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-toggle-on ul.mega-sub-menu {
visibility: visible !important;
height: auto !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-megamenu ul.mega-sub-menu {
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-megamenu ul.mega-sub-menu li {
width: 100% !important;
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-megamenu ul.mega-sub-menu li h4 {
padding: 10px 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a {
display: block;
padding: 0 15px;
border: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a img {
margin: 0 20px 20px 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li.mega-menu-megamenu ul.mega-sub-menu li.widget_nav_menu ul li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary ul#mega-menu-primary li:hover > ul.mega-sub-menu {
height: 0;
visibility: hidden;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle {
background: none;
position: absolute;
top: -70px;
right: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle:after {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle.mega-menu-open:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle:hover:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 {
border-top: 3px solid #222222;
background: #ffffff;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-item-has-children {
position: relative;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-item-has-children:before {
content: "\f0d7";
font-family: FontAwesome;
color: #000;
font-size: 12px;
position: absolute;
top: 10px;
right: 10px;
display: block;
z-index: 999;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li a {
color: #222;
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-flyout ul.mega-sub-menu {
width: 100%;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li ul.mega-sub-menu {
display: block !important;
visibility: hidden;
opacity: 1;
top: 100%;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
height: 0;
-webkit-transition: all 0s ease-in-out 0s;
-moz-transition: all 0s ease-in-out 0s;
-ms-transition: all 0s ease-in-out 0s;
-o-transition: all 0s ease-in-out 0s;
transition: all 0s ease-in-out 0s;
overflow: hidden;
width: 100% !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li ul.mega-sub-menu li a {
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-toggle-on ul.mega-sub-menu {
visibility: visible !important;
height: auto !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-megamenu ul.mega-sub-menu {
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-megamenu ul.mega-sub-menu li {
width: 100% !important;
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-megamenu ul.mega-sub-menu li h4 {
padding: 10px 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a {
display: block;
padding: 0 15px;
border: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a img {
margin: 0 20px 20px 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li.mega-menu-megamenu ul.mega-sub-menu li.widget_nav_menu ul li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 ul#mega-menu-primary-custom-1 li:hover > ul.mega-sub-menu {
height: 0;
visibility: hidden;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle {
background: none;
position: absolute;
top: -70px;
right: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle:after {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle.mega-menu-open:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle:hover:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 {
border-top: 3px solid #222222;
background: #ffffff;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-item-has-children {
position: relative;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-item-has-children:before {
content: "\f0d7";
font-family: FontAwesome;
color: #000;
font-size: 12px;
position: absolute;
top: 10px;
right: 10px;
display: block;
z-index: 999;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li a {
color: #222;
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-flyout ul.mega-sub-menu {
width: 100%;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li ul.mega-sub-menu {
display: block !important;
visibility: hidden;
opacity: 1;
top: 100%;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
height: 0;
-webkit-transition: all 0s ease-in-out 0s;
-moz-transition: all 0s ease-in-out 0s;
-ms-transition: all 0s ease-in-out 0s;
-o-transition: all 0s ease-in-out 0s;
transition: all 0s ease-in-out 0s;
overflow: hidden;
width: 100% !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li ul.mega-sub-menu li a {
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-toggle-on ul.mega-sub-menu {
visibility: visible !important;
height: auto !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-megamenu ul.mega-sub-menu {
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-megamenu ul.mega-sub-menu li {
width: 100% !important;
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-megamenu ul.mega-sub-menu li h4 {
padding: 10px 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a {
display: block;
padding: 0 15px;
border: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a img {
margin: 0 20px 20px 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li.mega-menu-megamenu ul.mega-sub-menu li.widget_nav_menu ul li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 ul#mega-menu-primary-custom-2 li:hover > ul.mega-sub-menu {
height: 0;
visibility: hidden;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle {
background: none;
position: absolute;
top: -70px;
right: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle:after {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle.mega-menu-open:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle:hover:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 {
border-top: 3px solid #222222;
background: #ffffff;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-item-has-children {
position: relative;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-item-has-children:before {
content: "\f0d7";
font-family: FontAwesome;
color: #000;
font-size: 12px;
position: absolute;
top: 10px;
right: 10px;
display: block;
z-index: 999;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li a {
color: #222;
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-flyout ul.mega-sub-menu {
width: 100%;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li ul.mega-sub-menu {
display: block !important;
visibility: hidden;
opacity: 1;
top: 100%;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
height: 0;
-webkit-transition: all 0s ease-in-out 0s;
-moz-transition: all 0s ease-in-out 0s;
-ms-transition: all 0s ease-in-out 0s;
-o-transition: all 0s ease-in-out 0s;
transition: all 0s ease-in-out 0s;
overflow: hidden;
width: 100% !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li ul.mega-sub-menu li a {
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-toggle-on ul.mega-sub-menu {
visibility: visible !important;
height: auto !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-megamenu ul.mega-sub-menu {
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-megamenu ul.mega-sub-menu li {
width: 100% !important;
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-megamenu ul.mega-sub-menu li h4 {
padding: 10px 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a {
display: block;
padding: 0 15px;
border: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a img {
margin: 0 20px 20px 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li.mega-menu-megamenu ul.mega-sub-menu li.widget_nav_menu ul li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 ul#mega-menu-primary-custom-4 li:hover > ul.mega-sub-menu {
height: 0;
visibility: hidden;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle {
background: none;
position: absolute;
top: -62px;
right: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle:after {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle.mega-menu-open:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle:hover:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 {
border-top: 3px solid #222222;
background: #ffffff;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-item-has-children {
position: relative;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-item-has-children:before {
content: "\f0d7";
font-family: FontAwesome;
color: #000;
font-size: 12px;
position: absolute;
top: 10px;
right: 10px;
display: block;
z-index: 999;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li a {
color: #222;
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-flyout ul.mega-sub-menu {
width: 100%;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li ul.mega-sub-menu {
display: block !important;
visibility: hidden;
opacity: 1;
top: 100%;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
height: 0;
-webkit-transition: all 0s ease-in-out 0s;
-moz-transition: all 0s ease-in-out 0s;
-ms-transition: all 0s ease-in-out 0s;
-o-transition: all 0s ease-in-out 0s;
transition: all 0s ease-in-out 0s;
overflow: hidden;
width: 100% !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li ul.mega-sub-menu li a {
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-toggle-on ul.mega-sub-menu {
visibility: visible !important;
height: auto !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-megamenu ul.mega-sub-menu {
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-megamenu ul.mega-sub-menu li {
width: 100% !important;
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-megamenu ul.mega-sub-menu li h4 {
padding: 10px 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a {
display: block;
padding: 0 15px;
border: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a img {
margin: 0 20px 20px 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li.mega-menu-megamenu ul.mega-sub-menu li.widget_nav_menu ul li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 ul#mega-menu-primary-custom-5 li:hover > ul.mega-sub-menu {
height: 0;
visibility: hidden;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle {
background: none;
position: absolute;
top: -62px;
right: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle:after {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle.mega-menu-open:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle:hover:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 {
border-top: 3px solid #222222;
background: #ffffff;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-item-has-children {
position: relative;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-item-has-children:before {
content: "\f0d7";
font-family: FontAwesome;
color: #000;
font-size: 12px;
position: absolute;
top: 10px;
right: 10px;
display: block;
z-index: 999;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li a {
color: #222;
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-flyout ul.mega-sub-menu {
width: 100%;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li ul.mega-sub-menu {
display: block !important;
visibility: hidden;
opacity: 1;
top: 100%;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
height: 0;
-webkit-transition: all 0s ease-in-out 0s;
-moz-transition: all 0s ease-in-out 0s;
-ms-transition: all 0s ease-in-out 0s;
-o-transition: all 0s ease-in-out 0s;
transition: all 0s ease-in-out 0s;
overflow: hidden;
width: 100% !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li ul.mega-sub-menu li a {
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-toggle-on ul.mega-sub-menu {
visibility: visible !important;
height: auto !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-megamenu ul.mega-sub-menu {
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-megamenu ul.mega-sub-menu li {
width: 100% !important;
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-megamenu ul.mega-sub-menu li h4 {
padding: 10px 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a {
display: block;
padding: 0 15px;
border: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a img {
margin: 0 20px 20px 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li.mega-menu-megamenu ul.mega-sub-menu li.widget_nav_menu ul li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 ul#mega-menu-primary-custom-6 li:hover > ul.mega-sub-menu {
height: 0;
visibility: hidden;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle {
background: none;
position: absolute;
top: -62px;
right: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle:after {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle.mega-menu-open:before {
content: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle:hover:before {
color: #e5ae49;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 {
border-top: 3px solid #222222;
background: #ffffff;
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-item-has-children {
position: relative;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-item-has-children:before {
content: "\f0d7";
font-family: FontAwesome;
color: #000;
font-size: 12px;
position: absolute;
top: 10px;
right: 10px;
display: block;
z-index: 999;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li a {
color: #222;
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-flyout ul.mega-sub-menu {
width: 100%;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
visibility: visible;
opacity: 1;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li ul.mega-sub-menu {
display: block !important;
visibility: hidden;
opacity: 1;
top: 100%;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
height: 0;
-webkit-transition: all 0s ease-in-out 0s;
-moz-transition: all 0s ease-in-out 0s;
-ms-transition: all 0s ease-in-out 0s;
-o-transition: all 0s ease-in-out 0s;
transition: all 0s ease-in-out 0s;
overflow: hidden;
width: 100% !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li ul.mega-sub-menu li a {
line-height: 24px;
padding: 8px 15px;
border-bottom: 1px solid #ededed;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-toggle-on ul.mega-sub-menu {
visibility: visible !important;
height: auto !important;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-megamenu ul.mega-sub-menu {
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-megamenu ul.mega-sub-menu li {
width: 100% !important;
padding: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-megamenu ul.mega-sub-menu li h4 {
padding: 10px 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a {
display: block;
padding: 0 15px;
border: none;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-megamenu ul.mega-sub-menu li ul.product_list_widget li a img {
margin: 0 20px 20px 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li.mega-menu-megamenu ul.mega-sub-menu li.widget_nav_menu ul li {
padding-left: 15px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 ul#mega-menu-primary-custom-7 li:hover > ul.mega-sub-menu {
height: 0;
visibility: hidden;
}
.tz-header.tz-header-type-2 .tz-headerBottom nav ul.tz-nav li a {
padding: 10px 20px;
color: #222222;
}
.tz-header.tz-header-type-3 .tz-headerBottom nav ul.tz-nav li a {
padding: 10px 20px;
color: #222222;
}
.tz-header.tz-header-type-3 .tz-headerBottom .navbar-toggle {
color: #fff;
padding: 30px 12px 30px 0;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle {
position: absolute;
top: -70px;
right: 70px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle {
position: absolute;
top: -70px;
right: 70px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle.mega-menu-open:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle {
position: absolute;
top: -70px;
right: 70px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle.mega-menu-open:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle {
position: absolute;
top: -70px;
right: 70px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle.mega-menu-open:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle {
position: absolute;
top: -70px;
right: 70px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle.mega-menu-open:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle {
position: absolute;
top: -70px;
right: 70px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle.mega-menu-open:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle {
position: absolute;
top: -70px;
right: 70px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle:before {
color: #ffffff;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle.mega-menu-open:before {
color: #ffffff;
}
.tz-header.tz-header-type-7 {
padding: 0px 15px;
width: 100%;
position: relative;
bottom: auto;
flex-direction: column-reverse;
-ms-flex-direction: column-reverse;
-webkit-flex-direction: column-reverse;
}
.tz-header.tz-header-type-7 .tz-headerBottom {
width: auto;
}
.tz-header.tz-header-type-7 .tz-headerBottom a.tz_logo {
display: inline-block;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-1 #mega-menu-primary-custom-1 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-2 #mega-menu-primary-custom-2 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-3 #mega-menu-primary-custom-3 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-4 #mega-menu-primary-custom-4 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-5 #mega-menu-primary-custom-5 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-6 #mega-menu-primary-custom-6 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item > ul.mega-sub-menu li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom nav #mega-menu-wrap-primary-custom-7 #mega-menu-primary-custom-7 > li.mega-menu-item:hover > ul.mega-sub-menu {
-webkit-transform: translate(0, 0);
-moz-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.tz-header.tz-header-type-7 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle {
top: -80px;
}
.tz-header.tz-header-type-7 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle {
top: -80px;
}
.tz-header.tz-header-type-7 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-3 .mega-menu-toggle {
top: -80px;
}
.tz-header.tz-header-type-7 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle {
top: -80px;
}
.tz-header.tz-header-type-7 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle {
top: -80px;
}
.tz-header.tz-header-type-7 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle {
top: -80px;
}
.tz-header.tz-header-type-7 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle {
top: -80px;
}
.tz-header.tz-header-type-7 .tz-headerBottom nav {
margin-top: 0;
}
.tz-header.tz-header-type-7 .tz-header-social {
padding-top: 10px;
text-align: center;
}
.tz-header.tz-header-type-7 .tz-header-social span {
display: none;
}
.tz-header.tz-header-type-7 .tz-header-social ul {
display: inline-block;
}
.tz-header.tz-header-type-7 .tz-header-social ul li a {
padding: 0;
}
.tz-header.scroll {
display: none;
}
.tz-homeEff {
position: absolute !important;
background: rgba(0, 0, 0, 0.5);
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.5)), color-stop(12%, rgba(0, 0, 0, 0.44)), color-stop(50%, rgba(0, 0, 0, 0.25)), color-stop(73%, rgba(0, 0, 0, 0.14)), color-stop(100%, rgba(0, 0, 0, 0)));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.44) 12%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.14) 73%, rgba(0, 0, 0, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=0);
}
.tz-homeEff-1 {
-moz-box-shadow: none;
-webkit-box-shadow: none;
-ms-box-shadow: none;
-o-box-shadow: none;
box-shadow: none;
position: relative !important;
top: 0 !important;
width: 100% !important;
z-index: 9999999999;
}
.tzElement_Support.tzSupport_3_column .tzSupport_Item {
float: left;
width: 50%;
}
.tzElement_Support.tzSupport_3_column .tzSupport_Item:nth-child(3n+1) {
clear: none;
}
.tzElement_Support.tzSupport_3_column .tzSupport_Item:nth-child(2n+1) {
clear: both;
}
.tzElement_Ourteam.tzOurteam_type1 .tzOurteam_imageContainer .tzOurteam_ImageBox .tzOurteam_Image {
width: 160px;
height: 160px;
}
.tzElement_Quote.tzQuote_type1 .tzQuote_Item {
padding: 0 100px;
}
.tzElement_Quote.tzQuote_type2 .tzQuote_Item {
padding: 0 70px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item {
padding: 0 100px;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item {
padding: 0 70px;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item {
padding: 0 40px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box {
padding: 0 60px;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote .tzQuote_Item {
padding: 50px 50px 0;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item {
padding: 0 50px;
text-align: center;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info {
padding: 15px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 .tzViewPost_item_box .tzViewPost_info {
padding: 13px 15px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 .tzViewPost_item_box .tzViewPost_info {
padding: 13px 15px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 .tzViewPost_item_box .tzViewPost_info {
padding: 15px;
}
.tzElement_viewPost .tzViewPost_slider_advance .owl-controls .owl-buttons .owl-prev {
left: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_viewPost .tzViewPost_slider_advance .owl-controls .owl-buttons .owl-next {
right: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_viewPost .tzViewPost_slider_advance:hover .owl-controls .owl-buttons .owl-prev {
visibility: visible;
opacity: 1;
}
.tzElement_viewPost .tzViewPost_slider_advance:hover .owl-controls .owl-buttons .owl-next {
visibility: visible;
opacity: 1;
}
.tzElement_viewPost .tzViewPost_slider .owl-controls .owl-buttons .owl-prev {
left: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_viewPost .tzViewPost_slider .owl-controls .owl-buttons .owl-next {
right: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_viewPost .tzViewPost_slider:hover .owl-controls .owl-buttons .owl-prev {
visibility: visible;
opacity: 1;
}
.tzElement_viewPost .tzViewPost_slider:hover .owl-controls .owl-buttons .owl-next {
visibility: visible;
opacity: 1;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .owl-controls .owl-buttons .owl-prev {
left: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider .owl-controls .owl-buttons .owl-next {
right: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider:hover .owl-controls .owl-buttons .owl-prev {
visibility: visible;
opacity: 1;
}
.tzElement_viewPost.tzElement_viewPost_slide-type2 .tzViewPost_slider:hover .owl-controls .owl-buttons .owl-next {
visibility: visible;
opacity: 1;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top {
padding-left: 20px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon {
width: 60px;
height: 60px;
left: 20px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon i {
font-size: 24px;
padding: 18px 0;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon span {
font-size: 24px;
padding: 18px 0;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_year {
font-size: 26px;
line-height: 28px;
padding: 11px 15px 7px 75px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_name {
font-size: 13px;
line-height: 24px;
padding: 0 15px 0 75px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom {
height: 68px;
width: 100%;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_left {
width: 44px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_right {
height: 100%;
padding-left: 50px;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item {
padding: 0 50px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 {
width: 33.33%;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta a {
display: block;
margin-bottom: 15px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta span {
display: block;
margin-bottom: 15px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info .tzViewPost_meta small {
display: none;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 {
width: 33.33%;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 {
width: 33.33%;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 {
width: 66.67%;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content .tzCategory_Slide_Item_Content_box span {
font-size: 55px;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .tzCategory_Slide_Item a .tzCategory_Slide_Item_Content .tzCategory_Slide_Item_Content_box h5 {
font-size: 20px;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .owl-controls .owl-buttons .owl-prev {
left: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide .owl-controls .owl-buttons .owl-next {
right: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide:hover .owl-controls .owl-buttons .owl-prev {
visibility: visible;
opacity: 1;
}
.tzElement_Category_Slide_Container.tzCategory_Slide_in_grid .tzElement_Category_Slide:hover .owl-controls .owl-buttons .owl-next {
visibility: visible;
opacity: 1;
}
.tzElement_viewService .tzView_Service_Slide .owl-controls .owl-buttons .owl-prev {
left: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_viewService .tzView_Service_Slide .owl-controls .owl-buttons .owl-next {
right: 0;
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzElement_viewService .tzView_Service_Slide:hover .owl-controls .owl-buttons .owl-prev {
visibility: visible;
opacity: 1;
}
.tzElement_viewService .tzView_Service_Slide:hover .owl-controls .owl-buttons .owl-next {
visibility: visible;
opacity: 1;
}
.tzPortfolio_slick button {
visibility: hidden;
opacity: 0;
-webkit-transition: all 0.3s ease 0s;
-moz-transition: all 0.3s ease 0s;
-ms-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s;
}
.tzPortfolio_slick:hover button {
visibility: visible;
opacity: 1;
}
.tzOurProcess_Container {
text-align: center;
}
.tzOurProcess_Container .tzOurProcess {
display: inline-block;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab {
margin: 0 20px 0 0;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a {
width: 135px;
height: 145px;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-tabs-container ul.vc_tta-tabs-list li.vc_tta-tab a span {
font-size: 13px;
padding: 13px 15px;
}
.tzshop-wrap .col-padding {
float: none;
}
.tzshop-wrap .col-padding .product-grid ul.products li.tzShop-item.tzShop-4column {
width: 50%;
}
.tzshop-wrap .col-padding .product-grid ul.products li.tzShop-item.tzShop-3column {
width: 50%;
}
.tzshop-wrap .col-padding .product-grid ul.products li.tzShop-item.tzShop-2column {
width: 50%;
}
.upsells {
border-bottom: 1px solid #ededed;
display: block;
margin-bottom: 30px;
padding: 0 0 15px;
}
.upsells h2 {
font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-weight: 700;
color: #222222;
line-height: 24px;
text-transform: uppercase;
margin-bottom: 15px;
}
.upsells ul.products li.tzShop-item {
width: 50%;
}
.related ul.products li.tzShop-item {
width: 50%;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_info h1.product_title {
margin-top: 20px;
}
.woocommerce ul.products li.product {
width: 50%;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item {
width: 50%;
}
.woocommerce .cart-collaterals .tzCart_totals .tzCollateralsColumn form.woocommerce-shipping-calculator {
margin-bottom: 100px;
}
.woocommerce form table.shop_table tbody tr td.actions .coupon {
float: left;
}
.woocommerce form table.shop_table tbody tr td.actions input.button {
width: auto;
float: right;
}
.woocommerce-account .woocommerce .addresses .address.col-1 {
margin-bottom: 50px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item .tzBlogInner .tzBlogQuote p {
padding: 0 30px;
}
.tz-sidebar.tz-sidebar-right {
margin-top: 95px;
}
.tz-sidebar.tz-sidebar-left {
margin-bottom: 95px;
}
.tz-sidebar .widget.widget_search form {
width: 265px;
}
.tz-sidebar .widget select {
width: 265px;
}
.tz-sidebar .widget.widget_calendar #calendar_wrap table {
width: 265px;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-add-to-cart a {
width: 110px;
padding: 10px 5px;
}
.tzFooter .tzFooterTop .footerattr .widget.widget_newsletterwidget .newsletter form {
width: 265px;
}
.tzcountdown h3.tzCountdowntitle {
font-size: 30px;
}
.tzcountdown p.tzCountdowndes {
font-size: 14px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown h3.tzCountdowntitle {
font-size: 30px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown p.tzCountdowndes {
font-size: 14px;
}
.tzElement_Image_slide .owl-nav .owl-prev {
left: 15px;
}
.tzElement_Image_slide .owl-nav .owl-next {
right: 15px;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-image.tz-image-fix-height {
height: auto !important;
margin: 0 0 20px;
}
.tzElement-recent-post.tzRecent-post-type-2 .tz-recent-inner .tz-recent-image.tz-image-fix-height img {
max-width: 100%;
width: 100% !important;
height: auto !important;
}
}
@media (max-width: 768px) {
.vc_col-sm-3 {
float: left;
width: 50% !important;
}
#wpadminbar {
position: fixed !important;
}
div .hades.tparrows {
display: none;
}
.tz-header.tz-header-type-3 .tz-headerBottom {
padding: 0;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle {
right: 15px;
top: -60px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle {
right: 15px;
top: -60px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle {
right: 15px;
top: -60px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle {
right: 15px;
top: -60px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle {
right: 15px;
top: -60px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle {
right: 15px;
top: -60px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle {
right: 15px;
top: -60px;
}
.tz-header.tz-header-type-7 .tz-headerBottom a.tz_logo img {
max-width: 200px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle {
position: absolute;
right: 21px;
top: -70px;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_image {
height: 300px;
}
.vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
margin-bottom: 30px !important;
}
.vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4 a span {
color: #222222;
font-weight: 700;
text-transform: uppercase;
}
.vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
background: none !important;
}
.vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading h4 a span {
color: #e5ae49;
}
.tzElement_Category_Grid .tzCategory_Grid_Item {
width: 100% !important;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote_Wrap .tzElement_Quote .tzQuote_Item {
padding: 30px 30px 0;
}
.tzElement_Feature.tzFeature_type2 .tzFeature_Icon {
float: none;
text-align: center;
}
.tzElement_Feature.tzFeature_type2 .tzFeature_Icon .tzFeature_iconBox {
display: inline-block;
}
.tzElement_Feature.tzFeature_type2 h5.tzFeature_title {
margin-left: 0;
text-align: center;
}
.tzElement_Feature.tzFeature_type2 p.tzFeature_description {
margin-left: 0;
text-align: center;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon .tzFeature_Icon {
float: none;
text-align: center;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon .tzFeature_Icon .tzFeature_iconBox {
display: inline-block;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon h5.tzFeature_title {
margin-right: 0;
text-align: center;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon p.tzFeature_description {
margin-right: 0;
text-align: center;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage {
float: none;
width: 100%;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info {
margin-left: 0;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_infomation {
text-align: center;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_title {
text-align: center;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_title:after {
left: 50%;
margin-left: -15px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info p {
text-align: center;
}
.tzElement_viewPost .tzViewPost_slider {
margin: 0px;
}
.tzwidth50 > .vc_col-sm-3 {
width: 100% !important;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem {
float: none !important;
width: 100% !important;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top {
padding-left: 0px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon {
width: 88px;
height: 88px;
left: 0px;
position: relative;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon i {
font-size: 35px;
padding: 25px 0;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_icon span {
font-size: 35px;
padding: 25px 0;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_year {
font-size: 40px;
line-height: 40px;
padding: 11px 15px 7px 110px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_top .tzOurProcessItem_name {
font-size: 14px;
line-height: 24px;
padding: 0 15px 0 110px;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_left {
border-bottom: none;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem .tzOurProcessItem_bottom .tzOurProcessItem_right .tzOurProcessItem_rightbox {
border: none;
}
.tzOurProcess_Container .tzOurProcess .tzOurProcessItem:last-child .tzOurProcessItem_bottom .tzOurProcessItem_left {
border: none;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item {
padding: 0px;
}
.tzElement_Quote_Container.tzQuote_type6 .tzElement_Quote .tzQuote_Item .tzQuote_Content {
font-size: 16px;
line-height: 30px;
}
.tzresponsive {
font-size: 50px !important;
}
.vc_row .tz-remove-padding {
padding-right: 15px !important;
padding-left: 15px !important;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading {
background: #ffffff;
margin-bottom: 15px !important;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a {
padding: 10px 14px;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading h4.vc_tta-panel-title a span {
color: #222;
font-weight: 400;
font-size: 14px;
}
.vc_tta-tabs.vc_tta-style-outline .vc_tta-panels-container .vc_tta-panels .vc_tta-panel.vc_active .vc_tta-panel-heading h4.vc_tta-panel-title a span {
color: #e5ae49;
}
.tzUnder_Construction_top .container .tzUnder_Construction_logo {
padding: 30px 0 15px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_logo img {
max-width: 170px;
height: auto;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown {
padding-top: 50px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown h3.tzCountdowntitle {
font-size: 20px;
margin-bottom: 15px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown p.tzCountdowndes {
font-size: 14px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .countdown .tzcountdownitem span {
font-size: 20px;
line-height: 24px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .countdown .tzcountdownitem p {
font-size: 14px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .countdown .tzdivide {
margin: 30px 10px;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .tzbutton {
margin-top: 0;
}
.tzUnder_Construction_top .container .tzUnder_Construction_Countdown .tzcountdown .tzbutton a.tzbtn {
font-size: 9px;
padding: 5px 15px;
margin: 10px 0;
}
.tzUnder_Construction_Section {
height: auto !important;
}
.tzUnder_Construction_Section .tzUnder_Construction_left {
width: 100%;
float: none;
padding: 65px 15px;
}
.tzUnder_Construction_Section .tzUnder_Construction_right {
float: none;
width: 100%;
}
.tzUnder_Construction_Section.tzUnder_Construction_About_Section .tzUnder_Construction_right {
min-height: 500px;
}
.tzUnder_Construction_Section.tzUnder_Construction_Notify_Section .tzUnder_Construction_right {
padding: 65px 15px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .tnp-widget form {
width: 100%;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .tnp-widget form .tnp-field input.tnp-email {
padding-right: 120px;
}
.tzFooter.tzFooter-Type-4 .tzFooterTop .tzFooterTop_center aside.widget .tnp-widget form .tnp-field input.tnp-submit {
font-size: 12px;
padding: 11px 15px 10px;
}
.tz-header-left .tzElement_Video_Popup {
height: 400px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info h3 {
font-size: 14px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider {
width: 60px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider i {
font-size: 20px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider {
width: 60px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider i {
font-size: 20px;
}
.tz-header-left .tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item {
padding: 0;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item {
padding: 0;
}
.tzElement-title.tz-text-align-left .tzDescription {
padding: 0;
}
}
@media (max-width: 480px) {
.vc_col-sm-3 {
width: 100% !important;
}
.wpb_text_column.tzResponsive_padding {
padding-left: 15px !important;
padding-right: 15px !important;
}
.tz-header .tz-headerTop {
display: none;
}
.tz-header .tz-headerBottom .tz-header-cart {
display: none;
}
.tz-header .tz-headerBottom .tz-header-search {
display: none;
}
.tz-header .tz-headerBottom nav ul.navbar-nav {
margin: 0px;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle {
right: 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle {
right: 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle {
right: 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle {
right: 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle {
right: 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle {
right: 0;
}
.tz-header .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle {
right: 0;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle {
right: 0px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle {
right: 0px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle {
right: 0px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-3 .mega-menu-toggle {
right: 0px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle {
right: 0px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle {
right: 0px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle {
right: 0px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle {
right: 0px;
}
.tz-header.tz-header-type-3 .tz-headerBottom a.tz_logo {
max-width: 125px;
padding: 0;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-1 .mega-menu-toggle {
right: 15px;
top: -40px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary .mega-menu-toggle {
right: 15px;
top: -40px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-2 .mega-menu-toggle {
right: 15px;
top: -40px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-3 .mega-menu-toggle {
right: 15px;
top: -40px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-4 .mega-menu-toggle {
right: 15px;
top: -40px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-5 .mega-menu-toggle {
right: 15px;
top: -40px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-6 .mega-menu-toggle {
right: 15px;
top: -40px;
}
.tz-header.tz-header-type-3 .tz-headerBottom.tz-max-mega-menu nav #mega-menu-wrap-primary-custom-7 .mega-menu-toggle {
right: 15px;
top: -40px;
}
.tz-Breadcrumb .tzOverlayBreadcrumb {
padding: 50px 0;
}
.tz-Breadcrumb .tzOverlayBreadcrumb h1 {
font-size: 24px;
}
.tzPortfolio_slick .tzPortfolio_slick_item .tzPortfolioslick_image {
height: 250px;
}
.tzPortfolio_slick .tzPortfolio_slick_item.slick-center {
transform: scale(1);
-o-transform: scale(1);
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
}
.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .woocommerce ul.products li.product {
width: 100%;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 .tzViewPost_item_box .tzViewPost_info p {
display: none;
}
.tzElement-title .tzTitle {
font-size: 45px;
}
.tzElement-title .tzSubTitle {
font-size: 18px;
}
.tzElement-title .tzDescription {
padding: 0 15px;
}
.tzShortcode-title {
text-align: center;
}
.wpb_text_column .wpb_wrapper h3 {
text-align: center;
}
.wpb_text_column .wpb_wrapper p {
text-align: center;
}
.tzresponsive {
font-size: 30px !important;
}
.tzPortfolio_Grid .tzfilter .tzFillter_box {
padding: 0 15px;
}
.tzPortfolio_Grid .tzfilter .tzFillter_box a {
padding: 8px 15px;
}
.tzPortfolio_Grid .tzPortfolioGrid_Content .tzPortfolioGrid-item {
width: 100% !important;
}
.tzElement_Feature.tzFeature_type1 .tzFeature_Icon {
text-align: center;
}
.tzElement_Feature.tzFeature_type1 .tzFeature_Icon .tzFeature_iconBox {
display: inline-block;
float: none;
}
.tzElement_Feature.tzFeature_type1 h5.tzFeature_title {
text-align: center;
margin-left: 0;
}
.tzElement_Feature.tzFeature_type1 p.tzFeature_subTitle {
margin-left: 0;
text-align: center;
}
.tzElement_Feature.tzFeature_type1 p.tzFeature_description {
text-align: center;
}
.vc_tta-style-modern .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
padding: 30px 0px 20px;
}
.tzElement_Video .tzElement_textLeft {
display: block;
max-width: 100%;
padding: 0 15px;
right: 0;
text-align: center;
top: 35%;
width: 100%;
}
.tzElement_Video .tzElement_textRight {
display: block;
max-width: 100%;
padding: 0 15px;
left: 0;
text-align: center;
top: 65%;
width: 100%;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item {
padding: 0;
text-align: center;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Image {
float: none;
display: inline-block;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Content {
margin-left: 0px;
margin-top: 23px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .tzQuote_Item .tzQuote_Info {
margin: 0 0 20px;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls {
text-align: center;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination {
display: inline-block;
position: relative;
right: auto;
top: auto;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination .owl-page {
float: left;
}
.tzElement_Quote_Container.tzQuote_type1 .tzElement_Quote .owl-controls .owl-pagination:after {
content: '';
display: block;
clear: both;
}
.tzElement_Quote_Container.tzQuote_type2 .tzElement_Quote .tzQuote_Item {
padding: 0;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item {
padding: 0;
}
.tzElement_Quote_Container.tzQuote_type3 .tzElement_Quote .tzQuote_Item .tzQuote_Info {
width: 250px;
}
.tzElement_Quote_Container.tzQuote_type3 button {
display: none;
}
.tzElement_Quote.tzQuote_type1 .tzQuote_Item {
padding: 0;
text-align: center;
}
.tzElement_Quote.tzQuote_type1 .tzQuote_Item .tzQuote_Image {
float: none;
display: inline-block;
}
.tzElement_Quote.tzQuote_type1 .tzQuote_Item .tzQuote_Content {
margin-left: 0px;
margin-top: 23px;
}
.tzElement_Quote.tzQuote_type1 .tzQuote_Item .tzQuote_Info {
margin: 0 0 20px;
}
.tzElement_Quote.tzQuote_type1 .owl-controls {
text-align: center;
}
.tzElement_Quote.tzQuote_type1 .owl-controls .owl-pagination {
display: inline-block;
position: relative;
right: auto;
top: auto;
}
.tzElement_Quote.tzQuote_type1 .owl-controls .owl-pagination .owl-page {
float: left;
}
.tzElement_Quote.tzQuote_type1 .owl-controls .owl-pagination:after {
content: '';
display: block;
clear: both;
}
.tzElement_Quote.tzQuote_type2 .tzQuote_Item {
padding: 0;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon .tzFeature_Icon {
float: none;
text-align: center;
margin-bottom: 20px;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon .tzFeature_Icon .tzFeature_iconBox {
display: inline-block;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon h5.tzFeature_title {
margin-right: 0;
text-align: center;
}
.tzElement_Feature.tzFeature_type2.tzFeature_text-icon p.tzFeature_description {
margin-right: 0;
text-align: center;
}
.tzElement_Feature.tzFeature_type2.tzFeature_icon-text .tzFeature_Icon {
float: none;
text-align: center;
margin-bottom: 20px;
}
.tzElement_Feature.tzFeature_type2.tzFeature_icon-text .tzFeature_Icon .tzFeature_iconBox {
display: inline-block;
}
.tzElement_Feature.tzFeature_type2.tzFeature_icon-text h5.tzFeature_title {
margin-left: 0;
text-align: center;
}
.tzElement_Feature.tzFeature_type2.tzFeature_icon-text p.tzFeature_description {
margin-left: 0;
text-align: center;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPostImage {
float: none;
width: 100%;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info {
margin-left: 0;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_infomation {
text-align: center;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_title {
text-align: center;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info .tzPost_title:after {
left: 50%;
margin-left: -15px;
}
.tzElement_viewPost .tzViewPost_Grid .tzPost_Item .tzPost_Box .tzPost_Content .tzPost_info p {
text-align: center;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_0 {
float: none;
width: 100%;
height: 300px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_1 {
float: none;
width: 100%;
height: 300px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_2 {
float: none;
width: 100%;
height: 300px;
}
.tzElement_viewPost .tzViewPost_slider_advance .tzViewPost_item .tzViewPost_item_3 {
float: none;
width: 100%;
height: 300px;
}
.tzElement_viewPost .tzViewPost_slider {
margin: 0px;
}
.tzElement_Quote_Container.tzQuote_type4 .tzElement_Quote .tzQuote_Item {
padding: 0;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box {
position: relative;
bottom: 0;
padding: 0;
}
.tzElement_Quote_Container.tzQuote_type5 .tzElement_Quote_Box .tzElement_Quote .tzQuote_Item {
padding: 30px 15px 0;
}
.tzElement_Support.tzSupport_3_column .tzSupport_Item {
float: none;
width: 100%;
}
.tzElement_Support.tzSupport_3_column .tzSupport_Item:nth-child(3n+1) {
clear: none;
}
.tzElement_Support.tzSupport_3_column .tzSupport_Item:nth-child(2n+1) {
clear: none;
}
.tzElement_Support .tzSupport_Item {
padding: 20px;
}
.tzElement_Support .tzSupport_Item .tzSupport_Icon {
width: 55px;
}
.tzElement_Support .tzSupport_Item .tzSupport_Info {
padding-left: 55px;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content {
padding: 15px;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Icon {
width: 55px;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Info {
padding-left: 55px;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Info .tzCategory_Grid_subTitle {
margin: 0 0 5px;
}
.tzElement_Category_Grid .tzCategory_Grid_Item .tzCategory_Grid_Item_Content .tzCategory_Grid_Info .tzCategory_Grid_Title {
margin: 0 0 10px;
padding: 0 0 10px;
}
.tzResponsive_removePadding .wpb_column {
padding-top: 0 !important;
}
.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a span {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
font-size: 16px;
color: #222222;
text-transform: uppercase;
}
.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body {
background: none;
}
.vc_tta-tabs .vc_tta-panels-container .vc_tta-panels .vc_tta-panel .vc_tta-panel-body .woocommerce ul.products li.product {
margin-bottom: 30px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogQuote p {
padding: 0 15px;
}
.tzBlogDefault .tzBlogContainer .tzBlogItem .tzBlogContent {
padding: 15px 15px 25px;
}
.tzBlogColumn .tzBlogContainer .blogColumn-item.tz_feature_item {
width: 100% !important;
}
.tzBlogSingle .author .author-avata {
float: none;
text-align: center;
}
.tzBlogSingle .author .author-avata .author-img {
display: inline-block;
}
.tzBlogSingle .author .author-avata .author-social {
right: 10px;
}
.tzBlogSingle .author .author-info {
margin-left: 0;
}
.tzBlogSingle .author .author-info h3 {
text-align: center;
}
.tzBlogSingle .author .author-info span {
text-align: center;
}
.tzBlogSingle .author .author-info p {
text-align: center;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent {
padding: 47px 15px 1px;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article {
text-align: center;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-author {
float: none;
display: inline-block;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li article .comment-content {
text-align: left;
margin-left: 0;
}
.tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li ol.children {
padding-left: 0;
}
.tzshop-wrap .col-padding {
float: none;
}
.tzshop-wrap .col-padding .grid_pagination_block {
text-align: center;
}
.tzshop-wrap .col-padding .grid_pagination_block form.woocommerce-ordering {
float: none;
text-align: center;
margin-bottom: 20px;
}
.tzshop-wrap .col-padding .grid_pagination_block p.woocommerce-result-count {
float: none;
margin-left: 0;
}
.tzshop-wrap .col-padding .grid_pagination_block .tzview-style {
float: none;
display: inline-block;
}
.tzshop-wrap .col-padding .grid_pagination_block .tzview-style:after {
content: '';
display: block;
clear: both;
}
.tzshop-wrap .col-padding .product-grid ul.products li.tzShop-item.tzShop-4column {
width: 100%;
}
.tzshop-wrap .col-padding .product-grid ul.products li.tzShop-item.tzShop-3column {
width: 100%;
}
.tzshop-wrap .col-padding .product-grid ul.products li.tzShop-item.tzShop-2column {
width: 100%;
}
.tzshop-wrap .col-padding .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_image {
width: 100%;
float: none;
}
.tzshop-wrap .col-padding .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info {
margin-left: 0;
}
.tzshop-wrap .col-padding .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info h3.tzShop-item_title {
margin-top: 20px;
}
.tzshop-wrap .col-padding .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-add-button a {
padding: 8px 12px;
margin-bottom: 20px;
}
.tzshop-wrap .col-padding .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
padding: 8px 12px;
margin-bottom: 20px;
}
.tzshop-wrap .col-padding .product-list ul.products li.tzShop-item .tzShop-item_inner .tzShop-item_info .tzShop-item_button_list .tzShop-item_button a {
padding: 8px 12px;
margin-bottom: 20px;
}
.tzshop-wrap .col-padding .woocommerce-pagination {
text-align: center !important;
}
.upsells ul.products li.tzShop-item {
width: 100%;
}
.related ul.products li.tzShop-item {
width: 100%;
}
.woocommerce ul.products li.product {
width: 100%;
}
.woocommerce .cart-collaterals .cross-sells ul.products li.tzShop-item {
width: 100%;
}
.woocommerce .cart-collaterals .tzCart_totals .tzCollateralsColumn form.woocommerce-shipping-calculator .shipping-calculator-form {
padding: 29px 19px;
}
.woocommerce .cart-collaterals .tzCart_totals .tzCollateralsColumn .cart_totals table {
padding: 15px 20px 0;
}
.woocommerce .cart-collaterals .tzCart_totals .tzCollateralsColumn .cart_totals table tbody tr th {
padding-right: 15px;
}
.woocommerce .cart-collaterals .tzCart_totals .tzCollateralsColumn .cart_totals .wc-proceed-to-checkout {
padding: 20px;
}
.woocommerce form table.shop_table {
margin-right: 0;
}
.woocommerce form table.shop_table thead tr th {
font-size: 13px;
padding: 14px 0px;
}
.woocommerce form table.shop_table thead tr th.product-price {
display: none;
}
.woocommerce form table.shop_table tbody tr.cart_item td {
padding: 20px 0px;
}
.woocommerce form table.shop_table tbody tr.cart_item td.product-price {
display: none;
}
.woocommerce form table.shop_table tbody tr.cart_item td.product-quantity .quantity input {
padding: 9px;
width: 60px;
}
.woocommerce form table.shop_table tbody tr td.actions .coupon input {
width: 130px;
}
.woocommerce form table.shop_table tbody tr td.product-price {
display: none;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetail_slide {
width: 100% !important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel .jcarousel-skin-tango .jcarousel-container-vertical{
height: auto !important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel .jcarousel-skin-tango .jcarousel-container-vertical .jcarousel-clip-vertical{
height: auto !important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel{
display: block;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul{
display: flex;
flex-wrap: wrap;
height: auto !important;
top: 15px !important;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel ul li{
margin-left: 10px;
}
.tzShopDetail-wrap .tzShopContentDetail .tzShopDetail_Product .tzShopDetail_images #tzShopDetailSlide-carousel{
width: 330px !important;
margin: 0 5px;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields p {
width: 100%;
}
.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address p {
width: 100%;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment ul.payment_methods {
padding: 15px 15px 0;
}
.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment ul.payment_methods li label a {
line-height: 24px;
}
.woocommerce-checkout #payment ul.payment_methods li img {
display: none;
}
.woocommerce-account .woocommerce .addresses .address {
padding: 20px 15px 0;
}
.woocommerce-account .woocommerce .addresses .address header.title {
margin-bottom: 25px;
}
.woocommerce-account .woocommerce .addresses .address header.title h3 {
float: none;
}
.woocommerce-account .woocommerce .addresses .address header.title a {
float: none;
display: inline-block;
}
.woocommerce-account .woocommerce form p {
width: 100%;
}
form#yith-wcwl-form table.wishlist_table tbody tr td {
padding: 20px 0;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-stock-status span {
display: inline-block;
font-size: 0;
height: 20px;
width: 20px;
position: relative;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-stock-status span.wishlist-in-stock:after {
font-family: FontAwesome;
content: "\f058";
display: inline-block;
font-size: 20px;
content: #222;
position: absolute;
top: 0;
left: 0;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-stock-status span.wishlist-out-of-stock:after {
font-family: FontAwesome;
content: "\f057";
display: inline-block;
font-size: 20px;
content: #222;
position: absolute;
top: 0;
left: 0;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-add-to-cart a {
background: none;
border: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-ms-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
display: inline-block;
font-size: 0;
height: 20px;
width: 20px;
position: relative;
margin: 4px 0 0;
padding: 0;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-add-to-cart a:after {
font-family: FontAwesome;
content: "\f217";
display: inline-block;
font-size: 20px;
position: absolute;
top: 0;
left: 0;
color: #222;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-add-to-cart a:hover {
background: none;
}
form#yith-wcwl-form table.wishlist_table tbody tr td.product-add-to-cart a:hover:after {
color: #e5ae49;
}
.tzFooter .tzFooterBottom .tzCopyright {
float: none !important;
text-align: center;
}
.tzFooter .tzFooterBottom .tzFooterSocial {
padding: 0;
float: none !important;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul {
text-align: center;
}
.tzFooter .tzFooterBottom .tzFooterSocial ul li {
display: inline-block;
float: none;
margin-bottom: 25px;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-meta span {
margin-right: 5px;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-meta span i {
margin-right: 5px;
}
.tzElement-recent-post .tz-recent-inner .tz-recent-meta span small {
display: none;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolioSlide_special_image {
max-height: 500px;
min-height: 150px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider {
width: 40px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider i {
font-size: 14px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider {
width: 40px;
}
.tz-header-left .tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider i {
font-size: 14px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover {
bottom: 10px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left {
flex-direction: column;
-webkit-box-direction: normal;
-webkit-box-orient: vertical;
-ms-flex-direction: column;
-webkit-flex-direction: column;
align-items: left;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info {
margin: 0 0 3px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info h3 {
font-size: 13px;
margin: 0 0 3px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_info .tzcat {
font-size: 13px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzPortfolio_box_left .tzPortfolio_hover_more {
font-size: 11px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider {
width: 40px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tzprevslider i {
font-size: 14px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider {
width: 40px;
}
.tzPortfolio_slide_special .tzPortfolio_slide_item .tzPortfolio_hover .container .tznextslider i {
font-size: 14px;
}
.wpb_tabs .wpb_tour_tabs_wrapper ul.wpb_tabs_nav li {
width: 100%;
}
.tz-header-left .tzBlogSingle .tzComments .comments-area .tzCommentContent ol.comment-list li ol.children {
padding-left: 0;
}
}.tnp-subscription {
font-size: 13px;
display: block;
margin: 15px auto;
max-width: 500px;
width: 100%;
} .tnp-subscription div.tnp-field {
margin-bottom: 10px;
border: 0;
padding: 0;
}
.tnp-subscription label {
display: block;
color: inherit;
font-size: 14px;
font-weight: 700;
line-height: normal;
padding: 5px;
margin: 0;
}
.tnp-subscription input[type=text], 
.tnp-subscription input[type=email], 
.tnp-subscription input[type=submit], 
.tnp-subscription select {
width: 100%;
height: 50px;
padding: 10px;
display: block;
border: 1px;
border-color: #ddd;
background-color: #f4f4f4;
background-image: none;
text-shadow: none;
color: #444;
font-size: 14px;
line-height: 20px;
margin: 0;
line-height: normal;
box-sizing: border-box;
}
.tnp-subscription input[type=checkbox], 
.tnp-widget input[type=radio] {
max-width: 20px;
display: inline-block;
} .tnp-subscription select option {
margin-right: 10px;
}
.tnp-subscription input.tnp-submit {
background-color: #444;
color: #fff;
width: auto;
height: auto;
margin: 0;
}
@media all and (max-width: 480px) {
.tnp-subscription input[type=submit] {
width: 100%;
}
} .tnp-profile form .tnp-field {
margin-bottom: 10px;
border: 0;
padding: 0;
}
.tnp-profile form .tnp-field label {
display: block;
color: #333;
}
.tnp-profile form .tnp-field input[type=text], 
.tnp-profile form .tnp-field input[type=email], 
.tnp-profile form .tnp-field input[type=submit], 
.tnp-profile form .tnp-field textarea, 
.tnp-profile form .tnp-field select {
padding: 10px;
display: block;
border: 1px;
border-color: #ddd;
background-color: #f4f4f4;
background-image: none;
text-shadow: none;
color: #444;
font-size: 14px;
margin: 0;
line-height: normal;
box-sizing: border-box;
border-radius: 0;
height: auto;
float: none;
}
.tnp-profile form input[type=checkbox], .tnp-profile input[type=radio] {
max-width: 20px;
display: inline-block;
}
.tnp-profile form .tnp-list-label {
margin-left: 15px;
} .tnp-profile form select option {
margin-right: 10px;
}
.tnp-profile form .tnp-field input[type=submit] {
background-color: #444;
color: #fff;
width: auto;
height: auto;
margin: 0;
}
@media all and (max-width: 480px) {
.tnp-profile input[type=submit] {
width: 100%;
margin: 0;
}
}
.tnp-widget {
width: 100%;
display: block;
box-sizing: border-box;
}
.tnp-widget .tnp-field {
margin-bottom: 10px;
border: 0;
padding: 0;
}
.tnp-widget label {
display: block;
color: inherit;
font-size: 14px;
}
.tnp-widget input[type=text], .tnp-widget input[type=email], .tnp-widget input[type=submit], .tnp-widget select {
width: 100%;
padding: 10px;
display: block;
border: 1px solid #ddd ;
border-color: #ddd;
background-color: #f4f4f4;
background-image: none;
text-shadow: none;
color: #444;
font-size: 14px;
line-height: normal;
box-sizing: border-box;
height: auto;
}
.tnp-widget input[type=checkbox], .tnp-widget input[type=radio] {
width: auto;
display: inline-block;
} .tnp-widget select option {
margin-right: 10px;
}
.tnp-widget input.tnp-submit {
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
margin: 0;
}
.tnp-field input[type="submit"] {
position: inherit;
}
.tnp-field label {
} .tnp-widget-minimal {
width: 100%;
}
.tnp-widget-minimal form {
margin: 0;
padding: 0;
border: 0;
}
.tnp-widget-minimal input.tnp-email {
width: 100%;
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px solid #ddd;
background-color: #f4f4f4;
color: #444;
font-size: 14px;
}
.tnp-widget-minimal input.tnp-submit {
width: 100%;
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px;
border-color: #ddd;
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
font-size: 14px;
line-height: normal;
border-radius: 0px;
height: auto;
margin: 0;
} .tnp-subscription-minimal {
width: 100%;
box-sizing: border-box;
}
.tnp-subscription-minimal form {
margin: 0;
padding: 0;
border: 0;
}
.tnp-subscription-minimal input.tnp-email {
width: 70%;
max-width: 300px;
box-sizing: border-box;
padding: 10px;
display: inline-block;
border: 1px solid #ddd;
background-color: #f4f4f4;
color: #444;
font-size: 14px;
line-height: 20px;
border-radius: 0px;
}
.tnp-subscription-minimal .tnp-privacy-field {
margin-top: 10px;
}
.tnp-subscription-minimal input.tnp-submit {
width: 29%;
box-sizing: border-box;
display: inline-block;
padding: 10px;
border: 1px;
border-color: #ddd;
background-color: #444;
background-image: none;
text-shadow: none;
color: #fff;
font-size: 14px;
line-height: 20px;
border-radius: 0px;
margin: 0;
} .tnp-comments {
clear: both;
margin-top: 15px;
margin-bottom: 15px;
}
.tnp-comments label {
display: block;
}
.tnp-comments input[type=checkbox] {
display: inline-block;
width: auto!important;
} .tnp-lock {
clear: both;
display: block;
box-sizing: border-box;
box-shadow: none;
margin: 20px;
padding: 15px;
background-color: #fff;
border: 1px solid #ddd;
}
.tnp-nl-checkout {
margin-bottom: 1em;
}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0} @media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(//siplprojects.in/wp-content/themes/interiart/fonts/glyphicons-halflings-regular.eot);src:url(//siplprojects.in/wp-content/themes/interiart/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(//siplprojects.in/wp-content/themes/interiart/fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(//siplprojects.in/wp-content/themes/interiart/fonts/glyphicons-halflings-regular.woff) format('woff'),url(//siplprojects.in/wp-content/themes/interiart/fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(//siplprojects.in/wp-content/themes/interiart/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.33px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:3;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #0b0b0b;
opacity: 0.8;
filter: alpha(opacity=80); }
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1043;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden; }
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mfp-container:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle; }
.mfp-align-top .mfp-container:before {
display: none; }
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: left;
z-index: 1045; }
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto; }
.mfp-ajax-cur {
cursor: progress; }
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: -moz-zoom-out;
cursor: -webkit-zoom-out;
cursor: zoom-out; }
.mfp-zoom {
cursor: pointer;
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in; }
.mfp-auto-cursor .mfp-content {
cursor: auto; }
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none; }
.mfp-loading.mfp-figure {
display: none; }
.mfp-hide {
display: none !important; }
.mfp-preloader {
color: #CCC;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044; }
.mfp-preloader a {
color: #CCC; }
.mfp-preloader a:hover {
color: #FFF; }
.mfp-s-ready .mfp-preloader {
display: none; }
.mfp-s-error .mfp-content {
display: none; }
button.mfp-close,
button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
-webkit-box-shadow: none;
box-shadow: none; }
button::-moz-focus-inner {
padding: 0;
border: 0; }
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
right: 0;
top: 0;
text-decoration: none;
text-align: center;
opacity: 0.65;
filter: alpha(opacity=65);
padding: 0 0 18px 10px;
color: #FFF;
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace; }
.mfp-close:hover,
.mfp-close:focus {
opacity: 1;
filter: alpha(opacity=100); }
.mfp-close:active {
top: 1px; }
.mfp-close-btn-in .mfp-close {
color: #333; }
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
color: #FFF;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%; }
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #CCC;
font-size: 12px;
line-height: 18px;
white-space: nowrap; }
.mfp-arrow {
position: absolute;
opacity: 0.65;
filter: alpha(opacity=65);
margin: 0;
top: 50%;
margin-top: -55px;
padding: 0;
width: 90px;
height: 110px;
-webkit-tap-highlight-color: transparent; }
.mfp-arrow:active {
margin-top: -54px; }
.mfp-arrow:hover,
.mfp-arrow:focus {
opacity: 1;
filter: alpha(opacity=100); }
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
content: '';
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: medium inset transparent; }
.mfp-arrow:after,
.mfp-arrow .mfp-a {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px; }
.mfp-arrow:before,
.mfp-arrow .mfp-b {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7; }
.mfp-arrow-left {
left: 0; }
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
border-right: 17px solid #FFF;
margin-left: 31px; }
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
margin-left: 25px;
border-right: 27px solid #3F3F3F; }
.mfp-arrow-right {
right: 0; }
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
border-left: 17px solid #FFF;
margin-left: 39px; }
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
border-left: 27px solid #3F3F3F; }
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px; }
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px; }
.mfp-iframe-holder .mfp-close {
top: -40px; }
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%; }
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #000; } img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 40px 0 40px;
margin: 0 auto; } .mfp-figure {
line-height: 0; }
.mfp-figure:after {
content: '';
position: absolute;
left: 0;
top: 40px;
bottom: 40px;
display: block;
right: 0;
width: auto;
height: auto;
z-index: -1;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #444; }
.mfp-figure small {
color: #BDBDBD;
display: block;
font-size: 12px;
line-height: 14px; }
.mfp-figure figure {
margin: 0; }
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto; }
.mfp-title {
text-align: left;
line-height: 18px;
color: #F3F3F3;
word-wrap: break-word;
padding-right: 36px; }
.mfp-image-holder .mfp-content {
max-width: 100%; }
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer; }
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) { .mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0; }
.mfp-img-mobile img.mfp-img {
padding: 0; }
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0; }
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px; }
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0; }
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px; }
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0; } }
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75); }
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0; }
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%; }
.mfp-container {
padding-left: 6px;
padding-right: 6px; } }
.mfp-ie7 .mfp-img {
padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
width: 600px;
left: 50%;
margin-left: -300px;
margin-top: 5px;
padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
padding: 0; }
.mfp-ie7 .mfp-content {
padding-top: 44px; }
.mfp-ie7 .mfp-close {
top: 0;
right: 0;
padding-top: 0; }