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

 .animated {
animation-duration: 1s;
animation-fill-mode: both;
}
.animated.infinite {
animation-iteration-count: infinite;
}
.animated.hinge {
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
animation-duration: .75s;
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -30px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -15px, 0);
}
90% {
transform: translate3d(0,-4px,0);
}
}
.bounce {
animation-name: bounce;
transform-origin: center bottom;
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
animation-name: flash;
} @keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
to {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
}
@keyframes rubberBand {
from {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, .95, 1);
}
to {
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
animation-name: rubberBand;
}
@keyframes shake {
from, to {
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
transform: translate3d(10px, 0, 0);
}
}
.shake {
animation-name: shake;
}
@keyframes headShake {
0% {
transform: translateX(0);
}
6.5% {
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
transform: translateX(5px) rotateY(7deg);
}
31.5% {
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
transform: translateX(2px) rotateY(3deg);
}
50% {
transform: translateX(0);
}
}
.headShake {
animation-timing-function: ease-in-out;
animation-name: headShake;
}
@keyframes swing {
20% {
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
transform: rotate3d(0, 0, 1, -5deg);
}
to {
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
transform-origin: top center;
animation-name: swing;
}
@keyframes tada {
from {
transform: scale3d(1, 1, 1);
}
10%, 20% {
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
transform: scale3d(1, 1, 1);
}
}
.tada {
animation-name: tada;
} @keyframes wobble {
from {
transform: none;
}
15% {
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
transform: none;
}
}
.wobble {
animation-name: wobble;
}
@keyframes jello {
from, 11.1%, to {
transform: none;
}
22.2% {
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
animation-name: jello;
transform-origin: center;
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
20% {
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
animation-name: bounceIn;
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, 25px, 0);
}
75% {
transform: translate3d(0, -10px, 0);
}
90% {
transform: translate3d(0, 5px, 0);
}
to {
transform: none;
}
}
.bounceInDown {
animation-name: bounceInDown;
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(25px, 0, 0);
}
75% {
transform: translate3d(-10px, 0, 0);
}
90% {
transform: translate3d(5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInLeft {
animation-name: bounceInLeft;
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
transform: translate3d(-25px, 0, 0);
}
75% {
transform: translate3d(10px, 0, 0);
}
90% {
transform: translate3d(-5px, 0, 0);
}
to {
transform: none;
}
}
.bounceInRight {
animation-name: bounceInRight;
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
75% {
transform: translate3d(0, 10px, 0);
}
90% {
transform: translate3d(0, -5px, 0);
}
to {
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
animation-name: bounceInUp;
}
@keyframes bounceOut {
20% {
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
animation-name: bounceOut;
}
@keyframes bounceOutDown {
20% {
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
20% {
opacity: 1;
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
20% {
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
animation-name: bounceOutUp;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
animation-name: fadeIn;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDown {
animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
from {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInDownBig {
animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeft {
animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInLeftBig {
animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
from {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRight {
animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
from {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInRightBig {
animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUp {
animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
from {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
transform: none;
}
}
.fadeInUpBig {
animation-name: fadeInUpBig;
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
animation-name: fadeOut;
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
animation-name: fadeOutUpBig;
}
@keyframes flip {
from {
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
animation-timing-function: ease-out;
}
40% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
animation-timing-function: ease-out;
}
50% {
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
animation-timing-function: ease-in;
}
80% {
transform: perspective(400px) scale3d(.95, .95, .95);
animation-timing-function: ease-in;
}
to {
transform: perspective(400px);
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
animation-name: flip;
}
@keyframes flipInX {
from {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInX;
}
@keyframes flipInY {
from {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
animation-timing-function: ease-in;
opacity: 0;
}
40% {
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
animation-timing-function: ease-in;
}
60% {
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipInY;
}
@keyframes flipOutX {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@keyframes flipOutY {
from {
transform: perspective(400px);
}
30% {
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
animation-name: flipOutY;
}
@keyframes lightSpeedIn {
from {
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
transform: skewX(20deg);
opacity: 1;
}
80% {
transform: skewX(-5deg);
opacity: 1;
}
to {
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
animation-name: lightSpeedIn;
animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
animation-name: lightSpeedOut;
animation-timing-function: ease-in;
}
@keyframes rotateIn {
from {
transform-origin: center;
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
transform-origin: center;
transform: none;
opacity: 1;
}
}
.rotateIn {
animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
from {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform-origin: left bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
from {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
transform-origin: right bottom;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
animation-name: rotateInUpRight;
}
@keyframes rotateOut {
from {
transform-origin: center;
opacity: 1;
}
to {
transform-origin: center;
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
from {
transform-origin: left bottom;
opacity: 1;
}
to {
transform-origin: left bottom;
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
from {
transform-origin: right bottom;
opacity: 1;
}
to {
transform-origin: right bottom;
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
animation-name: rotateOutUpRight;
}
@keyframes hinge {
0% {
transform-origin: top left;
animation-timing-function: ease-in-out;
}
20%, 60% {
transform: rotate3d(0, 0, 1, 80deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
}
40%, 80% {
transform: rotate3d(0, 0, 1, 60deg);
transform-origin: top left;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
animation-name: hinge;
}
@keyframes jackInTheBox {
from {
opacity: 0;
transform: scale(0.1) rotate(30deg);
transform-origin: center bottom;
}
50% {
transform: rotate(-10deg);
}
70% {
transform: rotate(3deg);
}
to {
opacity: 1;
transform: scale(1);
}
}
.jackInTheBox {
animation-name: jackInTheBox;
} @keyframes rollIn {
from {
opacity: 0;
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
transform: none;
}
}
.rollIn {
animation-name: rollIn;
} @keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
animation-name: rollOut;
}
@keyframes zoomIn {
from {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
animation-name: zoomIn;
}
@keyframes zoomInDown {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
animation-name: zoomInDown;
}
@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
animation-name: zoomInLeft;
}
@keyframes zoomInRight {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
animation-name: zoomInRight;
}
@keyframes zoomInUp {
from {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
animation-name: zoomInUp;
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
animation-name: zoomOut;
}
@keyframes zoomOutDown {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(-2000px, 0, 0);
transform-origin: left center;
}
}
.zoomOutLeft {
animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
transform: scale(.1) translate3d(2000px, 0, 0);
transform-origin: right center;
}
}
.zoomOutRight {
animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
40% {
opacity: 1;
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform-origin: center bottom;
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
animation-name: zoomOutUp;
}
@keyframes slideInDown {
from {
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
animation-name: slideInDown;
}
@keyframes slideInLeft {
from {
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
animation-name: slideInLeft;
}
@keyframes slideInRight {
from {
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
animation-name: slideInRight;
}
@keyframes slideInUp {
from {
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
animation-name: slideInUp;
}
@keyframes slideOutDown {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
animation-name: slideOutDown;
}
@keyframes slideOutLeft {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
animation-name: slideOutLeft;
}
@keyframes slideOutRight {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
animation-name: slideOutRight;
}
@keyframes slideOutUp {
from {
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
animation-name: slideOutUp;
}#leftcontato {
width: 49%;
float: left;
margin-right:2%;
}
#rightcontato {
width: 49%;
float: left;
}
.clearfixcontato:after {
content:"\0020";
display:block;
height:0;
clear:both;
visibility:hidden;
overflow:hidden;
margin-bottom:30px;
}
.clearfix {
display:block;
}
html {
font-size: 100%;
}
body {
font-family: 'Roboto', sans-serif;
font-size: 14px;
padding: 0;
color: #666;
line-height: 1.5rem;
font-weight: 300;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
}
* {
box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6{color: #2c2c2c; font-family: 'Raleway', sans-serif; font-weight: 500;}
h1 {
font-size: 2.6rem;
line-height: 3.5rem;
}
h2 {
font-size: 2.3rem;
}
h3 {
font-size: 1.8rem;
line-height: 2rem;
font-weight: 500;
}
h4 {
font-size: 1.3rem;
line-height: 1.5rem;
}
h5 {
font-size: 1.2rem;
line-height: 24px;
margin: 0 0 0.5rem 0;
}
h6 {
font-size: 1.0rem;
}
p {
line-height: 1.5rem;
font-weight: 300;
}
a {
-webkit-transition: all ease 0.25s;
transition: all ease 0.25s;
color: #f44336;
}
a:focus {
outline: none;
}
a:hover {
text-decoration: none;
color: #ED9FB6;
}
ul {
list-style: none;
padding-left: 0;
}
img { max-width: 100%; }
@media only screen and (max-width: 767px) {
img { width: 100%; }
}
hr { border: none; border-top: 1px solid #CCC; width: 100%; margin: 20px auto; }
section{padding:70px 0;}
.text-left { text-align: left; }
.light-bg { background: #FAF6F5 ; }
.border .content { border: 1px solid #CCC; }
.border-bottom { border-bottom: 1px solid #CCC; }
.border-top { border-top: 1px solid #CCC; }
.caps { text-transform: uppercase;}
.clear { clear: both; }
p.quote { border-left: 2px solid #EC4979; margin-left: 15px !important; padding: 15px 0; padding-left: 20px; font-size: 18px; font-style: italic; line-height: 28px; font-family: 'Roboto', sans-serif; font-weight: 300; }
@media only screen and (max-width: 639px) {
.post-navigation .nav-previous, .post-navigation .nav-next{ width: 100%; }
.nav-links .nav-previous a, .nav-links .nav-next a{width: 100%; margin-bottom: 10px; display: inline-block; text-align: center;}
}   ul.list-with-icon  li { position:relative; padding-left: 20px; margin-bottom: 10px; }
ul.list-with-icon  li i { position: absolute; top: 4px; left: 0; }
ul.border-bottom { border-bottom: 0; }
ul.border-bottom li { border-bottom: 1px solid #CCC; padding-bottom: 10px; }
ul.border-bottom.dotted li { border-bottom: 1px dotted #CCC; }
ul.border-bottom li:last-child { border-bottom: 0; }   .form-control { border-radius: 0; -webkit-box-shadow: none; box-shadow: none; -webkit-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; color: #333; padding: 6px 10px; }
.form-control:focus { border-color: #1D4578; -webkit-box-shadow: none; box-shadow: none; } .form-group.sm .form-control, .sm .form-control, .form-control.sm { height: 28px; padding: 4px 8px 4px; font-size: 12px; }
.form-group.sm  label { font-size: 12px; font-weight: 400; margin-bottom: 5px; } .form-group.lg .form-control, .lg .form-control, .form-control.lg { height: 40px; font-size: 18px; }
.form-group.lg  label { font-size: 18px; margin-bottom: 10px; } .form-control:-moz-placeholder { color: #777; }
.form-control::-moz-placeholder { color: #777; opacity: 1; }
.form-control:-ms-input-placeholder { color: #777; }
.form-control::-webkit-input-placeholder { color: #777; }
.form-icon { position: relative; }
.form-icon i { position: absolute; bottom: 9px; right: 10px; color: #777; }   .btn { border-radius: 0; padding: 6px 15px; background: #575757; background: rgba(87, 87, 87, 1); border-color: #575757; color: #FFF; -webkit-transition: all 0.10s linear 0.10s; -moz-transition: all 0.10s linear 0.10s; -o-transition: all 0.10s linear 0.10s; transition: all 0.10s linear 0.10s; }
.btn:hover { color: #FFF; background: rgba(255, 255, 255, 1); }
.btn:focus { outline: 0 !important; box-shadow: none !important; }
.btn-sm { padding: 3px 7px; }
.btn-primary, a.btn-primary, p.form-submit .submit, 
.reply a, input.wpcf7-form-control.wpcf7-submit, form.post-password-form input[type="submit"] {
background: #FF5722; border-color:#FF9800; transition: all ease-in-out 0.3s; border-width: 0 0 0 4px;
}
.btn-primary:hover, p.form-submit .submit:hover, .reply a:hover, 
input.wpcf7-form-control.wpcf7-submit:hover, form.post-password-form input[type="submit"]:hover {
background: #FF9800; border-color:#FF5722; transition: all ease-in-out 0.3s;
}
.btn-success, a.btn-success  { background: #04C97E; border-color: #04C97E; }
.btn-success:hover { color: #04C97E; }
.btn-warning, a.btn-warning  { background: #F5AC41; border-color: #F5AC41 }
.btn-warning:hover { color: #F5AC41; }
.btn-danger, a.btn-danger  { background: #F44142; border-color: #F44142; }
.btn-danger:hover { color: #F44142; }
.btn-info, a.btn-info{ background: #4781D1; border-color: #4781D1 }
.btn-info:hover{ color: #4781D1; }   #header { position: relative; }
.logo,.site-branding {
width:177px;
margin: 0 auto;
position: absolute;
top: 20px;
left: 0;
z-index: 9;
right: 0;
}
.site-branding {
width: 100%;
text-align: center;
top: 94px;
}
.site-branding h1.site-title{ line-height: 1.0; margin-bottom: 10px;}
.site-branding h1.site-title a, .site-branding p{color: #fff;}
.home .site-branding{top: 76px;}
.upper-header{color: #fff; background: #DD9933; padding: 5px 0;}
.upper-header ul{margin: 0; padding: 0 0 0 10px; text-align: left;}
ul.header-social li, ul.header-menu li{ display: inline-block; }
ul.header-menu li:after {
content: "";
border-right: 1px solid 1px solid rgba(255, 255, 255, 0.4);
padding: 0px 0px 0 5px;
position: relative;
}
ul.header-menu li:last-child:after{border: none;} 
ul.header-social li i{padding: 0 5px; color: #fff;}
ul.header-menu li a{color: #fff; padding: 0 5px;}
.upper-header p{margin: 0; display: inline-block; padding-right: 10px}
.upper-header p i{padding-right: 2px;}
@media only screen and (max-width: 992px) {
.logo { top: 20px; }
}
@media only screen and (max-width: 767px) {
.logo { width: 18%; }
}
@media only screen and (max-width: 567px) {
.logo { width: 30%; }
}   .big-banner-wrapper { padding: 0; overflow: hidden; position: relative; }
.big-banner-bg {
background-size: cover !important;
background-position: top center !important;
background-attachment: fixed;
}
.big-banner-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 670px;
background: rgba(0, 0, 0, 0.5);
z-index: 1;
padding: 0;
margin: 0;
}
.big-banner-inner {
padding: 0;
color: #FFF;
height: 670px;
z-index: 1;
position: relative;
width: 100%;
}
.big-banner-inner h1 {
background: rgba(0, 0, 0, 0.50);
padding: 8px 20px;
color: #FFF;
font-size: 42px;
font-weight: 500;
text-transform: uppercase;
display: inline-block;
margin: 300px 0 15px;
}
.big-banner-inner p {
background: rgba(158, 158, 158, 0.5);
font-size: 20px;
padding: 12px 20px;
color: #fff;
font-weight: 300;
display: inline-block;
}
@media only screen and (max-width: 767px){
.big-banner-inner{height: 450px;}
.big-banner-inner h1 {
font-size: 28px;
margin-top: 240px;
line-height: 32px;
}
.big-banner-inner p {
font-size: 16px;
}
}
@media only screen and (max-width: 479px){
.big-banner-inner h1 {
font-size: 22px;
line-height: 26px;
}
.big-banner-inner p {
font-size: 14px;
}
}   .navbar-default{
border-top: 0px;
text-align: center;
background:transparent;
border:none;
z-index: 99;
}
.navbar-default .navbar-nav>li>a{
color: #fff!important;
font-size: 18px;
}
.navbar-default .navbar-nav>li>a:hover, #navbar.navbar-default .navbar-nav>li>a:focus{
background: #f44336!important;
color: #fff!important;
}
.navbar-default .navbar-toggle .icon-bar{
background-color: #fff;
}
.navbar-default .navbar-toggle{
background:#FF5722;
border: none; 
}
.navbar-nav {
margin: 0 -15px;
background: #f1f1f1;
}
.navbar-default .navbar-nav>li>a{
color:#f44336!important;
border-bottom: 1px solid #ccc; 
text-align: left;
}
.navbar-default .navbar-nav>.active>a, 
.navbar-default .navbar-nav>.active>a:hover, #navbar.navbar-default .navbar-nav>.active>a:focus{
background: #f44336!important;
color: #fff!important;
}
.multiple-sticky {
position: relative;
background: #EDEDED;
}
.multiple-sticky.fixed {
position: fixed;
top: 0px;
left: 0;
width: 100%;
box-sizing: border-box;
z-index:9;
}
.multiple-sticky .multiple-sticky-item {
transition: all 0.2s ease;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
}
ul.multiple-sticky-nav {
margin: 0;
padding: 0 10px;
background: #EDEDED;
border-bottom: 1px solid #E5E5E5;
border-top: 1px solid #E5E5E5;
}
ul.multiple-sticky-nav > li {
display: inline-block;
margin: 0;
padding: 0;
}
ul.multiple-sticky-nav > li a {
padding:18px 10px 16px;
line-height: 1.5;
display: block;
position: relative;
border: 1px solid transparent;
border-top: 0;
padding-top: 16px;
margin-bottom: -1px;
color: #5d5d5d;
text-transform: uppercase;
font-size: 14px;
letter-spacing: 0.5px;
}
ul.multiple-sticky-nav > li a:hover {
color: #D60D45;
}
ul.multiple-sticky-nav > li.active a {
background: #F7F7F7;
border-color: #E5E5E5;
border-bottom-color: #F7F7F7;
color: #D60D45;
}
.multiple-sticky.fixed {
background: #EDEDED;
border-bottom: 1px solid #E5E5E5;
border-top: 1px solid #E5E5E5;
}
.multiple-sticky.fixed .multiple-sticky-container {
width: 1170px;
margin: 0 auto;
padding-left: 15px;
padding-right: 15px;
}
.multiple-sticky.fixed .multiple-sticky-item {
width: 100%;
border: 0;
}
.multiple-sticky.fixed ul.multiple-sticky-nav {
border-bottom: 0;
border-top: 0;
padding: 0;
}
@media only screen and (max-width:992px){
ul.multiple-sticky-nav{padding: 0;}
ul.multiple-sticky-nav > li a{padding: 18px 8px 16px;}
}
@media only screen and (max-width:767px){
.multi-menu {
height: 0!important;
}
}   #find-room-form-wrapper { width: 100%; min-height: 1px; }
#find-room-form-wrapper .container { position: relative; }
#find-room-form-wrapper .inner { background: #000; background: rgba(0,0,0,0.5); padding: 20px 30px 5px; position: absolute; top: -180px; z-index: 9; width: 100%; }
#find-room-form-wrapper .inner .form-control { border: 0; }
@media only screen and (max-width: 1199px) {
#find-room-form-wrapper .inner { width: 96%;  }
}
@media only screen and (max-width: 992px) {
#find-room-form-wrapper .inner { padding: 20px 20px 5px; top: -270px;}
.container{width: 100%; margin: 0;}
}
@media only screen and (max-width: 767px) { 
#find-room-form-wrapper .inner { background:#fff; padding:35px 20px 0; position:inherit; top:inherit; width: 100%; }
.light-bg{background: transparent;}
#find-room-form-wrapper .inner .form-control { border: 1px solid #CCC; }
#find-room-form-wrapper select.form-control.styled-select.hasCustomSelect{width: 91%!important;} }
@media (max-width: 639px) {
.light-bg{
background: transparent;
}
}   .section-header-1 { text-align: center; margin-bottom: 40px; }
.section-header-1 h2 { font-weight: 500; margin-top: 0; }
.section-header-1 h3 { margin-top: 0; }
.section-header-1 hr.separator { border: none; border-top: 2px solid #ED4A7A; width: 80px; margin: 15px auto; }
.section-header-2 { text-align: center; margin-bottom: 40px; }
.section-header-2 h2 { font-weight: 400; margin-top: 0; }
.section-header-2 h3 { margin-top: 0; }
.section-header-2 .separator { position: relative; }
.section-header-2 .separator hr { border: none; border-top: 1px solid #8d8d8d; width: 180px; margin: 20px auto; }
.section-header-2 .separator span { font-size:12px; width:40px; background:#fff; padding:0 5px; z-index:9; position:absolute; top: -10px; left: 50%; margin-left: -20px; }
.light-bg .section-header-2 .separator span { background: #F3F5F8; }
.section-header-3 { text-align: center; margin-bottom: 40px; text-align: center; }
.section-header-3 h2 { font-weight: 600; position: relative; border-bottom: 1px solid #ccc; margin: 0px 0 20px; display: inline-block; font-size: 24px; color: #002C48; line-height: 24px; padding: 0px 0 12px; }
.section-header-3 h2:after {
border-top: 2px solid #F44336;
content: "";
position: absolute;
width: 60px;
height: 2px;
bottom:-1px;
left: 0;
right: 0;
margin: 0 auto;
}
.section-header-3 p { font-size: 18px; font-weight: 300; line-height: 26px; margin-bottom: 0;font-style: italic; } 
.section-header-4 { text-align: center; }
.section-header-4 h2 { font-weight: 600; margin: 20px 0 25px; text-transform: uppercase; font-size: 24px; color: #777; line-height: 24px; display: inline-block; padding: 5px 10px 3px; background: #ED4A7A; color: #fff; border: 2px solid #ffffff; box-shadow: 0px 0px 0px 2px #ED4A7A; }
.light-bg .section-header-4 h2 { border: 3px solid #F3F5F8; }
@media only screen and (max-width: 767px) {
.section-header-3{margin-bottom: 20px;} 
.section-header-3 h2 { font-size: 20px; width: 50%; }
.section-header-3 p { font-size: 16px; }
}
@media only screen and (max-width: 639px) { 
.section-header-3 h2{width: 80%;}
.section-header-3 h2:after{width: 80px;}
}   .room-list, .gallery-section{
background:rgba(241, 241, 241, 0.29) ;
}
.hotel-room-item-01 .content { padding-top: 20px; text-align: center; }
.hotel-room-item-01.border .content { border-top: 0; padding: 20px 15px; }
.hotel-room-item-01 h3 { font-size: 20px; margin-top: 0; }
.hotel-room-item-01 hr { border: none; border-top: 1px solid #CCC; width: 120px; margin: 15px auto; }
.hotel-room-item-01 .price { font-size: 22px; font-weight: 400; margin-right: 15px; }
.hotel-room-item-01 .price .small { font-size: 12px; }
.hotel-room-item-01 a.link-more { margin-top: 3px; margin-left: 15px; }
.col-md-3 .hotel-room-item-01 h3 { font-size: 18px; }
.col-md-3 .hotel-room-item-01.border .content { padding: 12px 15px 15px; }
.col-md-3 .hotel-room-item-01 hr { width: 80px; margin: 12px auto; }
.hotel-room-item-02{box-shadow: 0 0 5px #ccc; border-bottom: 5px solid #ccc;  transition: all ease-in-out 0.5s;}
.hotel-room-item-02:hover{border-bottom:5px solid #F44336; transition: all ease-in-out 0.5s; }
.hotel-room-item-02 .content{background: #fff; padding: 12px;}
.hotel-room-item-02 h3 { font-size: 16px; text-transform: uppercase; margin:0;  line-height: 24px; font-weight: 700; }
.hotel-room-item-02 a { color: #333; }
.hotel-room-item-02 p { margin: 0; line-height: 22px; }
.hotel-room-item-02  hr { width: 100%; margin: 5px auto 7px; border: none; border-top: 1px solid #CCC; }
.hotel-room-item-02 .price { font-size: 22px; font-weight: 700; margin-right: 15px; color: #111; }
.hotel-room-item-02 .price .small { font-size: 12px; font-weight: 400; }
.hotel-room-item-02 a.link-more { float: right;
color: #fff;
background: #FF5722;
padding: 0 10px;
}
.hotel-room-item-02 article.content .bottom {
margin-top: 15px;
}
.hotel-room-item-02 a:hover { text-decoration: none;}
.hotel-room-item-02 .img { position: relative; }
.room-list .col-sm-6{
padding: 0 8px 0px;
width: 50%;
}
.room-list .slick-slider{
margin-bottom: 0px;
}
@media only screen and (max-width: 992px) {
.hotel-room-item-02 { margin: 0 0 20px; }
.hotel-room-item-02 h3{
font-size: 15px;
}
.hotel-room-item-02 .content{
padding: 10px;
}
.hotel-room-item-02 .price{
font-size: 16px;
margin-right: 5px;
}
.hotel-room-item-02 a.link-more{
padding:0px 8px;
}
}
@media (max-width: 767px) {
section#room-list{padding: 70px 0 50px;}
.hotel-room-item-02 h3 { font-size: 12px; }
.hotel-room-item-02 a.link-more{float: none;}
.special-offer-single {
padding: 0 120px 0;
}
}
@media (max-width: 639px) {
.special-offer-single {
padding: 0;
}
.special-offer-single .discount{
top: 40%;
}
.hotel-room-item-02{margin: 0px;}
.hotel-room-item-02 a.link-more{
padding:5px 8px 7px;
}
}   .featured-img { }
.featured-img h3 { font-size: 18px; text-transform: uppercase; margin: 11px 0 10px; line-height: 24px; font-weight: 700; }
@media only screen and (max-width: 767px) { 
.featured-img { margin-bottom: 30px; }
}
ul.featured-img-list { margin: 0; padding: 0; list-style: none; }
ul.featured-img-list li { position: relative; border-bottom: 1px solid #CCC; margin: 0 0 30px; padding: 0 0 30px; }
ul.featured-img-list li:last-child { border-bottom: 0; margin: 0; padding: 0; }
ul.featured-img-list li .img { position: absolute; top: 0px; left: 0;}
ul.featured-img-list img {border-radius: 50%; width: 154px;  height: 154px;  border: 5px solid #ccc;}
ul.featured-img-list li .content { margin: 0; margin-left: 200px; min-height: 185px; }
ul.featured-img-list li .content h3 { position: relative; margin: 0px 0 25px; text-transform: uppercase; }
ul.featured-img-list li .content h3:before { content:" "; position: absolute; left: 0; bottom: -10px; width: 70px; height: 2px; background: #F44336; }
ul.featured-img-list li:nth-child(even) { text-align: right; }
ul.featured-img-list li:nth-child(even) .img { left: auto; right:0;}
ul.featured-img-list li:nth-child(even) .content { margin-left: 0; margin-right: 200px; }
ul.featured-img-list li .content:last-child{min-height:144px; }
ul.featured-img-list li:nth-child(even) .content h3:before { left: auto; right: 0; }
ul.featured-img-list p{margin-bottom: 0;}
@media (min-width: 767px) and (max-width: 992px) {
ul.featured-img-list li .content h3 { margin: 0px 0 25px; font-size: 22px; }
}
@media only screen and (max-width: 767px) { 
.facilities img{width: 100%}
ul.featured-img-list li .content h3 { margin: 0 0 25px; }
ul.featured-img-list li .content { margin-left: 0; }
ul.featured-img-list li:nth-child(even) .content { margin-right: 0; }
ul.featured-img-list li .img { position: relative; top: 0; left: 0; width: 100%; margin-bottom: 15px; }
}
@media (min-width: 479px) and (max-width: 767px) {
}
@media (max-width: 479px) {
}   .content-info h3{margin-top: 0;}
.about-module h3 { margin: 5px 0 25px; border-bottom: 1px solid #CCC; padding-bottom: 10px; }
.about-module h4 { margin: 0 0 20px; }
.counter-item-wrapper { margin: 20px 0 00px; }
.counter-item { text-align: center; border: 1px solid #CCC; padding:60px 20px 25px; margin:12px 5px 50px; position: relative; }
.counter-item .number-count-to { font-size: 32px; }
.counter-item .icon {
font-size: 32px;
margin: 0px 0 25px;
color: #FF5722;
position: absolute;
left: 0;
right: 0;
top: -32px;
border-radius: 50%;
background: #f1f1f1;
height: 70px;
width: 70px;
margin: 0 auto;
border: 1px solid #ccc;
line-height:2.1;
}
.counter-item h4 { text-transform: uppercase; font-size: 16px; }
ul.why-at-list { margin: 40px 0 0; }
ul.why-at-list li { position: relative; margin: 0 0 15px; padding: 0; }
ul.why-at-list li:last-child { margin: 0; }
ul.why-at-list li .content { margin-left: 70px; }
ul.why-at-list li .content h3 { font-size: 18px; margin: 0 0 10px; font-weight: 600; }
ul.why-at-list li .content h3:before { display: none; }
ul.why-at-list li .icon { position: absolute; top: 0; left: 0; border-right: 2px solid #EC4979; padding: 10px 0 5px; padding-right: 20px; font-size: 24px; }
@media only screen and (max-width: 1199px) {
.counter-item {padding: 60px 5px 20px; }
p.quote{padding-bottom: 0px; margin-bottom: 0;}
}
@media only screen and (max-width: 992px) {
}
@media (min-width: 767px) and (max-width: 992px) {
}
@media only screen and (max-width: 767px) { 
.counter-item h4 { text-transform: uppercase; font-size: 13px; }
.facilities .inner {text-align: center;}
ul.featured-img-list li .content h3:before{display: none;}
.counter-item {
margin: 50px 0px 0px;
}
}
@media (max-width: 639px) {
#about-us .col-xs-6.col-sm-6{width: 100%;}
.counter-item-wrapper{margin: 0;}
}
@media (max-width: 479px) {
.counter-item h4 { text-transform: uppercase; font-size: 16px; }
}   .featured-img{
position: relative;
}
.best-package-module {
position: absolute;
bottom: 0;
padding: 15px;
background: rgba(0,0,0,0.7);
}
.best-package-module p, .best-package-module .bottom .price{
color: #fff;
}
.package-module h3 { font-size: 18px; text-transform: uppercase; margin: 0 0 15px; line-height: 24px; font-weight: 700; border-bottom: 1px solid #CCC; padding-bottom: 7px; }
.package-module h3 a { color: #F44336; }
.package-module h3 a:hover { color: #ED9FB6; }
.package-module p{color: #8d8d8d;}
.package-module h4 { font-size: 14px; margin: 0 0 10px; line-height: 18px; font-weight: 600; text-transform: uppercase; }
.package-module .bottom { border-top: 1px solid #CCC; padding-top: 10px; margin-top: 20px; }
.best-package-module .package-module .price{ margin-right: 15px; color: #111; }
.package-module .price .large, .best-package-module .bottom .price .large { font-size: 22px; font-weight: 700; }
.package-module .price .small, .best-package-module .bottom .price .small{ font-size: 14px; font-weight: 300; text-transform: uppercase; }
a.link-more { margin-top: 8px; float: right; color: #fff; background:#FF5722; padding:6px 15px;  font-weight: 500; display: inline-block;}
.package-module a:hover {}
.package-slider{margin:0;border:0 solid #000;position:relative;-webkit-border-radius:0;-moz-border-radius:0;-o-border-radius:0;border-radius:0;box-shadow:0 0 0 rgba(0,0,0,0);-webkit-box-shadow:0 0 0 rgba(0,0,0,0);-moz-box-shadow:0 0 0 rgba(0,0,0,0);-o-box-shadow:0 0 0 rgba(0,0,0,0);zoom:1}
.package-slider .flex-control-nav{width:100%;position:absolute;bottom:-30px;text-align:center;height:6px}
.package-slider .flex-control-nav li{margin:0;display:inline-block;zoom:1;*display:inline}
.package-slider .flex-control-paging li a{width:12px;height:12px;display:block;cursor:pointer;text-indent:-9999px;box-shadow:inset 0 0 0 rgba(0,0,0,0);opacity:1;margin:0 5px;border-radius:50%;border:1px solid #CCC;background:transparent}
.package-slider .flex-control-paging li a:hover{ background: #ED4A7A; cursor:pointer; opacity:1; border:1px solid #ED4A7A;}
.package-slider .flex-control-paging li a.flex-active{background:#F44336;cursor:default;opacity:1;}
.package-slider .flex-direction-nav{display:none}
.modal{
top: 30px;
}
.modal-dialog{
width: 1040px;
margin: 0 auto;
}
.modal-header{
background: #F44336;
color: #fff;
display: inline-block;
width: 100%;
border-radius: 5px 5px 0 0;
position: relative;
}
.book-tab-opt {
float: left;
width: 100%;
}
.package-module .book-tab-opt h3{
margin-bottom: 10px;
border-color:rgba(241, 241, 241, 0.4);
}
.modal-header > span {
border-right: 1px solid #ddd;
color: #fff;
float: left;
font-family: open sans;
font-size: 14px;
letter-spacing: 0.3px;
line-height: 10px;
text-align: center;
width: 15%;
padding: 18px 20px 18px 0;
}
.modal-header > span i{
padding-right: 5px;
}
.modal-header h3{
font-size: 16px;
}
.modal-header h6{
font-size: 13px;
}
.modal-header h3, .modal-header h6{
color: #fff;
margin: 0 0 6px;
}
.modal-body{
display: inline-block;
width: 100%;
}
.tab-pane h4 {
border-bottom: 1px solid #ccc;
padding-bottom: 8px;
font-size: 14px; 
margin: 0 0 10px; 
line-height: 18px; 
font-weight: 600; 
text-transform: uppercase; }
}
.modal-body .col-sm-6:first-child{
padding-left: 0;
padding-right: 5px;
}
.modal-body .col-sm-6:last-child{
padding-right: 0px;
padding-left: 5px;
}
.modal-body .input-control {
border-radius: 5px;
border: 1px solid #ddd;
width: 100%;
padding: 8px 10px;
}
.modal-header .close {
position: absolute;
right: 10px;
top: 10px;
z-index: 9;
border-radius: 50%;
background: #fff;
height: 25px;
width: 25px;
}
.tab-pane .col-sm-4{
margin-bottom: 15px;
padding: 0 8px;
}
.tab-pane .inner .col-sm-6{
padding-left: 0;
padding-right: 8px;
}
.panel-heading{
padding:8px;
}
.modal-body .panel{
margin-bottom: 0px;
}
.upper-info {
display: inline-block;
}
.modal-body .inner{
position: inherit;
top: inherit;
margin-bottom: 20px;
}
.modal-body .inner:last-child{
margin-bottom: 0px;
}
.modal-body .inner .container{
width: 100%;
padding: 0;
}
.modal-body .inner .row{
margin: 0px;
}
.modal-body .inner .col-sm-12{
padding-left: 0px;
padding-right: 0;
}
.modal-body select.form-control.styled-select.hasCustomSelect {
width: 97%!important;
}
.close{
opacity:0.8;
}
.modal_package_content {
height: 310px;
overflow: auto;
}
.modal-content {
border-radius: 0;
}
#myModal1 .col-sm-6 {
padding-left: 5px;
}
#myModal1 #modal_inquiry_form .col-sm-6{
padding-left: 0px;
}
.modal-dialog {
margin-top: 15px;
}
.package_content {
margin-top: 5px;
margin-bottom: -5px;
position: relative;
}
#myModal1 .col-sm-12 {
padding-left: 0px;
padding-right: 0px;
padding-bottom: 0px;
}
#myModal1 .modal-dialog .form-group{
margin-bottom: 10px;
}
#myModal1  #modal_inquiry_form .col-sm-6:nth-child(2n) {
padding-right: 0;
} 
button.close-sec {
position: absolute;
top: 0;
right: 5px;
border-radius: 50%;
height: 30px;
width: 30px;
text-align: center;
font-size: 16px;
padding: 0px;
background: #fafafa;
border: 1px solid #f9f3f3;
line-height: 0px;
}
@media (max-width: 1100px) {
.modal-dialog{
width: 96%;
}
}
@media (min-width: 768px) and (max-width: 992px ) {
.best-package-module{position: inherit; background: rgba(0,0,0,0.9)}
}
@media (min-width: 732px) and (max-width:767px ) {
section#best-package .col-md-6.col-sm-6{width: 50%; float: left;}
.best-package-module{position: inherit; background: rgba(0,0,0,0.9)}
}
@media (max-width: 767px) {
.modal-body .col-sm-6:last-child{
padding-left: 0px;
}
#myModal1 .col-sm-6{padding-left:0px; padding-right: 0px; }
.modal-body .inner:last-child{
margin-top: 15px;
}
.modal{
top: 0px;
}
.tab-pane .inner .col-sm-6{
width: 100%;
padding: 0;
}
.modal-body select.form-control.styled-select.hasCustomSelect {
width: 95%!important;
}
.package-slider .flex-control-nav{bottom: 0px;}
}
@media (max-width: 639px ) {
.best-package-module{position: inherit; background: rgba(0,0,0,1); bottom: 1px;}
} .parallax{width:100%;height:400px;position:relative;overflow:hidden;background:#f8f8f8;color:#fff;z-index:0;padding:0}
.parallax h2{color:#FFF;font-weight:500}
.parallax .container{display:table;overflow:hidden;position:relative}
.parallax .parallax-content,.parallax .overlay{height:400px}
.parallax-content{display:table-cell;vertical-align:middle;text-align:center;overflow:hidden}
.overlay{background-image:url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/css/images/pattern.png); background-color: rgba(0,0,0,0.5); width:100%;position:absolute;overflow:hidden}
.parallax-bg{width:100%;height:100%;margin:0 auto;position:absolute;background-size:cover;background-attachment:fixed;background-repeat:repeat-y;background-position:top center; }
.parallax.height-250 { height: 250px; }
.parallax.height-250 .parallax-content, .parallax.height-250 .overlay { height: 250px; }
.bg1 { background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/parallax/parallax1.html); }
.bg2 { background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/parallax/parallax2.html); }
.bg3 { background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/parallax/parallax3.html); }
.bg4 { background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/parallax/parallax4.html); }
.special-offer-bg { background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/parallax/special-offer-parallax.html); }
.testimonial-bg { background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/parallax/testimonial-parallax.html); } .parallax-section .overlay { width: 100%; height: 100%; position: absolute; top: 0; left: 0;background-color: rgba(0,0,0,0.5); overflow:hidden; }
.parallax-for-flexslider, .parallax-inner { width:100%; height: 100%; padding: 0; margin: 0; background-attachment: fixed; background-repeat:repeat-y; background-position:top center; text-align:center; }
.parallax-for-flexslider-mobile { background-position: 50% 0px !important;  background-attachment: scroll !important; }
.parallax-for-flexslider .parallax-text-container-1 { width: 100%; margin: 0; padding:130px 40px; }
.parallax-overlay { background-color: rgba(0,0,0,0.5); overflow:hidden; height: 100%; }
.parallax-for-flexslider p, .parallax-inner p { color:#FFF; } section.special{
padding: 70px 0 66px;
}
.special-offer-single {
text-align: left;
width: 100%;
padding: 0;
background: rgba(0, 0, 0, 0.5);
display: inline-block;
padding: 15px 0px 15px;
border-radius: 10px;
}
.special-offer-single .discount { border: 2px solid rgba(255, 255, 255, 0.5);width: 140px; height: 140px; border-radius:0 20%; text-align: center;  font-weight: 700; }
.special-offer-single .discount .inner { text-align:center; background:rgba(244, 67, 54, 1); background: rgba(244, 67, 54, 0.9); color: #FFF; width: 130px; height: 130px; border-radius:0 20%; margin: 3px 0 0 3px; padding-top: 46px; }
.special-offer-single .discount .large { display: block; font-size: 28px; line-height: 1.5rem; }
.special-offer-single .content { font-size: 16px; line-height: 24px;}
.special-offer-single .content  h3 { color: #FFF;  text-transform: uppercase;padding: 10px 0 6px; margin: 0 0 20px; }
.special-offer-single .content p { font-size: 16px; line-height: 24px; color: #FFF; font-weight: 300; }
.special-offer-single .content p:last-child { margin-bottom: 0; }
.special-offer-single .absolute-right { padding:50px 0 0; float: right;}
@media (max-width: 992px) {
.special-offer-single .content  h3{
font-size: 16px;
font-weight: bold;
padding-top: 0px;
margin: 0;
}
.special-offer-single .discount{width: 100px; height: 100px; margin-top: 35px;}
.special-offer-single .discount .inner{width:90px; height: 90px; padding-top: 26px;}
}
@media only screen and (max-width: 767px) {
.special-offer-single {text-align: center;}
.special-offer-single .discount{display: inline-block; margin-bottom: 33px; margin-top: 0;}
.special-offer-single .col-sm-2, .special-offer-single .col-sm-8{width: 100%; text-align: center;}
.special-offer-single .content  h3 { font-size: 18px; }
.special-offer-single .content p { font-size: 14px; line-height: 22px; }
.special-offer-single .absolute-right { float:none;}
} .testimonial-wrapper { position: relative; }
.testimonial-wrapper .icon { border: 2px solid rgba(255,255,255,0.6); width: 80px; height: 80px; border-radius: 40px; margin: 0 auto 30px; }
.testimonial-wrapper .icon .inner { background: rgba(255,255,255,0.6); width: 70px; height: 70px; border-radius: 40px; display: inline-block; margin: 3px 0 0 0px; font-size: 24px; line-height: 66px; }
.testimonial-large-item {
padding: 15px;
color: #000;
background: rgba(241, 241, 241, 0.79);
width: 80%;
margin: 0 auto;
border: 2px dashed #fff;
}
.content p { font-size: 15px; line-height: 1.6em; }
.testimonial-man .name { text-transform: uppercase; font-weight: 700; font-size: 18px; border: 1px solid rgba(255,255,255,0.6); display: inline-block; border-right: 0; border-left: 0; padding: 3px 0; margin: 10px 0 5px; }
.testi-inner {
margin-bottom: 25px;
display: inline-block;
width: 100%;
}
.testi-inner .testimonial-man .name{margin: 0px; padding: 0; color: #434343;} 
.testimonial-man span{display: block; font-style:italic; color: #f44336;}
#parallax-for-testimonial  .parallax-overlay { padding-top: 80px; padding-bottom: 80px; }
.testimonial-slider{margin:0;border:0 solid #000;position:relative;-webkit-border-radius:0;-moz-border-radius:0;-o-border-radius:0;border-radius:0;box-shadow:0 0 0 rgba(0,0,0,0);-webkit-box-shadow:0 0 0 rgba(0,0,0,0);-moz-box-shadow:0 0 0 rgba(0,0,0,0);-o-box-shadow:0 0 0 rgba(0,0,0,0);zoom:1}
.testimonial-slider .flex-control-nav{width:100%;position:absolute;bottom:0;text-align:center;height:6px}
.testimonial-slider .flex-control-nav li{margin:0;display:inline-block;zoom:1;*display:inline}
.testimonial-slider .flex-control-paging li a{width:12px;height:12px;display:block;cursor:pointer;text-indent:-9999px;border:0 solid;-webkit-border-radius:0;-moz-border-radius:0;-o-border-radius:0;border-radius:0;box-shadow:inset 0 0 0 rgba(0,0,0,0);opacity:1;margin:0 5px;border-radius:0;border:1px solid #CCCCCC;background:transparent}
.testimonial-slider .flex-control-paging li a:hover{background:transparent;cursor:pointer;opacity:1}
.testimonial-slider .flex-control-paging li a.flex-active{background:transparent;cursor:default;opacity:1;border-color:#FFF}
.testimonial-slider .flex-direction-nav{display:none}
.testimonial-slider .testimonial-large-item { margin-bottom: 40px; }
@media only screen and (max-width: 767px) { 
#parallax-for-testimonial  .parallax-overlay { padding-top: 20px; padding-bottom: 20px; }
.testimonial-wrapper .icon { width: 60px; height: 60px; border-radius: 40px; margin: 0 auto 10px; }
.testimonial-wrapper .icon .inner { width: 50px; height: 50px; font-size: 18px; line-height: 46px; }
.testimonial-large-item { padding:8px; }
.testimonial-large-item .content p { font-size: 14px; line-height: 20px; }
.testimonial-slider .testimonial-large-item { margin-bottom: 20px; }
}
@media (max-width: 639px) {
.testimonial-large-item{
width: 100%;
}
.testi-inner img {
margin-bottom: 15px;
width: 100%;
}
}
.two-columns-full-layout .inner{
text-align: center; padding-top: 0px;
}
.slider-nav-3{
width:500px;
margin:0 auto;
padding-top: 20px;
}
#testimonial .slick-slide { width: 180px; display: inline-block; margin: 0px 7px; }
#testimonial .slick-slide .image { width: 120px; height: 120px; background:rgba(255,255,255,0.5); opacity: 0.9; border-radius: 20% 0% 20% 0; padding-left: 4px; display: inline-block; position: relative; }
#testimonial .slick-slide .image img { width: 110px; height: 110px; transition: all ease-in-out 0.5s; border-radius: 20% 0% 20% 0; display: block; position: absolute; top: 5px; left: 5px; }
#testimonial .slick-slide.slick-active.slick-center .image {transform:scale(1.08); opacity: 1; transition: all ease-in-out 0.5s;background:#FF5722;}
#testimonial .slick-slide.slick-active.slick-center{padding-top: 10px;}
@media only screen and (max-width: 992px) {
.two-columns-full-layout .left-inner .inner { padding: 60px 10px; }
.two-columns-full-layout .right-inner { width: 50%; padding: 30px 20px; }
.two-columns-full-layout .right-inner .testimonial-large-item p { font-size: 16px; }
.slider-nav-3{width: 100%;}
ul.testimonial { margin-top: 20px; margin-left: 40px; margin-right: 0; }
ul.testimonial li { width: 80px; }
ul.testimonial li .image { width: 80px; height: 80px; }
ul.testimonial li .image img { width: 70px; height: 70px; border-radius: 50%; display: block; position: absolute; top: 4px; left: 4px; }
}
@media only screen and (max-width: 767px) { 
ul.testimonial li { width: 60px; }
ul.testimonial li .image { width: 60px; height: 60px; }
ul.testimonial li .image img { width: 50px; height: 50px; border-radius: 50%; display: block; position: absolute; top: 4px; left: 4px; }
.two-columns-full-layout .right-inner .testimonial-large-item p { font-size: 13px; }
}
@media (max-width:639px) {
.two-columns-full-layout .left-inner { width: 30%; }
.two-columns-full-layout .right-inner { width: 70%; }
ul.testimonial { margin-top: 0px; margin-left: 0; }
ul.testimonial li{margin-bottom: 15px;}
} #gallery-home { padding-bottom: 0;  }
ul.gallery-item { margin: 0; padding: 0; margin-bottom: -1px; }
ul.gallery-item li { float: left; width: 16.6666666667%; -webkit-transition: all 0.2s linear 0.2s; }
ul.gallery-item li .img { position: relative; }
ul.gallery-item li .img .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 0%; -webkit-transition: all 0.15s linear 0.2s; -moz-transition: all 0.15s linear 0.2s; -o-transition: all 0.15s linear 0.2s; transition: all 0.15s linear 0.2s;  } 
ul.gallery-item li .img .overlay .icon { position: absolute; left: 50%; top: -100%; font-size: 24px; margin-left: -15px; margin-top: -15px; color: #FFF; width: 100%; height: 0%; -webkit-transition: all 0.35s linear 0.1s; -moz-transition: all 0.35s linear 0.1s; -o-transition: all 0.35s linear 0.1s; transition: all 0.35s linear 0.1s;  }
ul.gallery-item li:hover .overlay { height: 100%; } 
ul.gallery-item li:hover .overlay .icon { top: 50%; } 
@media (max-width: 479px) {
ul.gallery-item li { width: 33.333333333332%; }
} #blog .col-xs-3.col-sm-3 a{
color: inherit;
transition: all ease-in-out 0.5s;
}
#blog a:hover .blog-item{border-bottom:5px solid #F44336; transition: all ease-in-out 0.5s;  }
.blog-section{position: relative;}
.blog-section h4{margin:10px 0 10px;text-transform: uppercase;font-size: 16px;
font-weight: 500;}
.blog-section .blog-item-full h4{margin: inherit;, text-transform: inherit; font-size: inherit;font-weight: inherit;}
.blog-item {background: #fff; display: inline-block; box-shadow: 0 0 5px #ccc;border-bottom: 5px solid #ccc;}
.blog-content{padding: 10px;}
.blog-content p{margin: 0 0 10px 0;}
.blog-item .listin {
margin: 5px 0 0px;
border-top: 1px solid rgba(204, 204, 204, 0.37);
padding: 5px 0 0;
}
.blog-item .listin span{padding-right:10px;}
.blog-item .listin span i{padding-right: 5px;}
.blog-author {
margin-bottom: 30px;
border-bottom: 1px dashed rgba(204, 204, 204, 0.5);
padding-bottom: 25px;
}
.blog-author h3{margin-bottom: 20px}
.blog-author img {
border-radius: 50%;
border: 2px solid rgba(204, 204, 204, 0.32);
}
nav.navigation.post-navigation {
margin-bottom: 10px;
display: inline-block;
width: 100%;
}
.testimonial_content .scrollbot-outer-parent {
z-index: 9!important;
}
@media (max-width: 1100px){
#blog .col-xs-3.col-sm-3 {
padding: 0 8px;
}
#blog h4{font-size: 1.2rem;}
}
@media (max-width: 992px){
.blog-item .col-sm-4, .blog-item .col-sm-8{width: 100%;} 
.blog-item .listin span{display: block;}
}
@media (max-width: 767px) {
.blog-section h4:before {top: 28px;}
.blog-item img{width: 100%;}
#blog .col-xs-3.col-sm-3 {
width: 50%;
padding: 0 15px;
margin-bottom:20px;
}
.blog-section {
padding:70px 0 50px;
}
.blog-author{text-align: center;} 
.blog-author img{width: 50%; margin-bottom: 15px;}
}
@media (max-width: 639px) {
.blog-section .col-sm-6{width: 100%;}
.blog-section h4:before {top: 25px;}
.blog-item .listin{display: block;}
#blog .col-xs-3.col-sm-3{width: 100%; padding: 0 15px;}
#blog .col-xs-3.col-sm-3:last-child{margin-bottom: 0px;}
} #newsletter {   border-bottom: 1px solid rgba(241, 241, 241, 0.32);
margin-bottom: 40px;
}
#newsletter  .labels { font-size: 20px; text-transform: uppercase; font-weight: 400; display: block; padding-top: 10px; }
#newsletter .form-group { position: relative; padding-right: 140px; }
#newsletter .form-group .btn { position: absolute; top: 1px; right: 0; line-height: 20px; border: 3px double #FFF; color: #FFF; background:transparent; width: 130px; }
#newsletter .form-group .btn:hover {  }
#newsletter .form-control { border-color: transparent; height: 40px; padding-left: 12px; padding-top: 7px; }
@media only screen and (max-width: 992px) {
#newsletter  .labels { margin-bottom: 20px; padding-top: 0; font-size: 16px; }
}
@media only screen and (max-width: 992px) { }
@media (max-width: 479px) { #newsletter  .labels { font-size: 14px; text-align: center; }
#newsletter .form-group { padding-right: 0; }
#newsletter .form-group .btn { position: relative; width: 100%; margin-top: 15px; }
} .map-wrapper img, .map img, .gmap3 img  { max-width: none !important; }
#map_canvas { position:relative; z-index:0; width:100%; height:400px;  }
#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object { max-width: none !important; }
.footer-map-full { width: 100%; height:340px;} p.address-item { position: relative; padding-left: 80px; margin-bottom: 25px; font-size: 16px; }
p.address-item .icon { position: absolute; top: 0px; left: 40px; font-size: 24px; color: #FF5722; }
@media (max-width:992px) {
p.address-item{padding-left: 40px;}
p.address-item .icon{left: 0;}
}
@media only screen and (max-width: 767px) { 
p.address-item { padding-left: 50px; }
p.address-item .icon { left: 10px; }
p.address-item:last-child {
margin-bottom: 0;
}
}
@media (max-width:639px) {
p.address-item:last-child{margin-bottom: 0;}
} #contact{background:rgba(241, 241, 241, 0.45);}
.contact-detail{margin-top: 30px;}
#success_page { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; padding: 10px 15px; margin: 0 0 15px; }
#success_page h1 { color: #3c763d; font-size: 18px; font-weight: 700; line-height: 22px; margin: 10px 0 7px; }
.error_message { color: #a94442; background-color: #f2dede; border-color: #ebccd1; padding: 10px 15px; margin: 0 0 15px; }
#contact .alert-success h3{font-size: 1.5rem; margin: 0;}
#contact .error, #contactform-error-msg .alert.alert-error{color: #F44336; font-weight: 300;}
#contactform-error-msg .alert.alert-error{padding:0 0px 15px; margin-bottom: 0;}
@media (max-width:767px){
.contact-form-holder {
margin-bottom: 30px;
}
}
.contact-form-holder label{width: 100%;}
.contact-form-holder label input{border-radius: 0px; width: 100%;
display: inline-block;}
input.wpcf7-form-control.wpcf7-submit {
padding: 10px 20px 9px;
font-size: 14px;
color: #fff;
border-radius: 0px;
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
margin: 15px 0 0;
} footer#footer{position:relative; background:#000 url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/footer-bg.jpg) no-repeat;color: #DEDEDE; padding: 0px 0 40px; background-position: center; background-size:cover;}
#footer-bottom{position: relative; z-index: 1}
#footer-bottom ul.inline-menu { list-style: none; padding-bottom: 10px; margin: 0; text-align: center; }
#footer-bottom ul.inline-menu li { display: inline; margin: 0; padding: 0 10px; font-size: 16px;  }
#footer-bottom ul.inline-menu li + li { border-left: 1px solid #DEDEDE; }
#footer-bottom ul.inline-menu li a { line-height: 16px; color: #DEDEDE; }
#footer-bottom ul.inline-menu li a:hover { color: #FFF; }
#footer-bottom p{margin: 0;text-align: center !important;}
.footer-social { padding-bottom:10px;text-align: center; display: block; }
.footer-social a { font-size: 26px; margin: 0 7px; text-decoration: none; line-height: 26px; padding: 4px; display: inline-block; color: #DEDEDE; }
.footer-social a:hover { color: #FFF; }  .main-footer {
background: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/footer-bg.jpg) no-repeat;
background-position: center;
background-size:cover;
padding-top: 80px;
}
.not-home .main-footer {
border-top: 1px solid #E5E5E5;
}
.main-footer a {
color: #f1f1f1;
font-weight: 400;
transition: all ease-in-out 0.3s;
}
.main-footer ul.menu-footer a:hover,#menu-footer-2 a:hover,#menu-footer-3 a:hover,#menu-footer-4 a:hover,footer.main-footer ul.menu li a:hover {
color: #DD9933;
padding-left: 15px;
transition: all ease-in-out 0.3s;
}
.main-footer .footer-social a:hover{
color: #DD9933;
transition: all ease-in-out 0.3s;
} 
.footer-title {
color: #FFF;
margin: 0 0 25px;
}
.footer-logo {
font-size: 30px;
margin: 0 0 30px;
color: #FFF;
}
.widget-footer p{
line-height: 1.8;
color: #f1f1f1;
font-size: 14px;
padding-right: 15px;
}
ul.menu-footer,#menu-footer-2,#menu-footer-3,#menu-footer-4 {
margin: 0;
}
ul.menu-footer li,#menu-footer-2 li,#menu-footer-3 li,#menu-footer-4 li,footer.main-footer ul.menu li{
line-height: 3;
}
ul.menu-footer li a:before,ul#menu-footer-2 li a:before,ul#menu-footer-3 li a:before,ul#menu-footer-4 li a:before,footer.main-footer ul.menu li a:before {
content: "\f105";
padding-right: 8px;
font-family: 'fontawesome';
}
ul.menu-footer li a,ul#menu-footer-2 li a,ul#menu-footer-3 li a,ul#menu-footer-4 li a,footer.main-footer ul.menu li a {
font-size: 13px;
text-transform: uppercase;
}
.social-footer a {
font-size: 20px;
margin-right: 10px;
margin-top: 5px;
margin-top: 5px;
display: block;
float: left;
color: #888;
}
.social-footer a:hover {
color: #284580;
}
h3.footer-title {
font-size: 16px;
text-transform: uppercase;
font-weight: 400;
letter-spacing: 2px;
margin: 0 0 20px;
color: #f1f1f1;
position: relative;
border-bottom:1px solid rgba(255, 255, 255, 0.4);
padding-bottom: 10px;
}
.copyright {
text-align: center;
padding: 15px 0;
margin-top:30px;
color: #f1f1f1; 
border-top:1px solid rgba(255, 255, 255, 0.4);
}
p.copyright_text a {
font-weight: 700;
}
@media (max-width: 767px) {
.main-footer .copyright .pull-right, .main-footer .copyright .pull-left{
float: none!important;
}
.main-footer .col-sm-5,  .main-footer .col-sm-7,  .main-footer .col-sm-4{
margin-bottom: 15px;
} 
}
@media (max-width: 639px) {
}
@media (max-width: 479px) {
ul.menu-footer.for-social li {
float: left;
width: 50%;
}
} @media only screen and (max-width: 960px) {
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
.parallax-bg, .home-parallax { background-attachment: scroll; background-position:top center !important; background-size: cover; }
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
.parallax-bg, .home-parallax { background-attachment: scroll; background-position:top center !important; background-size: cover; }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
}
@media only screen and (max-width: 767px) {
.parallax, .parallax-content, .parallax .overlay, .color-block, .color-block-content { height:400px; }
.parallax-bg, .home-parallax { background-attachment: scroll; background-position:top center !important; background-size: cover; }
}
@media only screen and (max-width: 479px) {
}
@media only screen and (min-width: 1200px) {
.parallax, .parallax .parallax-content, .parallax .overlay { }
} #home {
position: relative;
overflow: hidden;
height: 100%;
width: 100%;
display: table;
color: #010101;
z-index:10;
}
.home-gradient {
background-color: #FFD600;
background: -moz-radial-gradient(center center, circle cover, #FFD600 0%, #E2BE01 100%);
background: -webkit-radial-gradient(center center, circle cover, #FFD600 0%, #E2BE01 100%);
background: -o-radial-gradient(center center, circle cover, #FFD600 0%, #E2BE01 100%);
background: -ms-radial-gradient(center center, circle cover, #FFD600 0%, #E2BE01 100%);
background: radial-gradient(center center, circle cover, #FFD600 0%, #E2BE01 100%);
}
.home-parallax {
background: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/parallax/parallax4.html) fixed;
background-size: cover;
background-position: center top;
}  #back-to-top {
position: fixed;
z-index: 1000;
bottom: 20px;
right: 20px;
display: none;
}
#back-to-top a {
display: block;
width: 40px;
height: 40px;
background: #515A5F url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/css/images/backtotop.png) no-repeat center center;
text-indent: -9999px;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
-webkit-transition: 0.2s all linear;
-moz-transition: 0.2s all linear;
-o-transition: 0.2s all linear;
transition: 0.2s all linear;
}
#back-to-top a:hover {
background-color: #222222;
}   .datepicker{padding:2rem; direction:ltr;border:none!important; }
.datepicker-inline{width:220px}
.datepicker.datepicker-rtl{direction:rtl}
.datepicker.datepicker-rtl table tr td span{float:right}
.datepicker-dropdown{top:0;left:0;}
.datepicker-dropdown.datepicker-orient-bottom{margin-top:1.8rem}
.datepicker>div{display:none}
.datepicker.days div.datepicker-days,.datepicker.months div.datepicker-months,.datepicker.years div.datepicker-years{display:block}
.datepicker table{margin:0;width:100%;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.datepicker table tr td,.datepicker table tr th{text-align:center;width:30px;height:30px; border:none}
.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}
.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#eee;cursor:pointer}
.datepicker table tr td.new,.datepicker table tr td.old{color:#999}
.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:0 0;color:#999;cursor:default}
.datepicker table tr td.today,.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today:hover{color:#000;background-color:#ffdb99}
.datepicker table tr td.today.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:focus,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today.disabled:hover:focus,.datepicker table tr td.today.disabled:hover:hover,.datepicker table tr td.today:active,.datepicker table tr td.today:focus,.datepicker table tr td.today:hover,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover:active,.datepicker table tr td.today:hover:focus,.datepicker table tr td.today:hover:hover,.open .dropdown-toggle.datepicker table tr td.today,.open .dropdown-toggle.datepicker table tr td.today.disabled,.open .dropdown-toggle.datepicker table tr td.today.disabled:hover,.open .dropdown-toggle.datepicker table tr td.today:hover{color:#000;background-color:#ffcd70}
.datepicker table tr td.today.active,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:hover.active,.datepicker table tr td.today.disabled:hover:active,.datepicker table tr td.today:active,.datepicker table tr td.today:hover.active,.datepicker table tr td.today:hover:active,.open .dropdown-toggle.datepicker table tr td.today,.open .dropdown-toggle.datepicker table tr td.today.disabled,.open .dropdown-toggle.datepicker table tr td.today.disabled:hover,.open .dropdown-toggle.datepicker table tr td.today:hover{background-image:none}
.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled.active,.datepicker table tr td.today.disabled.disabled,.datepicker table tr td.today.disabled.disabled.active,.datepicker table tr td.today.disabled.disabled:active,.datepicker table tr td.today.disabled.disabled:focus,.datepicker table tr td.today.disabled.disabled:hover,.datepicker table tr td.today.disabled:active,.datepicker table tr td.today.disabled:focus,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today.disabled:hover.disabled,.datepicker table tr td.today.disabled:hover.disabled.active,.datepicker table tr td.today.disabled:hover.disabled:active,.datepicker table tr td.today.disabled:hover.disabled:focus,.datepicker table tr td.today.disabled:hover.disabled:hover,.datepicker table tr td.today.disabled:hover[disabled],.datepicker table tr td.today.disabled:hover[disabled].active,.datepicker table tr td.today.disabled:hover[disabled]:active,.datepicker table tr td.today.disabled:hover[disabled]:focus,.datepicker table tr td.today.disabled:hover[disabled]:hover,.datepicker table tr td.today.disabled[disabled],.datepicker table tr td.today.disabled[disabled].active,.datepicker table tr td.today.disabled[disabled]:active,.datepicker table tr td.today.disabled[disabled]:focus,.datepicker table tr td.today.disabled[disabled]:hover,.datepicker table tr td.today:hover.disabled,.datepicker table tr td.today:hover.disabled.active,.datepicker table tr td.today:hover.disabled:active,.datepicker table tr td.today:hover.disabled:focus,.datepicker table tr td.today:hover.disabled:hover,.datepicker table tr td.today:hover[disabled],.datepicker table tr td.today:hover[disabled].active,.datepicker table tr td.today:hover[disabled]:active,.datepicker table tr td.today:hover[disabled]:focus,.datepicker table tr td.today:hover[disabled]:hover,.datepicker table tr td.today[disabled],.datepicker table tr td.today[disabled].active,.datepicker table tr td.today[disabled]:active,.datepicker table tr td.today[disabled]:focus,.datepicker table tr td.today[disabled]:hover,fieldset[disabled] .datepicker table tr td.today,fieldset[disabled] .datepicker table tr td.today.active,fieldset[disabled] .datepicker table tr td.today.disabled,fieldset[disabled] .datepicker table tr td.today.disabled.active,fieldset[disabled] .datepicker table tr td.today.disabled:active,fieldset[disabled] .datepicker table tr td.today.disabled:focus,fieldset[disabled] .datepicker table tr td.today.disabled:hover,fieldset[disabled] .datepicker table tr td.today.disabled:hover.active,fieldset[disabled] .datepicker table tr td.today.disabled:hover:active,fieldset[disabled] .datepicker table tr td.today.disabled:hover:focus,fieldset[disabled] .datepicker table tr td.today.disabled:hover:hover,fieldset[disabled] .datepicker table tr td.today:active,fieldset[disabled] .datepicker table tr td.today:focus,fieldset[disabled] .datepicker table tr td.today:hover,fieldset[disabled] .datepicker table tr td.today:hover.active,fieldset[disabled] .datepicker table tr td.today:hover:active,fieldset[disabled] .datepicker table tr td.today:hover:focus,fieldset[disabled] .datepicker table tr td.today:hover:hover{background-color:#ffdb99}
.datepicker table tr td.today:hover:hover{color:#000}
.datepicker table tr td.today.active:hover{color:#fff}
.datepicker table tr td.range,.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:hover,.datepicker table tr td.range:hover{background:#eee;border-radius:0}
.datepicker table tr td.range.today,.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today:hover{color:#000;background-color:#f7ca77;border-radius:0}
.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:focus,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today.disabled:hover:focus,.datepicker table tr td.range.today.disabled:hover:hover,.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:focus,.datepicker table tr td.range.today:hover,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover:active,.datepicker table tr td.range.today:hover:focus,.datepicker table tr td.range.today:hover:hover,.open .dropdown-toggle.datepicker table tr td.range.today,.open .dropdown-toggle.datepicker table tr td.range.today.disabled,.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover,.open .dropdown-toggle.datepicker table tr td.range.today:hover{color:#000;background-color:#f4bb51}
.datepicker table tr td.range.today.active,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:hover.active,.datepicker table tr td.range.today.disabled:hover:active,.datepicker table tr td.range.today:active,.datepicker table tr td.range.today:hover.active,.datepicker table tr td.range.today:hover:active,.open .dropdown-toggle.datepicker table tr td.range.today,.open .dropdown-toggle.datepicker table tr td.range.today.disabled,.open .dropdown-toggle.datepicker table tr td.range.today.disabled:hover,.open .dropdown-toggle.datepicker table tr td.range.today:hover{background-image:none}.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled.active,.datepicker table tr td.range.today.disabled.disabled,.datepicker table tr td.range.today.disabled.disabled.active,.datepicker table tr td.range.today.disabled.disabled:active,.datepicker table tr td.range.today.disabled.disabled:focus,.datepicker table tr td.range.today.disabled.disabled:hover,.datepicker table tr td.range.today.disabled:active,.datepicker table tr td.range.today.disabled:focus,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today.disabled:hover.disabled,.datepicker table tr td.range.today.disabled:hover.disabled.active,.datepicker table tr td.range.today.disabled:hover.disabled:active,.datepicker table tr td.range.today.disabled:hover.disabled:focus,.datepicker table tr td.range.today.disabled:hover.disabled:hover,.datepicker table tr td.range.today.disabled:hover[disabled],.datepicker table tr td.range.today.disabled:hover[disabled].active,.datepicker table tr td.range.today.disabled:hover[disabled]:active,.datepicker table tr td.range.today.disabled:hover[disabled]:focus,.datepicker table tr td.range.today.disabled:hover[disabled]:hover,.datepicker table tr td.range.today.disabled[disabled],.datepicker table tr td.range.today.disabled[disabled].active,.datepicker table tr td.range.today.disabled[disabled]:active,.datepicker table tr td.range.today.disabled[disabled]:focus,.datepicker table tr td.range.today.disabled[disabled]:hover,.datepicker table tr td.range.today:hover.disabled,.datepicker table tr td.range.today:hover.disabled.active,.datepicker table tr td.range.today:hover.disabled:active,.datepicker table tr td.range.today:hover.disabled:focus,.datepicker table tr td.range.today:hover.disabled:hover,.datepicker table tr td.range.today:hover[disabled],.datepicker table tr td.range.today:hover[disabled].active,.datepicker table tr td.range.today:hover[disabled]:active,.datepicker table tr td.range.today:hover[disabled]:focus,.datepicker table tr td.range.today:hover[disabled]:hover,.datepicker table tr td.range.today[disabled],.datepicker table tr td.range.today[disabled].active,.datepicker table tr td.range.today[disabled]:active,.datepicker table tr td.range.today[disabled]:focus,.datepicker table tr td.range.today[disabled]:hover,fieldset[disabled] .datepicker table tr td.range.today,fieldset[disabled] .datepicker table tr td.range.today.active,fieldset[disabled] .datepicker table tr td.range.today.disabled,fieldset[disabled] .datepicker table tr td.range.today.disabled.active,fieldset[disabled] .datepicker table tr td.range.today.disabled:active,fieldset[disabled] .datepicker table tr td.range.today.disabled:focus,fieldset[disabled] .datepicker table tr td.range.today.disabled:hover,fieldset[disabled] .datepicker table tr td.range.today.disabled:hover.active,fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:active,fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:focus,fieldset[disabled] .datepicker table tr td.range.today.disabled:hover:hover,fieldset[disabled] .datepicker table tr td.range.today:active,fieldset[disabled] .datepicker table tr td.range.today:focus,fieldset[disabled] .datepicker table tr td.range.today:hover,fieldset[disabled] .datepicker table tr td.range.today:hover.active,fieldset[disabled] .datepicker table tr td.range.today:hover:active,fieldset[disabled] .datepicker table tr td.range.today:hover:focus,fieldset[disabled] .datepicker table tr td.range.today:hover:hover{background-color:#f7ca77}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{color:#fff;background-color:#999;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:focus,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected.disabled:hover:focus,.datepicker table tr td.selected.disabled:hover:hover,.datepicker table tr td.selected:active,.datepicker table tr td.selected:focus,.datepicker table tr td.selected:hover,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover:active,.datepicker table tr td.selected:hover:focus,.datepicker table tr td.selected:hover:hover,.open .dropdown-toggle.datepicker table tr td.selected,.open .dropdown-toggle.datepicker table tr td.selected.disabled,.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover,.open .dropdown-toggle.datepicker table tr td.selected:hover{color:#fff;background-color:#858585}.datepicker table tr td.selected.active,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:hover.active,.datepicker table tr td.selected.disabled:hover:active,.datepicker table tr td.selected:active,.datepicker table tr td.selected:hover.active,.datepicker table tr td.selected:hover:active,.open .dropdown-toggle.datepicker table tr td.selected,.open .dropdown-toggle.datepicker table tr td.selected.disabled,.open .dropdown-toggle.datepicker table tr td.selected.disabled:hover,.open .dropdown-toggle.datepicker table tr td.selected:hover{background-image:none}.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled.active,.datepicker table tr td.selected.disabled.disabled,.datepicker table tr td.selected.disabled.disabled.active,.datepicker table tr td.selected.disabled.disabled:active,.datepicker table tr td.selected.disabled.disabled:focus,.datepicker table tr td.selected.disabled.disabled:hover,.datepicker table tr td.selected.disabled:active,.datepicker table tr td.selected.disabled:focus,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.disabled:hover.disabled,.datepicker table tr td.selected.disabled:hover.disabled.active,.datepicker table tr td.selected.disabled:hover.disabled:active,.datepicker table tr td.selected.disabled:hover.disabled:focus,.datepicker table tr td.selected.disabled:hover.disabled:hover,.datepicker table tr td.selected.disabled:hover[disabled],.datepicker table tr td.selected.disabled:hover[disabled].active,.datepicker table tr td.selected.disabled:hover[disabled]:active,.datepicker table tr td.selected.disabled:hover[disabled]:focus,.datepicker table tr td.selected.disabled:hover[disabled]:hover,.datepicker table tr td.selected.disabled[disabled],.datepicker table tr td.selected.disabled[disabled].active,.datepicker table tr td.selected.disabled[disabled]:active,.datepicker table tr td.selected.disabled[disabled]:focus,.datepicker table tr td.selected.disabled[disabled]:hover,.datepicker table tr td.selected:hover.disabled,.datepicker table tr td.selected:hover.disabled.active,.datepicker table tr td.selected:hover.disabled:active,.datepicker table tr td.selected:hover.disabled:focus,.datepicker table tr td.selected:hover.disabled:hover,.datepicker table tr td.selected:hover[disabled],.datepicker table tr td.selected:hover[disabled].active,.datepicker table tr td.selected:hover[disabled]:active,.datepicker table tr td.selected:hover[disabled]:focus,.datepicker table tr td.selected:hover[disabled]:hover,.datepicker table tr td.selected[disabled],.datepicker table tr td.selected[disabled].active,.datepicker table tr td.selected[disabled]:active,.datepicker table tr td.selected[disabled]:focus,.datepicker table tr td.selected[disabled]:hover,fieldset[disabled] .datepicker table tr td.selected,fieldset[disabled] .datepicker table tr td.selected.active,fieldset[disabled] .datepicker table tr td.selected.disabled,fieldset[disabled] .datepicker table tr td.selected.disabled.active,fieldset[disabled] .datepicker table tr td.selected.disabled:active,fieldset[disabled] .datepicker table tr td.selected.disabled:focus,fieldset[disabled] .datepicker table tr td.selected.disabled:hover,fieldset[disabled] .datepicker table tr td.selected.disabled:hover.active,fieldset[disabled] .datepicker table tr td.selected.disabled:hover:active,fieldset[disabled] .datepicker table tr td.selected.disabled:hover:focus,fieldset[disabled] .datepicker table tr td.selected.disabled:hover:hover,fieldset[disabled] .datepicker table tr td.selected:active,fieldset[disabled] .datepicker table tr td.selected:focus,fieldset[disabled] .datepicker table tr td.selected:hover,fieldset[disabled] .datepicker table tr td.selected:hover.active,fieldset[disabled] .datepicker table tr td.selected:hover:active,fieldset[disabled] .datepicker table tr td.selected:hover:focus,fieldset[disabled] .datepicker table tr td.selected:hover:hover{background-color:#999}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{color:#fff;background-color:#EC4979;text-shadow:0 -1px 0 rgba(0,0,0,.25)}
.datepicker table tr td.active.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:focus,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active.disabled:hover:focus,.datepicker table tr td.active.disabled:hover:hover,.datepicker table tr td.active:active,.datepicker table tr td.active:focus,.datepicker table tr td.active:hover,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover:active,.datepicker table tr td.active:hover:focus,.datepicker table tr td.active:hover:hover,.open .dropdown-toggle.datepicker table tr td.active,.open .dropdown-toggle.datepicker table tr td.active.disabled,.open .dropdown-toggle.datepicker table tr td.active.disabled:hover,.open .dropdown-toggle.datepicker table tr td.active:hover{color:#fff;background-color:#EC4979}
.datepicker table tr td.active.active,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:hover.active,.datepicker table tr td.active.disabled:hover:active,.datepicker table tr td.active:active,.datepicker table tr td.active:hover.active,.datepicker table tr td.active:hover:active,.open .dropdown-toggle.datepicker table tr td.active,.open .dropdown-toggle.datepicker table tr td.active.disabled,.open .dropdown-toggle.datepicker table tr td.active.disabled:hover,.open .dropdown-toggle.datepicker table tr td.active:hover{background-image:none}.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled.active,.datepicker table tr td.active.disabled.disabled,.datepicker table tr td.active.disabled.disabled.active,.datepicker table tr td.active.disabled.disabled:active,.datepicker table tr td.active.disabled.disabled:focus,.datepicker table tr td.active.disabled.disabled:hover,.datepicker table tr td.active.disabled:active,.datepicker table tr td.active.disabled:focus,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.disabled:hover.disabled,.datepicker table tr td.active.disabled:hover.disabled.active,.datepicker table tr td.active.disabled:hover.disabled:active,.datepicker table tr td.active.disabled:hover.disabled:focus,.datepicker table tr td.active.disabled:hover.disabled:hover,.datepicker table tr td.active.disabled:hover[disabled],.datepicker table tr td.active.disabled:hover[disabled].active,.datepicker table tr td.active.disabled:hover[disabled]:active,.datepicker table tr td.active.disabled:hover[disabled]:focus,.datepicker table tr td.active.disabled:hover[disabled]:hover,.datepicker table tr td.active.disabled[disabled],.datepicker table tr td.active.disabled[disabled].active,.datepicker table tr td.active.disabled[disabled]:active,.datepicker table tr td.active.disabled[disabled]:focus,.datepicker table tr td.active.disabled[disabled]:hover,.datepicker table tr td.active:hover.disabled,.datepicker table tr td.active:hover.disabled.active,.datepicker table tr td.active:hover.disabled:active,.datepicker table tr td.active:hover.disabled:focus,.datepicker table tr td.active:hover.disabled:hover,.datepicker table tr td.active:hover[disabled],.datepicker table tr td.active:hover[disabled].active,.datepicker table tr td.active:hover[disabled]:active,.datepicker table tr td.active:hover[disabled]:focus,.datepicker table tr td.active:hover[disabled]:hover,.datepicker table tr td.active[disabled],.datepicker table tr td.active[disabled].active,.datepicker table tr td.active[disabled]:active,.datepicker table tr td.active[disabled]:focus,.datepicker table tr td.active[disabled]:hover,fieldset[disabled] .datepicker table tr td.active,fieldset[disabled] .datepicker table tr td.active.active,fieldset[disabled] .datepicker table tr td.active.disabled,fieldset[disabled] .datepicker table tr td.active.disabled.active,fieldset[disabled] .datepicker table tr td.active.disabled:active,fieldset[disabled] .datepicker table tr td.active.disabled:focus,fieldset[disabled] .datepicker table tr td.active.disabled:hover,fieldset[disabled] .datepicker table tr td.active.disabled:hover.active,fieldset[disabled] .datepicker table tr td.active.disabled:hover:active,fieldset[disabled] .datepicker table tr td.active.disabled:hover:focus,fieldset[disabled] .datepicker table tr td.active.disabled:hover:hover,fieldset[disabled] .datepicker table tr td.active:active,fieldset[disabled] .datepicker table tr td.active:focus,fieldset[disabled] .datepicker table tr td.active:hover,fieldset[disabled] .datepicker table tr td.active:hover.active,fieldset[disabled] .datepicker table tr td.active:hover:active,fieldset[disabled] .datepicker table tr td.active:hover:focus,fieldset[disabled] .datepicker table tr td.active:hover:hover{background-color:#428bca}
.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer; }
.datepicker table tr td span:hover{background:#eee}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:0 0;color:#999;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{color:#fff;background-color:#428bca;text-shadow:0 -1px 0 rgba(0,0,0,.25)}
.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:focus,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active.disabled:hover:focus,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active:active,.datepicker table tr td span.active:focus,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active,.datepicker table tr td span.active:hover:focus,.datepicker table tr td span.active:hover:hover,.open .dropdown-toggle.datepicker table tr td span.active,.open .dropdown-toggle.datepicker table tr td span.active.disabled,.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover,.open .dropdown-toggle.datepicker table tr td span.active:hover{color:#fff;background-color:#3276b1}
.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active,.open .dropdown-toggle.datepicker table tr td span.active,.open .dropdown-toggle.datepicker table tr td span.active.disabled,.open .dropdown-toggle.datepicker table tr td span.active.disabled:hover,.open .dropdown-toggle.datepicker table tr td span.active:hover{background-image:none}.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled.disabled,.datepicker table tr td span.active.disabled.disabled.active,.datepicker table tr td span.active.disabled.disabled:active,.datepicker table tr td span.active.disabled.disabled:focus,.datepicker table tr td span.active.disabled.disabled:hover,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:focus,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.disabled,.datepicker table tr td span.active.disabled:hover.disabled.active,.datepicker table tr td span.active.disabled:hover.disabled:active,.datepicker table tr td span.active.disabled:hover.disabled:focus,.datepicker table tr td span.active.disabled:hover.disabled:hover,.datepicker table tr td span.active.disabled:hover[disabled],.datepicker table tr td span.active.disabled:hover[disabled].active,.datepicker table tr td span.active.disabled:hover[disabled]:active,.datepicker table tr td span.active.disabled:hover[disabled]:focus,.datepicker table tr td span.active.disabled:hover[disabled]:hover,.datepicker table tr td span.active.disabled[disabled],.datepicker table tr td span.active.disabled[disabled].active,.datepicker table tr td span.active.disabled[disabled]:active,.datepicker table tr td span.active.disabled[disabled]:focus,.datepicker table tr td span.active.disabled[disabled]:hover,.datepicker table tr td span.active:hover.disabled,.datepicker table tr td span.active:hover.disabled.active,.datepicker table tr td span.active:hover.disabled:active,.datepicker table tr td span.active:hover.disabled:focus,.datepicker table tr td span.active:hover.disabled:hover,.datepicker table tr td span.active:hover[disabled],.datepicker table tr td span.active:hover[disabled].active,.datepicker table tr td span.active:hover[disabled]:active,.datepicker table tr td span.active:hover[disabled]:focus,.datepicker table tr td span.active:hover[disabled]:hover,.datepicker table tr td span.active[disabled],.datepicker table tr td span.active[disabled].active,.datepicker table tr td span.active[disabled]:active,.datepicker table tr td span.active[disabled]:focus,.datepicker table tr td span.active[disabled]:hover,fieldset[disabled] .datepicker table tr td span.active,fieldset[disabled] .datepicker table tr td span.active.active,fieldset[disabled] .datepicker table tr td span.active.disabled,fieldset[disabled] .datepicker table tr td span.active.disabled.active,fieldset[disabled] .datepicker table tr td span.active.disabled:active,fieldset[disabled] .datepicker table tr td span.active.disabled:focus,fieldset[disabled] .datepicker table tr td span.active.disabled:hover,fieldset[disabled] .datepicker table tr td span.active.disabled:hover.active,fieldset[disabled] .datepicker table tr td span.active.disabled:hover:active,fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,fieldset[disabled] .datepicker table tr td span.active:active,fieldset[disabled] .datepicker table tr td span.active:focus,fieldset[disabled] .datepicker table tr td span.active:hover,fieldset[disabled] .datepicker table tr td span.active:hover.active,fieldset[disabled] .datepicker table tr td span.active:hover:active,fieldset[disabled] .datepicker table tr td span.active:hover:focus,fieldset[disabled] .datepicker table tr td span.active:hover:hover{background-color:#428bca}
.datepicker table tr td span.new,.datepicker table tr td span.old{color:#999}
.datepicker th.datepicker-switch{width:145px}
.datepicker tfoot tr th,.datepicker thead tr:first-child th{cursor:pointer}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background:#eee}
.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}
.datepicker thead tr:first-child th.cw{cursor:default;background-color:transparent}
.input-group.date .input-group-addon i{cursor:pointer;width:16px;height:16px}
.input-daterange input{text-align:center}
.input-daterange .input-group-addon{width:auto;min-width:16px;padding:4px 5px;font-weight:400;line-height:1.428571429;text-align:center;text-shadow:0 1px 0 #fff;vertical-align:middle;background-color:#eee;border-width:1px 0;margin-left:-5px;margin-right:-5px}
.datepicker.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;float:left;display:none;min-width:26.2rem;list-style:none;background-color:#fff;border:1px solid rgba(0,0,0,.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;color:#333;font-size:1.4rem;line-height:1.428571429}
.datepicker.datepicker-inline td,.datepicker.datepicker-inline th,.datepicker.dropdown-menu td,.datepicker.dropdown-menu th{padding:0 5px}
@media (min-width:640px) and (max-width:767px){.datepicker.dropdown-menu{min-width: 400px!important;}}
@media (max-width:767px){.datepicker.dropdown-menu{left:35px!important}}
.datepicker{ padding: 2px; font-size: 14px; padding: 15px; }
.datepicker table { font-size: 14px; }   .newsLetterValidator { position: relative; }
.newsLetterValidator .alert { color: #FFF !important; }
.alert i { font-size: 50px !important; }   .parallax-background { position: relative; background:  rgba(241, 241, 241, 0.298039); background-attachment: fixed; }
.parallax-background.fixed { background-attachment: fixed !important; }
.parallax-background .container { z-index: 9; } .parallax-background.pfixed { background-attachment: fixed!important; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); filter: progid: DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#7c000000', endColorstr='#7c000000'); }
.overlay.pattern {background-color: rgba(0,0,0,0.5); }   #cd-timeline{position:relative;padding: 50px 0;margin-top:2em;margin-bottom:2em}
#cd-timeline::before{content:'';position:absolute;top:0;left:18px;height:100%;width:4px;background: #FFF; }
#cd-timeline.customized-for-awards {position:relative; padding: 100px 30px; margin: 0; }
@media only screen and (min-width: 1170px){
#cd-timeline{margin-top:3em;margin-bottom:3em}
#cd-timeline::before{left:50%;margin-left:-2px}
#cd-timeline.customized-for-awards { padding: 100px 130px; margin: 0; }
}
@media only screen and (max-width: 1170px){
#cd-timeline{margin-top:3em;margin-bottom:3em}
#cd-timeline::before{left:50%;margin-left:-2px}
#cd-timeline.customized-for-awards { padding: 100px 30px; }
}
.cd-timeline-block{ position:relative; margin: 20px 0}
.cd-timeline-block:after{content:"";display:table;clear:both}
.cd-timeline-block:first-child{margin-top:0}
.cd-timeline-block:last-child{margin-bottom:0}
@media only screen and (min-width: 1170px){
.cd-timeline-block{margin:4em 0}
.cd-timeline-block:first-child{margin-top:0}
.cd-timeline-block:last-child{margin-bottom:0}
}
.cd-timeline-icon {position:absolute;top:0;left:0;width:40px;height:40px;border-radius:50%;box-shadow:0 0 0 4px white,inset 0 2px 0 rgba(0,0,0,0.08),0 3px 0 4px rgba(0,0,0,0.05); background: #EC4979; color: #FFF; }
.cd-timeline-icon i{display:block; position:relative;left:50%;top:50%;margin-left:-15px;margin-top:-15px; font-size: 32px; line-height: 32px; }
@media only screen and (min-width: 1170px){
.cd-timeline-icon{width:60px;height:60px;left:50%;margin-left:-30px;-webkit-transform:translateZ(0);-webkit-backface-visibility:hidden}
.cssanimations .cd-timeline-icon.is-hidden{visibility:hidden}
.cssanimations .cd-timeline-icon.bounce-in{visibility:visible;-webkit-animation:cd-bounce-1 .6s;-moz-animation:cd-bounce-1 .6s;animation:cd-bounce-1 .6s}
}
@media only screen and (max-width: 1170px){
.cd-timeline-icon{width:60px;height:60px;left:50%;margin-left:-30px;-webkit-transform:translateZ(0);-webkit-backface-visibility:hidden}
}
@media only screen and (max-width: 767px) { 
.cd-timeline-icon{ left:30px; top: -30px; }
}
@-webkit-keyframes cd-bounce-1{
0%{opacity:0;-webkit-transform:scale(0.5)}
60%{opacity:1;-webkit-transform:scale(1.2)}
100%{-webkit-transform:scale(1)}
}
@-moz-keyframes cd-bounce-1{
0%{opacity:0;-moz-transform:scale(0.5)}
60%{opacity:1;-moz-transform:scale(1.2)}
100%{-moz-transform:scale(1)}
}
@keyframes cd-bounce-1{
0%{opacity:0;-webkit-transform:scale(0.5);-moz-transform:scale(0.5);-ms-transform:scale(0.5);-o-transform:scale(0.5);transform:scale(0.5)}
60%{opacity:1;-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-ms-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}
100%{-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}
}
.cd-timeline-content{ position:relative; margin-left:60px; box-shadow:0 3px 0 none; text-align: right; }
.cd-timeline-content:after{content:"";display:table;clear:both}
.cd-timeline-content .cd-date{font-size:13px;font-size:.8125rem; display:inline-block; float:left;padding:.8em 0; text-align: left; }
.cd-timeline-content h3 { font-size: 20px; position: relative; margin: 0 0 20px; }
.cd-timeline-content h3:after { content:""; position: absolute; bottom: -5px; right: 0; width: 70px; height: 2px; background: #EC4979; } @media only screen and (min-width: 768px){
.cd-timeline-content h2{font-size:20px;font-size:1.25rem}
}
@media only screen and (min-width: 1170px){
.cd-timeline-content{margin-left:0; width:45%}
.cd-timeline-content::before{top:24px;left:100%;border-color:transparent;border-left-color:#fff}
.cd-timeline-content .cd-date{position:absolute;width:100%;left:122%;top:6px;font-size:16px;font-size:1rem}
.cd-timeline-block:nth-child(even) .cd-timeline-content{float:right; text-align: left; }
.cd-timeline-block:nth-child(even) .cd-timeline-content::before{ top:24px;left:auto;right:100%;border-color:transparent;border-right-color:#fff}
.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date{ left:auto;right:122%;text-align:right}
.cd-timeline-block:nth-child(even) .cd-timeline-content h3:after { right: auto; left: 0; }
.cssanimations .cd-timeline-content.is-hidden{visibility:hidden}
.cssanimations .cd-timeline-content.bounce-in{visibility:visible;-webkit-animation:cd-bounce-2 .6s;-moz-animation:cd-bounce-2 .6s;animation:cd-bounce-2 .6s}
}
@media only screen and (min-width: 1170px){
.cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in{-webkit-animation:cd-bounce-2-inverse .6s;-moz-animation:cd-bounce-2-inverse .6s;animation:cd-bounce-2-inverse .6s}
}
@media only screen and (max-width: 1170px) {
.cd-timeline-content{margin-left:0; width:45%; padding-right: 15px; }
.cd-timeline-content::before{top:24px;left:100%;border-color:transparent;border-left-color:#fff}
.cd-timeline-content .cd-date{position:absolute;width:100%;left:122%;top:6px;font-size:16px;font-size:1rem}
.cd-timeline-block:nth-child(even) .cd-timeline-content{float:right; text-align: left; padding-left: 15px; }
.cd-timeline-block:nth-child(even) .cd-timeline-content::before{ top:24px;left:auto;right:100%;border-color:transparent;border-right-color:#fff}
.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date{ left:auto;right:122%;text-align:right}
.cd-timeline-block:nth-child(even) .cd-timeline-content h3:after { right: auto; left: 0; }
.cssanimations .cd-timeline-content.is-hidden{visibility:hidden}
.cssanimations .cd-timeline-content.bounce-in{visibility:visible;-webkit-animation:cd-bounce-2 .6s;-moz-animation:cd-bounce-2 .6s;animation:cd-bounce-2 .6s}
}
@media only screen and (max-width: 992px) { 
.cd-timeline-content .cd-date { padding-left: 20px; }
.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date { padding-left: 0; padding-right: 20px; }
}
@media only screen and (max-width: 767px) { 
#cd-timeline::before{ display: none; }
.cd-timeline-content{ width:100% !important; padding-right: 0; text-align: left; padding-top: 50px; padding-bottom: 40px; }
.cd-timeline-block:nth-child(even) .cd-timeline-content{ padding-left: 0; }
.cd-timeline-content h3 { font-size: 18px; }
.cd-timeline-content h3:after { right: auto; left: 0;}
.cd-timeline-content .cd-date{ left:60px; top: -20px; }
.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date{ left:80px; right: auto;text-align:left}
}
@media (min-width: 479px) and (max-width: 767px) {
.cd-timeline-content h3 { font-size: 16px; line-height: 20px; }
}
@media (max-width: 479px) {
}
@-webkit-keyframes cd-bounce-2{
0%{opacity:0;-webkit-transform:translateY(-100px)}
60%{opacity:1;-webkit-transform:translateY(20px)}
100%{-webkit-transform:translateY(0)}
}
@-moz-keyframes cd-bounce-2{
0%{opacity:0;-moz-transform:translateY(-100px)}
60%{opacity:1;-moz-transform:translateY(20px)}
100%{-moz-transform:translateY(0)}
}
@keyframes cd-bounce-2{
0%{opacity:0;-webkit-transform:translateY(-100px);-moz-transform:translateY(-100px);-ms-transform:translateY(-100px);-o-transform:translateY(-100px);transform:translateX(-100px)}
60%{opacity:1;-webkit-transform:translateY(20px);-moz-transform:translateY(20px);-ms-transform:translateY(20px);-o-transform:translateY(20px);transform:translateY(20px)}
100%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}
}
@-webkit-keyframes cd-bounce-2-inverse{
0%{opacity:0;-webkit-transform:translateY(100px)}
60%{opacity:1;-webkit-transform:translateY(-20px)}
100%{-webkit-transform:translateY(0)}
}
@-moz-keyframes cd-bounce-2-inverse{
0%{opacity:0;-moz-transform:translateY(100px)}
60%{opacity:1;-moz-transform:translateY(-20px)}
100%{-moz-transform:translateY(0)}
}
@keyframes cd-bounce-2-inverse{
0%{opacity:0;-webkit-transform:translateY(100px);-moz-transform:translateY(100px);-ms-transform:translateY(100px);-o-transform:translateY(100px);transform:translateY(100px)}
60%{opacity:1;-webkit-transform:translateY(-20px);-moz-transform:translateY(-20px);-ms-transform:translateY(-20px);-o-transform:translateY(-20px);transform:translateY(-20px)}
100%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0)}
}  .custom_Select select{width:100%!important}
.custom_Select .customSelect{padding:5px 20px 5px 10px;border:1px solid #CCC;background:#FFF url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/css/images/customSelect-arrow.png) no-repeat right center;text-align:center;-webkit-transition:all .05s linear .05s;-moz-transition:all .05s linear .05s;-o-transition:all .05s linear .05s;transition:all .05s linear .05s;color:#555;width:100%!important}
.custom_Select .customSelect.customSelectHover{border-color:#aeb7c9;-webkit-box-shadow:rgba(0,0,0,0.15) 1px 1px 2px;-moz-box-shadow:rgba(0,0,0,0.15) 1px 1px 2px;box-shadow:rgba(0,0,0,0.15) 1px 1px 2px}
.custom_Select .customSelect.customSelectFocus{border-color:#527DC2}
.custom_Select .customSelect.customSelectOpen{border-color:#527DC2;background:#FFF url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/css/images/customSelect-arrow-open.png) no-repeat right center}
.sm .custom_Select .customSelect{background:#FFF url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/css/images/customSelect-arrow-sm.html) no-repeat right center;text-align:left!important;height:30px;padding:4px 6px;font-size:12px}
.custom_Select .customSelect.customSelectHover{border-color:#aeb7c9;-webkit-box-shadow:rgba(0,0,0,0.15) 1px 1px 2px;-moz-box-shadow:rgba(0,0,0,0.15) 1px 1px 2px;box-shadow:rgba(0,0,0,0.15) 1px 1px 2px}
.custom_Select .customSelect.customSelectFocus{border-color:#527DC2}
.sm .custom_Select .customSelect.customSelectOpen{border-color:#527DC2;background:#FFF url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/css/images/customSelect-arrow-open-sm.html) no-repeat right center}
.customSelect{ background:#FFF url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/css/images/customSelect-arrow.png) no-repeat right center; -webkit-transition:all .05s linear .05s;-moz-transition:all .05s linear .05s;-o-transition:all .05s linear .05s;transition:all .05s linear .05s;color:#777; width:100%; }
.customSelect.customSelectHover{border-color:#aeb7c9;background-color:#f5f5f5; -webkit-box-shadow:rgba(0,0,0,0.15) 1px 1px 2px;-moz-box-shadow:rgba(0,0,0,0.15) 1px 1px 2px;box-shadow:rgba(0,0,0,0.15) 1px 1px 2px }
.customSelect.customSelectFocus{border-color:#527DC2; }
.customSelect.customSelectOpen{border-color:#527DC2;background:#FFF url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/css/images/customSelect-arrow-open.png) no-repeat right center; -webkit-box-shadow:rgba(0,0,0,0.15) 1px 1px 2px;-moz-box-shadow:rgba(0,0,0,0.15) 1px 1px 2px;box-shadow:rgba(0,0,0,0.15) 1px 1px 2px; }
.select-sm .customSelect { background:#FFF url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/css/images/customSelect-arrow-sm.html) no-repeat right center; height:30px;padding:4px 6px;font-size:12px }
.select-sm .customSelectOpen{}   .imgs-grid {
max-width:1000px;
margin: 0 auto;
font-size: 0;
}
.imgs-grid.imgs-grid-1 .imgs-grid-image {
width: 100%;
text-align: center;
}
.imgs-grid.imgs-grid-2 .imgs-grid-image,
.imgs-grid.imgs-grid-4 .imgs-grid-image {
width: 50%;
}
.imgs-grid.imgs-grid-3 .imgs-grid-image,
.imgs-grid.imgs-grid-6 .imgs-grid-image {
width: 33.333333333333336%;
}
.imgs-grid.imgs-grid-5 .imgs-grid-image:nth-child(1),
.imgs-grid.imgs-grid-5 .imgs-grid-image:nth-child(2),
.imgs-grid.imgs-grid-5 .imgs-grid-image:nth-child(3) {
width: 33.333333333333336%;
}
.imgs-grid.imgs-grid-5 .imgs-grid-image:nth-child(4),
.imgs-grid.imgs-grid-5 .imgs-grid-image:nth-child(5) {
width: 50%;
}
.imgs-grid .imgs-grid-image {
position: relative;
display: inline-block;
padding: 1px;
box-sizing: border-box;
text-align: center;
}
.imgs-grid .imgs-grid-image:before {
content: "";
display: block;
position: absolute;
top: 1px;
left: 1px;
right: 1px;
bottom: 1px;
background-color: #f0f0f0;
}
.imgs-grid .imgs-grid-image:hover {
cursor: pointer;
}
.imgs-grid .imgs-grid-image .image-wrap {
position: relative;
display: inline-block;
overflow: hidden;
vertical-align: middle;
}
.imgs-grid .imgs-grid-image .image-wrap img {
position: relative;
width: 100%;
height: auto;
margin: 0;
}
.imgs-grid .imgs-grid-image .view-all {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
text-align: center;
}
.imgs-grid .imgs-grid-image .view-all:before {
display: inline-block;
content: "";
vertical-align: middle;
height: 100%;
}
.imgs-grid .imgs-grid-image .view-all:hover {
cursor: pointer;
}
.imgs-grid .imgs-grid-image .view-all:hover .view-all-text {
text-decoration: underline;
}
.imgs-grid .imgs-grid-image .view-all .view-all-cover {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
opacity: 0.4;
}
.imgs-grid .imgs-grid-image .view-all .view-all-text {
position: relative;
font-size: 16px;
font-family: inherit;
color: white;
}
@media (max-width: 350px) {
.imgs-grid .imgs-grid-image .view-all .view-all-text {
font-size: 10px;
}
}
.imgs-grid-modal {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: black;
opacity: 0;
z-index: 100;
-webkit-user-select: none;
-moz-user-select: -moz-none;
-khtml-user-select: none;
-o-user-select: none;
user-select: none;
}
.imgs-grid-modal .modal-caption {
padding: 30px 50px;
text-align: center;
color: white;
}
.imgs-grid-modal .modal-close {
position: absolute;
right: 10px;
top: 10px;
width: 35px;
height: 35px;
background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/imgs-grid-icons.png);
background-repeat: no-repeat;
background-position: -100px;
}
.imgs-grid-modal .modal-close:hover {
cursor: pointer;
}
.imgs-grid-modal .modal-inner {
position: absolute;
top: 60px;
bottom: 60px;
left: 0;
right: 0;
}
.imgs-grid-modal .modal-inner .modal-control {
position: absolute;
top: 0;
bottom: 0;
width: 70px;
}
.imgs-grid-modal .modal-inner .modal-control:hover {
cursor: pointer;
}
.imgs-grid-modal .modal-inner .modal-control.left {
left: 0;
}
.imgs-grid-modal .modal-inner .modal-control.right {
right: 0;
}
.imgs-grid-modal .modal-inner .modal-control .arrow {
margin: 0 auto;
height: 100%;
width: 40px;
background-repeat: no-repeat;
background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/imgs-grid-icons.png);
}
.imgs-grid-modal .modal-inner .modal-control .arrow.left {
background-position: 2px center;
}
.imgs-grid-modal .modal-inner .modal-control .arrow.right {
background-position: -42px center;
}
.imgs-grid-modal .modal-inner .modal-image {
position: absolute;
top: 0;
left: 70px;
right: 70px;
bottom: 0;
text-align: center;
}
.imgs-grid-modal .modal-inner .modal-image:before {
display: inline-block;
content: "";
vertical-align: middle;
height: 100%;
}
.imgs-grid-modal .modal-inner .modal-image img {
max-width: 100%;
max-height: 100%;
vertical-align: middle;
}
.imgs-grid-modal .modal-inner .modal-image img:hover {
cursor: pointer;
}
.imgs-grid-modal .modal-inner .modal-loader {
display: inline-block;
vertical-align: middle;
color: silver;
font-size: 14px;
}
@media (max-width: 800px) {
.imgs-grid-modal .modal-inner .modal-control {
width: 40px;
}
.imgs-grid-modal .modal-inner .modal-control .arrow {
-webkit-transform: scale(0.7);
-moz-transform: scale(0.7);
-o-transform: scale(0.7);
-ms-transform: scale(0.7);
transform: scale(0.7);
}
.imgs-grid-modal .modal-inner .modal-image {
left: 0;
right: 0;
}
}
.imgs-grid-modal .modal-indicator {
position: absolute;
bottom: 0;
height: 60px;
width: 100%;
text-align: center;
}
.imgs-grid-modal .modal-indicator ul {
margin: 0;
padding: 0;
}
.imgs-grid-modal .modal-indicator ul li {
display: inline-block;
width: 12px;
height: 12px;
border: 1px solid white;
box-sizing: border-box;
border-radius: 100%;
margin: 0 1px;
vertical-align: middle;
}
.imgs-grid-modal .modal-indicator ul li:hover {
cursor: pointer;
}
.imgs-grid-modal .modal-indicator ul li.selected {
background-color: white;
width: 14px;
height: 14px;
margin: 0;
}
@media (max-width: 779px) {
.imgs-grid-modal .modal-close{
right: 20px;
top: 20px;
}
}    .slick-slider {
position: relative;
display: block;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-khtml-user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
display: block;
overflow: hidden;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
top: 0;
left: 0;
display: block;
}
.slick-track:before,
.slick-track:after {
display: table;
content: '';
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
display: none;
float: left;
height: 100%;
min-height: 1px;
}
[dir='rtl'] .slick-slide {
float: right;
}
.slider-nav .image, .slider-nav-2 .image {
padding: 0;
border: 1px solid transparent;
opacity: 1;
transition: all 300ms ease;
position: relative;
}
.slider-nav .slick-center .image:after, .slider-nav-2 .slick-center .image:after{
background: rgba(0, 0, 0, 0);
}
.slider-nav .image:after, .slider-nav-2 .image:after  {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, .5);
-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;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
display: none;
}
 .slick-loading .slick-list { } @font-face {
font-family: 'slick';
font-weight: normal;
font-style: normal;
src: url(https://pousadafilo.com.br/wp-content/themes/hotelica-pro/css/fonts/slick.eot);
src: url(https://pousadafilo.com.br/wp-content/themes/hotelica-pro/css/fonts/slick.eot?#iefix) format('embedded-opentype'), url(https://pousadafilo.com.br/wp-content/themes/hotelica-pro/css/fonts/slick.woff) format('woff'), url(https://pousadafilo.com.br/wp-content/themes/hotelica-pro/css/fonts/slick.ttf) format('truetype'), url(https://pousadafilo.com.br/wp-content/themes/hotelica-pro/css/fonts/slick.svg#slick) format('svg');
} .slick-prev,
.slick-next {
font-size: 0;
line-height: 0;
position: absolute;
top: 50%;
display: block;
width: 20px;
height: 20px;
margin-top: -10px;
padding: 0;
cursor: pointer;
color: transparent;
border: none;
outline: none;
background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
color: transparent;
outline: none;
background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
opacity: .25;
}
.slick-prev:before,
.slick-next:before {
font-family: 'fontawesome';
font-size: 20px;
line-height: 1;
opacity: .75;
color: #f1f1f1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#room-list .slick-prev:before,
#room-list .slick-next:before{
font-size: 28px;
}
.slick-prev {
left: 13px;
}
[dir='rtl'] .slick-prev {
right: 13px;
left: auto;
}
.slick-prev:before{
content: '\f137';
}
[dir='rtl'] .slick-prev:before{
content: '\f138';
}
.blog-item-full .slick-prev:before{
content: '\f104';
}
.blog-item-full [dir='rtl'] .slick-prev:before{
content: '\f104';
}
.slick-next {
right:13px;
}
[dir='rtl'] .slick-next {
right: auto;
left:13px;
}
.slick-next:before{
content: '\f138';
}
[dir='rtl'] .slick-next:before, {
content: '\f137';
}
.blog-item-full .slick-next:before {
content: '\f105';
} 
.blog-item-full [dir='rtl'] .slick-next:before {
content: '\f105'; 
}
.blog-item-full .slick-prev:before,
.blog-item-full .slick-next:before {
font-size: 48px;
}
#room-list .slick-prev{
left: 20px;
}
#room-list .slick-next{
right: 20px;
} .slick-dots {
position: absolute;
bottom: -45px;
display: block;
width: 100%;
padding: 0;
list-style: none;
text-align: center;
}
.slick-dots li {
position: relative;
display: inline-block;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
width: 20px;
height: 20px;
padding: 5px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
opacity: 1;
}
.slick-dots li button:before {
font-family: 'fontawesome';
font-size: 10px;
line-height: 20px;
position: absolute;
top: 0;
left: 0;
width: 20px;
height: 20px;
content: '\f111';
text-align: center;
opacity: .25;
color: black;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
opacity: .75;
color: black;
}
@media only screen and (max-width:1023px) {
#room-list .slick-prev:before,
#room-list .slick-next:before{
font-size: 20px;
color: #232323;
}
#room-list .slick-prev{
left: -13px;
}
#room-list .slick-next{
right: -13px;
}
}
@media only screen and (max-width: 767px) {
#room-list .slick-prev{
left:20px;
}
#room-list .slick-next{
right:20px;
}
#room-list .slick-prev:before,
#room-list .slick-next:before{
font-size: 28px;
color: #f1f1f1;
}
}
@media only screen and (max-width: 479px) {
#room-list .slick-prev, #room-list .slick-next{
top: 45%
}
}    .sidebar .logo{
width: 130px;
top: 70px;
} 
.breadcrumb-wrapper.breadcrumb-detail {
background-image: none;
background-color: #ededed;
padding: 15px 0;
height: inherit;
text-align: left;
border-bottom: 1px solid #ddd;
}
.breadcrumb-wrapper.breadcrumb-detail h2{
margin: 0;
padding: 0;
color: #000;
} 
.breadcrumb-wrapper {
background: #EDEDED url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/bread-bg.jpg);
overflow: hidden;
height: 300px;
background-position: center;
background-size: cover;
background-attachment: fixed;
position: relative;
background-repeat: no-repeat;
}
.breadcrumb-wrapper h2 {
padding:13px 25px 0px;
margin: 60px 0 0;
color: #fcfcfc;
}
.breadcrumb-wrapper .breadcrumb {
margin:6px 0 0;
padding: 0px;
font-size: 14px;
background:transparent;
border-radius: 0px;
}
.breadcrumb-wrapper .breadcrumb a{
color: #fff;
font-weight: 500;
}
.breadcrumb-wrapper.breadcrumb-detail  .breadcrumb a{
color: #333;
}
.breadcrumb-wrapper .breadcrumb .active {
color: #f49b00;
font-weight: 700;
}
.breadcrumb-wrapper.breadcrumb-detail .section-title{
text-align: left;
padding: 0;
margin:0;
}
.breadcrumb-wrapper .section-title{
position: relative;
z-index: 9;
text-align: center;
top:220px;
}
.breadcrumb-wrapper.breadcrumb-detail .breadcrumb>li+li:before{
color: #333;
} .navbar-default {
background:#f5f5f5;
}
.navbar {
border-bottom: 0;
}
.sidebar .navbar-nav{
background: transparent;
margin:0;
}
.navbar.navbar-default {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
header #navbar{
width: 100%;
background: #f49b00;
}
.navbar-brand {
font-size: 24px;
position: relative;
color: #f49b00;
letter-spacing: 2px;
font-weight: 500;
padding: 0;
height: auto;
}
a.navbar-brand {
transition: all 0.1s ease;
-webkit-transition: all 0.1s ease;
-moz-transition: all 0.1s ease;
transition: color 0.5s ease;
-webkit-transition: color 0.5s ease;
-moz-transition: color 0.5s ease;
}
a.navbar-brand span{
color: #fc883a;
}
.navbar-default .navbar-brand {
color: #FFF;
transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
}
.navbar-default .navbar-brand:hover {
color: #D60D45;
}
.colored-navbar-brand .navbar-default .navbar-brand {
padding-right: 30px;
position: relative;
color: #f49b00;
display: inline-block;
float: none;
}
header .navbar-default .navbar-nav>li>a{
color: #fff;
}
header .navbar-default .navbar-nav>li.active, header .navbar-default .navbar-nav>li.active>a, header .navbar-default .navbar-nav > li > a:hover{
color: #fff!important;
background: #f33807!important;
}
.sidebar .navbar-default .navbar-nav>li>a {
line-height:inherit;
font-weight: 400;
font-size: 14px;
padding-top: 0;
color: #fff;
padding-bottom: 0;
text-transform: uppercase;
letter-spacing: 1px;
padding: 15px;
border:none;
} .navbar-nav li {
position: relative;
text-align: left;
}
.navbar-nav li ul {
z-index: 9999;
padding: 0;
margin: 0;
position: absolute;
top: 50px;
left: 0;
width: 190px;
display: none;
background-color: #FFF;
border: 1px solid #EEE;
border-top: 2px solid #f33807;
-webkit-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.4);
}
.navbar-nav li ul li a {
display: block;
padding: 7px 15px;
font-size: 13px;
font-weight: 400;
color: #636363;
text-align: left !important;
}
.navbar-nav li > ul > li:last-child > a,
.navbar-nav li > ul > li > ul > li:last-child > a {
border-bottom: 0;
}
.navbar-nav li ul li:hover a {
padding-left: 20px;
padding-right: 10px;
text-decoration: none;
}
.navbar-nav li ul li a:hover{
color:#f33807;
}
.navbar-nav li ul li ul {
position: absolute;
left: 188px;
top: -2px;
}
.navbar-nav li ul li:hover ul li a {
padding-left: 15px;
padding-right: 15px;
}
.navbar-nav li ul li ul li:hover a {
padding-left: 20px;
padding-right: 10px;
}
.navbar-nav li ul li ul li ul li:hover a {
padding-left: 20px;
padding-right: 10px;
} .slicknav_menu {
display: none;
}
.slicknav_btn {
position: relative;
display: block;
vertical-align: middle;
float: right;
padding: 0.438em 0.625em 0.438em 0.625em;
line-height: 1.125em;
cursor: pointer;
}
.slicknav_menu .slicknav_menutxt {
display: block;
line-height: 1.188em;
float: left;
}
.slicknav_menu .slicknav_icon {
float: left;
margin: 0.188em 0 0 0.438em;
}
.slicknav_menu .slicknav_no-text {
margin: 0
}
.slicknav_menu .slicknav_icon-bar {
display: block;
width: 1.125em;
height: 0.125em;
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.slicknav_btn .slicknav_icon-bar + .slicknav_icon-bar {
margin-top: 0.188em
}
.slicknav_nav {
clear: both
}
.slicknav_nav ul,
.slicknav_nav li {
display: block
}
.slicknav_nav .slicknav_arrow {
font-size: 0.8em;
margin: 0 0 0 0.4em;
}
.slicknav_nav .slicknav_item {
cursor: pointer;
}
.slicknav_nav .slicknav_row {
display: block;
}
.slicknav_nav a {
display: block
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
display: inline
}
.slicknav_menu:before,
.slicknav_menu:after {
content: " ";
display: table;
}
.slicknav_menu:after {
clear: both
} .slicknav_menu {
*zoom: 1
} .slicknav_menu {
font-size: 16px;
} .slicknav_btn {
margin: 0;
text-decoration: none;
background-color: transparent;
padding: 0;
position: absolute;
top: 20px;
right: 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;
} .slicknav_btn.slicknav_open:before {
font-family: 'FontAwesome';
content: "\f00d"
}
.slicknav_btn.slicknav_collapsed:before {
font-family: 'FontAwesome';
content: "\f0c9"
}
.slicknav_btn.slicknav_open,
.slicknav_btn.slicknav_collapsed,
.slicknav_btn.slicknav_open:before,
.slicknav_btn.slicknav_collapsed:before {
text-decoration: none !important;
color: #;
border: none;
}
.slicknav_btn.slicknav_open:before,
.slicknav_btn.slicknav_collapsed:before {
font-size: 21px;
color: #fff;
}
.slicknav_menutxt {
line-height: 22px !important;
}
.slicknav_btn:focus {} .slicknav_menu .slicknav_menutxt {
color: #DFF2F2;
font-weight: 400;
font-size: 14px;
} .slicknav_menu .slicknav_icon-bar {
background-color: #f5f5f5
}
.slicknav_menu {
background: #383546;
padding: 0;
margin-top: 0;
}
.slicknav_nav {
color: #B6B3C4;
margin: 0;
padding: 0;
font-size: .875em
}
.slicknav_nav,
.slicknav_nav ul {
list-style: none;
overflow: hidden
}
.slicknav_nav ul {
padding: 0;
margin: 0;
}
.slicknav_nav ul li {
border-bottom: 0;
}
.slicknav_nav .slicknav_row {
padding: 0;
margin: 0;
}
.slicknav_nav a {
padding: 10px 15px;
margin: 0;
text-decoration: none;
color: #B6B3C4;
display: block;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
-o-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
transition: all 0.3s ease;
font-weight: 400;
text-transform: uppercase;
font-size: 13px;
text-align: left;
}
.slicknav_nav .slicknav_item a,
.slicknav_nav .slicknav_parent-link a {
padding: 10px 15px;
margin: 0;
}
.slicknav_nav .slicknav_item {
position: relative;
}
.slicknav_nav .slicknav_item a {
border-bottom: none;
display: block;
}
.slicknav_nav {
position: absolute;
top: 50px;
left: 0;
right: 0;
background: #1F1D26;
}
.slicknav_nav ul li {
padding-left: 0;
background: #1F1D26;
}
.slicknav_nav ul li li {
padding-left: 0;
}
.slicknav_nav ul li ul {
padding-left: 15px;
padding-right: 15px;
}
.slicknav_nav ul li ul a {
padding: 10px 10px;
}
.slicknav_nav .slicknav_row:hover {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
background: #443E56;
color: #FFF
}
.slicknav_nav a:hover {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
background: #443E56;
}
.slicknav_nav .slicknav_txtnode {
margin-left: 15px;
}
.slicknav_nav .slicknav_arrow {
font-size: 14px;
position: absolute;
top: 0;
right: 0;
bottom: 0;
padding-top: 13px;
width: 50px;
text-align: center;
border-left: 1px solid rgba(255, 255, 255, 0.05);
} .slicknav_nav .slicknav_arrow:hover {
background: rgba(255, 255, 255, 0.05);
}
.slicknav_menu .slicknav_icon {
display: none;
}
@media only screen and (max-width: 991px) {
}
@media only screen and (max-width: 991px) and (max-width: 768px) {
.slicknav_btn{
top: 16px;
}
}
@media (max-width: 767px) {
#responsive-menu {
display: none;
}
.slicknav_menu {
display: block;
}
nav.navbar.navbar-default.navbar-fixed-top.with-slicknav {
background: rgba(0, 0, 0, 0.5);
}
}
@media (max-width: 479px) {
.slicknav_btn {
top: 4px;
right: 0;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
}
.slicknav_btn.slicknav_open:before,
.slicknav_btn.slicknav_collapsed:before {
color: #FFF;
}
.slicknav_nav {
top: 50px;
}
} .blog-item-full {
margin: 0 0 30px;
}
.blog-item-full .content {
border-bottom: 1px dashed rgba(204, 204, 204, 0.5);
padding-bottom: 30px;
} .blog-item-full .content.hotelica_content_search, .blog-item-full .content.content-in{
display: inline-block;
width: 100%;
}
.blog-item-full .content  tr, .blog-item-full .content  th, .blog-item-full .content  td {
border: 1px solid rgba(204, 204, 204, 0.25);
text-align: center;
padding: 3px;
}
.blog-item-full p:last-child {
margin: 0;
}
.blog-item-full .image img{margin-bottom:30px;}
.blog-item-full .meta {
margin: 0px 0 10px;
font-size: 13px;
color: #919191;
line-height: 18px;
}
.blog-item-full .meta a {
color: #555;
font-weight: 500;
text-transform: uppercase;
}
.blog-item-full .meta a:hover {
text-decoration: underline;
}
.blog-item-full .meta i {
margin-right: 5px;
}
.blog-item-full .content h3.blog-title {
position: relative;
margin: 0;
margin-bottom: 20px;
padding: 0px 0 0 0; 
}
.blog-wrapper.blog-single .blog-item-full .content {
margin-left: 0 !important;
}
.blog-item-full a.link-more{
float: none;
color: #fff!important;
}
.detail-content.content ul, .blog-item-full .content ul, .blog-item-full .content ol {
list-style-type: disc;
margin-left:15px;
}
.blog-item-full .content ol {list-style-type: decimal; padding-left: 0;}
.blog-item-full .content ol li ul li ol li, .blog-item-full .content ul li ol > li{
list-style-type: decimal;
}
.detail-content.content dt {
background: rgba(241, 241, 241, 0.44);
padding: 5px 10px;
margin-bottom: 5px;
}
.nav-links .nav-previous a, .nav-links .nav-next a{
border-width: 2px;
transition: all ease-in-out 0.3s;
} 
.nav-links .nav-previous a:hover, .nav-links .nav-next a:hover {
opacity: 1;
border-color: #f44336;
transition: all ease-in-out 0.3s;
}
form.post-password-form input[type="password"] {
border-radius: 0;
}
.blog-section.blog-item-full.blog-details .comments-area > ol.comment-list, 
.blog-section.blog-item-full.blog-details .comments-area ol.comment-list > ul.comment-item{ padding-left: 0;
margin-left: 0; display: inline-block; width: 100%; margin-top: 15px; }
div#respond {
display: inline-block;
width: 100%;
margin-top: 25px;
} .sidebar-list{
padding:0;
margin-bottom:25px;
}
.sidebar-list:last-child{
margin-bottom: 0px;
}
.sidebar-list ul{
margin-bottom: 0px;
}
.sidebar .widget {
margin: 0 0 30px;
padding: 0;
display: inline-block;
width: 100%;
} .widget.widget_search {
position: relative;
}
.widget.widget_search label{width: 100%;}
.widget.widget_search input.search-field {
padding: 8px 12px;
width: 100%;
font-weight: normal;
font-size: 14px;
border-radius: 0px;
}
.widget.widget_search input.search-submit {
position: absolute;
top: 1px;
right: 0px;
color: #FFF;
background: #f44336;
padding:13px 16px;
border: none;
border-radius: 0px;
}
.widget.widget_search input.search-field {
padding-right: 50px;
} .widget.widget_recent_entries ul{margin: 0; padding: 0;}
.widget.widget_recent_entries ul li {
border-bottom: 1px dotted #DBDBDB;
line-height: 14px;
position: relative;
}
.widget.widget_recent_entries ul li:last-child {
border-bottom: 0;
}
.widget.widget_recent_entries ul li a {
padding: 10px 0;
display: block;
color: #FF5722; }
.widget.widget_recent_entries ul li:first-child a {
padding-top: 0;
}
.widget.widget_recent_entries ul li a:hover, .widget.widget_pages ul li a:hover, .widget.widget_archive ul li a:hover,.widget.widget_categories ul li a:hover {
padding-left: 5px;
color: #f49b00;
}
.widget.widget_recent_entries ul li:first-child .absolute {
top: 0px;
} .widget.widget_archive ul li, .widget.widget_categories > ul > li, .widget.widget_pages > ul > li {
position: relative;
margin-bottom: 10px;
border-bottom: 1px dotted rgba(204, 204, 204, 0.5);
padding:0px 0 8px;
line-height: 1.5;
}
.widget.widget_archive ul li:first-child, .widget.widget_categories ul li:first-child, .widget.widget_pages ul li:first-child
padding-top: 0px;
}
.widget.widget_archive ul li:last-child, .widget.widget_categories ul li:last-child, .widget.widget_pages ul li:last-child{
border:none;
padding-bottom: 0px
;}
.widget.widget_archive ul li a, .widget.widget_categories ul li a, .widget.widget_pages ul li a{
color: #FF5722; }
.widget.widget_archive ul li .absolute,.widget.widget_pages ul li .absolute .widget.widget_categories ul li .absolute, ul.sidebar-cat li .absolute {
float: right;
color: #ccc;
font-style: italic;
font-size: 12px;
}
.widget.widget_categories ul li ul.children li:last-child{margin-bottom: 0px; border: none;} .tagcloud a {
border: 3px double #DBDBDB;
line-height: 1;
font-size: 13px!important;
padding: 5px;
margin-left: 3px;
margin-bottom: 5px;
display: block;
float: left;
color: #777;
}
.tagcloud a:hover {
background: #f49b00;
color: #FFF;
border-color: #EDEDED;
} h2.widget-title:after {
position: absolute;
width: 70px;
height: 2px;
content: "";
bottom: -1px;
background: #DD9933;
left: 0;
display: inline-block;
}
h2.widget-title {
text-align: left;
line-height: 1.0;
margin: 0;
font-size: 20px;
text-transform: uppercase;
margin-bottom: 20px;
border-bottom: 1px solid rgba(204, 204, 204, 0.3);
position: relative;
padding-bottom: 10px;
} ul.recent-post-sm li {
border-bottom: 1px solid #DBDBDB;
padding-bottom: 15px;
margin-bottom: 15px;
}
ul.recent-post-sm li:last-child{
margin-bottom: 0;
border:none;
padding-bottom: 0;
}
ul.recent-post-sm li h3 {
font-size: 14px;
line-height: 18px;
margin: 0 0 5px;
font-weight: 700;
}
ul.recent-post-sm li .image {
width: 80px;
float: left;
}
ul.recent-post-sm li .image img {
display: block;
}
ul.recent-post-sm li .content {
margin-left: 90px;
}
ul.recent-post-sm li .recent-post-sm-meta {
margin: 0;
color: #ccc;
font-size: 13px;
font-style: italic;
}
ul.recent-post-sm li .recent-post-sm-meta i{padding-right: 5px;}
ul.recent-post-sm li a h3:hover {
color: #f44336;
}
.widget_hotelica_popular_posts_widget ul.recent-post-sm li .content {
margin-left: 0;
border: none;
padding-bottom: 0px;
width: 66.66%;
display: inline-block;
}
.widget_hotelica_popular_posts_widget ul.recent-post-sm li .image{width: 33.33%;}
.widget_hotelica_popular_posts_widget ul.recent-post-sm li .image img{
margin: 0px;
padding-right: 15px;
}
.widget select {
max-width: 100%;
width: 100%;
padding: 10px;
border: 1px solid rgba(204, 204, 204, 0.35);
color: #666;
} div#calendar_wrap {
border: 1px solid #ccc;
padding: 5px;
text-align: center;
}
.calendar_wrap thead tr th {
text-align: center;
}
table#wp-calendar{margin-bottom: 0px;}
.calendar_wrap caption {
background: #f7f7f7;
padding: 5px 0 3px;
font-weight: 600;
margin-bottom: 8px;
}
.calendar_wrap tr, .calendar_wrap th, .calendar_wrap td {
border: 1px solid rgba(204, 204, 204, 0.25);
}  .widget.widget_nav_menu ul.menu > li, .widget.widget_meta ul li {
padding: 3px 0;
border-bottom: 1px solid rgba(204, 204, 204, 0.34);
margin-bottom: 3px;
}
.widget.widget_nav_menu ul.menu li:first-child, .widget.widget_meta ul li:first-child{
padding-top: 0px;
}
.widget.widget_nav_menu ul.menu li:last-child, .widget.widget_meta ul li:last-child{
padding-bottom:0px; margin-bottom: 0px; border: none;
} .widget.widget_rss ul li {
padding-bottom: 15px;
}
.widget.widget_rss ul li a{
font-weight: 500;
}
.widget.widget_rss .rssSummary {
border-top: 1px dashed #ccc;
padding-top: 10px;
} .widget.widget_recent_comments ul li.recentcomments{padding-bottom: 8px;}
.widget.widget_recent_comments ul li.recentcomments:last-child{padding-bottom: 0px;}
.comments-area ol.comment-list {
padding-left: 14px;
}
footer.comment-meta {
border-bottom: 1px dotted #ccc;
padding-bottom: 5px;
margin-bottom: 5px;
}
footer.comment-meta .comment-metadata, footer.comment-meta .comment-author.vcard{
display: inline-block;
}
footer.comment-meta .comment-metadata{padding-left: 15px;}
.comment-author.vcard img {
border-radius: 50%;
margin-right: 8px;
} .result-paging-wrapper {
background: #fff;
display: inline-block;
width: 100%;
}
.result-paging-wrapper ul.paging {
float: left;
margin-bottom: 0px;
}
.result-paging-wrapper ul.paging li {
float: left;
margin-left: 2px;
list-style-type: none;
}
.result-paging-wrapper ul.paging li a {
color: #636363;
padding: 4px 10px;
}
.result-paging-wrapper ul.paging li.active a{
background: #f44336;
color: #FFF!important;
width: 30px;
display: block;
height: 34px;
padding: 0 4px 0 4px;
line-height: 34px;
margin-right: 5px;
text-align: center;
}
.result-paging-wrapper ul.paging li.inactive a {
background: rgba(128, 121, 121, 0.42);
color: #FFF!important;
width: 30px;
display: block;
height: 34px;
padding: 0 4px 0 4px;
line-height: 34px;
margin-right: 5px;
text-align: center;
}
.result-paging-wrapper ul.paging li.pagination_links a {
border: 2px dotted #ccc;
padding: 2px 10px;
line-height: 32px;
margin-right: 5px;
font-size: 21px;
}
.result-paging-wrapper ul.paging li.pagination_links a:hover {
border: 2px dotted #f44336;
color: #f44336;
}
.result-paging-wrapper ul.paging li.disable a {
cursor: not-allowed;
background: transparent;
color: #636363;
}
.result-paging-wrapper.text-center ul.paging {
float: none;
text-align: center;
}
.result-paging-wrapper.text-center ul.paging li {
float: none;
margin-left: 2px;
display: inline-block;
}   .left .content-wrapper {
float: right;
}   .detail-header h2 {
margin-top: 0;
margin-bottom:30px;
line-height: 0.8; 
}
.review-item {
padding-bottom: 20px;
margin-bottom:20px; 
display: inline-block;
border-bottom: 1px solid #EBEBEB;
}
.review-item .btn-sm,  p.form-submit .submit{
padding: 10px 20px;
color: #fff;
font-size: 13px;
}
.review-item:last-child {
margin: 0;
border-bottom: 0;
padding: 0;
}
.review-item .content-left {
color: #A1A1A1;
text-align: center;
}
.review-item .content-left img {
width: 80px;
display: inline-block;
border-radius: 50%;
margin: 5px 0 10px;
}
.review-item .content-left h4 {
line-height: 1.3;
margin: 0;
font-size: 14px;
font-weight: 400;
}
.tripadvisor-rate {
line-height: 16px;
display: inline-block;
}
.tripadvisor-module p {
display: inline-block;
padding-left: 10px;
}
.review-item .content {
line-height: 24px;
border-left: 1px solid #EBEBEB;
}
.review-item .content h5 {
font-weight: 700;
line-height: 1.3;
margin: 0 0 10px;
font-size: 16px;
}
.review-item .content-right {
position: absolute;
top: 25px;
right: 25px;
bottom: 25px;
width: 130px;
border: 3px double #005294;
}
.detail-content .form-group {
display: table;
width: 100%;
}
.detail-content .form-group .col-sm-12{
padding: 0;
}
.detail-content .form-group .col-sm-4:first-child{
padding-left: 0px;
}
.detail-content .form-group .col-sm-4:last-child{
padding-right: 0px;
}
.comments-area textarea, .comments-area p input{
border-radius: 0px;
padding: 10px;
font-size: 14px;
}
.comments-area input#author, .comments-area input#email, .comments-area input#url {
margin-left: 25px;
}
.comments-area label{width: 12%;}
.comments-area p{margin-bottom: 20px;}
.comments-area p:last-child{margin-bottom: 0px;}
.comment-body .reply {margin:5px 0 20px;}
.reply a{padding: 4px 10px; color: #fff;}   @media only screen and (min-width: 481px) and (max-width: 768px) {
} @media only screen and (min-width: 481px) and (max-width: 992px) {
h1 {
font-size: 2.2rem;
line-height: 2.8rem;
}
} @media only screen and (max-width: 767px) {
.breadcrumb-wrapper h2{
margin-top: 45px;
}
.col-sm-9.content-wrapper {
margin-bottom: 25px;
}
.left .content-wrapper {
float: none;
}
} @media only screen and (max-width: 576px) {
.detail-header h2{
line-height: 1.5;
}
} @media only screen and (max-width: 480px) {
h1 {
font-size: 1.8rem;
line-height: 2.5rem;
}
h3 {
font-size: 1.5rem;
line-height: 2rem;
}
}
@media only screen and (max-width: 360px) {
html,
body {
font-size: 90%;
}
}
.multiple-sticky.fixed_admin {
top: 32px;
}
.mt-0 {margin-top:0px;}
.mt-5   {margin-top:5px;}
.mt-10  {margin-top:10px;}
.mt-15  {margin-top:15px;}
.mt-20  {margin-top:20px;}
.mt-30  {margin-bottom:30px;}
.mb-0 {margin-bottom:0px;}
.mb-5   {margin-bottom:5px;}
.mb-10  {margin-bottom:10px;}
.mb-15  {margin-bottom:15px;}
.mb-20  {margin-bottom:20px;}
.mb-30  {margin-bottom:30px;}
.mr-5   {margin-right:5px;}
.mr-10  {margin-right:10px;}
.mr-15  {margin-right:15px;}
.mr-20  {margin-right:20px;}
.mr-30  {margin-right:30px;}
.ml-5   {margin-left:5px;}
.ml-10  {margin-left:10px;}
.ml-15  {margin-left:15px;}
.ml-20  {margin-left:20px;}
.ml-30  {margin-left:30px;}
.posts_navigations .screen-reader-text{
display: none;
}
.post-navigation .screen-reader-text {
display: none;
}
.not_blog_home{
height: 270px;
}
.category_page_breadcrum {
height: 300px;
}
.category_page_breadcrum .section-title{
top: 145px;
}
.blog_home_breadcrum {
height: 225px;
}
select option {
font-weight: 300;
font-size: 15px;
}
form.search-form{
position: relative;
}
.textwidget select { 
width:300px; 
} 
.textwidget select option { 
width:300px; 
}
ul.comment-item {
list-style: none;
padding: 0;
margin: 10px 0 0;
}
ul.comment-item li {
position: relative;
padding-bottom: 20px;
margin-bottom: 20px;
}
.blog-section.blog-item-full.blog-details ul.comment-item li{padding: 0; margin: 0; }
.blog-section.blog-item-full.blog-details ul.comment-item li.comment.odd,
.blog-section.blog-item-full.blog-details ul.comment-item li.comment.even{margin-bottom: 20px; display: block;}
.blog-section.blog-item-full.blog-details ul.comment-item li ul.child-comments.comment-item .comment-content {
margin-bottom: 20px;
}
.blog-wrapper ul li, .page-wrapper ul li {
list-style-position: outside;
list-style-type: disc;
margin-bottom: 0;
}
.comment-item .comment-avatar {
position: absolute;  width: 50px;
height: 50px;
border-radius: 50%;
}
.comment-item .comment-avatar img {
width: 100%;
width: 100%;
border-radius: 50%;
}
ul.comment-item li .comment-header {
margin-left: 60px;
}
ul.comment-item li .comment-header a {
color: #333;
font-weight: 700;
}
.comment-item .comment-time {
display: block;
font-style: italic;
font-weight: 300;
font-size: 13px;
color: #989B8E;
margin-bottom: 10px;
}
.comment-content {
margin-top: 20px;
}
.edit_repy_links a {
display: inline-block;
}
ul.child-comments {
padding-left: 25px;
}
.child-comments li {
margin-bottom: 0 !important;
padding-bottom: 0 !important;
padding-top: 25px;
}
.hotelica-comments-title {
padding: 10px 0 15px 0;
}
.nav-previous a, .nav-next a {
border: 1px solid #ddd;
padding: 10px 15px;
}
#comments {
display: table;
width: 100%;
}
.tag-cloud-wrapper {
position: relative;
padding: 10px 0 0;
}
.tag-cloud-wrapper .tag-cloud-heading {
float: left;
margin-top: 7px;
text-transform: uppercase;
}
.tag-cloud-wrapper .tag-cloud {
margin-left: 50px;
margin-top: 5px;
}
.tagcloud a, .tag-cloud a {
border: 3px double #DBDBDB;
line-height: 1;
font-size: 12px;
padding: 5px;
margin-left: 3px;
margin-bottom: 5px;
display: inline-block;
color: #777;
}
.comment-reply-link {
margin-left: 5px;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea{
padding: 5px 10px;
font-weight: 300;
font-size: 13px;
}
span.wpcf7-not-valid-tip {
color: #f00;
font-size: 0.9em;
font-weight: normal;
display: block;
font-style: italic;
}
form.post-password-form input[type="submit"]{border-radius: 0; border:0px; padding: 10px 20px; color: #fff;}
.gallery-icon.landscape img { padding: 0 10px;
margin-bottom: 10px;
}
.mejs-audio {
margin-bottom: 15px;
}
.blog-item-full .sticky_post {
margin-bottom: 15px;
display: inline-block;
padding: 7px 10px 5px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0px;
}
blockquote {
overflow: hidden;
font-family: "Merriweather", "Georgia", Times New Roman, Times, serif;
font-size: 20px;
line-height: 40px; background: #EDEDED;
padding: 32px;
color: #777;
font-weight: 300;
border-radius: 0;
border-left: 5px solid #E0E0E0;
margin: 30px 0;
} ul.about-list{
padding-top: 25px;
display: inline-block;
margin-bottom: 0;
} 
ul.about-list li {
padding-left: 40px;
padding-bottom: 30px;
}
ul.about-list li i{
color: #0d8eb9;
font-size: 25px;
position: absolute;
top: 3px;
left: 0px;
}
.about-content img {
border: 5px solid rgba(255, 255, 255, 0.75);
box-shadow: 0 0 5px #ccc;
}
.goal{
background: rgba(255, 255, 255, 0.5);
padding-top: 0;
padding-bottom: 50px;
}
.goal .section-title{margin-bottom: 10px;}
.featured-timeline ul{
margin-bottom: 0px;
}
.featured-timeline ul li {
padding: 30px 0;
padding-left: 110px;
position: relative;
}
.featured-timeline ul li h4 {
margin: 0 0 10px;
text-transform: uppercase;
}
.featured-timeline ul li .icon {
position: absolute;
top: 30px;
left: 30px;
font-size: 24px;
width: 50px;
height: 50px;
line-height: 48px;
border: 2px solid #0d8eb9;
border-radius: 50%;
text-align: center;
color: #0d8eb9;
}
@media only screen and (max-width: 1199px) {
.sell-or-buy {
padding: 80px 80px;
padding-right: 120px;
}
.sell-or-buy.text-right {
padding-left: 120px;
}
}
@media only screen and (max-width: 991px) {
.sell-or-buy {
padding: 40px;
padding-right: 40px;
}
.sell-or-buy.text-right {
padding: 40px;
padding-left: 40px;
}
section.about-content{padding-bottom: 50px;}
.featured-timeline ul li{padding-left: 90px;}
.featured-timeline ul li .icon{left: 20px;}
}
@media only screen and (max-width: 767px) {
section.about-content{padding-bottom: 80px;}
.about-skill{padding-bottom: 60px;}
}
@media (max-width: 639px) {
ul.about-list li{padding-left: 35px;}
ul.about-list li i{left: 0;}
.goal{padding-bottom:50px; }
}
.about-skill{
background:url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/skill-bg.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;
padding-bottom: 60px;
} 
.ch-grid {
margin: 0;
padding: 0;
list-style: none;
display: block;
text-align: center;
width: 100%;
line-height: 0;
}
.ch-grid:after,
.ch-item:before {
content: '';
display: table;
}
.ch-grid:after {
clear: both;
}
.ch-grid li {
width: 220px;
height: 220px;
display: inline-block;
margin:0 20px;
}
.ch-item {
width: 100%;
height: 100%;
border-radius: 50%;
position: relative;
box-shadow: 0 1px 2px rgba(0,0,0,0.1);
cursor: default;
}
.ch-info-wrap{
position: absolute;
width: 180px;
height: 180px;
border-radius: 50%;
-webkit-perspective: 800px;
-moz-perspective: 800px;
-o-perspective: 800px;
-ms-perspective: 800px;
perspective: 800px;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
top: 20px;
left: 20px;
background: #f9f9f9;
box-shadow: 
0 0 0 20px rgba(255,255,255,0.2), 
inset 0 0 3px rgba(115,114, 23, 0.8);
}
.ch-info{
position: absolute;
width: 180px;
height: 180px;
border-radius: 50%;
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
-ms-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.ch-info > div {
display: block;
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background-position: center center;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-o-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
}
.ch-info .ch-info-back {
-webkit-transform: rotate3d(0,1,0,180deg);
-moz-transform: rotate3d(0,1,0,180deg);
-o-transform: rotate3d(0,1,0,180deg);
-ms-transform: rotate3d(0,1,0,180deg);
transform: rotate3d(0,1,0,180deg);
background: #000;
}
.ch-img-1 { 
background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/team/01.jpg);
background-size: 100%;
}
.ch-img-2 { 
background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/team/02.jpg);
background-size: 100%;
}
.ch-img-3 { 
background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/team/04.jpg);
background-size: 100%;
}
.ch-img-4 { 
background-image: url(//pousadafilo.com.br/wp-content/themes/hotelica-pro/images/team/03.jpg);
background-size: 100%;
}
.ch-info h3 {
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 14px;
margin: 0 15px;
padding: 40px 0 10px;
font-family: 'Open Sans', Arial, sans-serif;
text-shadow: 
0 0 1px #fff, 
0 1px 2px rgba(0,0,0,0.3);
border-bottom: 1px solid rgba(255,255,255,0.5);
}
.ch-info p {
color: #fff;
padding: 10px 5px;
font-style: italic;
margin: 0 30px;
font-size: 12px;
line-height: 1.5;
}
.ch-info p a {
display: block;
color: #fff;
color: rgba(255,255,255,0.7);
font-style: normal;
font-weight: 700;
text-transform: uppercase;
font-size: 9px;
letter-spacing: 1px;
padding-top: 4px;
font-family: 'Open Sans', Arial, sans-serif;
}
.ch-info p a:hover {
color: #fff222;
color: rgba(255,242,34, 0.8);
}
.ch-item:hover .ch-info-wrap {
box-shadow: 
0 0 0 0 rgba(255,255,255,0.8), 
inset 0 0 3px rgba(115,114, 23, 0.8);
}
.ch-item:hover .ch-info {
-webkit-transform: rotate3d(0,1,0,-180deg);
-moz-transform: rotate3d(0,1,0,-180deg);
-o-transform: rotate3d(0,1,0,-180deg);
-ms-transform: rotate3d(0,1,0,-180deg);
transform: rotate3d(0,1,0,-180deg);
}
@media (max-width: 1199px) {
.ch-grid li:last-child{margin-top:30px;}
}
@media (max-width: 639px) {
.ch-grid li{margin-bottom: 30px;}
.ch-grid li:last-child{margin-top:0px; margin-bottom:0px;  }
} .about-skill .progress {
height: 35px;
border-radius: 10px;
background: #ccc;
}
.about-skill .text-white{color:#fff;}
.progress .skill {
line-height: 35px;
padding: 0;
margin: 0 0 0 20px;
text-transform: uppercase;
}
.progress .skill .val {
float: right;
font-style: normal;
margin: 0 20px 0 0;
}
.progress-bar {
text-align: left;
transition-duration: 3s;
}
@media (max-width: 1199px) and (min-width: 768px) {
.about-skill{padding-bottom: 60px;}  
}
@media (max-width: 767px) {
}
.modal_inquiry_form label.error {
color: #f00;
font-size: 13px;
font-weight: 300;
}
.modal_enquiry_btn .fa {
margin-left: 10px;
}
.search_page_title {
margin-top: 0;
}
.archive-description {
margin-bottom: 25px;
}
li.pagination_links {
margin-top: 2px;
} .hover06 figure img {
-webkit-transform: rotate(15deg) scale(1.4);
transform: rotate(15deg) scale(1.4);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover06 figure:hover img {
-webkit-transform: rotate(0) scale(1);
transform: rotate(0) scale(1);
}
.widget_instagram figure {
width: 31%;
margin: 2px;
padding: 0px;
overflow: hidden;
float: left;
}
}
.widget_instagram figure:hover+span {
bottom: -36px;
opacity: 1;
}
.widget_social_links a {
background: #4c4e4e;
border-radius: 50%;
width: 35px;
height: 35px;
display: inline-block;
padding: 0 11px;
line-height: 35px;
margin: 0 6px 6px 0;
color: #fff;
}
.widget_social_links .facebook_link {
padding-left: 13px;
}
.widget_social_links .foursquare_link {
padding-left: 13px;
}
.widget_social_links .tumblr_link {
padding-left: 13px;
}
.widget_social_links .dribbble_link {
padding-left: 12px;
}
.widget_social_links .pinterest_link {
padding-left: 13px;
}
.widget_social_links a:hover,.widget_social_links a:focus {
color: #fff;
background: #777;
}
.testimonial-man { }
.testimonial_content {
height: 150px;
padding-top: 5px;
overflow: auto;
}
@media (max-width: 639px) {
.testimonial_content{height: inherit;}
.testimonial_content .scrollbot-inner-parent {
padding-right: 0!important;
}
.testimonial_content .scrollbot-scrollbar-holder {
display: none!important;
}
} .error-404 .page-header{
border: none;
text-align: center;
}
.error-404 .page-header h1{
color:#d93;
text-transform: uppercase; 
}
.error-404 .page-header h1 span{
display: block;
font-size: 98px;
line-height: 1.3;
} .gallery-item .gallery-caption {
padding: 0 10px;
}
.comment_awating {
background: papayawhip none repeat scroll 0 0;
margin: 25px 0 0 !important;
padding: 10px 20px;
}
.child-comments.comment-item {
margin-bottom: 20px;
margin-top: 20px;
}
.navbar-arrow ul ul > li .arrow-indicator {
position: absolute;
top: 50%;
right: 15px;
margin-top: -8px;
font-size: 16px;
color: #CCC;
}
ul.comment-item li .comment-header .comment-time a {
color: #989B8E;
}
.comment-holder,.comment-holder .child-comments{
list-style-type: none !important;
}
.blog-section.blog-item-full.blog-details ul.comment-item > li {
margin-bottom: 20px;
}
.blog-item-full .detail-content.content dt{background: transparent;}
.package_content ul {
list-style-type: disc;
list-style-position: inside;
}
.package_content ol {
list-style-position: inside;
padding-left: 0;
}@font-face {
font-family: 'world of water';
src: url(//pousadafilo.com.br/wp-content/uploads/font-organizer/world-of-water.ttf) format('truetype'),
url(//pousadafilo.com.br/wp-content/uploads/font-organizer/world-of-water-1.ttf) format('truetype');
font-weight: normal;
}
@font-face {
font-family: 'Nirvana Personal';
src: url(//pousadafilo.com.br/wp-content/uploads/font-organizer/Nirvana-Personal-Use.ttf) format('truetype'),
url(//pousadafilo.com.br/wp-content/uploads/font-organizer/Nirvana-Personal-Use-1.ttf) format('truetype');
font-weight: normal;
}h1 { font-family: 'Nirvana Personal'!important; font-weight:normal!important;  }
h2 { font-family: 'Nirvana Personal'!important; font-weight:normal!important;  }.hotel-room-item-02 a.link-more {
margin-top: 10px;
}
.hotel-room-item-02 article.content .bottom {
margin-top: 0;
}
.modal_package_content {
height: 240px;
overflow: auto;
}
.tab_1_content_wrapper,.tab_2_content_wrapper {
height: 310px;
overflow: auto;
}
@media screen and (max-width: 800px) {
.wow{visibility: visible !important;-webkit-animation-name: none !important;-o-animation-name: none !important;animation-name: none !important;}
}.wpdevelop article,
.wpdevelop aside,
.wpdevelop details,
.wpdevelop figcaption,
.wpdevelop figure,
.wpdevelop footer,
.wpdevelop header,
.wpdevelop hgroup,
.wpdevelop main,
.wpdevelop menu,
.wpdevelop nav,
.wpdevelop section,
.wpdevelop summary {
display: block;
}
.wpdevelop audio,
.wpdevelop canvas,
.wpdevelop progress,
.wpdevelop video {
display: inline-block;
vertical-align: baseline;
}
.wpdevelop audio:not([controls]) {
display: none;
height: 0;
}
.wpdevelop [hidden],
.wpdevelop template {
display: none;
}
.wpdevelop a {
background-color: transparent;
}
.wpdevelop a:active,
.wpdevelop a:hover {
outline: 0;
}
.wpdevelop abbr[title] {
border-bottom: 1px dotted;
}
.wpdevelop b,
.wpdevelop strong {
font-weight: bold;
}
.wpdevelop dfn {
font-style: italic;
}
.wpdevelop h1 {
font-size: 2em;
margin: 0.67em 0;
}
.wpdevelop mark {
background: #ff0;
color: #000;
}
.wpdevelop small {
font-size: 80%;
}
.wpdevelop sub,
.wpdevelop sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
.wpdevelop sup {
top: -0.5em;
}
.wpdevelop sub {
bottom: -0.25em;
}
.wpdevelop img {
border: 0;
}
.wpdevelop svg:not(:root) {
overflow: hidden;
}
.wpdevelop figure {
margin: 1em 40px;
}
.wpdevelop hr {
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
.wpdevelop pre {
overflow: auto;
}
.wpdevelop code,
.wpdevelop kbd,
.wpdevelop pre,
.wpdevelop samp {
font-family: monospace, monospace;
font-size: 1em;
}
.wpdevelop button,
.wpdevelop input,
.wpdevelop optgroup,
.wpdevelop select,
.wpdevelop textarea {
color: inherit;
font: inherit;
margin: 0;
}
.wpdevelop button {
overflow: visible;
}
.wpdevelop button,
.wpdevelop select {
text-transform: none;
}
.wpdevelop button,
.wpdevelop html input[type="button"],
.wpdevelop input[type="reset"],
.wpdevelop input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
.wpdevelop button[disabled],
.wpdevelop html input[disabled] {
cursor: default;
}
.wpdevelop button::-moz-focus-inner,
.wpdevelop input::-moz-focus-inner {
border: 0;
padding: 0;
}
.wpdevelop input {
line-height: normal;
}
.wpdevelop input[type="checkbox"],
.wpdevelop input[type="radio"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
}
.wpdevelop input[type="number"]::-webkit-inner-spin-button,
.wpdevelop input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
.wpdevelop input[type="search"] {
-webkit-appearance: textfield;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
.wpdevelop input[type="search"]::-webkit-search-cancel-button,
.wpdevelop input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
.wpdevelop fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
.wpdevelop legend {
border: 0;
padding: 0;
}
.wpdevelop textarea {
overflow: auto;
}
.wpdevelop optgroup {
font-weight: bold;
}
.wpdevelop table {
border-collapse: collapse;
border-spacing: 0;
}
.wpdevelop td,
.wpdevelop th {
padding: 0;
}
@media print {
.wpdevelop *,
.wpdevelop *:before,
.wpdevelop *:after {
background: transparent !important;
color: #000 !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important;
}
.wpdevelop a,
.wpdevelop a:visited {
text-decoration: underline;
}
.wpdevelop a[href]:after {
content: " (" attr(href) ")";
}
.wpdevelop abbr[title]:after {
content: " (" attr(title) ")";
}
.wpdevelop a[href^="#"]:after,
.wpdevelop a[href^="javascript:"]:after {
content: "";
}
.wpdevelop pre,
.wpdevelop blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
.wpdevelop thead {
display: table-header-group;
}
.wpdevelop tr,
.wpdevelop img {
page-break-inside: avoid;
}
.wpdevelop img {
max-width: 100% !important;
}
.wpdevelop p,
.wpdevelop h2,
.wpdevelop h3 {
orphans: 3;
widows: 3;
}
.wpdevelop h2,
.wpdevelop h3 {
page-break-after: avoid;
}
.wpdevelop .navbar {
display: none;
}
.wpdevelop .btn > .caret,
.wpdevelop .dropup > .btn > .caret {
border-top-color: #000 !important;
}
.wpdevelop .label {
border: 1px solid #000;
}
.wpdevelop .table {
border-collapse: collapse !important;
}
.wpdevelop .table td,
.wpdevelop .table th {
background-color: #fff !important;
}
.wpdevelop .table-bordered th,
.wpdevelop .table-bordered td {
border: 1px solid #ddd !important;
}
}
@font-face {  
font-family: 'Glyphicons Halflings';
src: url(//pousadafilo.com.br/wp-content/plugins/booking/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.eot);
src: url(//pousadafilo.com.br/wp-content/plugins/booking/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(//pousadafilo.com.br/wp-content/plugins/booking/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(//pousadafilo.com.br/wp-content/plugins/booking/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.woff) format("woff"), url(//pousadafilo.com.br/wp-content/plugins/booking/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(//pousadafilo.com.br/wp-content/plugins/booking/assets/libs/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");  
}
.wpdevelop .glyphicon {
position: relative;
top: 1px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.wpdevelop .glyphicon-asterisk:before {
content: "\2a";
}
.wpdevelop .glyphicon-plus:before {
content: "\2b";
}
.wpdevelop .glyphicon-euro:before,
.wpdevelop .glyphicon-eur:before {
content: "\20ac";
}
.wpdevelop .glyphicon-minus:before {
content: "\2212";
}
.wpdevelop .glyphicon-cloud:before {
content: "\2601";
}
.wpdevelop .glyphicon-envelope:before {
content: "\2709";
}
.wpdevelop .glyphicon-pencil:before {
content: "\270f";
}
.wpdevelop .glyphicon-glass:before {
content: "\e001";
}
.wpdevelop .glyphicon-music:before {
content: "\e002";
}
.wpdevelop .glyphicon-search:before {
content: "\e003";
}
.wpdevelop .glyphicon-heart:before {
content: "\e005";
}
.wpdevelop .glyphicon-star:before {
content: "\e006";
}
.wpdevelop .glyphicon-star-empty:before {
content: "\e007";
}
.wpdevelop .glyphicon-user:before {
content: "\e008";
}
.wpdevelop .glyphicon-film:before {
content: "\e009";
}
.wpdevelop .glyphicon-th-large:before {
content: "\e010";
}
.wpdevelop .glyphicon-th:before {
content: "\e011";
}
.wpdevelop .glyphicon-th-list:before {
content: "\e012";
}
.wpdevelop .glyphicon-ok:before {
content: "\e013";
}
.wpdevelop .glyphicon-remove:before {
content: "\e014";
}
.wpdevelop .glyphicon-zoom-in:before {
content: "\e015";
}
.wpdevelop .glyphicon-zoom-out:before {
content: "\e016";
}
.wpdevelop .glyphicon-off:before {
content: "\e017";
}
.wpdevelop .glyphicon-signal:before {
content: "\e018";
}
.wpdevelop .glyphicon-cog:before {
content: "\e019";
}
.wpdevelop .glyphicon-trash:before {
content: "\e020";
}
.wpdevelop .glyphicon-home:before {
content: "\e021";
}
.wpdevelop .glyphicon-file:before {
content: "\e022";
}
.wpdevelop .glyphicon-time:before {
content: "\e023";
}
.wpdevelop .glyphicon-road:before {
content: "\e024";
}
.wpdevelop .glyphicon-download-alt:before {
content: "\e025";
}
.wpdevelop .glyphicon-download:before {
content: "\e026";
}
.wpdevelop .glyphicon-upload:before {
content: "\e027";
}
.wpdevelop .glyphicon-inbox:before {
content: "\e028";
}
.wpdevelop .glyphicon-play-circle:before {
content: "\e029";
}
.wpdevelop .glyphicon-repeat:before {
content: "\e030";
}
.wpdevelop .glyphicon-refresh:before {
content: "\e031";
}
.wpdevelop .glyphicon-list-alt:before {
content: "\e032";
}
.wpdevelop .glyphicon-lock:before {
content: "\e033";
}
.wpdevelop .glyphicon-flag:before {
content: "\e034";
}
.wpdevelop .glyphicon-headphones:before {
content: "\e035";
}
.wpdevelop .glyphicon-volume-off:before {
content: "\e036";
}
.wpdevelop .glyphicon-volume-down:before {
content: "\e037";
}
.wpdevelop .glyphicon-volume-up:before {
content: "\e038";
}
.wpdevelop .glyphicon-qrcode:before {
content: "\e039";
}
.wpdevelop .glyphicon-barcode:before {
content: "\e040";
}
.wpdevelop .glyphicon-tag:before {
content: "\e041";
}
.wpdevelop .glyphicon-tags:before {
content: "\e042";
}
.wpdevelop .glyphicon-book:before {
content: "\e043";
}
.wpdevelop .glyphicon-bookmark:before {
content: "\e044";
}
.wpdevelop .glyphicon-print:before {
content: "\e045";
}
.wpdevelop .glyphicon-camera:before {
content: "\e046";
}
.wpdevelop .glyphicon-font:before {
content: "\e047";
}
.wpdevelop .glyphicon-bold:before {
content: "\e048";
}
.wpdevelop .glyphicon-italic:before {
content: "\e049";
}
.wpdevelop .glyphicon-text-height:before {
content: "\e050";
}
.wpdevelop .glyphicon-text-width:before {
content: "\e051";
}
.wpdevelop .glyphicon-align-left:before {
content: "\e052";
}
.wpdevelop .glyphicon-align-center:before {
content: "\e053";
}
.wpdevelop .glyphicon-align-right:before {
content: "\e054";
}
.wpdevelop .glyphicon-align-justify:before {
content: "\e055";
}
.wpdevelop .glyphicon-list:before {
content: "\e056";
}
.wpdevelop .glyphicon-indent-left:before {
content: "\e057";
}
.wpdevelop .glyphicon-indent-right:before {
content: "\e058";
}
.wpdevelop .glyphicon-facetime-video:before {
content: "\e059";
}
.wpdevelop .glyphicon-picture:before {
content: "\e060";
}
.wpdevelop .glyphicon-map-marker:before {
content: "\e062";
}
.wpdevelop .glyphicon-adjust:before {
content: "\e063";
}
.wpdevelop .glyphicon-tint:before {
content: "\e064";
}
.wpdevelop .glyphicon-edit:before {
content: "\e065";
}
.wpdevelop .glyphicon-share:before {
content: "\e066";
}
.wpdevelop .glyphicon-check:before {
content: "\e067";
}
.wpdevelop .glyphicon-move:before {
content: "\e068";
}
.wpdevelop .glyphicon-step-backward:before {
content: "\e069";
}
.wpdevelop .glyphicon-fast-backward:before {
content: "\e070";
}
.wpdevelop .glyphicon-backward:before {
content: "\e071";
}
.wpdevelop .glyphicon-play:before {
content: "\e072";
}
.wpdevelop .glyphicon-pause:before {
content: "\e073";
}
.wpdevelop .glyphicon-stop:before {
content: "\e074";
}
.wpdevelop .glyphicon-forward:before {
content: "\e075";
}
.wpdevelop .glyphicon-fast-forward:before {
content: "\e076";
}
.wpdevelop .glyphicon-step-forward:before {
content: "\e077";
}
.wpdevelop .glyphicon-eject:before {
content: "\e078";
}
.wpdevelop .glyphicon-chevron-left:before {
content: "\e079";
}
.wpdevelop .glyphicon-chevron-right:before {
content: "\e080";
}
.wpdevelop .glyphicon-plus-sign:before {
content: "\e081";
}
.wpdevelop .glyphicon-minus-sign:before {
content: "\e082";
}
.wpdevelop .glyphicon-remove-sign:before {
content: "\e083";
}
.wpdevelop .glyphicon-ok-sign:before {
content: "\e084";
}
.wpdevelop .glyphicon-question-sign:before {
content: "\e085";
}
.wpdevelop .glyphicon-info-sign:before {
content: "\e086";
}
.wpdevelop .glyphicon-screenshot:before {
content: "\e087";
}
.wpdevelop .glyphicon-remove-circle:before {
content: "\e088";
}
.wpdevelop .glyphicon-ok-circle:before {
content: "\e089";
}
.wpdevelop .glyphicon-ban-circle:before {
content: "\e090";
}
.wpdevelop .glyphicon-arrow-left:before {
content: "\e091";
}
.wpdevelop .glyphicon-arrow-right:before {
content: "\e092";
}
.wpdevelop .glyphicon-arrow-up:before {
content: "\e093";
}
.wpdevelop .glyphicon-arrow-down:before {
content: "\e094";
}
.wpdevelop .glyphicon-share-alt:before {
content: "\e095";
}
.wpdevelop .glyphicon-resize-full:before {
content: "\e096";
}
.wpdevelop .glyphicon-resize-small:before {
content: "\e097";
}
.wpdevelop .glyphicon-exclamation-sign:before {
content: "\e101";
}
.wpdevelop .glyphicon-gift:before {
content: "\e102";
}
.wpdevelop .glyphicon-leaf:before {
content: "\e103";
}
.wpdevelop .glyphicon-fire:before {
content: "\e104";
}
.wpdevelop .glyphicon-eye-open:before {
content: "\e105";
}
.wpdevelop .glyphicon-eye-close:before {
content: "\e106";
}
.wpdevelop .glyphicon-warning-sign:before {
content: "\e107";
}
.wpdevelop .glyphicon-plane:before {
content: "\e108";
}
.wpdevelop .glyphicon-calendar:before {
content: "\e109";
}
.wpdevelop .glyphicon-random:before {
content: "\e110";
}
.wpdevelop .glyphicon-comment:before {
content: "\e111";
}
.wpdevelop .glyphicon-magnet:before {
content: "\e112";
}
.wpdevelop .glyphicon-chevron-up:before {
content: "\e113";
}
.wpdevelop .glyphicon-chevron-down:before {
content: "\e114";
}
.wpdevelop .glyphicon-retweet:before {
content: "\e115";
}
.wpdevelop .glyphicon-shopping-cart:before {
content: "\e116";
}
.wpdevelop .glyphicon-folder-close:before {
content: "\e117";
}
.wpdevelop .glyphicon-folder-open:before {
content: "\e118";
}
.wpdevelop .glyphicon-resize-vertical:before {
content: "\e119";
}
.wpdevelop .glyphicon-resize-horizontal:before {
content: "\e120";
}
.wpdevelop .glyphicon-hdd:before {
content: "\e121";
}
.wpdevelop .glyphicon-bullhorn:before {
content: "\e122";
}
.wpdevelop .glyphicon-bell:before {
content: "\e123";
}
.wpdevelop .glyphicon-certificate:before {
content: "\e124";
}
.wpdevelop .glyphicon-thumbs-up:before {
content: "\e125";
}
.wpdevelop .glyphicon-thumbs-down:before {
content: "\e126";
}
.wpdevelop .glyphicon-hand-right:before {
content: "\e127";
}
.wpdevelop .glyphicon-hand-left:before {
content: "\e128";
}
.wpdevelop .glyphicon-hand-up:before {
content: "\e129";
}
.wpdevelop .glyphicon-hand-down:before {
content: "\e130";
}
.wpdevelop .glyphicon-circle-arrow-right:before {
content: "\e131";
}
.wpdevelop .glyphicon-circle-arrow-left:before {
content: "\e132";
}
.wpdevelop .glyphicon-circle-arrow-up:before {
content: "\e133";
}
.wpdevelop .glyphicon-circle-arrow-down:before {
content: "\e134";
}
.wpdevelop .glyphicon-globe:before {
content: "\e135";
}
.wpdevelop .glyphicon-wrench:before {
content: "\e136";
}
.wpdevelop .glyphicon-tasks:before {
content: "\e137";
}
.wpdevelop .glyphicon-filter:before {
content: "\e138";
}
.wpdevelop .glyphicon-briefcase:before {
content: "\e139";
}
.wpdevelop .glyphicon-fullscreen:before {
content: "\e140";
}
.wpdevelop .glyphicon-dashboard:before {
content: "\e141";
}
.wpdevelop .glyphicon-paperclip:before {
content: "\e142";
}
.wpdevelop .glyphicon-heart-empty:before {
content: "\e143";
}
.wpdevelop .glyphicon-link:before {
content: "\e144";
}
.wpdevelop .glyphicon-phone:before {
content: "\e145";
}
.wpdevelop .glyphicon-pushpin:before {
content: "\e146";
}
.wpdevelop .glyphicon-usd:before {
content: "\e148";
}
.wpdevelop .glyphicon-gbp:before {
content: "\e149";
}
.wpdevelop .glyphicon-sort:before {
content: "\e150";
}
.wpdevelop .glyphicon-sort-by-alphabet:before {
content: "\e151";
}
.wpdevelop .glyphicon-sort-by-alphabet-alt:before {
content: "\e152";
}
.wpdevelop .glyphicon-sort-by-order:before {
content: "\e153";
}
.wpdevelop .glyphicon-sort-by-order-alt:before {
content: "\e154";
}
.wpdevelop .glyphicon-sort-by-attributes:before {
content: "\e155";
}
.wpdevelop .glyphicon-sort-by-attributes-alt:before {
content: "\e156";
}
.wpdevelop .glyphicon-unchecked:before {
content: "\e157";
}
.wpdevelop .glyphicon-expand:before {
content: "\e158";
}
.wpdevelop .glyphicon-collapse-down:before {
content: "\e159";
}
.wpdevelop .glyphicon-collapse-up:before {
content: "\e160";
}
.wpdevelop .glyphicon-log-in:before {
content: "\e161";
}
.wpdevelop .glyphicon-flash:before {
content: "\e162";
}
.wpdevelop .glyphicon-log-out:before {
content: "\e163";
}
.wpdevelop .glyphicon-new-window:before {
content: "\e164";
}
.wpdevelop .glyphicon-record:before {
content: "\e165";
}
.wpdevelop .glyphicon-save:before {
content: "\e166";
}
.wpdevelop .glyphicon-open:before {
content: "\e167";
}
.wpdevelop .glyphicon-saved:before {
content: "\e168";
}
.wpdevelop .glyphicon-import:before {
content: "\e169";
}
.wpdevelop .glyphicon-export:before {
content: "\e170";
}
.wpdevelop .glyphicon-send:before {
content: "\e171";
}
.wpdevelop .glyphicon-floppy-disk:before {
content: "\e172";
}
.wpdevelop .glyphicon-floppy-saved:before {
content: "\e173";
}
.wpdevelop .glyphicon-floppy-remove:before {
content: "\e174";
}
.wpdevelop .glyphicon-floppy-save:before {
content: "\e175";
}
.wpdevelop .glyphicon-floppy-open:before {
content: "\e176";
}
.wpdevelop .glyphicon-credit-card:before {
content: "\e177";
}
.wpdevelop .glyphicon-transfer:before {
content: "\e178";
}
.wpdevelop .glyphicon-cutlery:before {
content: "\e179";
}
.wpdevelop .glyphicon-header:before {
content: "\e180";
}
.wpdevelop .glyphicon-compressed:before {
content: "\e181";
}
.wpdevelop .glyphicon-earphone:before {
content: "\e182";
}
.wpdevelop .glyphicon-phone-alt:before {
content: "\e183";
}
.wpdevelop .glyphicon-tower:before {
content: "\e184";
}
.wpdevelop .glyphicon-stats:before {
content: "\e185";
}
.wpdevelop .glyphicon-sd-video:before {
content: "\e186";
}
.wpdevelop .glyphicon-hd-video:before {
content: "\e187";
}
.wpdevelop .glyphicon-subtitles:before {
content: "\e188";
}
.wpdevelop .glyphicon-sound-stereo:before {
content: "\e189";
}
.wpdevelop .glyphicon-sound-dolby:before {
content: "\e190";
}
.wpdevelop .glyphicon-sound-5-1:before {
content: "\e191";
}
.wpdevelop .glyphicon-sound-6-1:before {
content: "\e192";
}
.wpdevelop .glyphicon-sound-7-1:before {
content: "\e193";
}
.wpdevelop .glyphicon-copyright-mark:before {
content: "\e194";
}
.wpdevelop .glyphicon-registration-mark:before {
content: "\e195";
}
.wpdevelop .glyphicon-cloud-download:before {
content: "\e197";
}
.wpdevelop .glyphicon-cloud-upload:before {
content: "\e198";
}
.wpdevelop .glyphicon-tree-conifer:before {
content: "\e199";
}
.wpdevelop .glyphicon-tree-deciduous:before {
content: "\e200";
}
.wpdevelop .glyphicon-cd:before {
content: "\e201";
}
.wpdevelop .glyphicon-save-file:before {
content: "\e202";
}
.wpdevelop .glyphicon-open-file:before {
content: "\e203";
}
.wpdevelop .glyphicon-level-up:before {
content: "\e204";
}
.wpdevelop .glyphicon-copy:before {
content: "\e205";
}
.wpdevelop .glyphicon-paste:before {
content: "\e206";
}
.wpdevelop .glyphicon-alert:before {
content: "\e209";
}
.wpdevelop .glyphicon-equalizer:before {
content: "\e210";
}
.wpdevelop .glyphicon-king:before {
content: "\e211";
}
.wpdevelop .glyphicon-queen:before {
content: "\e212";
}
.wpdevelop .glyphicon-pawn:before {
content: "\e213";
}
.wpdevelop .glyphicon-bishop:before {
content: "\e214";
}
.wpdevelop .glyphicon-knight:before {
content: "\e215";
}
.wpdevelop .glyphicon-baby-formula:before {
content: "\e216";
}
.wpdevelop .glyphicon-tent:before {
content: "\26fa";
}
.wpdevelop .glyphicon-blackboard:before {
content: "\e218";
}
.wpdevelop .glyphicon-bed:before {
content: "\e219";
}
.wpdevelop .glyphicon-apple:before {
content: "\f8ff";
}
.wpdevelop .glyphicon-erase:before {
content: "\e221";
}
.wpdevelop .glyphicon-hourglass:before {
content: "\231b";
}
.wpdevelop .glyphicon-lamp:before {
content: "\e223";
}
.wpdevelop .glyphicon-duplicate:before {
content: "\e224";
}
.wpdevelop .glyphicon-piggy-bank:before {
content: "\e225";
}
.wpdevelop .glyphicon-scissors:before {
content: "\e226";
}
.wpdevelop .glyphicon-bitcoin:before {
content: "\e227";
}
.wpdevelop .glyphicon-btc:before {
content: "\e227";
}
.wpdevelop .glyphicon-xbt:before {
content: "\e227";
}
.wpdevelop .glyphicon-yen:before {
content: "\00a5";
}
.wpdevelop .glyphicon-jpy:before {
content: "\00a5";
}
.wpdevelop .glyphicon-ruble:before {
content: "\20bd";
}
.wpdevelop .glyphicon-rub:before {
content: "\20bd";
}
.wpdevelop .glyphicon-scale:before {
content: "\e230";
}
.wpdevelop .glyphicon-ice-lolly:before {
content: "\e231";
}
.wpdevelop .glyphicon-ice-lolly-tasted:before {
content: "\e232";
}
.wpdevelop .glyphicon-education:before {
content: "\e233";
}
.wpdevelop .glyphicon-option-horizontal:before {
content: "\e234";
}
.wpdevelop .glyphicon-option-vertical:before {
content: "\e235";
}
.wpdevelop .glyphicon-menu-hamburger:before {
content: "\e236";
}
.wpdevelop .glyphicon-modal-window:before {
content: "\e237";
}
.wpdevelop .glyphicon-oil:before {
content: "\e238";
}
.wpdevelop .glyphicon-grain:before {
content: "\e239";
}
.wpdevelop .glyphicon-sunglasses:before {
content: "\e240";
}
.wpdevelop .glyphicon-text-size:before {
content: "\e241";
}
.wpdevelop .glyphicon-text-color:before {
content: "\e242";
}
.wpdevelop .glyphicon-text-background:before {
content: "\e243";
}
.wpdevelop .glyphicon-object-align-top:before {
content: "\e244";
}
.wpdevelop .glyphicon-object-align-bottom:before {
content: "\e245";
}
.wpdevelop .glyphicon-object-align-horizontal:before {
content: "\e246";
}
.wpdevelop .glyphicon-object-align-left:before {
content: "\e247";
}
.wpdevelop .glyphicon-object-align-vertical:before {
content: "\e248";
}
.wpdevelop .glyphicon-object-align-right:before {
content: "\e249";
}
.wpdevelop .glyphicon-triangle-right:before {
content: "\e250";
}
.wpdevelop .glyphicon-triangle-left:before {
content: "\e251";
}
.wpdevelop .glyphicon-triangle-bottom:before {
content: "\e252";
}
.wpdevelop .glyphicon-triangle-top:before {
content: "\e253";
}
.wpdevelop .glyphicon-console:before {
content: "\e254";
}
.wpdevelop .glyphicon-superscript:before {
content: "\e255";
}
.wpdevelop .glyphicon-subscript:before {
content: "\e256";
}
.wpdevelop .glyphicon-menu-left:before {
content: "\e257";
}
.wpdevelop .glyphicon-menu-right:before {
content: "\e258";
}
.wpdevelop .glyphicon-menu-down:before {
content: "\e259";
}
.wpdevelop .glyphicon-menu-up:before {
content: "\e260";
}
.wpdevelop * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.wpdevelop *:before,
.wpdevelop *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.wpdevelop html {
font-size: 10px;
-webkit-tap-highlight-color: transparent;
}
.wpdevelop body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 1.42857143;
color: #333333;
background-color: #ffffff;
}
.wpdevelop input,
.wpdevelop button,
.wpdevelop select,
.wpdevelop textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.wpdevelop a {
color: #337ab7;
text-decoration: none;
}
.wpdevelop a:hover,
.wpdevelop a:focus {
color: #23527c;
text-decoration: underline;
}
.wpdevelop a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.wpdevelop figure {
margin: 0;
}
.wpdevelop img {
vertical-align: middle;
}
.wpdevelop .img-responsive,
.wpdevelop .thumbnail > img,
.wpdevelop .thumbnail a > img,
.wpdevelop .carousel-inner > .item > img,
.wpdevelop .carousel-inner > .item > a > img {
display: block;
max-width: 100%;
height: auto;
}
.wpdevelop .img-rounded {
border-radius: 6px;
}
.wpdevelop .img-thumbnail {
padding: 4px;
line-height: 1.42857143;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 4px;
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto;
}
.wpdevelop .img-circle {
border-radius: 50%;
}
.wpdevelop hr {
margin-top: 20px;
margin-bottom: 20px;
border: 0;
border-top: 1px solid #eeeeee;
}
.wpdevelop .sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.wpdevelop .sr-only-focusable:active,
.wpdevelop .sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
.wpdevelop [role="button"] {
cursor: pointer;
}
.wpdevelop h1,
.wpdevelop h2,
.wpdevelop h3,
.wpdevelop h4,
.wpdevelop h5,
.wpdevelop h6,
.wpdevelop .h1,
.wpdevelop .h2,
.wpdevelop .h3,
.wpdevelop .h4,
.wpdevelop .h5,
.wpdevelop .h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
.wpdevelop h1 small,
.wpdevelop h2 small,
.wpdevelop h3 small,
.wpdevelop h4 small,
.wpdevelop h5 small,
.wpdevelop h6 small,
.wpdevelop .h1 small,
.wpdevelop .h2 small,
.wpdevelop .h3 small,
.wpdevelop .h4 small,
.wpdevelop .h5 small,
.wpdevelop .h6 small,
.wpdevelop h1 .small,
.wpdevelop h2 .small,
.wpdevelop h3 .small,
.wpdevelop h4 .small,
.wpdevelop h5 .small,
.wpdevelop h6 .small,
.wpdevelop .h1 .small,
.wpdevelop .h2 .small,
.wpdevelop .h3 .small,
.wpdevelop .h4 .small,
.wpdevelop .h5 .small,
.wpdevelop .h6 .small {
font-weight: normal;
line-height: 1;
color: #777777;
}
.wpdevelop h1,
.wpdevelop .h1,
.wpdevelop h2,
.wpdevelop .h2,
.wpdevelop h3,
.wpdevelop .h3 {
margin-top: 20px;
margin-bottom: 10px;
}
.wpdevelop h1 small,
.wpdevelop .h1 small,
.wpdevelop h2 small,
.wpdevelop .h2 small,
.wpdevelop h3 small,
.wpdevelop .h3 small,
.wpdevelop h1 .small,
.wpdevelop .h1 .small,
.wpdevelop h2 .small,
.wpdevelop .h2 .small,
.wpdevelop h3 .small,
.wpdevelop .h3 .small {
font-size: 65%;
}
.wpdevelop h4,
.wpdevelop .h4,
.wpdevelop h5,
.wpdevelop .h5,
.wpdevelop h6,
.wpdevelop .h6 {
margin-top: 10px;
margin-bottom: 10px;
}
.wpdevelop h4 small,
.wpdevelop .h4 small,
.wpdevelop h5 small,
.wpdevelop .h5 small,
.wpdevelop h6 small,
.wpdevelop .h6 small,
.wpdevelop h4 .small,
.wpdevelop .h4 .small,
.wpdevelop h5 .small,
.wpdevelop .h5 .small,
.wpdevelop h6 .small,
.wpdevelop .h6 .small {
font-size: 75%;
}
.wpdevelop h1,
.wpdevelop .h1 {
font-size: 36px;
}
.wpdevelop h2,
.wpdevelop .h2 {
font-size: 30px;
}
.wpdevelop h3,
.wpdevelop .h3 {
font-size: 24px;
}
.wpdevelop h4,
.wpdevelop .h4 {
font-size: 18px;
}
.wpdevelop h5,
.wpdevelop .h5 {
font-size: 14px;
}
.wpdevelop h6,
.wpdevelop .h6 {
font-size: 12px;
}
.wpdevelop p {
margin: 0 0 10px;
}
.wpdevelop .lead {
margin-bottom: 20px;
font-size: 16px;
font-weight: 300;
line-height: 1.4;
}
@media (min-width: 768px) {
.wpdevelop .lead {
font-size: 21px;
}
}
.wpdevelop small,
.wpdevelop .small {
font-size: 85%;
}
.wpdevelop mark,
.wpdevelop .mark {
background-color: #fcf8e3;
padding: .2em;
}
.wpdevelop .text-left {
text-align: left;
}
.wpdevelop .text-right {
text-align: right;
}
.wpdevelop .text-center {
text-align: center;
}
.wpdevelop .text-justify {
text-align: justify;
}
.wpdevelop .text-nowrap {
white-space: nowrap;
}
.wpdevelop .text-lowercase {
text-transform: lowercase;
}
.wpdevelop .text-uppercase {
text-transform: uppercase;
}
.wpdevelop .text-capitalize {
text-transform: capitalize;
}
.wpdevelop .text-muted {
color: #777777;
}
.wpdevelop .text-primary {
color: #337ab7;
}
.wpdevelop a.text-primary:hover,
.wpdevelop a.text-primary:focus {
color: #286090;
}
.wpdevelop .text-success {
color: #3c763d;
}
.wpdevelop a.text-success:hover,
.wpdevelop a.text-success:focus {
color: #2b542c;
}
.wpdevelop .text-info {
color: #31708f;
}
.wpdevelop a.text-info:hover,
.wpdevelop a.text-info:focus {
color: #245269;
}
.wpdevelop .text-warning {
color: #8a6d3b;
}
.wpdevelop a.text-warning:hover,
.wpdevelop a.text-warning:focus {
color: #66512c;
}
.wpdevelop .text-danger {
color: #a94442;
}
.wpdevelop a.text-danger:hover,
.wpdevelop a.text-danger:focus {
color: #843534;
}
.wpdevelop .bg-primary {
color: #fff;
background-color: #337ab7;
}
.wpdevelop a.bg-primary:hover,
.wpdevelop a.bg-primary:focus {
background-color: #286090;
}
.wpdevelop .bg-success {
background-color: #dff0d8;
}
.wpdevelop a.bg-success:hover,
.wpdevelop a.bg-success:focus {
background-color: #c1e2b3;
}
.wpdevelop .bg-info {
background-color: #d9edf7;
}
.wpdevelop a.bg-info:hover,
.wpdevelop a.bg-info:focus {
background-color: #afd9ee;
}
.wpdevelop .bg-warning {
background-color: #fcf8e3;
}
.wpdevelop a.bg-warning:hover,
.wpdevelop a.bg-warning:focus {
background-color: #f7ecb5;
}
.wpdevelop .bg-danger {
background-color: #f2dede;
}
.wpdevelop a.bg-danger:hover,
.wpdevelop a.bg-danger:focus {
background-color: #e4b9b9;
}
.wpdevelop .page-header {
padding-bottom: 9px;
margin: 40px 0 20px;
border-bottom: 1px solid #eeeeee;
}
.wpdevelop ul,
.wpdevelop ol {
margin-top: 0;
margin-bottom: 10px;
}
.wpdevelop ul ul,
.wpdevelop ol ul,
.wpdevelop ul ol,
.wpdevelop ol ol {
margin-bottom: 0;
}
.wpdevelop .list-unstyled {
padding-left: 0;
list-style: none;
}
.wpdevelop .list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px;
}
.wpdevelop .list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
.wpdevelop dl {
margin-top: 0;
margin-bottom: 20px;
}
.wpdevelop dt,
.wpdevelop dd {
line-height: 1.42857143;
}
.wpdevelop dt {
font-weight: bold;
}
.wpdevelop dd {
margin-left: 0;
}
@media (min-width: 768px) {
.wpdevelop .dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.wpdevelop .dl-horizontal dd {
margin-left: 180px;
}
}
.wpdevelop abbr[title],
.wpdevelop abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #777777;
}
.wpdevelop .initialism {
font-size: 90%;
text-transform: uppercase;
}
.wpdevelop blockquote {
padding: 10px 20px;
margin: 0 0 20px;
font-size: 17.5px;
border-left: 5px solid #eeeeee;
}
.wpdevelop blockquote p:last-child,
.wpdevelop blockquote ul:last-child,
.wpdevelop blockquote ol:last-child {
margin-bottom: 0;
}
.wpdevelop blockquote footer,
.wpdevelop blockquote small,
.wpdevelop blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857143;
color: #777777;
}
.wpdevelop blockquote footer:before,
.wpdevelop blockquote small:before,
.wpdevelop blockquote .small:before {
content: '\2014 \00A0';
}
.wpdevelop .blockquote-reverse,
.wpdevelop blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #eeeeee;
border-left: 0;
text-align: right;
}
.wpdevelop .blockquote-reverse footer:before,
.wpdevelop blockquote.pull-right footer:before,
.wpdevelop .blockquote-reverse small:before,
.wpdevelop blockquote.pull-right small:before,
.wpdevelop .blockquote-reverse .small:before,
.wpdevelop blockquote.pull-right .small:before {
content: '';
}
.wpdevelop .blockquote-reverse footer:after,
.wpdevelop blockquote.pull-right footer:after,
.wpdevelop .blockquote-reverse small:after,
.wpdevelop blockquote.pull-right small:after,
.wpdevelop .blockquote-reverse .small:after,
.wpdevelop blockquote.pull-right .small:after {
content: '\00A0 \2014';
}
.wpdevelop address {
margin-bottom: 20px;
font-style: normal;
line-height: 1.42857143;
}
.wpdevelop code,
.wpdevelop kbd,
.wpdevelop pre,
.wpdevelop samp {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
.wpdevelop code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
}
.wpdevelop kbd {
padding: 2px 4px;
font-size: 90%;
color: #ffffff;
background-color: #333333;
border-radius: 3px;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.wpdevelop kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
-webkit-box-shadow: none;
box-shadow: none;
}
.wpdevelop pre {
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
word-break: break-all;
word-wrap: break-word;
color: #333333;
background-color: #f5f5f5;
border: 1px solid #cccccc;
border-radius: 4px;
}
.wpdevelop pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0;
}
.wpdevelop .pre-scrollable {
max-height: 340px;
overflow-y: scroll;
}
.wpdevelop .container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
@media (min-width: 768px) {
.wpdevelop .container {
width: 750px;
}
}
@media (min-width: 992px) {
.wpdevelop .container {
width: 970px;
}
}
@media (min-width: 1200px) {
.wpdevelop .container {
width: 1170px;
}
}
.wpdevelop .container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
.wpdevelop .row {
margin-left: -15px;
margin-right: -15px;
}
.wpdevelop .col-xs-1, .wpdevelop .col-sm-1, .wpdevelop .col-md-1, .wpdevelop .col-lg-1, .wpdevelop .col-xs-2, .wpdevelop .col-sm-2, .wpdevelop .col-md-2, .wpdevelop .col-lg-2, .wpdevelop .col-xs-3, .wpdevelop .col-sm-3, .wpdevelop .col-md-3, .wpdevelop .col-lg-3, .wpdevelop .col-xs-4, .wpdevelop .col-sm-4, .wpdevelop .col-md-4, .wpdevelop .col-lg-4, .wpdevelop .col-xs-5, .wpdevelop .col-sm-5, .wpdevelop .col-md-5, .wpdevelop .col-lg-5, .wpdevelop .col-xs-6, .wpdevelop .col-sm-6, .wpdevelop .col-md-6, .wpdevelop .col-lg-6, .wpdevelop .col-xs-7, .wpdevelop .col-sm-7, .wpdevelop .col-md-7, .wpdevelop .col-lg-7, .wpdevelop .col-xs-8, .wpdevelop .col-sm-8, .wpdevelop .col-md-8, .wpdevelop .col-lg-8, .wpdevelop .col-xs-9, .wpdevelop .col-sm-9, .wpdevelop .col-md-9, .wpdevelop .col-lg-9, .wpdevelop .col-xs-10, .wpdevelop .col-sm-10, .wpdevelop .col-md-10, .wpdevelop .col-lg-10, .wpdevelop .col-xs-11, .wpdevelop .col-sm-11, .wpdevelop .col-md-11, .wpdevelop .col-lg-11, .wpdevelop .col-xs-12, .wpdevelop .col-sm-12, .wpdevelop .col-md-12, .wpdevelop .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
.wpdevelop .col-xs-1, .wpdevelop .col-xs-2, .wpdevelop .col-xs-3, .wpdevelop .col-xs-4, .wpdevelop .col-xs-5, .wpdevelop .col-xs-6, .wpdevelop .col-xs-7, .wpdevelop .col-xs-8, .wpdevelop .col-xs-9, .wpdevelop .col-xs-10, .wpdevelop .col-xs-11, .wpdevelop .col-xs-12 {
float: left;
}
.wpdevelop .col-xs-12 {
width: 100%;
}
.wpdevelop .col-xs-11 {
width: 91.66666667%;
}
.wpdevelop .col-xs-10 {
width: 83.33333333%;
}
.wpdevelop .col-xs-9 {
width: 75%;
}
.wpdevelop .col-xs-8 {
width: 66.66666667%;
}
.wpdevelop .col-xs-7 {
width: 58.33333333%;
}
.wpdevelop .col-xs-6 {
width: 50%;
}
.wpdevelop .col-xs-5 {
width: 41.66666667%;
}
.wpdevelop .col-xs-4 {
width: 33.33333333%;
}
.wpdevelop .col-xs-3 {
width: 25%;
}
.wpdevelop .col-xs-2 {
width: 16.66666667%;
}
.wpdevelop .col-xs-1 {
width: 8.33333333%;
}
.wpdevelop .col-xs-pull-12 {
right: 100%;
}
.wpdevelop .col-xs-pull-11 {
right: 91.66666667%;
}
.wpdevelop .col-xs-pull-10 {
right: 83.33333333%;
}
.wpdevelop .col-xs-pull-9 {
right: 75%;
}
.wpdevelop .col-xs-pull-8 {
right: 66.66666667%;
}
.wpdevelop .col-xs-pull-7 {
right: 58.33333333%;
}
.wpdevelop .col-xs-pull-6 {
right: 50%;
}
.wpdevelop .col-xs-pull-5 {
right: 41.66666667%;
}
.wpdevelop .col-xs-pull-4 {
right: 33.33333333%;
}
.wpdevelop .col-xs-pull-3 {
right: 25%;
}
.wpdevelop .col-xs-pull-2 {
right: 16.66666667%;
}
.wpdevelop .col-xs-pull-1 {
right: 8.33333333%;
}
.wpdevelop .col-xs-pull-0 {
right: auto;
}
.wpdevelop .col-xs-push-12 {
left: 100%;
}
.wpdevelop .col-xs-push-11 {
left: 91.66666667%;
}
.wpdevelop .col-xs-push-10 {
left: 83.33333333%;
}
.wpdevelop .col-xs-push-9 {
left: 75%;
}
.wpdevelop .col-xs-push-8 {
left: 66.66666667%;
}
.wpdevelop .col-xs-push-7 {
left: 58.33333333%;
}
.wpdevelop .col-xs-push-6 {
left: 50%;
}
.wpdevelop .col-xs-push-5 {
left: 41.66666667%;
}
.wpdevelop .col-xs-push-4 {
left: 33.33333333%;
}
.wpdevelop .col-xs-push-3 {
left: 25%;
}
.wpdevelop .col-xs-push-2 {
left: 16.66666667%;
}
.wpdevelop .col-xs-push-1 {
left: 8.33333333%;
}
.wpdevelop .col-xs-push-0 {
left: auto;
}
.wpdevelop .col-xs-offset-12 {
margin-left: 100%;
}
.wpdevelop .col-xs-offset-11 {
margin-left: 91.66666667%;
}
.wpdevelop .col-xs-offset-10 {
margin-left: 83.33333333%;
}
.wpdevelop .col-xs-offset-9 {
margin-left: 75%;
}
.wpdevelop .col-xs-offset-8 {
margin-left: 66.66666667%;
}
.wpdevelop .col-xs-offset-7 {
margin-left: 58.33333333%;
}
.wpdevelop .col-xs-offset-6 {
margin-left: 50%;
}
.wpdevelop .col-xs-offset-5 {
margin-left: 41.66666667%;
}
.wpdevelop .col-xs-offset-4 {
margin-left: 33.33333333%;
}
.wpdevelop .col-xs-offset-3 {
margin-left: 25%;
}
.wpdevelop .col-xs-offset-2 {
margin-left: 16.66666667%;
}
.wpdevelop .col-xs-offset-1 {
margin-left: 8.33333333%;
}
.wpdevelop .col-xs-offset-0 {
margin-left: 0%;
}
@media (min-width: 768px) {
.wpdevelop .col-sm-1, .wpdevelop .col-sm-2, .wpdevelop .col-sm-3, .wpdevelop .col-sm-4, .wpdevelop .col-sm-5, .wpdevelop .col-sm-6, .wpdevelop .col-sm-7, .wpdevelop .col-sm-8, .wpdevelop .col-sm-9, .wpdevelop .col-sm-10, .wpdevelop .col-sm-11, .wpdevelop .col-sm-12 {
float: left;
}
.wpdevelop .col-sm-12 {
width: 100%;
}
.wpdevelop .col-sm-11 {
width: 91.66666667%;
}
.wpdevelop .col-sm-10 {
width: 83.33333333%;
}
.wpdevelop .col-sm-9 {
width: 75%;
}
.wpdevelop .col-sm-8 {
width: 66.66666667%;
}
.wpdevelop .col-sm-7 {
width: 58.33333333%;
}
.wpdevelop .col-sm-6 {
width: 50%;
}
.wpdevelop .col-sm-5 {
width: 41.66666667%;
}
.wpdevelop .col-sm-4 {
width: 33.33333333%;
}
.wpdevelop .col-sm-3 {
width: 25%;
}
.wpdevelop .col-sm-2 {
width: 16.66666667%;
}
.wpdevelop .col-sm-1 {
width: 8.33333333%;
}
.wpdevelop .col-sm-pull-12 {
right: 100%;
}
.wpdevelop .col-sm-pull-11 {
right: 91.66666667%;
}
.wpdevelop .col-sm-pull-10 {
right: 83.33333333%;
}
.wpdevelop .col-sm-pull-9 {
right: 75%;
}
.wpdevelop .col-sm-pull-8 {
right: 66.66666667%;
}
.wpdevelop .col-sm-pull-7 {
right: 58.33333333%;
}
.wpdevelop .col-sm-pull-6 {
right: 50%;
}
.wpdevelop .col-sm-pull-5 {
right: 41.66666667%;
}
.wpdevelop .col-sm-pull-4 {
right: 33.33333333%;
}
.wpdevelop .col-sm-pull-3 {
right: 25%;
}
.wpdevelop .col-sm-pull-2 {
right: 16.66666667%;
}
.wpdevelop .col-sm-pull-1 {
right: 8.33333333%;
}
.wpdevelop .col-sm-pull-0 {
right: auto;
}
.wpdevelop .col-sm-push-12 {
left: 100%;
}
.wpdevelop .col-sm-push-11 {
left: 91.66666667%;
}
.wpdevelop .col-sm-push-10 {
left: 83.33333333%;
}
.wpdevelop .col-sm-push-9 {
left: 75%;
}
.wpdevelop .col-sm-push-8 {
left: 66.66666667%;
}
.wpdevelop .col-sm-push-7 {
left: 58.33333333%;
}
.wpdevelop .col-sm-push-6 {
left: 50%;
}
.wpdevelop .col-sm-push-5 {
left: 41.66666667%;
}
.wpdevelop .col-sm-push-4 {
left: 33.33333333%;
}
.wpdevelop .col-sm-push-3 {
left: 25%;
}
.wpdevelop .col-sm-push-2 {
left: 16.66666667%;
}
.wpdevelop .col-sm-push-1 {
left: 8.33333333%;
}
.wpdevelop .col-sm-push-0 {
left: auto;
}
.wpdevelop .col-sm-offset-12 {
margin-left: 100%;
}
.wpdevelop .col-sm-offset-11 {
margin-left: 91.66666667%;
}
.wpdevelop .col-sm-offset-10 {
margin-left: 83.33333333%;
}
.wpdevelop .col-sm-offset-9 {
margin-left: 75%;
}
.wpdevelop .col-sm-offset-8 {
margin-left: 66.66666667%;
}
.wpdevelop .col-sm-offset-7 {
margin-left: 58.33333333%;
}
.wpdevelop .col-sm-offset-6 {
margin-left: 50%;
}
.wpdevelop .col-sm-offset-5 {
margin-left: 41.66666667%;
}
.wpdevelop .col-sm-offset-4 {
margin-left: 33.33333333%;
}
.wpdevelop .col-sm-offset-3 {
margin-left: 25%;
}
.wpdevelop .col-sm-offset-2 {
margin-left: 16.66666667%;
}
.wpdevelop .col-sm-offset-1 {
margin-left: 8.33333333%;
}
.wpdevelop .col-sm-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 992px) {
.wpdevelop .col-md-1, .wpdevelop .col-md-2, .wpdevelop .col-md-3, .wpdevelop .col-md-4, .wpdevelop .col-md-5, .wpdevelop .col-md-6, .wpdevelop .col-md-7, .wpdevelop .col-md-8, .wpdevelop .col-md-9, .wpdevelop .col-md-10, .wpdevelop .col-md-11, .wpdevelop .col-md-12 {
float: left;
}
.wpdevelop .col-md-12 {
width: 100%;
}
.wpdevelop .col-md-11 {
width: 91.66666667%;
}
.wpdevelop .col-md-10 {
width: 83.33333333%;
}
.wpdevelop .col-md-9 {
width: 75%;
}
.wpdevelop .col-md-8 {
width: 66.66666667%;
}
.wpdevelop .col-md-7 {
width: 58.33333333%;
}
.wpdevelop .col-md-6 {
width: 50%;
}
.wpdevelop .col-md-5 {
width: 41.66666667%;
}
.wpdevelop .col-md-4 {
width: 33.33333333%;
}
.wpdevelop .col-md-3 {
width: 25%;
}
.wpdevelop .col-md-2 {
width: 16.66666667%;
}
.wpdevelop .col-md-1 {
width: 8.33333333%;
}
.wpdevelop .col-md-pull-12 {
right: 100%;
}
.wpdevelop .col-md-pull-11 {
right: 91.66666667%;
}
.wpdevelop .col-md-pull-10 {
right: 83.33333333%;
}
.wpdevelop .col-md-pull-9 {
right: 75%;
}
.wpdevelop .col-md-pull-8 {
right: 66.66666667%;
}
.wpdevelop .col-md-pull-7 {
right: 58.33333333%;
}
.wpdevelop .col-md-pull-6 {
right: 50%;
}
.wpdevelop .col-md-pull-5 {
right: 41.66666667%;
}
.wpdevelop .col-md-pull-4 {
right: 33.33333333%;
}
.wpdevelop .col-md-pull-3 {
right: 25%;
}
.wpdevelop .col-md-pull-2 {
right: 16.66666667%;
}
.wpdevelop .col-md-pull-1 {
right: 8.33333333%;
}
.wpdevelop .col-md-pull-0 {
right: auto;
}
.wpdevelop .col-md-push-12 {
left: 100%;
}
.wpdevelop .col-md-push-11 {
left: 91.66666667%;
}
.wpdevelop .col-md-push-10 {
left: 83.33333333%;
}
.wpdevelop .col-md-push-9 {
left: 75%;
}
.wpdevelop .col-md-push-8 {
left: 66.66666667%;
}
.wpdevelop .col-md-push-7 {
left: 58.33333333%;
}
.wpdevelop .col-md-push-6 {
left: 50%;
}
.wpdevelop .col-md-push-5 {
left: 41.66666667%;
}
.wpdevelop .col-md-push-4 {
left: 33.33333333%;
}
.wpdevelop .col-md-push-3 {
left: 25%;
}
.wpdevelop .col-md-push-2 {
left: 16.66666667%;
}
.wpdevelop .col-md-push-1 {
left: 8.33333333%;
}
.wpdevelop .col-md-push-0 {
left: auto;
}
.wpdevelop .col-md-offset-12 {
margin-left: 100%;
}
.wpdevelop .col-md-offset-11 {
margin-left: 91.66666667%;
}
.wpdevelop .col-md-offset-10 {
margin-left: 83.33333333%;
}
.wpdevelop .col-md-offset-9 {
margin-left: 75%;
}
.wpdevelop .col-md-offset-8 {
margin-left: 66.66666667%;
}
.wpdevelop .col-md-offset-7 {
margin-left: 58.33333333%;
}
.wpdevelop .col-md-offset-6 {
margin-left: 50%;
}
.wpdevelop .col-md-offset-5 {
margin-left: 41.66666667%;
}
.wpdevelop .col-md-offset-4 {
margin-left: 33.33333333%;
}
.wpdevelop .col-md-offset-3 {
margin-left: 25%;
}
.wpdevelop .col-md-offset-2 {
margin-left: 16.66666667%;
}
.wpdevelop .col-md-offset-1 {
margin-left: 8.33333333%;
}
.wpdevelop .col-md-offset-0 {
margin-left: 0%;
}
}
@media (min-width: 1200px) {
.wpdevelop .col-lg-1, .wpdevelop .col-lg-2, .wpdevelop .col-lg-3, .wpdevelop .col-lg-4, .wpdevelop .col-lg-5, .wpdevelop .col-lg-6, .wpdevelop .col-lg-7, .wpdevelop .col-lg-8, .wpdevelop .col-lg-9, .wpdevelop .col-lg-10, .wpdevelop .col-lg-11, .wpdevelop .col-lg-12 {
float: left;
}
.wpdevelop .col-lg-12 {
width: 100%;
}
.wpdevelop .col-lg-11 {
width: 91.66666667%;
}
.wpdevelop .col-lg-10 {
width: 83.33333333%;
}
.wpdevelop .col-lg-9 {
width: 75%;
}
.wpdevelop .col-lg-8 {
width: 66.66666667%;
}
.wpdevelop .col-lg-7 {
width: 58.33333333%;
}
.wpdevelop .col-lg-6 {
width: 50%;
}
.wpdevelop .col-lg-5 {
width: 41.66666667%;
}
.wpdevelop .col-lg-4 {
width: 33.33333333%;
}
.wpdevelop .col-lg-3 {
width: 25%;
}
.wpdevelop .col-lg-2 {
width: 16.66666667%;
}
.wpdevelop .col-lg-1 {
width: 8.33333333%;
}
.wpdevelop .col-lg-pull-12 {
right: 100%;
}
.wpdevelop .col-lg-pull-11 {
right: 91.66666667%;
}
.wpdevelop .col-lg-pull-10 {
right: 83.33333333%;
}
.wpdevelop .col-lg-pull-9 {
right: 75%;
}
.wpdevelop .col-lg-pull-8 {
right: 66.66666667%;
}
.wpdevelop .col-lg-pull-7 {
right: 58.33333333%;
}
.wpdevelop .col-lg-pull-6 {
right: 50%;
}
.wpdevelop .col-lg-pull-5 {
right: 41.66666667%;
}
.wpdevelop .col-lg-pull-4 {
right: 33.33333333%;
}
.wpdevelop .col-lg-pull-3 {
right: 25%;
}
.wpdevelop .col-lg-pull-2 {
right: 16.66666667%;
}
.wpdevelop .col-lg-pull-1 {
right: 8.33333333%;
}
.wpdevelop .col-lg-pull-0 {
right: auto;
}
.wpdevelop .col-lg-push-12 {
left: 100%;
}
.wpdevelop .col-lg-push-11 {
left: 91.66666667%;
}
.wpdevelop .col-lg-push-10 {
left: 83.33333333%;
}
.wpdevelop .col-lg-push-9 {
left: 75%;
}
.wpdevelop .col-lg-push-8 {
left: 66.66666667%;
}
.wpdevelop .col-lg-push-7 {
left: 58.33333333%;
}
.wpdevelop .col-lg-push-6 {
left: 50%;
}
.wpdevelop .col-lg-push-5 {
left: 41.66666667%;
}
.wpdevelop .col-lg-push-4 {
left: 33.33333333%;
}
.wpdevelop .col-lg-push-3 {
left: 25%;
}
.wpdevelop .col-lg-push-2 {
left: 16.66666667%;
}
.wpdevelop .col-lg-push-1 {
left: 8.33333333%;
}
.wpdevelop .col-lg-push-0 {
left: auto;
}
.wpdevelop .col-lg-offset-12 {
margin-left: 100%;
}
.wpdevelop .col-lg-offset-11 {
margin-left: 91.66666667%;
}
.wpdevelop .col-lg-offset-10 {
margin-left: 83.33333333%;
}
.wpdevelop .col-lg-offset-9 {
margin-left: 75%;
}
.wpdevelop .col-lg-offset-8 {
margin-left: 66.66666667%;
}
.wpdevelop .col-lg-offset-7 {
margin-left: 58.33333333%;
}
.wpdevelop .col-lg-offset-6 {
margin-left: 50%;
}
.wpdevelop .col-lg-offset-5 {
margin-left: 41.66666667%;
}
.wpdevelop .col-lg-offset-4 {
margin-left: 33.33333333%;
}
.wpdevelop .col-lg-offset-3 {
margin-left: 25%;
}
.wpdevelop .col-lg-offset-2 {
margin-left: 16.66666667%;
}
.wpdevelop .col-lg-offset-1 {
margin-left: 8.33333333%;
}
.wpdevelop .col-lg-offset-0 {
margin-left: 0%;
}
}
.wpdevelop table {
background-color: transparent;
}
.wpdevelop caption {
padding-top: 8px;
padding-bottom: 8px;
color: #777777;
text-align: left;
}
.wpdevelop th {
text-align: left;
}
.wpdevelop .table {
width: 100%;
max-width: 100%;
margin-bottom: 20px;
}
.wpdevelop .table > thead > tr > th,
.wpdevelop .table > tbody > tr > th,
.wpdevelop .table > tfoot > tr > th,
.wpdevelop .table > thead > tr > td,
.wpdevelop .table > tbody > tr > td,
.wpdevelop .table > tfoot > tr > td {
padding: 8px;
line-height: 1.42857143;
vertical-align: top;
border-top: 1px solid #dddddd;
}
.wpdevelop .table > thead > tr > th {
vertical-align: bottom;
border-bottom: 2px solid #dddddd;
}
.wpdevelop .table > caption + thead > tr:first-child > th,
.wpdevelop .table > colgroup + thead > tr:first-child > th,
.wpdevelop .table > thead:first-child > tr:first-child > th,
.wpdevelop .table > caption + thead > tr:first-child > td,
.wpdevelop .table > colgroup + thead > tr:first-child > td,
.wpdevelop .table > thead:first-child > tr:first-child > td {
border-top: 0;
}
.wpdevelop .table > tbody + tbody {
border-top: 2px solid #dddddd;
}
.wpdevelop .table .table {
background-color: #ffffff;
}
.wpdevelop .table-condensed > thead > tr > th,
.wpdevelop .table-condensed > tbody > tr > th,
.wpdevelop .table-condensed > tfoot > tr > th,
.wpdevelop .table-condensed > thead > tr > td,
.wpdevelop .table-condensed > tbody > tr > td,
.wpdevelop .table-condensed > tfoot > tr > td {
padding: 5px;
}
.wpdevelop .table-bordered {
border: 1px solid #dddddd;
}
.wpdevelop .table-bordered > thead > tr > th,
.wpdevelop .table-bordered > tbody > tr > th,
.wpdevelop .table-bordered > tfoot > tr > th,
.wpdevelop .table-bordered > thead > tr > td,
.wpdevelop .table-bordered > tbody > tr > td,
.wpdevelop .table-bordered > tfoot > tr > td {
border: 1px solid #dddddd;
}
.wpdevelop .table-bordered > thead > tr > th,
.wpdevelop .table-bordered > thead > tr > td {
border-bottom-width: 2px;
}
.wpdevelop .table-striped > tbody > tr:nth-of-type(odd) {
background-color: #f9f9f9;
}
.wpdevelop .table-hover > tbody > tr:hover {
background-color: #f5f5f5;
}
.wpdevelop table col[class*="col-"] {
position: static;
float: none;
display: table-column;
}
.wpdevelop table td[class*="col-"],
.wpdevelop table th[class*="col-"] {
position: static;
float: none;
display: table-cell;
}
.wpdevelop .table > thead > tr > td.active,
.wpdevelop .table > tbody > tr > td.active,
.wpdevelop .table > tfoot > tr > td.active,
.wpdevelop .table > thead > tr > th.active,
.wpdevelop .table > tbody > tr > th.active,
.wpdevelop .table > tfoot > tr > th.active,
.wpdevelop .table > thead > tr.active > td,
.wpdevelop .table > tbody > tr.active > td,
.wpdevelop .table > tfoot > tr.active > td,
.wpdevelop .table > thead > tr.active > th,
.wpdevelop .table > tbody > tr.active > th,
.wpdevelop .table > tfoot > tr.active > th {
background-color: #f5f5f5;
}
.wpdevelop .table-hover > tbody > tr > td.active:hover,
.wpdevelop .table-hover > tbody > tr > th.active:hover,
.wpdevelop .table-hover > tbody > tr.active:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .active,
.wpdevelop .table-hover > tbody > tr.active:hover > th {
background-color: #e8e8e8;
}
.wpdevelop .table > thead > tr > td.success,
.wpdevelop .table > tbody > tr > td.success,
.wpdevelop .table > tfoot > tr > td.success,
.wpdevelop .table > thead > tr > th.success,
.wpdevelop .table > tbody > tr > th.success,
.wpdevelop .table > tfoot > tr > th.success,
.wpdevelop .table > thead > tr.success > td,
.wpdevelop .table > tbody > tr.success > td,
.wpdevelop .table > tfoot > tr.success > td,
.wpdevelop .table > thead > tr.success > th,
.wpdevelop .table > tbody > tr.success > th,
.wpdevelop .table > tfoot > tr.success > th {
background-color: #dff0d8;
}
.wpdevelop .table-hover > tbody > tr > td.success:hover,
.wpdevelop .table-hover > tbody > tr > th.success:hover,
.wpdevelop .table-hover > tbody > tr.success:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .success,
.wpdevelop .table-hover > tbody > tr.success:hover > th {
background-color: #d0e9c6;
}
.wpdevelop .table > thead > tr > td.info,
.wpdevelop .table > tbody > tr > td.info,
.wpdevelop .table > tfoot > tr > td.info,
.wpdevelop .table > thead > tr > th.info,
.wpdevelop .table > tbody > tr > th.info,
.wpdevelop .table > tfoot > tr > th.info,
.wpdevelop .table > thead > tr.info > td,
.wpdevelop .table > tbody > tr.info > td,
.wpdevelop .table > tfoot > tr.info > td,
.wpdevelop .table > thead > tr.info > th,
.wpdevelop .table > tbody > tr.info > th,
.wpdevelop .table > tfoot > tr.info > th {
background-color: #d9edf7;
}
.wpdevelop .table-hover > tbody > tr > td.info:hover,
.wpdevelop .table-hover > tbody > tr > th.info:hover,
.wpdevelop .table-hover > tbody > tr.info:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .info,
.wpdevelop .table-hover > tbody > tr.info:hover > th {
background-color: #c4e3f3;
}
.wpdevelop .table > thead > tr > td.warning,
.wpdevelop .table > tbody > tr > td.warning,
.wpdevelop .table > tfoot > tr > td.warning,
.wpdevelop .table > thead > tr > th.warning,
.wpdevelop .table > tbody > tr > th.warning,
.wpdevelop .table > tfoot > tr > th.warning,
.wpdevelop .table > thead > tr.warning > td,
.wpdevelop .table > tbody > tr.warning > td,
.wpdevelop .table > tfoot > tr.warning > td,
.wpdevelop .table > thead > tr.warning > th,
.wpdevelop .table > tbody > tr.warning > th,
.wpdevelop .table > tfoot > tr.warning > th {
background-color: #fcf8e3;
}
.wpdevelop .table-hover > tbody > tr > td.warning:hover,
.wpdevelop .table-hover > tbody > tr > th.warning:hover,
.wpdevelop .table-hover > tbody > tr.warning:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .warning,
.wpdevelop .table-hover > tbody > tr.warning:hover > th {
background-color: #faf2cc;
}
.wpdevelop .table > thead > tr > td.danger,
.wpdevelop .table > tbody > tr > td.danger,
.wpdevelop .table > tfoot > tr > td.danger,
.wpdevelop .table > thead > tr > th.danger,
.wpdevelop .table > tbody > tr > th.danger,
.wpdevelop .table > tfoot > tr > th.danger,
.wpdevelop .table > thead > tr.danger > td,
.wpdevelop .table > tbody > tr.danger > td,
.wpdevelop .table > tfoot > tr.danger > td,
.wpdevelop .table > thead > tr.danger > th,
.wpdevelop .table > tbody > tr.danger > th,
.wpdevelop .table > tfoot > tr.danger > th {
background-color: #f2dede;
}
.wpdevelop .table-hover > tbody > tr > td.danger:hover,
.wpdevelop .table-hover > tbody > tr > th.danger:hover,
.wpdevelop .table-hover > tbody > tr.danger:hover > td,
.wpdevelop .table-hover > tbody > tr:hover > .danger,
.wpdevelop .table-hover > tbody > tr.danger:hover > th {
background-color: #ebcccc;
}
.wpdevelop .table-responsive {
overflow-x: auto;
min-height: 0.01%;
}
@media screen and (max-width: 767px) {
.wpdevelop .table-responsive {
width: 100%;
margin-bottom: 15px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #dddddd;
}
.wpdevelop .table-responsive > .table {
margin-bottom: 0;
}
.wpdevelop .table-responsive > .table > thead > tr > th,
.wpdevelop .table-responsive > .table > tbody > tr > th,
.wpdevelop .table-responsive > .table > tfoot > tr > th,
.wpdevelop .table-responsive > .table > thead > tr > td,
.wpdevelop .table-responsive > .table > tbody > tr > td,
.wpdevelop .table-responsive > .table > tfoot > tr > td {
white-space: nowrap;
}
.wpdevelop .table-responsive > .table-bordered {
border: 0;
}
.wpdevelop .table-responsive > .table-bordered > thead > tr > th:first-child,
.wpdevelop .table-responsive > .table-bordered > tbody > tr > th:first-child,
.wpdevelop .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.wpdevelop .table-responsive > .table-bordered > thead > tr > td:first-child,
.wpdevelop .table-responsive > .table-bordered > tbody > tr > td:first-child,
.wpdevelop .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.wpdevelop .table-responsive > .table-bordered > thead > tr > th:last-child,
.wpdevelop .table-responsive > .table-bordered > tbody > tr > th:last-child,
.wpdevelop .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.wpdevelop .table-responsive > .table-bordered > thead > tr > td:last-child,
.wpdevelop .table-responsive > .table-bordered > tbody > tr > td:last-child,
.wpdevelop .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.wpdevelop .table-responsive > .table-bordered > tbody > tr:last-child > th,
.wpdevelop .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.wpdevelop .table-responsive > .table-bordered > tbody > tr:last-child > td,
.wpdevelop .table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0;
}
}
.wpdevelop fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0;
}
.wpdevelop legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
.wpdevelop label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
.wpdevelop input[type="search"] {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.wpdevelop input[type="radio"],
.wpdevelop input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
.wpdevelop input[type="file"] {
display: block;
}
.wpdevelop input[type="range"] {
display: block;
width: 100%;
}
.wpdevelop select[multiple],
.wpdevelop select[size] {
height: auto;
}
.wpdevelop input[type="file"]:focus,
.wpdevelop input[type="radio"]:focus,
.wpdevelop input[type="checkbox"]:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.wpdevelop output {
display: block;
padding-top: 7px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
}
.wpdevelop .form-control {
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555555;
background-color: #ffffff;
background-image: none;
border: 1px solid #cccccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 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;
}
.wpdevelop .form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.wpdevelop .form-control::-moz-placeholder {
color: #999999;
opacity: 1;
}
.wpdevelop .form-control:-ms-input-placeholder {
color: #999999;
}
.wpdevelop .form-control::-webkit-input-placeholder {
color: #999999;
}
.wpdevelop .form-control[disabled],
.wpdevelop .form-control[readonly],
.wpdevelop fieldset[disabled] .form-control {
background-color: #eeeeee;
opacity: 1;
}
.wpdevelop .form-control[disabled],
.wpdevelop fieldset[disabled] .form-control {
cursor: not-allowed;
}
.wpdevelop textarea.form-control {
height: auto;
}
.wpdevelop input[type="search"] {
-webkit-appearance: none;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
.wpdevelop input[type="date"].form-control,
.wpdevelop input[type="time"].form-control,
.wpdevelop input[type="datetime-local"].form-control,
.wpdevelop input[type="month"].form-control {
line-height: 34px;
}
.wpdevelop input[type="date"].input-sm,
.wpdevelop input[type="time"].input-sm,
.wpdevelop input[type="datetime-local"].input-sm,
.wpdevelop input[type="month"].input-sm,
.wpdevelop .input-group-sm input[type="date"],
.wpdevelop .input-group-sm input[type="time"],
.wpdevelop .input-group-sm input[type="datetime-local"],
.wpdevelop .input-group-sm input[type="month"] {
line-height: 30px;
}
.wpdevelop input[type="date"].input-lg,
.wpdevelop input[type="time"].input-lg,
.wpdevelop input[type="datetime-local"].input-lg,
.wpdevelop input[type="month"].input-lg,
.wpdevelop .input-group-lg input[type="date"],
.wpdevelop .input-group-lg input[type="time"],
.wpdevelop .input-group-lg input[type="datetime-local"],
.wpdevelop .input-group-lg input[type="month"] {
line-height: 46px;
}
}
.wpdevelop .form-group {
margin-bottom: 15px;
}
.wpdevelop .radio,
.wpdevelop .checkbox {
position: relative;
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
.wpdevelop .radio label,
.wpdevelop .checkbox label {
min-height: 20px;
padding-left: 20px;
margin-bottom: 0;
font-weight: normal;
cursor: pointer;
}
.wpdevelop .radio input[type="radio"],
.wpdevelop .radio-inline input[type="radio"],
.wpdevelop .checkbox input[type="checkbox"],
.wpdevelop .checkbox-inline input[type="checkbox"] {
position: absolute;
margin-left: -20px;
margin-top: 4px \9;
}
.wpdevelop .radio + .radio,
.wpdevelop .checkbox + .checkbox {
margin-top: -5px;
}
.wpdevelop .radio-inline,
.wpdevelop .checkbox-inline {
position: relative;
display: inline-block;
padding-left: 20px;
margin-bottom: 0;
vertical-align: middle;
font-weight: normal;
cursor: pointer;
}
.wpdevelop .radio-inline + .radio-inline,
.wpdevelop .checkbox-inline + .checkbox-inline {
margin-top: 0;
margin-left: 10px;
}
.wpdevelop input[type="radio"][disabled],
.wpdevelop input[type="checkbox"][disabled],
.wpdevelop input[type="radio"].disabled,
.wpdevelop input[type="checkbox"].disabled,
.wpdevelop fieldset[disabled] input[type="radio"],
.wpdevelop fieldset[disabled] input[type="checkbox"] {
cursor: not-allowed;
}
.wpdevelop .radio-inline.disabled,
.wpdevelop .checkbox-inline.disabled,
.wpdevelop fieldset[disabled] .radio-inline,
.wpdevelop fieldset[disabled] .checkbox-inline {
cursor: not-allowed;
}
.wpdevelop .radio.disabled label,
.wpdevelop .checkbox.disabled label,
.wpdevelop fieldset[disabled] .radio label,
.wpdevelop fieldset[disabled] .checkbox label {
cursor: not-allowed;
}
.wpdevelop .form-control-static {
padding-top: 7px;
padding-bottom: 7px;
margin-bottom: 0;
min-height: 34px;
}
.wpdevelop .form-control-static.input-lg,
.wpdevelop .form-control-static.input-sm {
padding-left: 0;
padding-right: 0;
}
.wpdevelop .input-sm {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.wpdevelop select.input-sm {
height: 30px;
line-height: 30px;
}
.wpdevelop textarea.input-sm,
.wpdevelop select[multiple].input-sm {
height: auto;
}
.wpdevelop .form-group-sm .form-control {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.wpdevelop .form-group-sm select.form-control {
height: 30px;
line-height: 30px;
}
.wpdevelop .form-group-sm textarea.form-control,
.wpdevelop .form-group-sm select[multiple].form-control {
height: auto;
}
.wpdevelop .form-group-sm .form-control-static {
height: 30px;
min-height: 32px;
padding: 6px 10px;
font-size: 12px;
line-height: 1.5;
}
.wpdevelop .input-lg {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.wpdevelop select.input-lg {
height: 46px;
line-height: 46px;
}
.wpdevelop textarea.input-lg,
.wpdevelop select[multiple].input-lg {
height: auto;
}
.wpdevelop .form-group-lg .form-control {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.wpdevelop .form-group-lg select.form-control {
height: 46px;
line-height: 46px;
}
.wpdevelop .form-group-lg textarea.form-control,
.wpdevelop .form-group-lg select[multiple].form-control {
height: auto;
}
.wpdevelop .form-group-lg .form-control-static {
height: 46px;
min-height: 38px;
padding: 11px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.wpdevelop .has-feedback {
position: relative;
}
.wpdevelop .has-feedback .form-control {
padding-right: 42.5px;
}
.wpdevelop .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;
}
.wpdevelop .input-lg + .form-control-feedback,
.wpdevelop .input-group-lg + .form-control-feedback,
.wpdevelop .form-group-lg .form-control + .form-control-feedback {
width: 46px;
height: 46px;
line-height: 46px;
}
.wpdevelop .input-sm + .form-control-feedback,
.wpdevelop .input-group-sm + .form-control-feedback,
.wpdevelop .form-group-sm .form-control + .form-control-feedback {
width: 30px;
height: 30px;
line-height: 30px;
}
.wpdevelop .has-success .help-block,
.wpdevelop .has-success .control-label,
.wpdevelop .has-success .radio,
.wpdevelop .has-success .checkbox,
.wpdevelop .has-success .radio-inline,
.wpdevelop .has-success .checkbox-inline,
.wpdevelop .has-success.radio label,
.wpdevelop .has-success.checkbox label,
.wpdevelop .has-success.radio-inline label,
.wpdevelop .has-success.checkbox-inline label {
color: #3c763d;
}
.wpdevelop .has-success .form-control {
border-color: #3c763d;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.wpdevelop .has-success .form-control:focus {
border-color: #2b542c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.wpdevelop .has-success .input-group-addon {
color: #3c763d;
border-color: #3c763d;
background-color: #dff0d8;
}
.wpdevelop .has-success .form-control-feedback {
color: #3c763d;
}
.wpdevelop .has-warning .help-block,
.wpdevelop .has-warning .control-label,
.wpdevelop .has-warning .radio,
.wpdevelop .has-warning .checkbox,
.wpdevelop .has-warning .radio-inline,
.wpdevelop .has-warning .checkbox-inline,
.wpdevelop .has-warning.radio label,
.wpdevelop .has-warning.checkbox label,
.wpdevelop .has-warning.radio-inline label,
.wpdevelop .has-warning.checkbox-inline label {
color: #8a6d3b;
}
.wpdevelop .has-warning .form-control {
border-color: #8a6d3b;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.wpdevelop .has-warning .form-control:focus {
border-color: #66512c;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.wpdevelop .has-warning .input-group-addon {
color: #8a6d3b;
border-color: #8a6d3b;
background-color: #fcf8e3;
}
.wpdevelop .has-warning .form-control-feedback {
color: #8a6d3b;
}
.wpdevelop .has-error .help-block,
.wpdevelop .has-error .control-label,
.wpdevelop .has-error .radio,
.wpdevelop .has-error .checkbox,
.wpdevelop .has-error .radio-inline,
.wpdevelop .has-error .checkbox-inline,
.wpdevelop .has-error.radio label,
.wpdevelop .has-error.checkbox label,
.wpdevelop .has-error.radio-inline label,
.wpdevelop .has-error.checkbox-inline label {
color: #a94442;
}
.wpdevelop .has-error .form-control {
border-color: #a94442;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.wpdevelop .has-error .form-control:focus {
border-color: #843534;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.wpdevelop .has-error .input-group-addon {
color: #a94442;
border-color: #a94442;
background-color: #f2dede;
}
.wpdevelop .has-error .form-control-feedback {
color: #a94442;
}
.wpdevelop .has-feedback label ~ .form-control-feedback {
top: 25px;
}
.wpdevelop .has-feedback label.sr-only ~ .form-control-feedback {
top: 0;
}
.wpdevelop .help-block {
display: block;
margin-top: 5px;
margin-bottom: 10px;
color: #737373;
}
@media (min-width: 768px) {
.wpdevelop .form-inline .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.wpdevelop .form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.wpdevelop .form-inline .form-control-static {
display: inline-block;
}
.wpdevelop .form-inline .input-group {
display: inline-table;
vertical-align: middle;
}
.wpdevelop .form-inline .input-group .input-group-addon,
.wpdevelop .form-inline .input-group .input-group-btn,
.wpdevelop .form-inline .input-group .form-control {
width: auto;
}
.wpdevelop .form-inline .input-group > .form-control {
width: 100%;
}
.wpdevelop .form-inline .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.wpdevelop .form-inline .radio,
.wpdevelop .form-inline .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.wpdevelop .form-inline .radio label,
.wpdevelop .form-inline .checkbox label {
padding-left: 0;
}
.wpdevelop .form-inline .radio input[type="radio"],
.wpdevelop .form-inline .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.wpdevelop .form-inline .has-feedback .form-control-feedback {
top: 0;
}
}
.wpdevelop .form-horizontal .radio,
.wpdevelop .form-horizontal .checkbox,
.wpdevelop .form-horizontal .radio-inline,
.wpdevelop .form-horizontal .checkbox-inline {
margin-top: 0;
margin-bottom: 0;
padding-top: 7px;
}
.wpdevelop .form-horizontal .radio,
.wpdevelop .form-horizontal .checkbox {
min-height: 27px;
}
.wpdevelop .form-horizontal .form-group {
margin-left: -15px;
margin-right: -15px;
}
@media (min-width: 768px) {
.wpdevelop .form-horizontal .control-label {
text-align: right;
margin-bottom: 0;
padding-top: 7px;
}
}
.wpdevelop .form-horizontal .has-feedback .form-control-feedback {
right: 15px;
}
@media (min-width: 768px) {
.wpdevelop .form-horizontal .form-group-lg .control-label {
padding-top: 14.333333px;
font-size: 18px;
}
}
@media (min-width: 768px) {
.wpdevelop .form-horizontal .form-group-sm .control-label {
padding-top: 6px;
font-size: 12px;
}
}
.wpdevelop .btn {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.wpdevelop .btn:focus,
.wpdevelop .btn:active:focus,
.wpdevelop .btn.active:focus,
.wpdevelop .btn.focus,
.wpdevelop .btn:active.focus,
.wpdevelop .btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.wpdevelop .btn:hover,
.wpdevelop .btn:focus,
.wpdevelop .btn.focus {
color: #333333;
text-decoration: none;
}
.wpdevelop .btn:active,
.wpdevelop .btn.active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.wpdevelop .btn.disabled,
.wpdevelop .btn[disabled],
.wpdevelop fieldset[disabled] .btn {
cursor: not-allowed;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
}
.wpdevelop a.btn.disabled,
.wpdevelop fieldset[disabled] a.btn {
pointer-events: none;
}
.wpdevelop .btn-default {
color: #333333;
background-color: #ffffff;
border-color: #cccccc;
}
.wpdevelop .btn-default:focus,
.wpdevelop .btn-default.focus {
color: #333333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.wpdevelop .btn-default:hover {
color: #333333;
background-color: #e6e6e6;
border-color: #adadad;
}
.wpdevelop .btn-default:active,
.wpdevelop .btn-default.active,
.wpdevelop .open > .dropdown-toggle.btn-default {
color: #333333;
background-color: #e6e6e6;
border-color: #adadad;
}
.wpdevelop .btn-default:active:hover,
.wpdevelop .btn-default.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-default:hover,
.wpdevelop .btn-default:active:focus,
.wpdevelop .btn-default.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-default:focus,
.wpdevelop .btn-default:active.focus,
.wpdevelop .btn-default.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-default.focus {
color: #333333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.wpdevelop .btn-default:active,
.wpdevelop .btn-default.active,
.wpdevelop .open > .dropdown-toggle.btn-default {
background-image: none;
}
.wpdevelop .btn-default.disabled,
.wpdevelop .btn-default[disabled],
.wpdevelop fieldset[disabled] .btn-default,
.wpdevelop .btn-default.disabled:hover,
.wpdevelop .btn-default[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-default:hover,
.wpdevelop .btn-default.disabled:focus,
.wpdevelop .btn-default[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-default:focus,
.wpdevelop .btn-default.disabled.focus,
.wpdevelop .btn-default[disabled].focus,
.wpdevelop fieldset[disabled] .btn-default.focus,
.wpdevelop .btn-default.disabled:active,
.wpdevelop .btn-default[disabled]:active,
.wpdevelop fieldset[disabled] .btn-default:active,
.wpdevelop .btn-default.disabled.active,
.wpdevelop .btn-default[disabled].active,
.wpdevelop fieldset[disabled] .btn-default.active {
background-color: #ffffff;
border-color: #cccccc;
}
.wpdevelop .btn-default .badge {
color: #ffffff;
background-color: #333333;
}
.wpdevelop .btn-primary {
color: #ffffff;
background-color: #337ab7;
border-color: #2e6da4;
}
.wpdevelop .btn-primary:focus,
.wpdevelop .btn-primary.focus {
color: #ffffff;
background-color: #286090;
border-color: #122b40;
}
.wpdevelop .btn-primary:hover {
color: #ffffff;
background-color: #286090;
border-color: #204d74;
}
.wpdevelop .btn-primary:active,
.wpdevelop .btn-primary.active,
.wpdevelop .open > .dropdown-toggle.btn-primary {
color: #ffffff;
background-color: #286090;
border-color: #204d74;
}
.wpdevelop .btn-primary:active:hover,
.wpdevelop .btn-primary.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-primary:hover,
.wpdevelop .btn-primary:active:focus,
.wpdevelop .btn-primary.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-primary:focus,
.wpdevelop .btn-primary:active.focus,
.wpdevelop .btn-primary.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-primary.focus {
color: #ffffff;
background-color: #204d74;
border-color: #122b40;
}
.wpdevelop .btn-primary:active,
.wpdevelop .btn-primary.active,
.wpdevelop .open > .dropdown-toggle.btn-primary {
background-image: none;
}
.wpdevelop .btn-primary.disabled,
.wpdevelop .btn-primary[disabled],
.wpdevelop fieldset[disabled] .btn-primary,
.wpdevelop .btn-primary.disabled:hover,
.wpdevelop .btn-primary[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-primary:hover,
.wpdevelop .btn-primary.disabled:focus,
.wpdevelop .btn-primary[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-primary:focus,
.wpdevelop .btn-primary.disabled.focus,
.wpdevelop .btn-primary[disabled].focus,
.wpdevelop fieldset[disabled] .btn-primary.focus,
.wpdevelop .btn-primary.disabled:active,
.wpdevelop .btn-primary[disabled]:active,
.wpdevelop fieldset[disabled] .btn-primary:active,
.wpdevelop .btn-primary.disabled.active,
.wpdevelop .btn-primary[disabled].active,
.wpdevelop fieldset[disabled] .btn-primary.active {
background-color: #337ab7;
border-color: #2e6da4;
}
.wpdevelop .btn-primary .badge {
color: #337ab7;
background-color: #ffffff;
}
.wpdevelop .btn-success {
color: #ffffff;
background-color: #5cb85c;
border-color: #4cae4c;
}
.wpdevelop .btn-success:focus,
.wpdevelop .btn-success.focus {
color: #ffffff;
background-color: #449d44;
border-color: #255625;
}
.wpdevelop .btn-success:hover {
color: #ffffff;
background-color: #449d44;
border-color: #398439;
}
.wpdevelop .btn-success:active,
.wpdevelop .btn-success.active,
.wpdevelop .open > .dropdown-toggle.btn-success {
color: #ffffff;
background-color: #449d44;
border-color: #398439;
}
.wpdevelop .btn-success:active:hover,
.wpdevelop .btn-success.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-success:hover,
.wpdevelop .btn-success:active:focus,
.wpdevelop .btn-success.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-success:focus,
.wpdevelop .btn-success:active.focus,
.wpdevelop .btn-success.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-success.focus {
color: #ffffff;
background-color: #398439;
border-color: #255625;
}
.wpdevelop .btn-success:active,
.wpdevelop .btn-success.active,
.wpdevelop .open > .dropdown-toggle.btn-success {
background-image: none;
}
.wpdevelop .btn-success.disabled,
.wpdevelop .btn-success[disabled],
.wpdevelop fieldset[disabled] .btn-success,
.wpdevelop .btn-success.disabled:hover,
.wpdevelop .btn-success[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-success:hover,
.wpdevelop .btn-success.disabled:focus,
.wpdevelop .btn-success[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-success:focus,
.wpdevelop .btn-success.disabled.focus,
.wpdevelop .btn-success[disabled].focus,
.wpdevelop fieldset[disabled] .btn-success.focus,
.wpdevelop .btn-success.disabled:active,
.wpdevelop .btn-success[disabled]:active,
.wpdevelop fieldset[disabled] .btn-success:active,
.wpdevelop .btn-success.disabled.active,
.wpdevelop .btn-success[disabled].active,
.wpdevelop fieldset[disabled] .btn-success.active {
background-color: #5cb85c;
border-color: #4cae4c;
}
.wpdevelop .btn-success .badge {
color: #5cb85c;
background-color: #ffffff;
}
.wpdevelop .btn-info {
color: #ffffff;
background-color: #5bc0de;
border-color: #46b8da;
}
.wpdevelop .btn-info:focus,
.wpdevelop .btn-info.focus {
color: #ffffff;
background-color: #31b0d5;
border-color: #1b6d85;
}
.wpdevelop .btn-info:hover {
color: #ffffff;
background-color: #31b0d5;
border-color: #269abc;
}
.wpdevelop .btn-info:active,
.wpdevelop .btn-info.active,
.wpdevelop .open > .dropdown-toggle.btn-info {
color: #ffffff;
background-color: #31b0d5;
border-color: #269abc;
}
.wpdevelop .btn-info:active:hover,
.wpdevelop .btn-info.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-info:hover,
.wpdevelop .btn-info:active:focus,
.wpdevelop .btn-info.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-info:focus,
.wpdevelop .btn-info:active.focus,
.wpdevelop .btn-info.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-info.focus {
color: #ffffff;
background-color: #269abc;
border-color: #1b6d85;
}
.wpdevelop .btn-info:active,
.wpdevelop .btn-info.active,
.wpdevelop .open > .dropdown-toggle.btn-info {
background-image: none;
}
.wpdevelop .btn-info.disabled,
.wpdevelop .btn-info[disabled],
.wpdevelop fieldset[disabled] .btn-info,
.wpdevelop .btn-info.disabled:hover,
.wpdevelop .btn-info[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-info:hover,
.wpdevelop .btn-info.disabled:focus,
.wpdevelop .btn-info[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-info:focus,
.wpdevelop .btn-info.disabled.focus,
.wpdevelop .btn-info[disabled].focus,
.wpdevelop fieldset[disabled] .btn-info.focus,
.wpdevelop .btn-info.disabled:active,
.wpdevelop .btn-info[disabled]:active,
.wpdevelop fieldset[disabled] .btn-info:active,
.wpdevelop .btn-info.disabled.active,
.wpdevelop .btn-info[disabled].active,
.wpdevelop fieldset[disabled] .btn-info.active {
background-color: #5bc0de;
border-color: #46b8da;
}
.wpdevelop .btn-info .badge {
color: #5bc0de;
background-color: #ffffff;
}
.wpdevelop .btn-warning {
color: #ffffff;
background-color: #f0ad4e;
border-color: #eea236;
}
.wpdevelop .btn-warning:focus,
.wpdevelop .btn-warning.focus {
color: #ffffff;
background-color: #ec971f;
border-color: #985f0d;
}
.wpdevelop .btn-warning:hover {
color: #ffffff;
background-color: #ec971f;
border-color: #d58512;
}
.wpdevelop .btn-warning:active,
.wpdevelop .btn-warning.active,
.wpdevelop .open > .dropdown-toggle.btn-warning {
color: #ffffff;
background-color: #ec971f;
border-color: #d58512;
}
.wpdevelop .btn-warning:active:hover,
.wpdevelop .btn-warning.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-warning:hover,
.wpdevelop .btn-warning:active:focus,
.wpdevelop .btn-warning.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-warning:focus,
.wpdevelop .btn-warning:active.focus,
.wpdevelop .btn-warning.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-warning.focus {
color: #ffffff;
background-color: #d58512;
border-color: #985f0d;
}
.wpdevelop .btn-warning:active,
.wpdevelop .btn-warning.active,
.wpdevelop .open > .dropdown-toggle.btn-warning {
background-image: none;
}
.wpdevelop .btn-warning.disabled,
.wpdevelop .btn-warning[disabled],
.wpdevelop fieldset[disabled] .btn-warning,
.wpdevelop .btn-warning.disabled:hover,
.wpdevelop .btn-warning[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-warning:hover,
.wpdevelop .btn-warning.disabled:focus,
.wpdevelop .btn-warning[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-warning:focus,
.wpdevelop .btn-warning.disabled.focus,
.wpdevelop .btn-warning[disabled].focus,
.wpdevelop fieldset[disabled] .btn-warning.focus,
.wpdevelop .btn-warning.disabled:active,
.wpdevelop .btn-warning[disabled]:active,
.wpdevelop fieldset[disabled] .btn-warning:active,
.wpdevelop .btn-warning.disabled.active,
.wpdevelop .btn-warning[disabled].active,
.wpdevelop fieldset[disabled] .btn-warning.active {
background-color: #f0ad4e;
border-color: #eea236;
}
.wpdevelop .btn-warning .badge {
color: #f0ad4e;
background-color: #ffffff;
}
.wpdevelop .btn-danger {
color: #ffffff;
background-color: #d9534f;
border-color: #d43f3a;
}
.wpdevelop .btn-danger:focus,
.wpdevelop .btn-danger.focus {
color: #ffffff;
background-color: #c9302c;
border-color: #761c19;
}
.wpdevelop .btn-danger:hover {
color: #ffffff;
background-color: #c9302c;
border-color: #ac2925;
}
.wpdevelop .btn-danger:active,
.wpdevelop .btn-danger.active,
.wpdevelop .open > .dropdown-toggle.btn-danger {
color: #ffffff;
background-color: #c9302c;
border-color: #ac2925;
}
.wpdevelop .btn-danger:active:hover,
.wpdevelop .btn-danger.active:hover,
.wpdevelop .open > .dropdown-toggle.btn-danger:hover,
.wpdevelop .btn-danger:active:focus,
.wpdevelop .btn-danger.active:focus,
.wpdevelop .open > .dropdown-toggle.btn-danger:focus,
.wpdevelop .btn-danger:active.focus,
.wpdevelop .btn-danger.active.focus,
.wpdevelop .open > .dropdown-toggle.btn-danger.focus {
color: #ffffff;
background-color: #ac2925;
border-color: #761c19;
}
.wpdevelop .btn-danger:active,
.wpdevelop .btn-danger.active,
.wpdevelop .open > .dropdown-toggle.btn-danger {
background-image: none;
}
.wpdevelop .btn-danger.disabled,
.wpdevelop .btn-danger[disabled],
.wpdevelop fieldset[disabled] .btn-danger,
.wpdevelop .btn-danger.disabled:hover,
.wpdevelop .btn-danger[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-danger:hover,
.wpdevelop .btn-danger.disabled:focus,
.wpdevelop .btn-danger[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-danger:focus,
.wpdevelop .btn-danger.disabled.focus,
.wpdevelop .btn-danger[disabled].focus,
.wpdevelop fieldset[disabled] .btn-danger.focus,
.wpdevelop .btn-danger.disabled:active,
.wpdevelop .btn-danger[disabled]:active,
.wpdevelop fieldset[disabled] .btn-danger:active,
.wpdevelop .btn-danger.disabled.active,
.wpdevelop .btn-danger[disabled].active,
.wpdevelop fieldset[disabled] .btn-danger.active {
background-color: #d9534f;
border-color: #d43f3a;
}
.wpdevelop .btn-danger .badge {
color: #d9534f;
background-color: #ffffff;
}
.wpdevelop .btn-link {
color: #337ab7;
font-weight: normal;
border-radius: 0;
}
.wpdevelop .btn-link,
.wpdevelop .btn-link:active,
.wpdevelop .btn-link.active,
.wpdevelop .btn-link[disabled],
.wpdevelop fieldset[disabled] .btn-link {
background-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
.wpdevelop .btn-link,
.wpdevelop .btn-link:hover,
.wpdevelop .btn-link:focus,
.wpdevelop .btn-link:active {
border-color: transparent;
}
.wpdevelop .btn-link:hover,
.wpdevelop .btn-link:focus {
color: #23527c;
text-decoration: underline;
background-color: transparent;
}
.wpdevelop .btn-link[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-link:hover,
.wpdevelop .btn-link[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-link:focus {
color: #777777;
text-decoration: none;
}
.wpdevelop .btn-lg,
.wpdevelop .btn-group-lg > .btn {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.wpdevelop .btn-sm,
.wpdevelop .btn-group-sm > .btn {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.wpdevelop .btn-xs,
.wpdevelop .btn-group-xs > .btn {
padding: 1px 5px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.wpdevelop .btn-block {
display: block;
width: 100%;
}
.wpdevelop .btn-block + .btn-block {
margin-top: 5px;
}
.wpdevelop input[type="submit"].btn-block,
.wpdevelop input[type="reset"].btn-block,
.wpdevelop input[type="button"].btn-block {
width: 100%;
}
.wpdevelop .fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.wpdevelop .fade.in {
opacity: 1;
}
.wpdevelop .collapse {
display: none;
}
.wpdevelop .collapse.in {
display: block;
}
.wpdevelop tr.collapse.in {
display: table-row;
}
.wpdevelop tbody.collapse.in {
display: table-row-group;
}
.wpdevelop .collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-property: height, visibility;
-o-transition-property: height, visibility;
transition-property: height, visibility;
-webkit-transition-duration: 0.35s;
-o-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
-o-transition-timing-function: ease;
transition-timing-function: ease;
}
.wpdevelop .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;
}
.wpdevelop .dropup,
.wpdevelop .dropdown {
position: relative;
}
.wpdevelop .dropdown-toggle:focus {
outline: 0;
}
.wpdevelop .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;
list-style: none;
font-size: 14px;
text-align: left;
background-color: #ffffff;
border: 1px solid #cccccc;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 4px;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
-webkit-background-clip: padding-box;
background-clip: padding-box;
}
.wpdevelop .dropdown-menu.pull-right {
right: 0;
left: auto;
}
.wpdevelop .dropdown-menu .divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.wpdevelop .dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333333;
white-space: nowrap;
}
.wpdevelop .dropdown-menu > li > a:hover,
.wpdevelop .dropdown-menu > li > a:focus {
text-decoration: none;
color: #262626;
background-color: #f5f5f5;
}
.wpdevelop .dropdown-menu > .active > a,
.wpdevelop .dropdown-menu > .active > a:hover,
.wpdevelop .dropdown-menu > .active > a:focus {
color: #ffffff;
text-decoration: none;
outline: 0;
background-color: #337ab7;
}
.wpdevelop .dropdown-menu > .disabled > a,
.wpdevelop .dropdown-menu > .disabled > a:hover,
.wpdevelop .dropdown-menu > .disabled > a:focus {
color: #777777;
}
.wpdevelop .dropdown-menu > .disabled > a:hover,
.wpdevelop .dropdown-menu > .disabled > a:focus {
text-decoration: none;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
cursor: not-allowed;
}
.wpdevelop .open > .dropdown-menu {
display: block;
}
.wpdevelop .open > a {
outline: 0;
}
.wpdevelop .dropdown-menu-right {
left: auto;
right: 0;
}
.wpdevelop .dropdown-menu-left {
left: 0;
right: auto;
}
.wpdevelop .dropdown-header {
display: block;
padding: 3px 20px;
font-size: 12px;
line-height: 1.42857143;
color: #777777;
white-space: nowrap;
}
.wpdevelop .dropdown-backdrop {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
z-index: 990;
}
.wpdevelop .pull-right > .dropdown-menu {
right: 0;
left: auto;
}
.wpdevelop .dropup .caret,
.wpdevelop .navbar-fixed-bottom .dropdown .caret {
border-top: 0;
border-bottom: 4px dashed;
border-bottom: 4px solid \9;
content: "";
}
.wpdevelop .dropup .dropdown-menu,
.wpdevelop .navbar-fixed-bottom .dropdown .dropdown-menu {
top: auto;
bottom: 100%;
margin-bottom: 2px;
}
@media (min-width: 768px) {
.wpdevelop .navbar-right .dropdown-menu {
left: auto;
right: 0;
}
.wpdevelop .navbar-right .dropdown-menu-left {
left: 0;
right: auto;
}
}
.wpdevelop .btn-group,
.wpdevelop .btn-group-vertical {
position: relative;
display: inline-block;
vertical-align: middle;
}
.wpdevelop .btn-group > .btn,
.wpdevelop .btn-group-vertical > .btn {
position: relative;
float: left;
}
.wpdevelop .btn-group > .btn:hover,
.wpdevelop .btn-group-vertical > .btn:hover,
.wpdevelop .btn-group > .btn:focus,
.wpdevelop .btn-group-vertical > .btn:focus,
.wpdevelop .btn-group > .btn:active,
.wpdevelop .btn-group-vertical > .btn:active,
.wpdevelop .btn-group > .btn.active,
.wpdevelop .btn-group-vertical > .btn.active {
z-index: 2;
}
.wpdevelop .btn-group .btn + .btn,
.wpdevelop .btn-group .btn + .btn-group,
.wpdevelop .btn-group .btn-group + .btn,
.wpdevelop .btn-group .btn-group + .btn-group {
margin-left: -1px;
}
.wpdevelop .btn-toolbar {
margin-left: -5px;
}
.wpdevelop .btn-toolbar .btn,
.wpdevelop .btn-toolbar .btn-group,
.wpdevelop .btn-toolbar .input-group {
float: left;
}
.wpdevelop .btn-toolbar > .btn,
.wpdevelop .btn-toolbar > .btn-group,
.wpdevelop .btn-toolbar > .input-group {
margin-left: 5px;
}
.wpdevelop .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
border-radius: 0;
}
.wpdevelop .btn-group > .btn:first-child {
margin-left: 0;
}
.wpdevelop .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.wpdevelop .btn-group > .btn:last-child:not(:first-child),
.wpdevelop .btn-group > .dropdown-toggle:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.wpdevelop .btn-group > .btn-group {
float: left;
}
.wpdevelop .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.wpdevelop .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.wpdevelop .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.wpdevelop .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.wpdevelop .btn-group .dropdown-toggle:active,
.wpdevelop .btn-group.open .dropdown-toggle {
outline: 0;
}
.wpdevelop .btn-group > .btn + .dropdown-toggle {
padding-left: 8px;
padding-right: 8px;
}
.wpdevelop .btn-group > .btn-lg + .dropdown-toggle {
padding-left: 12px;
padding-right: 12px;
}
.wpdevelop .btn-group.open .dropdown-toggle {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.wpdevelop .btn-group.open .dropdown-toggle.btn-link {
-webkit-box-shadow: none;
box-shadow: none;
}
.wpdevelop .btn .caret {
margin-left: 0;
}
.wpdevelop .btn-lg .caret {
border-width: 5px 5px 0;
border-bottom-width: 0;
}
.wpdevelop .dropup .btn-lg .caret {
border-width: 0 5px 5px;
}
.wpdevelop .btn-group-vertical > .btn,
.wpdevelop .btn-group-vertical > .btn-group,
.wpdevelop .btn-group-vertical > .btn-group > .btn {
display: block;
float: none;
width: 100%;
max-width: 100%;
}
.wpdevelop .btn-group-vertical > .btn-group > .btn {
float: none;
}
.wpdevelop .btn-group-vertical > .btn + .btn,
.wpdevelop .btn-group-vertical > .btn + .btn-group,
.wpdevelop .btn-group-vertical > .btn-group + .btn,
.wpdevelop .btn-group-vertical > .btn-group + .btn-group {
margin-top: -1px;
margin-left: 0;
}
.wpdevelop .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
border-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn:first-child:not(:last-child) {
border-top-right-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn:last-child:not(:first-child) {
border-bottom-left-radius: 4px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
border-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.wpdevelop .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.wpdevelop .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.wpdevelop .btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}
.wpdevelop .btn-group-justified > .btn,
.wpdevelop .btn-group-justified > .btn-group {
float: none;
display: table-cell;
width: 1%;
}
.wpdevelop .btn-group-justified > .btn-group .btn {
width: 100%;
}
.wpdevelop .btn-group-justified > .btn-group .dropdown-menu {
left: auto;
}
.wpdevelop [data-toggle="buttons"] > .btn input[type="radio"],
.wpdevelop [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
.wpdevelop [data-toggle="buttons"] > .btn input[type="checkbox"],
.wpdevelop [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
position: absolute;
clip: rect(0, 0, 0, 0);
pointer-events: none;
}
.wpdevelop .input-group {
position: relative;
display: table;
border-collapse: separate;
}
.wpdevelop .input-group[class*="col-"] {
float: none;
padding-left: 0;
padding-right: 0;
}
.wpdevelop .input-group .form-control {
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0;
}
.wpdevelop .input-group-lg > .form-control,
.wpdevelop .input-group-lg > .input-group-addon,
.wpdevelop .input-group-lg > .input-group-btn > .btn {
height: 46px;
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
border-radius: 6px;
}
.wpdevelop select.input-group-lg > .form-control,
.wpdevelop select.input-group-lg > .input-group-addon,
.wpdevelop select.input-group-lg > .input-group-btn > .btn {
height: 46px;
line-height: 46px;
}
.wpdevelop textarea.input-group-lg > .form-control,
.wpdevelop textarea.input-group-lg > .input-group-addon,
.wpdevelop textarea.input-group-lg > .input-group-btn > .btn,
.wpdevelop select[multiple].input-group-lg > .form-control,
.wpdevelop select[multiple].input-group-lg > .input-group-addon,
.wpdevelop select[multiple].input-group-lg > .input-group-btn > .btn {
height: auto;
}
.wpdevelop .input-group-sm > .form-control,
.wpdevelop .input-group-sm > .input-group-addon,
.wpdevelop .input-group-sm > .input-group-btn > .btn {
height: 30px;
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
border-radius: 3px;
}
.wpdevelop select.input-group-sm > .form-control,
.wpdevelop select.input-group-sm > .input-group-addon,
.wpdevelop select.input-group-sm > .input-group-btn > .btn {
height: 30px;
line-height: 30px;
}
.wpdevelop textarea.input-group-sm > .form-control,
.wpdevelop textarea.input-group-sm > .input-group-addon,
.wpdevelop textarea.input-group-sm > .input-group-btn > .btn,
.wpdevelop select[multiple].input-group-sm > .form-control,
.wpdevelop select[multiple].input-group-sm > .input-group-addon,
.wpdevelop select[multiple].input-group-sm > .input-group-btn > .btn {
height: auto;
}
.wpdevelop .input-group-addon,
.wpdevelop .input-group-btn,
.wpdevelop .input-group .form-control {
display: table-cell;
}
.wpdevelop .input-group-addon:not(:first-child):not(:last-child),
.wpdevelop .input-group-btn:not(:first-child):not(:last-child),
.wpdevelop .input-group .form-control:not(:first-child):not(:last-child) {
border-radius: 0;
}
.wpdevelop .input-group-addon,
.wpdevelop .input-group-btn {
width: 1%;
white-space: nowrap;
vertical-align: middle;
}
.wpdevelop .input-group-addon {
padding: 6px 12px;
font-size: 14px;
font-weight: normal;
line-height: 1;
color: #555555;
text-align: center;
background-color: #eeeeee;
border: 1px solid #cccccc;
border-radius: 4px;
}
.wpdevelop .input-group-addon.input-sm {
padding: 5px 10px;
font-size: 12px;
border-radius: 3px;
}
.wpdevelop .input-group-addon.input-lg {
padding: 10px 16px;
font-size: 18px;
border-radius: 6px;
}
.wpdevelop .input-group-addon input[type="radio"],
.wpdevelop .input-group-addon input[type="checkbox"] {
margin-top: 0;
}
.wpdevelop .input-group .form-control:first-child,
.wpdevelop .input-group-addon:first-child,
.wpdevelop .input-group-btn:first-child > .btn,
.wpdevelop .input-group-btn:first-child > .btn-group > .btn,
.wpdevelop .input-group-btn:first-child > .dropdown-toggle,
.wpdevelop .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.wpdevelop .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
.wpdevelop .input-group-addon:first-child {
border-right: 0;
}
.wpdevelop .input-group .form-control:last-child,
.wpdevelop .input-group-addon:last-child,
.wpdevelop .input-group-btn:last-child > .btn,
.wpdevelop .input-group-btn:last-child > .btn-group > .btn,
.wpdevelop .input-group-btn:last-child > .dropdown-toggle,
.wpdevelop .input-group-btn:first-child > .btn:not(:first-child),
.wpdevelop .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.wpdevelop .input-group-addon:last-child {
border-left: 0;
}
.wpdevelop .input-group-btn {
position: relative;
font-size: 0;
white-space: nowrap;
}
.wpdevelop .input-group-btn > .btn {
position: relative;
}
.wpdevelop .input-group-btn > .btn + .btn {
margin-left: -1px;
}
.wpdevelop .input-group-btn > .btn:hover,
.wpdevelop .input-group-btn > .btn:focus,
.wpdevelop .input-group-btn > .btn:active {
z-index: 2;
}
.wpdevelop .input-group-btn:first-child > .btn,
.wpdevelop .input-group-btn:first-child > .btn-group {
margin-right: -1px;
}
.wpdevelop .input-group-btn:last-child > .btn,
.wpdevelop .input-group-btn:last-child > .btn-group {
z-index: 2;
margin-left: -1px;
}
.wpdevelop .nav {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.wpdevelop .nav > li {
position: relative;
display: block;
}
.wpdevelop .nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
.wpdevelop .nav > li > a:hover,
.wpdevelop .nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.wpdevelop .nav > li.disabled > a {
color: #777777;
}
.wpdevelop .nav > li.disabled > a:hover,
.wpdevelop .nav > li.disabled > a:focus {
color: #777777;
text-decoration: none;
background-color: transparent;
cursor: not-allowed;
}
.wpdevelop .nav .open > a,
.wpdevelop .nav .open > a:hover,
.wpdevelop .nav .open > a:focus {
background-color: #eeeeee;
border-color: #337ab7;
}
.wpdevelop .nav .nav-divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.wpdevelop .nav > li > a > img {
max-width: none;
}
.wpdevelop .nav-tabs {
border-bottom: 1px solid #dddddd;
}
.wpdevelop .nav-tabs > li {
float: left;
margin-bottom: -1px;
}
.wpdevelop .nav-tabs > li > a {
margin-right: 2px;
line-height: 1.42857143;
border: 1px solid transparent;
border-radius: 4px 4px 0 0;
}
.wpdevelop .nav-tabs > li > a:hover {
border-color: #eeeeee #eeeeee #dddddd;
}
.wpdevelop .nav-tabs > li.active > a,
.wpdevelop .nav-tabs > li.active > a:hover,
.wpdevelop .nav-tabs > li.active > a:focus {
color: #555555;
background-color: #ffffff;
border: 1px solid #dddddd;
border-bottom-color: transparent;
cursor: default;
}
.wpdevelop .nav-tabs.nav-justified {
width: 100%;
border-bottom: 0;
}
.wpdevelop .nav-tabs.nav-justified > li {
float: none;
}
.wpdevelop .nav-tabs.nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.wpdevelop .nav-tabs.nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.wpdevelop .nav-tabs.nav-justified > li {
display: table-cell;
width: 1%;
}
.wpdevelop .nav-tabs.nav-justified > li > a {
margin-bottom: 0;
}
}
.wpdevelop .nav-tabs.nav-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.wpdevelop .nav-tabs.nav-justified > .active > a,
.wpdevelop .nav-tabs.nav-justified > .active > a:hover,
.wpdevelop .nav-tabs.nav-justified > .active > a:focus {
border: 1px solid #dddddd;
}
@media (min-width: 768px) {
.wpdevelop .nav-tabs.nav-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 4px 4px 0 0;
}
.wpdevelop .nav-tabs.nav-justified > .active > a,
.wpdevelop .nav-tabs.nav-justified > .active > a:hover,
.wpdevelop .nav-tabs.nav-justified > .active > a:focus {
border-bottom-color: #ffffff;
}
}
.wpdevelop .nav-pills > li {
float: left;
}
.wpdevelop .nav-pills > li > a {
border-radius: 4px;
}
.wpdevelop .nav-pills > li + li {
margin-left: 2px;
}
.wpdevelop .nav-pills > li.active > a,
.wpdevelop .nav-pills > li.active > a:hover,
.wpdevelop .nav-pills > li.active > a:focus {
color: #ffffff;
background-color: #337ab7;
}
.wpdevelop .nav-stacked > li {
float: none;
}
.wpdevelop .nav-stacked > li + li {
margin-top: 2px;
margin-left: 0;
}
.wpdevelop .nav-justified {
width: 100%;
}
.wpdevelop .nav-justified > li {
float: none;
}
.wpdevelop .nav-justified > li > a {
text-align: center;
margin-bottom: 5px;
}
.wpdevelop .nav-justified > .dropdown .dropdown-menu {
top: auto;
left: auto;
}
@media (min-width: 768px) {
.wpdevelop .nav-justified > li {
display: table-cell;
width: 1%;
}
.wpdevelop .nav-justified > li > a {
margin-bottom: 0;
}
}
.wpdevelop .nav-tabs-justified {
border-bottom: 0;
}
.wpdevelop .nav-tabs-justified > li > a {
margin-right: 0;
border-radius: 4px;
}
.wpdevelop .nav-tabs-justified > .active > a,
.wpdevelop .nav-tabs-justified > .active > a:hover,
.wpdevelop .nav-tabs-justified > .active > a:focus {
border: 1px solid #dddddd;
}
@media (min-width: 768px) {
.wpdevelop .nav-tabs-justified > li > a {
border-bottom: 1px solid #dddddd;
border-radius: 4px 4px 0 0;
}
.wpdevelop .nav-tabs-justified > .active > a,
.wpdevelop .nav-tabs-justified > .active > a:hover,
.wpdevelop .nav-tabs-justified > .active > a:focus {
border-bottom-color: #ffffff;
}
}
.wpdevelop .tab-content > .tab-pane {
display: none;
}
.wpdevelop .tab-content > .active {
display: block;
}
.wpdevelop .nav-tabs .dropdown-menu {
margin-top: -1px;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.wpdevelop .navbar {
position: relative;
min-height: 50px;
margin-bottom: 20px;
border: 1px solid transparent;
}
@media (min-width: 768px) {
.wpdevelop .navbar {
border-radius: 4px;
}
}
@media (min-width: 768px) {
.wpdevelop .navbar-header {
float: left;
}
}
.wpdevelop .navbar-collapse {
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
.wpdevelop .navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {
.wpdevelop .navbar-collapse {
width: auto;
border-top: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.wpdevelop .navbar-collapse.collapse {
display: block !important;
height: auto !important;
padding-bottom: 0;
overflow: visible !important;
}
.wpdevelop .navbar-collapse.in {
overflow-y: visible;
}
.wpdevelop .navbar-fixed-top .navbar-collapse,
.wpdevelop .navbar-static-top .navbar-collapse,
.wpdevelop .navbar-fixed-bottom .navbar-collapse {
padding-left: 0;
padding-right: 0;
}
}
.wpdevelop .navbar-fixed-top .navbar-collapse,
.wpdevelop .navbar-fixed-bottom .navbar-collapse {
max-height: 340px;
}
@media (max-device-width: 480px) and (orientation: landscape) {
.wpdevelop .navbar-fixed-top .navbar-collapse,
.wpdevelop .navbar-fixed-bottom .navbar-collapse {
max-height: 200px;
}
}
.wpdevelop .container > .navbar-header,
.wpdevelop .container-fluid > .navbar-header,
.wpdevelop .container > .navbar-collapse,
.wpdevelop .container-fluid > .navbar-collapse {
margin-right: -15px;
margin-left: -15px;
}
@media (min-width: 768px) {
.wpdevelop .container > .navbar-header,
.wpdevelop .container-fluid > .navbar-header,
.wpdevelop .container > .navbar-collapse,
.wpdevelop .container-fluid > .navbar-collapse {
margin-right: 0;
margin-left: 0;
}
}
.wpdevelop .navbar-static-top {
z-index: 1000;
border-width: 0 0 1px;
}
@media (min-width: 768px) {
.wpdevelop .navbar-static-top {
border-radius: 0;
}
}
.wpdevelop .navbar-fixed-top,
.wpdevelop .navbar-fixed-bottom {
position: fixed;
right: 0;
left: 0;
z-index: 1030;
}
@media (min-width: 768px) {
.wpdevelop .navbar-fixed-top,
.wpdevelop .navbar-fixed-bottom {
border-radius: 0;
}
}
.wpdevelop .navbar-fixed-top {
top: 0;
border-width: 0 0 1px;
}
.wpdevelop .navbar-fixed-bottom {
bottom: 0;
margin-bottom: 0;
border-width: 1px 0 0;
}
.wpdevelop .navbar-brand {
float: left;
padding: 15px 15px;
font-size: 18px;
line-height: 20px;
height: 50px;
}
.wpdevelop .navbar-brand:hover,
.wpdevelop .navbar-brand:focus {
text-decoration: none;
}
.wpdevelop .navbar-brand > img {
display: block;
}
@media (min-width: 768px) {
.wpdevelop .navbar > .container .navbar-brand,
.wpdevelop .navbar > .container-fluid .navbar-brand {
margin-left: -15px;
}
}
.wpdevelop .navbar-toggle {
position: relative;
float: right;
margin-right: 15px;
padding: 9px 10px;
margin-top: 8px;
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.wpdevelop .navbar-toggle:focus {
outline: 0;
}
.wpdevelop .navbar-toggle .icon-bar {
display: block;
width: 22px;
height: 2px;
border-radius: 1px;
}
.wpdevelop .navbar-toggle .icon-bar + .icon-bar {
margin-top: 4px;
}
@media (min-width: 768px) {
.wpdevelop .navbar-toggle {
display: none;
}
}
.wpdevelop .navbar-nav {
margin: 7.5px -15px;
}
.wpdevelop .navbar-nav > li > a {
padding-top: 10px;
padding-bottom: 10px;
line-height: 20px;
}
@media (max-width: 767px) {
.wpdevelop .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;
}
.wpdevelop .navbar-nav .open .dropdown-menu > li > a,
.wpdevelop .navbar-nav .open .dropdown-menu .dropdown-header {
padding: 5px 15px 5px 25px;
}
.wpdevelop .navbar-nav .open .dropdown-menu > li > a {
line-height: 20px;
}
.wpdevelop .navbar-nav .open .dropdown-menu > li > a:hover,
.wpdevelop .navbar-nav .open .dropdown-menu > li > a:focus {
background-image: none;
}
}
@media (min-width: 768px) {
.wpdevelop .navbar-nav {
float: left;
margin: 0;
}
.wpdevelop .navbar-nav > li {
float: left;
}
.wpdevelop .navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
}
}
.wpdevelop .navbar-form {
margin-left: -15px;
margin-right: -15px;
padding: 10px 15px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
margin-top: 8px;
margin-bottom: 8px;
}
@media (min-width: 768px) {
.wpdevelop .navbar-form .form-group {
display: inline-block;
margin-bottom: 0;
vertical-align: middle;
}
.wpdevelop .navbar-form .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
.wpdevelop .navbar-form .form-control-static {
display: inline-block;
}
.wpdevelop .navbar-form .input-group {
display: inline-table;
vertical-align: middle;
}
.wpdevelop .navbar-form .input-group .input-group-addon,
.wpdevelop .navbar-form .input-group .input-group-btn,
.wpdevelop .navbar-form .input-group .form-control {
width: auto;
}
.wpdevelop .navbar-form .input-group > .form-control {
width: 100%;
}
.wpdevelop .navbar-form .control-label {
margin-bottom: 0;
vertical-align: middle;
}
.wpdevelop .navbar-form .radio,
.wpdevelop .navbar-form .checkbox {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
vertical-align: middle;
}
.wpdevelop .navbar-form .radio label,
.wpdevelop .navbar-form .checkbox label {
padding-left: 0;
}
.wpdevelop .navbar-form .radio input[type="radio"],
.wpdevelop .navbar-form .checkbox input[type="checkbox"] {
position: relative;
margin-left: 0;
}
.wpdevelop .navbar-form .has-feedback .form-control-feedback {
top: 0;
}
}
@media (max-width: 767px) {
.wpdevelop .navbar-form .form-group {
margin-bottom: 5px;
}
.wpdevelop .navbar-form .form-group:last-child {
margin-bottom: 0;
}
}
@media (min-width: 768px) {
.wpdevelop .navbar-form {
width: auto;
border: 0;
margin-left: 0;
margin-right: 0;
padding-top: 0;
padding-bottom: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
}
.wpdevelop .navbar-nav > li > .dropdown-menu {
margin-top: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.wpdevelop .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
margin-bottom: 0;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.wpdevelop .navbar-btn {
margin-top: 8px;
margin-bottom: 8px;
}
.wpdevelop .navbar-btn.btn-sm {
margin-top: 10px;
margin-bottom: 10px;
}
.wpdevelop .navbar-btn.btn-xs {
margin-top: 14px;
margin-bottom: 14px;
}
.wpdevelop .navbar-text {
margin-top: 15px;
margin-bottom: 15px;
}
@media (min-width: 768px) {
.wpdevelop .navbar-text {
float: left;
margin-left: 15px;
margin-right: 15px;
}
}
@media (min-width: 768px) {
.wpdevelop .navbar-left {
float: left !important;
}
.wpdevelop .navbar-right {
float: right !important;
margin-right: -15px;
}
.wpdevelop .navbar-right ~ .navbar-right {
margin-right: 0;
}
}
.wpdevelop .navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
.wpdevelop .navbar-default .navbar-brand {
color: #777777;
}
.wpdevelop .navbar-default .navbar-brand:hover,
.wpdevelop .navbar-default .navbar-brand:focus {
color: #5e5e5e;
background-color: transparent;
}
.wpdevelop .navbar-default .navbar-text {
color: #777777;
}
.wpdevelop .navbar-default .navbar-nav > li > a {
color: #777777;
}
.wpdevelop .navbar-default .navbar-nav > li > a:hover,
.wpdevelop .navbar-default .navbar-nav > li > a:focus {
color: #333333;
background-color: transparent;
}
.wpdevelop .navbar-default .navbar-nav > .active > a,
.wpdevelop .navbar-default .navbar-nav > .active > a:hover,
.wpdevelop .navbar-default .navbar-nav > .active > a:focus {
color: #555555;
background-color: #e7e7e7;
}
.wpdevelop .navbar-default .navbar-nav > .disabled > a,
.wpdevelop .navbar-default .navbar-nav > .disabled > a:hover,
.wpdevelop .navbar-default .navbar-nav > .disabled > a:focus {
color: #cccccc;
background-color: transparent;
}
.wpdevelop .navbar-default .navbar-toggle {
border-color: #dddddd;
}
.wpdevelop .navbar-default .navbar-toggle:hover,
.wpdevelop .navbar-default .navbar-toggle:focus {
background-color: #dddddd;
}
.wpdevelop .navbar-default .navbar-toggle .icon-bar {
background-color: #888888;
}
.wpdevelop .navbar-default .navbar-collapse,
.wpdevelop .navbar-default .navbar-form {
border-color: #e7e7e7;
}
.wpdevelop .navbar-default .navbar-nav > .open > a,
.wpdevelop .navbar-default .navbar-nav > .open > a:hover,
.wpdevelop .navbar-default .navbar-nav > .open > a:focus {
background-color: #e7e7e7;
color: #555555;
}
@media (max-width: 767px) {
.wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > li > a {
color: #777777;
}
.wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
color: #333333;
background-color: transparent;
}
.wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #555555;
background-color: #e7e7e7;
}
.wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.wpdevelop .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #cccccc;
background-color: transparent;
}
}
.wpdevelop .navbar-default .navbar-link {
color: #777777;
}
.wpdevelop .navbar-default .navbar-link:hover {
color: #333333;
}
.wpdevelop .navbar-default .btn-link {
color: #777777;
}
.wpdevelop .navbar-default .btn-link:hover,
.wpdevelop .navbar-default .btn-link:focus {
color: #333333;
}
.wpdevelop .navbar-default .btn-link[disabled]:hover,
.wpdevelop fieldset[disabled] .navbar-default .btn-link:hover,
.wpdevelop .navbar-default .btn-link[disabled]:focus,
.wpdevelop fieldset[disabled] .navbar-default .btn-link:focus {
color: #cccccc;
}
.wpdevelop .navbar-inverse {
background-color: #222222;
border-color: #080808;
}
.wpdevelop .navbar-inverse .navbar-brand {
color: #9d9d9d;
}
.wpdevelop .navbar-inverse .navbar-brand:hover,
.wpdevelop .navbar-inverse .navbar-brand:focus {
color: #ffffff;
background-color: transparent;
}
.wpdevelop .navbar-inverse .navbar-text {
color: #9d9d9d;
}
.wpdevelop .navbar-inverse .navbar-nav > li > a {
color: #9d9d9d;
}
.wpdevelop .navbar-inverse .navbar-nav > li > a:hover,
.wpdevelop .navbar-inverse .navbar-nav > li > a:focus {
color: #ffffff;
background-color: transparent;
}
.wpdevelop .navbar-inverse .navbar-nav > .active > a,
.wpdevelop .navbar-inverse .navbar-nav > .active > a:hover,
.wpdevelop .navbar-inverse .navbar-nav > .active > a:focus {
color: #ffffff;
background-color: #080808;
}
.wpdevelop .navbar-inverse .navbar-nav > .disabled > a,
.wpdevelop .navbar-inverse .navbar-nav > .disabled > a:hover,
.wpdevelop .navbar-inverse .navbar-nav > .disabled > a:focus {
color: #444444;
background-color: transparent;
}
.wpdevelop .navbar-inverse .navbar-toggle {
border-color: #333333;
}
.wpdevelop .navbar-inverse .navbar-toggle:hover,
.wpdevelop .navbar-inverse .navbar-toggle:focus {
background-color: #333333;
}
.wpdevelop .navbar-inverse .navbar-toggle .icon-bar {
background-color: #ffffff;
}
.wpdevelop .navbar-inverse .navbar-collapse,
.wpdevelop .navbar-inverse .navbar-form {
border-color: #101010;
}
.wpdevelop .navbar-inverse .navbar-nav > .open > a,
.wpdevelop .navbar-inverse .navbar-nav > .open > a:hover,
.wpdevelop .navbar-inverse .navbar-nav > .open > a:focus {
background-color: #080808;
color: #ffffff;
}
@media (max-width: 767px) {
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
border-color: #080808;
}
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
background-color: #080808;
}
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
color: #9d9d9d;
}
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
color: #ffffff;
background-color: transparent;
}
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #ffffff;
background-color: #080808;
}
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.wpdevelop .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
color: #444444;
background-color: transparent;
}
}
.wpdevelop .navbar-inverse .navbar-link {
color: #9d9d9d;
}
.wpdevelop .navbar-inverse .navbar-link:hover {
color: #ffffff;
}
.wpdevelop .navbar-inverse .btn-link {
color: #9d9d9d;
}
.wpdevelop .navbar-inverse .btn-link:hover,
.wpdevelop .navbar-inverse .btn-link:focus {
color: #ffffff;
}
.wpdevelop .navbar-inverse .btn-link[disabled]:hover,
.wpdevelop fieldset[disabled] .navbar-inverse .btn-link:hover,
.wpdevelop .navbar-inverse .btn-link[disabled]:focus,
.wpdevelop fieldset[disabled] .navbar-inverse .btn-link:focus {
color: #444444;
}
.wpdevelop .breadcrumb {
padding: 8px 15px;
margin-bottom: 20px;
list-style: none;
background-color: #f5f5f5;
border-radius: 4px;
}
.wpdevelop .breadcrumb > li {
display: inline-block;
}
.wpdevelop .breadcrumb > li + li:before {
content: "/\00a0";
padding: 0 5px;
color: #cccccc;
}
.wpdevelop .breadcrumb > .active {
color: #777777;
}
.wpdevelop .pagination {
display: inline-block;
padding-left: 0;
margin: 20px 0;
border-radius: 4px;
}
.wpdevelop .pagination > li {
display: inline;
}
.wpdevelop .pagination > li > a,
.wpdevelop .pagination > li > span {
position: relative;
float: left;
padding: 6px 12px;
line-height: 1.42857143;
text-decoration: none;
color: #337ab7;
background-color: #ffffff;
border: 1px solid #dddddd;
margin-left: -1px;
}
.wpdevelop .pagination > li:first-child > a,
.wpdevelop .pagination > li:first-child > span {
margin-left: 0;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
}
.wpdevelop .pagination > li:last-child > a,
.wpdevelop .pagination > li:last-child > span {
border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
}
.wpdevelop .pagination > li > a:hover,
.wpdevelop .pagination > li > span:hover,
.wpdevelop .pagination > li > a:focus,
.wpdevelop .pagination > li > span:focus {
z-index: 3;
color: #23527c;
background-color: #eeeeee;
border-color: #dddddd;
}
.wpdevelop .pagination > .active > a,
.wpdevelop .pagination > .active > span,
.wpdevelop .pagination > .active > a:hover,
.wpdevelop .pagination > .active > span:hover,
.wpdevelop .pagination > .active > a:focus,
.wpdevelop .pagination > .active > span:focus {
z-index: 2;
color: #ffffff;
background-color: #337ab7;
border-color: #337ab7;
cursor: default;
}
.wpdevelop .pagination > .disabled > span,
.wpdevelop .pagination > .disabled > span:hover,
.wpdevelop .pagination > .disabled > span:focus,
.wpdevelop .pagination > .disabled > a,
.wpdevelop .pagination > .disabled > a:hover,
.wpdevelop .pagination > .disabled > a:focus {
color: #777777;
background-color: #ffffff;
border-color: #dddddd;
cursor: not-allowed;
}
.wpdevelop .pagination-lg > li > a,
.wpdevelop .pagination-lg > li > span {
padding: 10px 16px;
font-size: 18px;
line-height: 1.3333333;
}
.wpdevelop .pagination-lg > li:first-child > a,
.wpdevelop .pagination-lg > li:first-child > span {
border-bottom-left-radius: 6px;
border-top-left-radius: 6px;
}
.wpdevelop .pagination-lg > li:last-child > a,
.wpdevelop .pagination-lg > li:last-child > span {
border-bottom-right-radius: 6px;
border-top-right-radius: 6px;
}
.wpdevelop .pagination-sm > li > a,
.wpdevelop .pagination-sm > li > span {
padding: 5px 10px;
font-size: 12px;
line-height: 1.5;
}
.wpdevelop .pagination-sm > li:first-child > a,
.wpdevelop .pagination-sm > li:first-child > span {
border-bottom-left-radius: 3px;
border-top-left-radius: 3px;
}
.wpdevelop .pagination-sm > li:last-child > a,
.wpdevelop .pagination-sm > li:last-child > span {
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
}
.wpdevelop .pager {
padding-left: 0;
margin: 20px 0;
list-style: none;
text-align: center;
}
.wpdevelop .pager li {
display: inline;
}
.wpdevelop .pager li > a,
.wpdevelop .pager li > span {
display: inline-block;
padding: 5px 14px;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 15px;
}
.wpdevelop .pager li > a:hover,
.wpdevelop .pager li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.wpdevelop .pager .next > a,
.wpdevelop .pager .next > span {
float: right;
}
.wpdevelop .pager .previous > a,
.wpdevelop .pager .previous > span {
float: left;
}
.wpdevelop .pager .disabled > a,
.wpdevelop .pager .disabled > a:hover,
.wpdevelop .pager .disabled > a:focus,
.wpdevelop .pager .disabled > span {
color: #777777;
background-color: #ffffff;
cursor: not-allowed;
}
.wpdevelop .label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: #ffffff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}
.wpdevelop a.label:hover,
.wpdevelop a.label:focus {
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
.wpdevelop .label:empty {
display: none;
}
.wpdevelop .btn .label {
position: relative;
top: -1px;
}
.wpdevelop .label-default {
background-color: #777777;
}
.wpdevelop .label-default[href]:hover,
.wpdevelop .label-default[href]:focus {
background-color: #5e5e5e;
}
.wpdevelop .label-primary {
background-color: #337ab7;
}
.wpdevelop .label-primary[href]:hover,
.wpdevelop .label-primary[href]:focus {
background-color: #286090;
}
.wpdevelop .label-success {
background-color: #5cb85c;
}
.wpdevelop .label-success[href]:hover,
.wpdevelop .label-success[href]:focus {
background-color: #449d44;
}
.wpdevelop .label-info {
background-color: #5bc0de;
}
.wpdevelop .label-info[href]:hover,
.wpdevelop .label-info[href]:focus {
background-color: #31b0d5;
}
.wpdevelop .label-warning {
background-color: #f0ad4e;
}
.wpdevelop .label-warning[href]:hover,
.wpdevelop .label-warning[href]:focus {
background-color: #ec971f;
}
.wpdevelop .label-danger {
background-color: #d9534f;
}
.wpdevelop .label-danger[href]:hover,
.wpdevelop .label-danger[href]:focus {
background-color: #c9302c;
}
.wpdevelop .badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: 12px;
font-weight: bold;
color: #ffffff;
line-height: 1;
vertical-align: middle;
white-space: nowrap;
text-align: center;
background-color: #777777;
border-radius: 10px;
}
.wpdevelop .badge:empty {
display: none;
}
.wpdevelop .btn .badge {
position: relative;
top: -1px;
}
.wpdevelop .btn-xs .badge,
.wpdevelop .btn-group-xs > .btn .badge {
top: 0;
padding: 1px 5px;
}
.wpdevelop a.badge:hover,
.wpdevelop a.badge:focus {
color: #ffffff;
text-decoration: none;
cursor: pointer;
}
.wpdevelop .list-group-item.active > .badge,
.wpdevelop .nav-pills > .active > a > .badge {
color: #337ab7;
background-color: #ffffff;
}
.wpdevelop .list-group-item > .badge {
float: right;
}
.wpdevelop .list-group-item > .badge + .badge {
margin-right: 5px;
}
.wpdevelop .nav-pills > li > a > .badge {
margin-left: 3px;
}
.wpdevelop .jumbotron {
padding-top: 30px;
padding-bottom: 30px;
margin-bottom: 30px;
color: inherit;
background-color: #eeeeee;
}
.wpdevelop .jumbotron h1,
.wpdevelop .jumbotron .h1 {
color: inherit;
}
.wpdevelop .jumbotron p {
margin-bottom: 15px;
font-size: 21px;
font-weight: 200;
}
.wpdevelop .jumbotron > hr {
border-top-color: #d5d5d5;
}
.wpdevelop .container .jumbotron,
.wpdevelop .container-fluid .jumbotron {
border-radius: 6px;
}
.wpdevelop .jumbotron .container {
max-width: 100%;
}
@media screen and (min-width: 768px) {
.wpdevelop .jumbotron {
padding-top: 48px;
padding-bottom: 48px;
}
.wpdevelop .container .jumbotron,
.wpdevelop .container-fluid .jumbotron {
padding-left: 60px;
padding-right: 60px;
}
.wpdevelop .jumbotron h1,
.wpdevelop .jumbotron .h1 {
font-size: 63px;
}
}
.wpdevelop .thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 4px;
-webkit-transition: border 0.2s ease-in-out;
-o-transition: border 0.2s ease-in-out;
transition: border 0.2s ease-in-out;
}
.wpdevelop .thumbnail > img,
.wpdevelop .thumbnail a > img {
margin-left: auto;
margin-right: auto;
}
.wpdevelop a.thumbnail:hover,
.wpdevelop a.thumbnail:focus,
.wpdevelop a.thumbnail.active {
border-color: #337ab7;
}
.wpdevelop .thumbnail .caption {
padding: 9px;
color: #333333;
}
.wpdevelop .alert {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.wpdevelop .alert h4 {
margin-top: 0;
color: inherit;
}
.wpdevelop .alert .alert-link {
font-weight: bold;
}
.wpdevelop .alert > p,
.wpdevelop .alert > ul {
margin-bottom: 0;
}
.wpdevelop .alert > p + p {
margin-top: 5px;
}
.wpdevelop .alert-dismissable,
.wpdevelop .alert-dismissible {
padding-right: 35px;
}
.wpdevelop .alert-dismissable .close,
.wpdevelop .alert-dismissible .close {
position: relative;
top: -2px;
right: -21px;
color: inherit;
}
.wpdevelop .alert-success {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #3c763d;
}
.wpdevelop .alert-success hr {
border-top-color: #c9e2b3;
}
.wpdevelop .alert-success .alert-link {
color: #2b542c;
}
.wpdevelop .alert-info {
background-color: #d9edf7;
border-color: #bce8f1;
color: #31708f;
}
.wpdevelop .alert-info hr {
border-top-color: #a6e1ec;
}
.wpdevelop .alert-info .alert-link {
color: #245269;
}
.wpdevelop .alert-warning {
background-color: #fcf8e3;
border-color: #faebcc;
color: #8a6d3b;
}
.wpdevelop .alert-warning hr {
border-top-color: #f7e1b5;
}
.wpdevelop .alert-warning .alert-link {
color: #66512c;
}
.wpdevelop .alert-danger {
background-color: #f2dede;
border-color: #ebccd1;
color: #a94442;
}
.wpdevelop .alert-danger hr {
border-top-color: #e4b9c0;
}
.wpdevelop .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;
}
}
.wpdevelop .progress {
overflow: hidden;
height: 20px;
margin-bottom: 20px;
background-color: #f5f5f5;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.wpdevelop .progress-bar {
float: left;
width: 0%;
height: 100%;
font-size: 12px;
line-height: 20px;
color: #ffffff;
text-align: center;
background-color: #337ab7;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-transition: width 0.6s ease;
-o-transition: width 0.6s ease;
transition: width 0.6s ease;
}
.wpdevelop .progress-striped .progress-bar,
.wpdevelop .progress-bar-striped {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
-webkit-background-size: 40px 40px;
background-size: 40px 40px;
}
.wpdevelop .progress.active .progress-bar,
.wpdevelop .progress-bar.active {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}
.wpdevelop .progress-bar-success {
background-color: #5cb85c;
}
.wpdevelop .progress-striped .progress-bar-success {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .progress-bar-info {
background-color: #5bc0de;
}
.wpdevelop .progress-striped .progress-bar-info {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .progress-bar-warning {
background-color: #f0ad4e;
}
.wpdevelop .progress-striped .progress-bar-warning {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .progress-bar-danger {
background-color: #d9534f;
}
.wpdevelop .progress-striped .progress-bar-danger {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .media {
margin-top: 15px;
}
.wpdevelop .media:first-child {
margin-top: 0;
}
.wpdevelop .media,
.wpdevelop .media-body {
zoom: 1;
overflow: hidden;
}
.wpdevelop .media-body {
width: 10000px;
}
.wpdevelop .media-object {
display: block;
}
.wpdevelop .media-object.img-thumbnail {
max-width: none;
}
.wpdevelop .media-right,
.wpdevelop .media > .pull-right {
padding-left: 10px;
}
.wpdevelop .media-left,
.wpdevelop .media > .pull-left {
padding-right: 10px;
}
.wpdevelop .media-left,
.wpdevelop .media-right,
.wpdevelop .media-body {
display: table-cell;
vertical-align: top;
}
.wpdevelop .media-middle {
vertical-align: middle;
}
.wpdevelop .media-bottom {
vertical-align: bottom;
}
.wpdevelop .media-heading {
margin-top: 0;
margin-bottom: 5px;
}
.wpdevelop .media-list {
padding-left: 0;
list-style: none;
}
.wpdevelop .list-group {
margin-bottom: 20px;
padding-left: 0;
}
.wpdevelop .list-group-item {
position: relative;
display: block;
padding: 10px 15px;
margin-bottom: -1px;
background-color: #ffffff;
border: 1px solid #dddddd;
}
.wpdevelop .list-group-item:first-child {
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}
.wpdevelop .list-group-item:last-child {
margin-bottom: 0;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.wpdevelop a.list-group-item,
.wpdevelop button.list-group-item {
color: #555555;
}
.wpdevelop a.list-group-item .list-group-item-heading,
.wpdevelop button.list-group-item .list-group-item-heading {
color: #333333;
}
.wpdevelop a.list-group-item:hover,
.wpdevelop button.list-group-item:hover,
.wpdevelop a.list-group-item:focus,
.wpdevelop button.list-group-item:focus {
text-decoration: none;
color: #555555;
background-color: #f5f5f5;
}
.wpdevelop button.list-group-item {
width: 100%;
text-align: left;
}
.wpdevelop .list-group-item.disabled,
.wpdevelop .list-group-item.disabled:hover,
.wpdevelop .list-group-item.disabled:focus {
background-color: #eeeeee;
color: #777777;
cursor: not-allowed;
}
.wpdevelop .list-group-item.disabled .list-group-item-heading,
.wpdevelop .list-group-item.disabled:hover .list-group-item-heading,
.wpdevelop .list-group-item.disabled:focus .list-group-item-heading {
color: inherit;
}
.wpdevelop .list-group-item.disabled .list-group-item-text,
.wpdevelop .list-group-item.disabled:hover .list-group-item-text,
.wpdevelop .list-group-item.disabled:focus .list-group-item-text {
color: #777777;
}
.wpdevelop .list-group-item.active,
.wpdevelop .list-group-item.active:hover,
.wpdevelop .list-group-item.active:focus {
z-index: 2;
color: #ffffff;
background-color: #337ab7;
border-color: #337ab7;
}
.wpdevelop .list-group-item.active .list-group-item-heading,
.wpdevelop .list-group-item.active:hover .list-group-item-heading,
.wpdevelop .list-group-item.active:focus .list-group-item-heading,
.wpdevelop .list-group-item.active .list-group-item-heading > small,
.wpdevelop .list-group-item.active:hover .list-group-item-heading > small,
.wpdevelop .list-group-item.active:focus .list-group-item-heading > small,
.wpdevelop .list-group-item.active .list-group-item-heading > .small,
.wpdevelop .list-group-item.active:hover .list-group-item-heading > .small,
.wpdevelop .list-group-item.active:focus .list-group-item-heading > .small {
color: inherit;
}
.wpdevelop .list-group-item.active .list-group-item-text,
.wpdevelop .list-group-item.active:hover .list-group-item-text,
.wpdevelop .list-group-item.active:focus .list-group-item-text {
color: #c7ddef;
}
.wpdevelop .list-group-item-success {
color: #3c763d;
background-color: #dff0d8;
}
.wpdevelop a.list-group-item-success,
.wpdevelop button.list-group-item-success {
color: #3c763d;
}
.wpdevelop a.list-group-item-success .list-group-item-heading,
.wpdevelop button.list-group-item-success .list-group-item-heading {
color: inherit;
}
.wpdevelop a.list-group-item-success:hover,
.wpdevelop button.list-group-item-success:hover,
.wpdevelop a.list-group-item-success:focus,
.wpdevelop button.list-group-item-success:focus {
color: #3c763d;
background-color: #d0e9c6;
}
.wpdevelop a.list-group-item-success.active,
.wpdevelop button.list-group-item-success.active,
.wpdevelop a.list-group-item-success.active:hover,
.wpdevelop button.list-group-item-success.active:hover,
.wpdevelop a.list-group-item-success.active:focus,
.wpdevelop button.list-group-item-success.active:focus {
color: #fff;
background-color: #3c763d;
border-color: #3c763d;
}
.wpdevelop .list-group-item-info {
color: #31708f;
background-color: #d9edf7;
}
.wpdevelop a.list-group-item-info,
.wpdevelop button.list-group-item-info {
color: #31708f;
}
.wpdevelop a.list-group-item-info .list-group-item-heading,
.wpdevelop button.list-group-item-info .list-group-item-heading {
color: inherit;
}
.wpdevelop a.list-group-item-info:hover,
.wpdevelop button.list-group-item-info:hover,
.wpdevelop a.list-group-item-info:focus,
.wpdevelop button.list-group-item-info:focus {
color: #31708f;
background-color: #c4e3f3;
}
.wpdevelop a.list-group-item-info.active,
.wpdevelop button.list-group-item-info.active,
.wpdevelop a.list-group-item-info.active:hover,
.wpdevelop button.list-group-item-info.active:hover,
.wpdevelop a.list-group-item-info.active:focus,
.wpdevelop button.list-group-item-info.active:focus {
color: #fff;
background-color: #31708f;
border-color: #31708f;
}
.wpdevelop .list-group-item-warning {
color: #8a6d3b;
background-color: #fcf8e3;
}
.wpdevelop a.list-group-item-warning,
.wpdevelop button.list-group-item-warning {
color: #8a6d3b;
}
.wpdevelop a.list-group-item-warning .list-group-item-heading,
.wpdevelop button.list-group-item-warning .list-group-item-heading {
color: inherit;
}
.wpdevelop a.list-group-item-warning:hover,
.wpdevelop button.list-group-item-warning:hover,
.wpdevelop a.list-group-item-warning:focus,
.wpdevelop button.list-group-item-warning:focus {
color: #8a6d3b;
background-color: #faf2cc;
}
.wpdevelop a.list-group-item-warning.active,
.wpdevelop button.list-group-item-warning.active,
.wpdevelop a.list-group-item-warning.active:hover,
.wpdevelop button.list-group-item-warning.active:hover,
.wpdevelop a.list-group-item-warning.active:focus,
.wpdevelop button.list-group-item-warning.active:focus {
color: #fff;
background-color: #8a6d3b;
border-color: #8a6d3b;
}
.wpdevelop .list-group-item-danger {
color: #a94442;
background-color: #f2dede;
}
.wpdevelop a.list-group-item-danger,
.wpdevelop button.list-group-item-danger {
color: #a94442;
}
.wpdevelop a.list-group-item-danger .list-group-item-heading,
.wpdevelop button.list-group-item-danger .list-group-item-heading {
color: inherit;
}
.wpdevelop a.list-group-item-danger:hover,
.wpdevelop button.list-group-item-danger:hover,
.wpdevelop a.list-group-item-danger:focus,
.wpdevelop button.list-group-item-danger:focus {
color: #a94442;
background-color: #ebcccc;
}
.wpdevelop a.list-group-item-danger.active,
.wpdevelop button.list-group-item-danger.active,
.wpdevelop a.list-group-item-danger.active:hover,
.wpdevelop button.list-group-item-danger.active:hover,
.wpdevelop a.list-group-item-danger.active:focus,
.wpdevelop button.list-group-item-danger.active:focus {
color: #fff;
background-color: #a94442;
border-color: #a94442;
}
.wpdevelop .list-group-item-heading {
margin-top: 0;
margin-bottom: 5px;
}
.wpdevelop .list-group-item-text {
margin-bottom: 0;
line-height: 1.3;
}
.wpdevelop .panel {
margin-bottom: 20px;
background-color: #ffffff;
border: 1px solid transparent;
border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.wpdevelop .panel-body {
padding: 15px;
}
.wpdevelop .panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.wpdevelop .panel-heading > .dropdown .dropdown-toggle {
color: inherit;
}
.wpdevelop .panel-title {
margin-top: 0;
margin-bottom: 0;
font-size: 16px;
color: inherit;
}
.wpdevelop .panel-title > a,
.wpdevelop .panel-title > small,
.wpdevelop .panel-title > .small,
.wpdevelop .panel-title > small > a,
.wpdevelop .panel-title > .small > a {
color: inherit;
}
.wpdevelop .panel-footer {
padding: 10px 15px;
background-color: #f5f5f5;
border-top: 1px solid #dddddd;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.wpdevelop .panel > .list-group,
.wpdevelop .panel > .panel-collapse > .list-group {
margin-bottom: 0;
}
.wpdevelop .panel > .list-group .list-group-item,
.wpdevelop .panel > .panel-collapse > .list-group .list-group-item {
border-width: 1px 0;
border-radius: 0;
}
.wpdevelop .panel > .list-group:first-child .list-group-item:first-child,
.wpdevelop .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
border-top: 0;
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.wpdevelop .panel > .list-group:last-child .list-group-item:last-child,
.wpdevelop .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;
}
.wpdevelop .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.wpdevelop .panel-heading + .list-group .list-group-item:first-child {
border-top-width: 0;
}
.wpdevelop .list-group + .panel-footer {
border-top-width: 0;
}
.wpdevelop .panel > .table,
.wpdevelop .panel > .table-responsive > .table,
.wpdevelop .panel > .panel-collapse > .table {
margin-bottom: 0;
}
.wpdevelop .panel > .table caption,
.wpdevelop .panel > .table-responsive > .table caption,
.wpdevelop .panel > .panel-collapse > .table caption {
padding-left: 15px;
padding-right: 15px;
}
.wpdevelop .panel > .table:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child {
border-top-right-radius: 3px;
border-top-left-radius: 3px;
}
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
border-top-left-radius: 3px;
}
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.wpdevelop .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.wpdevelop .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.wpdevelop .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
border-top-right-radius: 3px;
}
.wpdevelop .panel > .table:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
border-bottom-left-radius: 3px;
}
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.wpdevelop .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.wpdevelop .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.wpdevelop .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
border-bottom-right-radius: 3px;
}
.wpdevelop .panel > .panel-body + .table,
.wpdevelop .panel > .panel-body + .table-responsive,
.wpdevelop .panel > .table + .panel-body,
.wpdevelop .panel > .table-responsive + .panel-body {
border-top: 1px solid #dddddd;
}
.wpdevelop .panel > .table > tbody:first-child > tr:first-child th,
.wpdevelop .panel > .table > tbody:first-child > tr:first-child td {
border-top: 0;
}
.wpdevelop .panel > .table-bordered,
.wpdevelop .panel > .table-responsive > .table-bordered {
border: 0;
}
.wpdevelop .panel > .table-bordered > thead > tr > th:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.wpdevelop .panel > .table-bordered > tbody > tr > th:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.wpdevelop .panel > .table-bordered > tfoot > tr > th:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.wpdevelop .panel > .table-bordered > thead > tr > td:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.wpdevelop .panel > .table-bordered > tbody > tr > td:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.wpdevelop .panel > .table-bordered > tfoot > tr > td:first-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.wpdevelop .panel > .table-bordered > thead > tr > th:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.wpdevelop .panel > .table-bordered > tbody > tr > th:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.wpdevelop .panel > .table-bordered > tfoot > tr > th:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.wpdevelop .panel > .table-bordered > thead > tr > td:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.wpdevelop .panel > .table-bordered > tbody > tr > td:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.wpdevelop .panel > .table-bordered > tfoot > tr > td:last-child,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.wpdevelop .panel > .table-bordered > thead > tr:first-child > td,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.wpdevelop .panel > .table-bordered > tbody > tr:first-child > td,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.wpdevelop .panel > .table-bordered > thead > tr:first-child > th,
.wpdevelop .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.wpdevelop .panel > .table-bordered > tbody > tr:first-child > th,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
border-bottom: 0;
}
.wpdevelop .panel > .table-bordered > tbody > tr:last-child > td,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.wpdevelop .panel > .table-bordered > tfoot > tr:last-child > td,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.wpdevelop .panel > .table-bordered > tbody > tr:last-child > th,
.wpdevelop .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.wpdevelop .panel > .table-bordered > tfoot > tr:last-child > th,
.wpdevelop .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
border-bottom: 0;
}
.wpdevelop .panel > .table-responsive {
border: 0;
margin-bottom: 0;
}
.wpdevelop .panel-group {
margin-bottom: 20px;
}
.wpdevelop .panel-group .panel {
margin-bottom: 0;
border-radius: 4px;
}
.wpdevelop .panel-group .panel + .panel {
margin-top: 5px;
}
.wpdevelop .panel-group .panel-heading {
border-bottom: 0;
}
.wpdevelop .panel-group .panel-heading + .panel-collapse > .panel-body,
.wpdevelop .panel-group .panel-heading + .panel-collapse > .list-group {
border-top: 1px solid #dddddd;
}
.wpdevelop .panel-group .panel-footer {
border-top: 0;
}
.wpdevelop .panel-group .panel-footer + .panel-collapse .panel-body {
border-bottom: 1px solid #dddddd;
}
.wpdevelop .panel-default {
border-color: #dddddd;
}
.wpdevelop .panel-default > .panel-heading {
color: #333333;
background-color: #f5f5f5;
border-color: #dddddd;
}
.wpdevelop .panel-default > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #dddddd;
}
.wpdevelop .panel-default > .panel-heading .badge {
color: #f5f5f5;
background-color: #333333;
}
.wpdevelop .panel-default > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #dddddd;
}
.wpdevelop .panel-primary {
border-color: #337ab7;
}
.wpdevelop .panel-primary > .panel-heading {
color: #ffffff;
background-color: #337ab7;
border-color: #337ab7;
}
.wpdevelop .panel-primary > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #337ab7;
}
.wpdevelop .panel-primary > .panel-heading .badge {
color: #337ab7;
background-color: #ffffff;
}
.wpdevelop .panel-primary > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #337ab7;
}
.wpdevelop .panel-success {
border-color: #d6e9c6;
}
.wpdevelop .panel-success > .panel-heading {
color: #3c763d;
background-color: #dff0d8;
border-color: #d6e9c6;
}
.wpdevelop .panel-success > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #d6e9c6;
}
.wpdevelop .panel-success > .panel-heading .badge {
color: #dff0d8;
background-color: #3c763d;
}
.wpdevelop .panel-success > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #d6e9c6;
}
.wpdevelop .panel-info {
border-color: #bce8f1;
}
.wpdevelop .panel-info > .panel-heading {
color: #31708f;
background-color: #d9edf7;
border-color: #bce8f1;
}
.wpdevelop .panel-info > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #bce8f1;
}
.wpdevelop .panel-info > .panel-heading .badge {
color: #d9edf7;
background-color: #31708f;
}
.wpdevelop .panel-info > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #bce8f1;
}
.wpdevelop .panel-warning {
border-color: #faebcc;
}
.wpdevelop .panel-warning > .panel-heading {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.wpdevelop .panel-warning > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #faebcc;
}
.wpdevelop .panel-warning > .panel-heading .badge {
color: #fcf8e3;
background-color: #8a6d3b;
}
.wpdevelop .panel-warning > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #faebcc;
}
.wpdevelop .panel-danger {
border-color: #ebccd1;
}
.wpdevelop .panel-danger > .panel-heading {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.wpdevelop .panel-danger > .panel-heading + .panel-collapse > .panel-body {
border-top-color: #ebccd1;
}
.wpdevelop .panel-danger > .panel-heading .badge {
color: #f2dede;
background-color: #a94442;
}
.wpdevelop .panel-danger > .panel-footer + .panel-collapse > .panel-body {
border-bottom-color: #ebccd1;
}
.wpdevelop .embed-responsive {
position: relative;
display: block;
height: 0;
padding: 0;
overflow: hidden;
}
.wpdevelop .embed-responsive .embed-responsive-item,
.wpdevelop .embed-responsive iframe,
.wpdevelop .embed-responsive embed,
.wpdevelop .embed-responsive object,
.wpdevelop .embed-responsive video {
position: absolute;
top: 0;
left: 0;
bottom: 0;
height: 100%;
width: 100%;
border: 0;
}
.wpdevelop .embed-responsive-16by9 {
padding-bottom: 56.25%;
}
.wpdevelop .embed-responsive-4by3 {
padding-bottom: 75%;
}
.wpdevelop .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, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.wpdevelop .well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15);
}
.wpdevelop .well-lg {
padding: 24px;
border-radius: 6px;
}
.wpdevelop .well-sm {
padding: 9px;
border-radius: 3px;
}
.wpdevelop .close {
float: right;
font-size: 21px;
font-weight: bold;
line-height: 1;
color: #000000;
text-shadow: 0 1px 0 #ffffff;
opacity: 0.2;
filter: alpha(opacity=20);
}
.wpdevelop .close:hover,
.wpdevelop .close:focus {
color: #000000;
text-decoration: none;
cursor: pointer;
opacity: 0.5;
filter: alpha(opacity=50);
}
.wpdevelop button.close {
padding: 0;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
}
.wpdevelop .modal-open {
overflow: hidden;
}
.wpdevelop .modal {
display: none;
overflow: hidden;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1050;
-webkit-overflow-scrolling: touch;
outline: 0;
}
.wpdevelop .modal.fade .modal-dialog {
-webkit-transform: translate(0, -25%);
-ms-transform: translate(0, -25%);
-o-transform: translate(0, -25%);
transform: translate(0, -25%);
-webkit-transition: -webkit-transform 0.3s ease-out;
-o-transition: -o-transform 0.3s ease-out;
transition: transform 0.3s ease-out;
}
.wpdevelop .modal.in .modal-dialog {
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
-o-transform: translate(0, 0);
transform: translate(0, 0);
}
.wpdevelop .modal-open .modal {
overflow-x: hidden;
overflow-y: auto;
}
.wpdevelop .modal-dialog {
position: relative;
width: auto;
margin: 10px;
}
.wpdevelop .modal-content {
position: relative;
background-color: #ffffff;
border: 1px solid #999999;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
-webkit-background-clip: padding-box;
background-clip: padding-box;
outline: 0;
}
.wpdevelop .modal-backdrop {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
background-color: #000000;
}
.wpdevelop .modal-backdrop.fade {
opacity: 0;
filter: alpha(opacity=0);
}
.wpdevelop .modal-backdrop.in {
opacity: 0.5;
filter: alpha(opacity=50);
}
.wpdevelop .modal-header {
padding: 15px;
border-bottom: 1px solid #e5e5e5;
min-height: 16.42857143px;
}
.wpdevelop .modal-header .close {
margin-top: -2px;
}
.wpdevelop .modal-title {
margin: 0;
line-height: 1.42857143;
}
.wpdevelop .modal-body {
position: relative;
padding: 15px;
}
.wpdevelop .modal-footer {
padding: 15px;
text-align: right;
border-top: 1px solid #e5e5e5;
}
.wpdevelop .modal-footer .btn + .btn {
margin-left: 5px;
margin-bottom: 0;
}
.wpdevelop .modal-footer .btn-group .btn + .btn {
margin-left: -1px;
}
.wpdevelop .modal-footer .btn-block + .btn-block {
margin-left: 0;
}
.wpdevelop .modal-scrollbar-measure {
position: absolute;
top: -9999px;
width: 50px;
height: 50px;
overflow: scroll;
}
@media (min-width: 768px) {
.wpdevelop .modal-dialog {
width: 600px;
margin: 30px auto;
}
.wpdevelop .modal-content {
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.wpdevelop .modal-sm {
width: 300px;
}
}
@media (min-width: 992px) {
.wpdevelop .modal-lg {
width: 900px;
}
}
.wpdevelop .tooltip {
position: absolute;
z-index: 1070;
display: block;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 12px;
opacity: 0;
filter: alpha(opacity=0);
}
.wpdevelop .tooltip.in {
opacity: 0.9;
filter: alpha(opacity=90);
}
.wpdevelop .tooltip.top {
margin-top: -3px;
padding: 5px 0;
}
.wpdevelop .tooltip.right {
margin-left: 3px;
padding: 0 5px;
}
.wpdevelop .tooltip.bottom {
margin-top: 3px;
padding: 5px 0;
}
.wpdevelop .tooltip.left {
margin-left: -3px;
padding: 0 5px;
}
.wpdevelop .tooltip-inner {
max-width: 200px;
padding: 3px 8px;
color: #ffffff;
text-align: center;
background-color: #000000;
border-radius: 4px;
}
.wpdevelop .tooltip-arrow {
position: absolute;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.wpdevelop .tooltip.top .tooltip-arrow {
bottom: 0;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #000000;
}
.wpdevelop .tooltip.top-left .tooltip-arrow {
bottom: 0;
right: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000000;
}
.wpdevelop .tooltip.top-right .tooltip-arrow {
bottom: 0;
left: 5px;
margin-bottom: -5px;
border-width: 5px 5px 0;
border-top-color: #000000;
}
.wpdevelop .tooltip.right .tooltip-arrow {
top: 50%;
left: 0;
margin-top: -5px;
border-width: 5px 5px 5px 0;
border-right-color: #000000;
}
.wpdevelop .tooltip.left .tooltip-arrow {
top: 50%;
right: 0;
margin-top: -5px;
border-width: 5px 0 5px 5px;
border-left-color: #000000;
}
.wpdevelop .tooltip.bottom .tooltip-arrow {
top: 0;
left: 50%;
margin-left: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000000;
}
.wpdevelop .tooltip.bottom-left .tooltip-arrow {
top: 0;
right: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000000;
}
.wpdevelop .tooltip.bottom-right .tooltip-arrow {
top: 0;
left: 5px;
margin-top: -5px;
border-width: 0 5px 5px;
border-bottom-color: #000000;
}
.wpdevelop .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-style: normal;
font-weight: normal;
letter-spacing: normal;
line-break: auto;
line-height: 1.42857143;
text-align: left;
text-align: start;
text-decoration: none;
text-shadow: none;
text-transform: none;
white-space: normal;
word-break: normal;
word-spacing: normal;
word-wrap: normal;
font-size: 14px;
background-color: #ffffff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #cccccc;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.wpdevelop .popover.top {
margin-top: -10px;
}
.wpdevelop .popover.right {
margin-left: 10px;
}
.wpdevelop .popover.bottom {
margin-top: 10px;
}
.wpdevelop .popover.left {
margin-left: -10px;
}
.wpdevelop .popover-title {
margin: 0;
padding: 8px 14px;
font-size: 14px;
background-color: #f7f7f7;
border-bottom: 1px solid #ebebeb;
border-radius: 5px 5px 0 0;
}
.wpdevelop .popover-content {
padding: 9px 14px;
}
.wpdevelop .popover > .arrow,
.wpdevelop .popover > .arrow:after {
position: absolute;
display: block;
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
}
.wpdevelop .popover > .arrow {
border-width: 11px;
}
.wpdevelop .popover > .arrow:after {
border-width: 10px;
content: "";
}
.wpdevelop .popover.top > .arrow {
left: 50%;
margin-left: -11px;
border-bottom-width: 0;
border-top-color: #999999;
border-top-color: rgba(0, 0, 0, 0.25);
bottom: -11px;
}
.wpdevelop .popover.top > .arrow:after {
content: " ";
bottom: 1px;
margin-left: -10px;
border-bottom-width: 0;
border-top-color: #ffffff;
}
.wpdevelop .popover.right > .arrow {
top: 50%;
left: -11px;
margin-top: -11px;
border-left-width: 0;
border-right-color: #999999;
border-right-color: rgba(0, 0, 0, 0.25);
}
.wpdevelop .popover.right > .arrow:after {
content: " ";
left: 1px;
bottom: -10px;
border-left-width: 0;
border-right-color: #ffffff;
}
.wpdevelop .popover.bottom > .arrow {
left: 50%;
margin-left: -11px;
border-top-width: 0;
border-bottom-color: #999999;
border-bottom-color: rgba(0, 0, 0, 0.25);
top: -11px;
}
.wpdevelop .popover.bottom > .arrow:after {
content: " ";
top: 1px;
margin-left: -10px;
border-top-width: 0;
border-bottom-color: #ffffff;
}
.wpdevelop .popover.left > .arrow {
top: 50%;
right: -11px;
margin-top: -11px;
border-right-width: 0;
border-left-color: #999999;
border-left-color: rgba(0, 0, 0, 0.25);
}
.wpdevelop .popover.left > .arrow:after {
content: " ";
right: 1px;
border-right-width: 0;
border-left-color: #ffffff;
bottom: -10px;
}
.wpdevelop .carousel {
position: relative;
}
.wpdevelop .carousel-inner {
position: relative;
overflow: hidden;
width: 100%;
}
.wpdevelop .carousel-inner > .item {
display: none;
position: relative;
-webkit-transition: 0.6s ease-in-out left;
-o-transition: 0.6s ease-in-out left;
transition: 0.6s ease-in-out left;
}
.wpdevelop .carousel-inner > .item > img,
.wpdevelop .carousel-inner > .item > a > img {
line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
.wpdevelop .carousel-inner > .item {
-webkit-transition: -webkit-transform 0.6s ease-in-out;
-o-transition: -o-transform 0.6s ease-in-out;
transition: transform 0.6s ease-in-out;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.wpdevelop .carousel-inner > .item.next,
.wpdevelop .carousel-inner > .item.active.right {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
left: 0;
}
.wpdevelop .carousel-inner > .item.prev,
.wpdevelop .carousel-inner > .item.active.left {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
left: 0;
}
.wpdevelop .carousel-inner > .item.next.left,
.wpdevelop .carousel-inner > .item.prev.right,
.wpdevelop .carousel-inner > .item.active {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
left: 0;
}
}
.wpdevelop .carousel-inner > .active,
.wpdevelop .carousel-inner > .next,
.wpdevelop .carousel-inner > .prev {
display: block;
}
.wpdevelop .carousel-inner > .active {
left: 0;
}
.wpdevelop .carousel-inner > .next,
.wpdevelop .carousel-inner > .prev {
position: absolute;
top: 0;
width: 100%;
}
.wpdevelop .carousel-inner > .next {
left: 100%;
}
.wpdevelop .carousel-inner > .prev {
left: -100%;
}
.wpdevelop .carousel-inner > .next.left,
.wpdevelop .carousel-inner > .prev.right {
left: 0;
}
.wpdevelop .carousel-inner > .active.left {
left: -100%;
}
.wpdevelop .carousel-inner > .active.right {
left: 100%;
}
.wpdevelop .carousel-control {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: 15%;
opacity: 0.5;
filter: alpha(opacity=50);
font-size: 20px;
color: #ffffff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.wpdevelop .carousel-control.left {
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.wpdevelop .carousel-control.right {
left: auto;
right: 0;
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.wpdevelop .carousel-control:hover,
.wpdevelop .carousel-control:focus {
outline: 0;
color: #ffffff;
text-decoration: none;
opacity: 0.9;
filter: alpha(opacity=90);
}
.wpdevelop .carousel-control .icon-prev,
.wpdevelop .carousel-control .icon-next,
.wpdevelop .carousel-control .glyphicon-chevron-left,
.wpdevelop .carousel-control .glyphicon-chevron-right {
position: absolute;
top: 50%;
margin-top: -10px;
z-index: 5;
display: inline-block;
}
.wpdevelop .carousel-control .icon-prev,
.wpdevelop .carousel-control .glyphicon-chevron-left {
left: 50%;
margin-left: -10px;
}
.wpdevelop .carousel-control .icon-next,
.wpdevelop .carousel-control .glyphicon-chevron-right {
right: 50%;
margin-right: -10px;
}
.wpdevelop .carousel-control .icon-prev,
.wpdevelop .carousel-control .icon-next {
width: 20px;
height: 20px;
line-height: 1;
font-family: serif;
}
.wpdevelop .carousel-control .icon-prev:before {
content: '\2039';
}
.wpdevelop .carousel-control .icon-next:before {
content: '\203a';
}
.wpdevelop .carousel-indicators {
position: absolute;
bottom: 10px;
left: 50%;
z-index: 15;
width: 60%;
margin-left: -30%;
padding-left: 0;
list-style: none;
text-align: center;
}
.wpdevelop .carousel-indicators li {
display: inline-block;
width: 10px;
height: 10px;
margin: 1px;
text-indent: -999px;
border: 1px solid #ffffff;
border-radius: 10px;
cursor: pointer;
background-color: #000 \9;
background-color: transparent;
}
.wpdevelop .carousel-indicators .active {
margin: 0;
width: 12px;
height: 12px;
background-color: #ffffff;
}
.wpdevelop .carousel-caption {
position: absolute;
left: 15%;
right: 15%;
bottom: 20px;
z-index: 10;
padding-top: 20px;
padding-bottom: 20px;
color: #ffffff;
text-align: center;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.wpdevelop .carousel-caption .btn {
text-shadow: none;
}
@media screen and (min-width: 768px) {
.wpdevelop .carousel-control .glyphicon-chevron-left,
.wpdevelop .carousel-control .glyphicon-chevron-right,
.wpdevelop .carousel-control .icon-prev,
.wpdevelop .carousel-control .icon-next {
width: 30px;
height: 30px;
margin-top: -15px;
font-size: 30px;
}
.wpdevelop .carousel-control .glyphicon-chevron-left,
.wpdevelop .carousel-control .icon-prev {
margin-left: -15px;
}
.wpdevelop .carousel-control .glyphicon-chevron-right,
.wpdevelop .carousel-control .icon-next {
margin-right: -15px;
}
.wpdevelop .carousel-caption {
left: 20%;
right: 20%;
padding-bottom: 30px;
}
.wpdevelop .carousel-indicators {
bottom: 20px;
}
}
.wpdevelop .clearfix:before,
.wpdevelop .clearfix:after,
.wpdevelop .dl-horizontal dd:before,
.wpdevelop .dl-horizontal dd:after,
.wpdevelop .container:before,
.wpdevelop .container:after,
.wpdevelop .container-fluid:before,
.wpdevelop .container-fluid:after,
.wpdevelop .row:before,
.wpdevelop .row:after,
.wpdevelop .form-horizontal .form-group:before,
.wpdevelop .form-horizontal .form-group:after,
.wpdevelop .btn-toolbar:before,
.wpdevelop .btn-toolbar:after,
.wpdevelop .btn-group-vertical > .btn-group:before,
.wpdevelop .btn-group-vertical > .btn-group:after,
.wpdevelop .nav:before,
.wpdevelop .nav:after,
.wpdevelop .navbar:before,
.wpdevelop .navbar:after,
.wpdevelop .navbar-header:before,
.wpdevelop .navbar-header:after,
.wpdevelop .navbar-collapse:before,
.wpdevelop .navbar-collapse:after,
.wpdevelop .pager:before,
.wpdevelop .pager:after,
.wpdevelop .panel-body:before,
.wpdevelop .panel-body:after,
.wpdevelop .modal-footer:before,
.wpdevelop .modal-footer:after {
content: " ";
display: table;
}
.wpdevelop .clearfix:after,
.wpdevelop .dl-horizontal dd:after,
.wpdevelop .container:after,
.wpdevelop .container-fluid:after,
.wpdevelop .row:after,
.wpdevelop .form-horizontal .form-group:after,
.wpdevelop .btn-toolbar:after,
.wpdevelop .btn-group-vertical > .btn-group:after,
.wpdevelop .nav:after,
.wpdevelop .navbar:after,
.wpdevelop .navbar-header:after,
.wpdevelop .navbar-collapse:after,
.wpdevelop .pager:after,
.wpdevelop .panel-body:after,
.wpdevelop .modal-footer:after {
clear: both;
}
.wpdevelop .center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
.wpdevelop .pull-right {
float: right !important;
}
.wpdevelop .pull-left {
float: left !important;
}
.wpdevelop .hide {
display: none !important;
}
.wpdevelop .show {
display: block !important;
}
.wpdevelop .invisible {
visibility: hidden;
}
.wpdevelop .text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.wpdevelop .hidden {
display: none !important;
}
.wpdevelop .affix {
position: fixed;
}
@-ms-viewport {
.wpdevelop {
width: device-width;
}
}
.wpdevelop .visible-xs,
.wpdevelop .visible-sm,
.wpdevelop .visible-md,
.wpdevelop .visible-lg {
display: none !important;
}
.wpdevelop .visible-xs-block,
.wpdevelop .visible-xs-inline,
.wpdevelop .visible-xs-inline-block,
.wpdevelop .visible-sm-block,
.wpdevelop .visible-sm-inline,
.wpdevelop .visible-sm-inline-block,
.wpdevelop .visible-md-block,
.wpdevelop .visible-md-inline,
.wpdevelop .visible-md-inline-block,
.wpdevelop .visible-lg-block,
.wpdevelop .visible-lg-inline,
.wpdevelop .visible-lg-inline-block {
display: none !important;
}
@media (max-width: 767px) {
.wpdevelop .visible-xs {
display: block !important;
}
.wpdevelop table.visible-xs {
display: table !important;
}
.wpdevelop tr.visible-xs {
display: table-row !important;
}
.wpdevelop th.visible-xs,
.wpdevelop td.visible-xs {
display: table-cell !important;
}
}
@media (max-width: 767px) {
.wpdevelop .visible-xs-block {
display: block !important;
}
}
@media (max-width: 767px) {
.wpdevelop .visible-xs-inline {
display: inline !important;
}
}
@media (max-width: 767px) {
.wpdevelop .visible-xs-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.wpdevelop .visible-sm {
display: block !important;
}
.wpdevelop table.visible-sm {
display: table !important;
}
.wpdevelop tr.visible-sm {
display: table-row !important;
}
.wpdevelop th.visible-sm,
.wpdevelop td.visible-sm {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.wpdevelop .visible-sm-block {
display: block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.wpdevelop .visible-sm-inline {
display: inline !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.wpdevelop .visible-sm-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.wpdevelop .visible-md {
display: block !important;
}
.wpdevelop table.visible-md {
display: table !important;
}
.wpdevelop tr.visible-md {
display: table-row !important;
}
.wpdevelop th.visible-md,
.wpdevelop td.visible-md {
display: table-cell !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.wpdevelop .visible-md-block {
display: block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.wpdevelop .visible-md-inline {
display: inline !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.wpdevelop .visible-md-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
.wpdevelop .visible-lg {
display: block !important;
}
.wpdevelop table.visible-lg {
display: table !important;
}
.wpdevelop tr.visible-lg {
display: table-row !important;
}
.wpdevelop th.visible-lg,
.wpdevelop td.visible-lg {
display: table-cell !important;
}
}
@media (min-width: 1200px) {
.wpdevelop .visible-lg-block {
display: block !important;
}
}
@media (min-width: 1200px) {
.wpdevelop .visible-lg-inline {
display: inline !important;
}
}
@media (min-width: 1200px) {
.wpdevelop .visible-lg-inline-block {
display: inline-block !important;
}
}
@media (max-width: 767px) {
.wpdevelop .hidden-xs {
display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.wpdevelop .hidden-sm {
display: none !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.wpdevelop .hidden-md {
display: none !important;
}
}
@media (min-width: 1200px) {
.wpdevelop .hidden-lg {
display: none !important;
}
}
.wpdevelop .visible-print {
display: none !important;
}
@media print {
.wpdevelop .visible-print {
display: block !important;
}
.wpdevelop table.visible-print {
display: table !important;
}
.wpdevelop tr.visible-print {
display: table-row !important;
}
.wpdevelop th.visible-print,
.wpdevelop td.visible-print {
display: table-cell !important;
}
}
.wpdevelop .visible-print-block {
display: none !important;
}
@media print {
.wpdevelop .visible-print-block {
display: block !important;
}
}
.wpdevelop .visible-print-inline {
display: none !important;
}
@media print {
.wpdevelop .visible-print-inline {
display: inline !important;
}
}
.wpdevelop .visible-print-inline-block {
display: none !important;
}
@media print {
.wpdevelop .visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
.wpdevelop .hidden-print {
display: none !important;
}
}.wpdevelop .btn-default,
.wpdevelop .btn-primary,
.wpdevelop .btn-success,
.wpdevelop .btn-info,
.wpdevelop .btn-warning,
.wpdevelop .btn-danger {
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.wpdevelop .btn-default:active,
.wpdevelop .btn-primary:active,
.wpdevelop .btn-success:active,
.wpdevelop .btn-info:active,
.wpdevelop .btn-warning:active,
.wpdevelop .btn-danger:active,
.wpdevelop .btn-default.active,
.wpdevelop .btn-primary.active,
.wpdevelop .btn-success.active,
.wpdevelop .btn-info.active,
.wpdevelop .btn-warning.active,
.wpdevelop .btn-danger.active {
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.wpdevelop .btn-default.disabled,
.wpdevelop .btn-primary.disabled,
.wpdevelop .btn-success.disabled,
.wpdevelop .btn-info.disabled,
.wpdevelop .btn-warning.disabled,
.wpdevelop .btn-danger.disabled,
.wpdevelop .btn-default[disabled],
.wpdevelop .btn-primary[disabled],
.wpdevelop .btn-success[disabled],
.wpdevelop .btn-info[disabled],
.wpdevelop .btn-warning[disabled],
.wpdevelop .btn-danger[disabled],
.wpdevelop fieldset[disabled] .btn-default,
.wpdevelop fieldset[disabled] .btn-primary,
.wpdevelop fieldset[disabled] .btn-success,
.wpdevelop fieldset[disabled] .btn-info,
.wpdevelop fieldset[disabled] .btn-warning,
.wpdevelop fieldset[disabled] .btn-danger {
-webkit-box-shadow: none;
box-shadow: none;
}
.wpdevelop .btn-default .badge,
.wpdevelop .btn-primary .badge,
.wpdevelop .btn-success .badge,
.wpdevelop .btn-info .badge,
.wpdevelop .btn-warning .badge,
.wpdevelop .btn-danger .badge {
text-shadow: none;
}
.wpdevelop .btn:active,
.wpdevelop .btn.active {
background-image: none;
}
.wpdevelop .btn-default {
background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e0e0e0));
background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #dbdbdb;
text-shadow: 0 1px 0 #fff;
border-color: #ccc;
}
.wpdevelop .btn-default:hover,
.wpdevelop .btn-default:focus {
background-color: #e0e0e0;
background-position: 0 -15px;
}
.wpdevelop .btn-default:active,
.wpdevelop .btn-default.active {
background-color: #e0e0e0;
border-color: #dbdbdb;
}
.wpdevelop .btn-default.disabled,
.wpdevelop .btn-default[disabled],
.wpdevelop fieldset[disabled] .btn-default,
.wpdevelop .btn-default.disabled:hover,
.wpdevelop .btn-default[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-default:hover,
.wpdevelop .btn-default.disabled:focus,
.wpdevelop .btn-default[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-default:focus,
.wpdevelop .btn-default.disabled.focus,
.wpdevelop .btn-default[disabled].focus,
.wpdevelop fieldset[disabled] .btn-default.focus,
.wpdevelop .btn-default.disabled:active,
.wpdevelop .btn-default[disabled]:active,
.wpdevelop fieldset[disabled] .btn-default:active,
.wpdevelop .btn-default.disabled.active,
.wpdevelop .btn-default[disabled].active,
.wpdevelop fieldset[disabled] .btn-default.active {
background-color: #e0e0e0;
background-image: none;
}
.wpdevelop .btn-primary {
background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #245580;
}
.wpdevelop .btn-primary:hover,
.wpdevelop .btn-primary:focus {
background-color: #265a88;
background-position: 0 -15px;
}
.wpdevelop .btn-primary:active,
.wpdevelop .btn-primary.active {
background-color: #265a88;
border-color: #245580;
}
.wpdevelop .btn-primary.disabled,
.wpdevelop .btn-primary[disabled],
.wpdevelop fieldset[disabled] .btn-primary,
.wpdevelop .btn-primary.disabled:hover,
.wpdevelop .btn-primary[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-primary:hover,
.wpdevelop .btn-primary.disabled:focus,
.wpdevelop .btn-primary[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-primary:focus,
.wpdevelop .btn-primary.disabled.focus,
.wpdevelop .btn-primary[disabled].focus,
.wpdevelop fieldset[disabled] .btn-primary.focus,
.wpdevelop .btn-primary.disabled:active,
.wpdevelop .btn-primary[disabled]:active,
.wpdevelop fieldset[disabled] .btn-primary:active,
.wpdevelop .btn-primary.disabled.active,
.wpdevelop .btn-primary[disabled].active,
.wpdevelop fieldset[disabled] .btn-primary.active {
background-color: #265a88;
background-image: none;
}
.wpdevelop .btn-success {
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #3e8f3e;
}
.wpdevelop .btn-success:hover,
.wpdevelop .btn-success:focus {
background-color: #419641;
background-position: 0 -15px;
}
.wpdevelop .btn-success:active,
.wpdevelop .btn-success.active {
background-color: #419641;
border-color: #3e8f3e;
}
.wpdevelop .btn-success.disabled,
.wpdevelop .btn-success[disabled],
.wpdevelop fieldset[disabled] .btn-success,
.wpdevelop .btn-success.disabled:hover,
.wpdevelop .btn-success[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-success:hover,
.wpdevelop .btn-success.disabled:focus,
.wpdevelop .btn-success[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-success:focus,
.wpdevelop .btn-success.disabled.focus,
.wpdevelop .btn-success[disabled].focus,
.wpdevelop fieldset[disabled] .btn-success.focus,
.wpdevelop .btn-success.disabled:active,
.wpdevelop .btn-success[disabled]:active,
.wpdevelop fieldset[disabled] .btn-success:active,
.wpdevelop .btn-success.disabled.active,
.wpdevelop .btn-success[disabled].active,
.wpdevelop fieldset[disabled] .btn-success.active {
background-color: #419641;
background-image: none;
}
.wpdevelop .btn-info {
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #28a4c9;
}
.wpdevelop .btn-info:hover,
.wpdevelop .btn-info:focus {
background-color: #2aabd2;
background-position: 0 -15px;
}
.wpdevelop .btn-info:active,
.wpdevelop .btn-info.active {
background-color: #2aabd2;
border-color: #28a4c9;
}
.wpdevelop .btn-info.disabled,
.wpdevelop .btn-info[disabled],
.wpdevelop fieldset[disabled] .btn-info,
.wpdevelop .btn-info.disabled:hover,
.wpdevelop .btn-info[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-info:hover,
.wpdevelop .btn-info.disabled:focus,
.wpdevelop .btn-info[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-info:focus,
.wpdevelop .btn-info.disabled.focus,
.wpdevelop .btn-info[disabled].focus,
.wpdevelop fieldset[disabled] .btn-info.focus,
.wpdevelop .btn-info.disabled:active,
.wpdevelop .btn-info[disabled]:active,
.wpdevelop fieldset[disabled] .btn-info:active,
.wpdevelop .btn-info.disabled.active,
.wpdevelop .btn-info[disabled].active,
.wpdevelop fieldset[disabled] .btn-info.active {
background-color: #2aabd2;
background-image: none;
}
.wpdevelop .btn-warning {
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #e38d13;
}
.wpdevelop .btn-warning:hover,
.wpdevelop .btn-warning:focus {
background-color: #eb9316;
background-position: 0 -15px;
}
.wpdevelop .btn-warning:active,
.wpdevelop .btn-warning.active {
background-color: #eb9316;
border-color: #e38d13;
}
.wpdevelop .btn-warning.disabled,
.wpdevelop .btn-warning[disabled],
.wpdevelop fieldset[disabled] .btn-warning,
.wpdevelop .btn-warning.disabled:hover,
.wpdevelop .btn-warning[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-warning:hover,
.wpdevelop .btn-warning.disabled:focus,
.wpdevelop .btn-warning[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-warning:focus,
.wpdevelop .btn-warning.disabled.focus,
.wpdevelop .btn-warning[disabled].focus,
.wpdevelop fieldset[disabled] .btn-warning.focus,
.wpdevelop .btn-warning.disabled:active,
.wpdevelop .btn-warning[disabled]:active,
.wpdevelop fieldset[disabled] .btn-warning:active,
.wpdevelop .btn-warning.disabled.active,
.wpdevelop .btn-warning[disabled].active,
.wpdevelop fieldset[disabled] .btn-warning.active {
background-color: #eb9316;
background-image: none;
}
.wpdevelop .btn-danger {
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
background-repeat: repeat-x;
border-color: #b92c28;
}
.wpdevelop .btn-danger:hover,
.wpdevelop .btn-danger:focus {
background-color: #c12e2a;
background-position: 0 -15px;
}
.wpdevelop .btn-danger:active,
.wpdevelop .btn-danger.active {
background-color: #c12e2a;
border-color: #b92c28;
}
.wpdevelop .btn-danger.disabled,
.wpdevelop .btn-danger[disabled],
.wpdevelop fieldset[disabled] .btn-danger,
.wpdevelop .btn-danger.disabled:hover,
.wpdevelop .btn-danger[disabled]:hover,
.wpdevelop fieldset[disabled] .btn-danger:hover,
.wpdevelop .btn-danger.disabled:focus,
.wpdevelop .btn-danger[disabled]:focus,
.wpdevelop fieldset[disabled] .btn-danger:focus,
.wpdevelop .btn-danger.disabled.focus,
.wpdevelop .btn-danger[disabled].focus,
.wpdevelop fieldset[disabled] .btn-danger.focus,
.wpdevelop .btn-danger.disabled:active,
.wpdevelop .btn-danger[disabled]:active,
.wpdevelop fieldset[disabled] .btn-danger:active,
.wpdevelop .btn-danger.disabled.active,
.wpdevelop .btn-danger[disabled].active,
.wpdevelop fieldset[disabled] .btn-danger.active {
background-color: #c12e2a;
background-image: none;
}
.wpdevelop .thumbnail,
.wpdevelop .img-thumbnail {
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.wpdevelop .dropdown-menu > li > a:hover,
.wpdevelop .dropdown-menu > li > a:focus {
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
background-color: #e8e8e8;
}
.wpdevelop .dropdown-menu > .active > a,
.wpdevelop .dropdown-menu > .active > a:hover,
.wpdevelop .dropdown-menu > .active > a:focus {
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
background-color: #2e6da4;
}
.wpdevelop .navbar-default {
background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f8f8));
background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);
}
.wpdevelop .navbar-default .navbar-nav > .open > a,
.wpdevelop .navbar-default .navbar-nav > .active > a {
background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);
}
.wpdevelop .navbar-brand,
.wpdevelop .navbar-nav > li > a {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.wpdevelop .navbar-inverse {
background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222222 100%);
background-image: -o-linear-gradient(top, #3c3c3c 0%, #222222 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222222));
background-image: linear-gradient(to bottom, #3c3c3c 0%, #222222 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
border-radius: 4px;
}
.wpdevelop .navbar-inverse .navbar-nav > .open > a,
.wpdevelop .navbar-inverse .navbar-nav > .active > a {
background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
-webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);
}
.wpdevelop .navbar-inverse .navbar-brand,
.wpdevelop .navbar-inverse .navbar-nav > li > a {
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.wpdevelop .navbar-static-top,
.wpdevelop .navbar-fixed-top,
.wpdevelop .navbar-fixed-bottom {
border-radius: 0;
}
@media (max-width: 767px) {
.wpdevelop .navbar .navbar-nav .open .dropdown-menu > .active > a,
.wpdevelop .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
.wpdevelop .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
color: #fff;
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
}
}
.wpdevelop .alert {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.wpdevelop .alert-success {
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
border-color: #b2dba1;
}
.wpdevelop .alert-info {
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
border-color: #9acfea;
}
.wpdevelop .alert-warning {
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
border-color: #f5e79e;
}
.wpdevelop .alert-danger {
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
border-color: #dca7a7;
}
.wpdevelop .progress {
background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
}
.wpdevelop .progress-bar {
background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
}
.wpdevelop .progress-bar-success {
background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
}
.wpdevelop .progress-bar-info {
background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
}
.wpdevelop .progress-bar-warning {
background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
}
.wpdevelop .progress-bar-danger {
background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
}
.wpdevelop .progress-bar-striped {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.wpdevelop .list-group {
border-radius: 4px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
}
.wpdevelop .list-group-item.active,
.wpdevelop .list-group-item.active:hover,
.wpdevelop .list-group-item.active:focus {
text-shadow: 0 -1px 0 #286090;
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
border-color: #2b669a;
}
.wpdevelop .list-group-item.active .badge,
.wpdevelop .list-group-item.active:hover .badge,
.wpdevelop .list-group-item.active:focus .badge {
text-shadow: none;
}
.wpdevelop .panel {
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.wpdevelop .panel-default > .panel-heading {
background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
}
.wpdevelop .panel-primary > .panel-heading {
background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
}
.wpdevelop .panel-success > .panel-heading {
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
}
.wpdevelop .panel-info > .panel-heading {
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
}
.wpdevelop .panel-warning > .panel-heading {
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
}
.wpdevelop .panel-danger > .panel-heading {
background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
}
.wpdevelop .well {
background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
border-color: #dcdcdc;
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
}.wpbc_booking_form_structure {
}
.wpbc_booking_form_structure .wpbc_structure_calendar {
}
.wpbc_booking_form_structure .wpbc_structure_form {
} .wpbc_booking_form_structure.wpbc_form_center {
width:100%;
}
.wpbc_booking_form_structure.wpbc_form_center .wpbc_structure_calendar,
.wpbc_booking_form_structure.wpbc_form_center .wpbc_structure_form {
margin:1px auto;
width:290px;
} .wpbc_booking_form_structure.wpbc_form_dark .wpbc_structure_form label{
color:#ddd;
}
.wpbc_booking_form_structure.wpbc_form_dark .wpbc_structure_form input[type="text"],
.wpbc_booking_form_structure.wpbc_form_dark .wpbc_structure_form textarea,
.wpbc_booking_form_structure.wpbc_form_dark .wpbc_structure_form select{
color:#000;
} .wpbc_booking_form_structure.wpbc_form_right {
width:100%;
}
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_calendar {
float:left;
margin-right:20px;
}
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form {
float:left;
margin-top:-20px;
} .wpbc_booking_form_footer {
clear:both;
width:100%;
}  form.booking_form {
text-align: left;
}
.booking_form .booking_form_div {
margin-left: auto;
margin-right: auto;
}
.booking_form .form-group {
margin:15px 0px;
} .booking_form_div textarea,
.booking_form_div input[type="text"],
.booking_form_div select {
border-color: #DFDFDF;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
border-style: solid;
border-width: 1px;
vertical-align: baseline;
}
.booking_form_div select, .booking_form_div textarea,
.booking_form_div input[type="text"] {
box-sizing: content-box;
-mox-box-sizing: content-box;
-webkit-box-sizing: content-box;
height:28px;
padding:2px 8px;    
} .booking_form_div textarea,  
.booking_form_div select[multiple], 
.booking_form_div select[size]{
height:auto;
} .booking_form .form-group .controls select,
.booking_form select, .booking_form textarea,
.booking_form input[type="text"]{
width:250px;
} .booking_form input.wpdev-validates-as-time {
width: 50px;
}
.booking_form input[type="button"],
.booking_form input[type="submit"] {
width:auto;
vertical-align: middle;
} .booking_form .wpdev-checkbox .wpdev-list-item,
.booking_form .wpdev-radio .wpdev-list-item{
padding: 0 15px 0 0;
vertical-align: bottom;
}
.booking_form .wpdev-checkbox .wpdev-list-item input[type="radio"],
.booking_form .wpdev-checkbox .wpdev-list-item input[type="checkbox"], 
.booking_form .wpdev-radio .wpdev-list-item input[type="radio"],
.booking_form .wpdev-radio .wpdev-list-item input[type="checkbox"] {
margin: 1px 0 0;
padding: 0;
vertical-align: middle;
}
.booking_form label.wpdev-list-item-label,
.booking_form label.wpdev-list-item-label:hover {
display: inline;
cursor: pointer;    
vertical-align: middle;
font-weight: 400;
} .booking_form_div select option.booked,
.booking_form_div select option:disabled{
color:#ddd; 
} .booking_form_div select.col-md-1 {
float: none;
padding: 4px 8px;
} .wpbc-payment-form .btn,
.wpbc-payment-form .button,
.booking_form_div .btn,
.booking_form_div .button,
.booking_form_div .submit,
.booking_form_div .button-secondary {
-moz-background-clip: border;
-moz-background-inline-policy: continuous;
-moz-background-origin: padding;    
background: #f7f7f7 none repeat scroll 0 0;
border-color: #ccc;
box-shadow: 0 1px 0 #eee;
color: #555;
vertical-align: top;    
}
.booking_form_div .submit,
.booking_form_div .button,
.booking_form_div .button-primary,
.booking_form_div .button-secondary,
.booking_form_div .button-highlighted,
.booking_form_div #postcustomstuff .submit input {
-moz-border-radius: 11px;
-webkit-border-radius: 11px;
-moz-box-sizing: content-box;
border-style: solid;
border-width: 1px;
cursor: pointer;
font-size: 11px !important;
line-height: 16px;
padding: 2px 8px;
text-decoration: none;
font-weight: 600;
margin: 10px 0px;
float: right;
} .booking_form_div input.btn-primary:hover {
background: #0044CC !important;
} .booking_form_div input[type="button"]:hover,
.wpbc-payment-form input[type="button"]:hover {
cursor: pointer !important;
} .booking_form_div img.captcha_img {
vertical-align: middle;
box-shadow: none;
}
.booking_form_div .captachinput {
width: 120px;
} .widget_wpdev_booking {
width:100%;
float:left;
margin:5px 0px;
}
.widget_wpdev_booking .booking_form input[type="radio"], 
.widget_wpdev_booking .booking_form input[type="checkbox"] {
width:auto;
} .widget_wpdev_booking .booking_form .wpdev-help-message.wpdev-element-message {
font-size: 0.85em;    
margin: 10px 4px 4px !important;
} .widget_wpdev_booking .booking_form .wpdev-form-control-wrap .wpdev-help-message {
font-size: 0.85em;  
margin: 2px 8px 2px 0 !important;
} .submiting_content {
border: 1px solid #5C5;
font-size: 15px;
font-weight: 600;
height: 45px;
margin: 15px auto;
padding: 15px 10px;
text-align: center;
width: 80%;
line-height: 1.5em;
padding: 10px 10% 14px !important;
} .wpdev-help-message.alert.alert-warning, 
.wpdev-help-message .alert.alert-warning {
background-image: none;
background-color: #fcf8e3;
font-size: 0.85em;
box-shadow: none;
}
.booking_form .wpdev-checkbox .wpdev-help-message.alert.alert-warning {
line-height: inherit !important;
}
.wpdev-help-message.wpdev-element-message {
padding :5px 5px 4px;
margin: 10px 2px;
vertical-align: middle;
display:inline-block;
} .submiting_content.wpdev-help-message.alert.alert-warning.alert-success {
border-color: #b2dba1;
background-color: #dff0d8;
color:#083;
height: auto;
font-size: 1em;   
background-image: none;
font-weight: 100;
}
.form_bk_messages {
display: none;
float: left;
font-size: 14px;
font-weight: 600;
border: 1px solid #9DA;
padding: 3px 10px;
margin: 2px 5px;
background: #FEF9ED;
color: #555;
margin: 15px auto;
padding: 5px 10px;
text-align: center;
width: 100%;
clear: both;
} .wpbc_booked_times_word {
font-weight: 600;    
} .booking_form_garbage {
display:none;
} .wpdevelop .booking_form .help-block {
margin-bottom: 0;
margin-top: 0;
} #wp-admin-bar-booking_options a span#booking-count {
background: none repeat scroll 0 0 #EEE;
border-radius: 10px 10px 10px 10px;
color: #333;
display: inline;
font-size: 10px;
font-weight: 600;
padding: 2px 5px;
text-shadow: none;
}
#wp-admin-bar-booking_options a:hover span#booking-count {
background: none repeat scroll 0 0 #FFF;
color: #000;
} .wpdevelop.popover {
background: none repeat scroll 0 0 transparent;
border: medium none;
box-shadow: none;
width: auto !important;    
z-index: 2147483647 !important;
}
.wpdevelop.popover.top .arrow {
border-top: 5px solid rgba(140, 140, 140, 0.8) !important;
}
.wpdevelop.popover.bottom .arrow {
border-bottom: 5px solid rgba(140, 140, 140, 0.8) !important;
}
.wpdevelop.popover.left .arrow {
border-left: 5px solid rgba(140, 140, 140, 0.8) !important;
}
.wpdevelop.popover.right .arrow {
border-right: 5px solid rgba(140, 140, 140, 0.8) !important;
}
.wpdevelop .popover-inner {
background: none repeat scroll 0 0 rgba(140, 140, 140, 0.8);
border-radius: 6px 6px 6px 6px;
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
overflow: hidden;
padding: 3px;
width: 150px;
color: #111;
}
.wpdevelop .popover-inner .popover-title {
background-color: #FFF;
border-bottom: 0px solid #EEE;
border-radius: 3px 3px 0 0;
line-height: 1;
padding: 0px; font-size: 13px;
}
.wpdevelop .popover-inner .popover-content {
background-clip: padding-box;
background-color: #FFF;
border-radius: 0 0 3px 3px;
padding: 14px;
}
.wpdevelop .popover-content, 
.wpdevelop .popover-content p,
.wpdevelop .popover-content ul,
.wpdevelop .popover-content ol {
color: #111;
} .wpbc_calendar_tooltip_booking_details {
font-weight:normal !important;
font-size:11px !important;
} .wpbc_spin {
-webkit-animation: spin 2s infinite linear;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-o-transform: rotate(0deg);
}
100% {
-o-transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
.wpbc_rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.wpbc_rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
.wpbc_rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg);
}
.wpbc_flip-horizontal {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
-webkit-transform: scale(-1, 1);
-moz-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.wpbc_flip-vertical {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
-webkit-transform: scale(1, -1);
-moz-transform: scale(1, -1);
-ms-transform: scale(1, -1);
-o-transform: scale(1, -1);
transform: scale(1, -1);
} @media (max-width: 782px) {  
.wpdevelop input[type="text"], 
.wpdevelop select{
font-size: 1.1em;
height: 36px; padding: 4px 8px;
} .wpbc_booking_form_structure.wpbc_form_right,
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_calendar,
.wpbc_booking_form_structure.wpbc_form_right .wpbc_structure_form {
width: 100%;
float: none;
margin: 0px;
}
}.datepick-inline { 
width:100% !important; z-index: 10000;
} .datepick-inline .datepick-title-row th,
.datepick-inline .datepick-days-cell{
height: 40px; 
} #datepick-div.datepick-inline .datepick-title-row th,
#datepick-div.datepick-inline .datepick-days-cell{
height: 25px; 
}    div.check-out-div, 
div.check-in-div, 
div.date-content-top, 
div.date-content-bottom{
width: 0;
height: 0;
padding: 0;
margin: 0;        
} .datepick-inline .datepick, .datepick-inline .datepick-header, .datepick-inline .datepick-header span, .datepick-inline .calendar-links, .datepick-inline .calendar-links a, .datepick-inline .datepick-days-cell, .datepick-inline .datepick-days-cell a, .datepick-inline .datepick-days-cell div, .datepick-inline .datepick-title-row, .datepick-inline .datepick-title-row th { padding: 0px;
margin:  0px;
font-size:12px;
border: 0 none;
vertical-align: baseline;    
}
#content .datepick-days-cell, #content .datepick-title-row th{
padding: 0px;
margin:  0px;    
} .datepick-inline .datepick,
.datepick-inline .datepick-header{
width:100%;
} .datepick-one-month {
width:100%;
float:left;
}
.cal_month_num_2 .datepick-one-month {
width:50%;
float:left;
}
.cal_month_num_3 .datepick-one-month {
width:33.333333333333333%;
float:left;
}
.cal_month_num_4 .datepick-one-month {
width:25%;
float:left;
}
.cal_month_num_5 .datepick-one-month {
width:20%;
float:left;
}
.cal_month_num_6 .datepick-one-month {
width:16.6666666666666%;
float:left;
}
.cal_month_num_7 .datepick-one-month {
width:14.28571429%;
float:left;
}
.cal_month_num_8 .datepick-one-month {
width:12.5%;
float:left;
}
.cal_month_num_9 .datepick-one-month {
width:11.11111111%;
float:left;
}
.cal_month_num_10 .datepick-one-month {
width:10%;
float:left;
}
.cal_month_num_11 .datepick-one-month {
width:9.0909090909090909%;
float:left;
}
.cal_month_num_12 .datepick-one-month {
width:8.333333333333333%;
float:left;
} .months_num_in_row_1 .datepick-one-month {
width:100%;
float:left;
}
.months_num_in_row_2 .datepick-one-month {
width:50%;
float:left;
}
.months_num_in_row_3 .datepick-one-month {
width:33.333333333333333%;
float:left;
}
.months_num_in_row_4 .datepick-one-month {
width:25%;
float:left;
}
.months_num_in_row_5 .datepick-one-month {
width:20%;
float:left;
}
.months_num_in_row_6 .datepick-one-month {
width:16.6666666666666%;
float:left;
} .datepick-inline .calendar-links{
float: left;
width: 100%;
height: auto;
margin-bottom: -2.4em;
padding: 0.4em 0;
position: relative;
text-decoration: none;
}
.datepick-inline .calendar-links .datepick-prev{
float: left;
width: 49%;
text-align: left;
padding-left:1%;
z-index:99;
position: relative;
line-height: 1.5em;
}
.datepick-inline .calendar-links .datepick-next{
float: right;
text-align: right;
width: 49%;
padding-right:1%;
z-index:99;
position: relative;
line-height: 1.5em;
}
.datepick-inline .calendar-links .datepick-prev a,
.datepick-inline .calendar-links .datepick-next a{
font-size: 2em;
} div.datepick-inline .datepick-title-row th{
height: auto !important;
line-height: 2.18182;
} .datepick-inline .calendar-links .datepick-prev a,
.datepick-inline .calendar-links .datepick-next a,
.datepick-inline .calendar-links .datepick-prev a:hover,
.datepick-inline .calendar-links .datepick-next a:hover,
.datepick-inline .datepick-days-cell, 
.datepick-inline .datepick-days-cell.timespartly.date_approved, 
.datepick-inline .datepick-days-cell.timespartly.date2approve, 
.datepick-inline .datepick-days-cell a, 
.datepick-inline .datepick-days-cell a:hover, .block_hints .block_free a, 
.block_hints .block_free a:hover, 
.block_hints .block_time a, 
.block_hints .block_time a:hover {
text-decoration: none;
cursor: pointer;
box-shadow: none; }
.datepick-inline .datepick-days-cell.datepick-unselectable, .datepick-inline .datepick-days-cell.datepick-unselectable a, 
.datepick-inline .datepick-days-cell.datepick-unselectable a:hover, 
.datepick-inline .datepick-days-cell.date_approved,
.datepick-inline .datepick-days-cell.date2approve{
cursor: default;
} .datepick-inline .datepick-header{
text-align: center;
position: relative;
line-height: 1.71429em;
padding: 0.3em 0;
} .datepick-inline .datepick-title-row th,
.datepick-inline .datepick-days-cell{
text-align: center;
vertical-align: middle;
width: 14.28571429%;  
overflow: hidden;
}
.datepick-inline .datepick-days-cell a,
.datepick-inline .datepick-days-cell span{ position:relative;
z-index: 99;
}   .block_hints .block_check_in_out.check_in_time, .datepick-inline .timespartly.check_in_time, .datepick-inline .timespartly.check_out_time {
background-image: none;
} .block_hints .block_check_in_out.check_in_time div.check-in-div, .block_hints .block_check_in_out.check_out_time div.check-out-div, td.timespartly.check_in_time div.check-in-div, td.timespartly.check_out_time div.check-out-div {                                 
border: 0px none;
float: left;
height: 200%;
margin-bottom: -400%;
position: relative;
top: -50%;
vertical-align: bottom;
width: 20%;
z-index: 0;
} .block_hints .block_check_in_out.check_in_time a, .block_hints .block_check_in_out.check_out_time a, td.timespartly.check_in_time a, td.timespartly.check_out_time a {
text-shadow:none;                                                     
}
.block_hints .block_check_in_out.check_in_time em { position: relative;
font-style: normal;
text-shadow: none;
}  .wpbc_change_over_triangle .block_hints .block_check_in_out.check_in_time div.check-in-div, .wpbc_change_over_triangle td.timespartly.check_in_time div.check-in-div { height: 300%;
margin-bottom: -400%;    
top: -50%;    
width: 100% !important;   
transform: rotate(45deg) translate(-100%,-10%)
}
.wpbc_change_over_triangle .block_hints .block_check_in_out.check_in_time div.check-in-div {
transform: rotate(45deg) translate(-85%,-10%)
}
.wpbc_change_over_triangle .block_hints .block_check_in_out.check_out_time div.check-out-div, .wpbc_change_over_triangle td.timespartly.check_out_time div.check-out-div { 
height: 300%;
margin-bottom: -400%;    
top: -50%;    
width: 100% !important;   
transform: rotate(-135deg) translate(0,10%);
}
.wpbc_change_over_triangle2 .block_hints .block_check_in_out.check_in_time div.check-in-div, .wpbc_change_over_triangle2 td.timespartly.check_in_time div.check-in-div { height: 300%;
margin-bottom: -400%;    
top: -50%;    
width: 100% !important;   
transform: rotate(-45deg) translate(0,-10%);
}
.wpbc_change_over_triangle2 .block_hints .block_check_in_out.check_in_time div.check-in-div {
transform: rotate(-45deg) translate(-15%,-10%);
}
.wpbc_change_over_triangle2 .block_hints .block_check_in_out.check_out_time div.check-out-div, .wpbc_change_over_triangle2 td.timespartly.check_out_time div.check-out-div { 
height: 300%;
margin-bottom: -400%;    
top: -50%;    
width: 100% !important;   
transform: rotate(135deg) translate(-100%,10%);
} .block_hints .block_check_in_out.check_out_time div.check-out-div, td.timespartly.check_out_time div.check-out-div { float: right;
}
td.timespartly.check_in_time.check_out_time div.check-in-div, td.timespartly.check_in_time.check_out_time div.check-out-div {
display: none;
}   .datepick-inline .datepick .datepick-days-cell-over.check_in_time div.check-in-div,
.datepick-inline .datepick .datepick-days-cell-over.check_out_time div.check-out-div,
.datepick-inline .datepick .datepick-current-day.check_in_time div.check-in-div,
.datepick-inline .datepick .datepick-current-day.check_out_time div.check-out-div{
display: none;
visibility: hidden;
} td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve div.check-in-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div.check-out-div, 
td.timespartly.check_in_time.check_out_time.check_in_time_date2approve.check_out_time_date_approved div.check-in-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in_time_date_approved div.check-out-div {    
display: block;
visibility: visible;
width: 50%;
float: left;    
}
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div.check-out-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in_time_date_approved div.check-out-div {    
float: right;
}
td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve span, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve span,    
td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div {   
cursor: default;
}    .datepick-inline .datepick .datepick-unselectable.check_in_time.date_approved,  
.datepick-inline .datepick .datepick-unselectable.check_out_time.date_approved, 
.datepick-inline .datepick .datepick-unselectable.check_in_time.date2approve,
.datepick-inline .datepick .datepick-unselectable.check_out_time.date2approve {  font-weight: 400;
}     .widget_wpdev_booking .hasDatepick .datepick-inline .datepick-title-row th,
.widget_wpdev_booking .hasDatepick .datepick-inline .datepick-days-cell{
height: 30px;
} .widget_wpdev_booking .bk_calendar_frame{
margin: 0 2%;
width: 96% !important;
} .widget_wpdev_booking .wpdev_hint_with_text{
float: left;
margin: 0;
width: 50% !important;
} .widget_wpdev_booking input,
.widget_wpdev_booking select,
.widget_wpdev_booking textarea,
.widget_wpdev_booking .wpdevelop input,
.widget_wpdev_booking .wpdevelop select,
.widget_wpdev_booking .wpdevelop textarea,
div#datepick-div input,
div#datepick-div select,
div#datepick-div textarea {
width: 96%;
margin: auto;
}  .widget_wpdev_booking input[type=button],
.widget_wpdev_booking input[type=checkbox]{
width:auto;
}    .block_hints {
width: 100%;
clear: both;
margin: 10px 0px 30px 0px !important;
border: none;
height: 30px;
} .wpdev_hint_with_text {
float:left;
width:auto;
} .block_text {
float: none;
height: 30px;
line-height: 32px;
margin: 0 0 10px;
padding: 0 10px 0 35px;
font-size: 0.9em;
white-space: nowrap;
word-wrap: normal;
} .block_check_in_out,
.block_pending,
.block_time,
.block_booked,
.block_free {
float: left;
width: 30px;
height: 30px;
line-height: 28px;
border: 1px solid #FEA;
text-align: center;
vertical-align: middle;
overflow: hidden;
} .block_pending a,
.block_time a,
.block_booked a,
.block_free a,
.block_pending,
.block_time,
.block_booked,
.block_free ,
.wpdev_hint_with_text .block_check_in_out {
font-size: 13px;
font-weight: 400;
} .wpdev_clear_hint{ 
height:1px; 
width:100%;
clear:both; 
} .datepick-inline .datepick-days-cell div.date-content-bottom,
.datepick-inline .datepick-days-cell div.date-content-top {
font-size:0.7em;
font-style: italic;
line-height: 0.72em;
text-align: center;
padding:0;
width:100%;
text-shadow:none;
position: relative;
}   @media (max-width: 480px) {
}
@media (max-width: 769px) { .bk_calendar_frame { width:100% !important;   
}
.datepick-inline .datepick-one-month { width:100%;
float:left;
}
.booking_form_div input[type="text"],
.booking_form_div select,
.booking_form_div textarea {
width: 96% !important;
margin: auto !important;
}
.booking_form_div input[type=button]{
width:auto !important;
}
.booking_form_div input[type=button]{
font-size: 1.1em;
font-weight: 600;
padding: 5px 20px !important;
}
} @media (min-width: 768px) and (max-width: 980px) {
}
@media (max-width: 980px) {
}
@media (min-width: 980px){
}
@media (min-width: 1200px){
}
@media screen and (max-width:380px) {
} @media only screen and (min-device-width : 320px) and (max-device-width : 480px) {    
} @media only screen and (min-device-width : 320px) and (max-device-width : 568px) { 
} @media only screen and (min-device-width : 768px) and (max-device-width : 1024px)  { 
} @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 1)  { 
} @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 2) {
}.datepick-inline {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #999999;
box-shadow: 0 0 2px #AAAAAA;
-moz-box-shadow: 0 0 2px #AAAAAA;
-webkit-box-shadow: 0 0 2px #AAAAAA;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
} .datepick-inline .datepick{
background:  transparent;
} .datepick-inline .calendar-links {
background-color: #ccc; 
background-repeat: repeat-x; 
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ccc), to(#ddd)); background: -webkit-linear-gradient(top, #ddd, #ccc); background: -moz-linear-gradient(top, #ddd, #ccc); background: -ms-linear-gradient(top, #ddd, #ccc); background: -o-linear-gradient(top, #ddd, #ccc); border-bottom: 1px solid #aaa;
} .datepick-inline .calendar-links .datepick-prev a,
.datepick-inline .calendar-links .datepick-next a,
.datepick-inline .calendar-links .datepick-prev a:hover,
.datepick-inline .calendar-links .datepick-next a:hover{
color: #888;
font-weight: 600;
text-shadow: 0 1px 0 #ddd;
} .datepick-inline .datepick-header {
color: #555;
font-weight: 600;
text-shadow: 0 1px 0 #DDDDDD;  
} div.datepick-inline .datepick-title-row th{
border: 1px solid #ccc;     
color: #555;
font-weight: 600;    
text-transform: uppercase;    
} .block_hints .block_free, .block_hints .block_time, .block_hints .block_booked, .block_hints .block_pending, .block_hints .block_check_in_out, 
.datepick-inline .datepick-days-cell{
border: 1px solid #ccc;
color:#757575;
}   .block_hints .block_free,
.block_hints .block_time, 
.block_hints .block_check_in_out div.check-in-div, .block_hints .block_check_in_out div.check-out-div, .datepick-inline .date_available,
.datepick-inline .timespartly.check_in_time div.check-in-div, .datepick-inline .timespartly.check_out_time div.check-out-div {
background: none repeat scroll 0 0 #f5f5f5;
} .block_hints .block_free,
.datepick-inline .date_available,
.datepick-inline .date_available.datepick-unselectable{
color: #CCCCCC; text-shadow: 0 1px 0 #FFFFFF; } .block_hints .block_free a,
.block_hints .block_time, 
.datepick-inline .date_available a{
color:#89a;
font-weight: 600;
text-shadow: 0 1px 0 #fff;
}  .block_hints .block_time, 
.datepick-inline .timespartly{
background-image: url(//pousadafilo.com.br/wp-content/plugins/booking/assets/img/clock_fill.png);
background-repeat: no-repeat;
background-position:100% 100%; 
}  .block_hints .date_approved.block_check_in_out, 
.block_hints .block_booked, 
.datepick-inline .date_approved, td.timespartly.check_in_time.check_out_time.check_in_time_date2approve.check_out_time_date_approved div.check-in-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in_time_date_approved div.check-out-div {    
background-color: #C60B0B;
} .block_hints .date_approved.block_check_in_out,  
.block_hints .block_booked, 
.datepick-inline .date_approved,   
.block_hints .block_booked a, 
.datepick-inline .date_approved a{
color: #5F0000;
font-weight: 600;
text-shadow: 0 1px 0 #DD0000;
} .block_hints .date_approved.block_check_in_out div.check-in-div, .datepick-inline .date_approved.timespartly.check_in_time div.check-in-div{
border-right: 1px dotted #C60B0B;
}
.block_hints .date_approved.block_check_in_out div.check-out-div, .datepick-inline .date_approved.timespartly.check_out_time div.check-out-div{
border-left: 1px dotted #C60B0B;
}  .block_hints .date2approve.block_check_in_out, 
.block_hints .block_pending, 
.datepick-inline .date2approve, td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve div.check-in-div, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve div.check-out-div {    
background-color: #DF9A00;
} .block_hints .date2approve.block_check_in_out, 
.block_hints .block_pending, 
.datepick-inline .date2approve, 
.block_hints .block_pending a, 
.datepick-inline .date2approve a {
color: #885500;
font-weight: 600;
text-shadow: 0 1px 0 #FFAA00;
} .block_hints .date2approve.block_check_in_out div.check-in-div, .datepick-inline .date2approve.timespartly.check_in_time div.check-in-div{
border-right: 1px dotted #DF9A00;
}
.block_hints .date2approve.block_check_in_out div.check-out-div, .datepick-inline .date2approve.timespartly.check_out_time div.check-out-div{
border-left: 1px dotted #DF9A00;
}  .datepick-inline .datepick-one-month .datepick .datepick-current-day {
background-color: #555;
} .datepick-inline .datepick-one-month .datepick .datepick-current-day a{
color: #EEEEEE;
text-shadow: 0 -1px 0 #000000;
}  .datepick-inline .datepick .datepick-days-cell-over{
background:#aaa;
} .datepick-inline .datepick .datepick-days-cell-over a:hover, 
.datepick-inline .datepick .datepick-days-cell-over a{    
color: #eee;
text-shadow: 0 -1px 0 #888;
}   td.timespartly.check_in_time.check_out_time.check_in_time_date_approved.check_out_time_date2approve span, 
td.timespartly.check_in_time.check_out_time.check_out_time_date_approved.check_in_time_date2approve span, 
td.timespartly.check_in_time.check_out_time.check_in_time_date2approve.check_out_time_date_approved span, 
td.timespartly.check_in_time.check_out_time.check_out_time_date2approve.check_in_time_date_approved span {
font-weight: 600;
text-shadow: none;
}   .wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock {
background-color: #f5f5f5;
} .wpbc_timeslot_day_bg_as_available .datepick-inline .times_clock.date_available a {
color:#89a;
font-weight: 600;
text-shadow: 0 1px 0 #fff;
} .wpbc_timeslot_day_bg_as_available .datepick-inline .datepick-one-month .datepick .times_clock.date_available.datepick-current-day a{
color: #EEEEEE;
text-shadow: 0 -1px 0 #000000;
} .wpbc_timeslot_day_bg_as_available .datepick-inline .date_available {
color: #CCCCCC; text-shadow: 0 1px 0 #FFFFFF; }.flex_tl_table {
display: flex;
flex-flow: column nowrap;
box-sizing: border-box;
} .flex_tl_table .flex_tl_table_header,
.flex_tl_table .flex_tl_table_titles,
.flex_tl_table .flex_tl_table_row_bookings {
flex: 1;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
} .flex_tl_table .flex_tl_table_header .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 {
flex:0 1 auto;
width: 180px;
min-width: 0;
word-wrap: break-word;
display: flex;
flex-flow: column nowrap;
justify-content: center;
} .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 {
flex: 1 1 0;
min-width: 0;
} @media (max-width: 782px) { .flex_tl_table .flex_tl_table_header,
.flex_tl_table .flex_tl_table_titles,
.flex_tl_table .flex_tl_table_row_bookings {
flex-flow: row wrap;
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 {
width: 100%;
flex: 1 1 auto;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1{
border-bottom: 1px solid #eee;
}
}     .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav{
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_title {
flex: 1 1 0;
word-break: break-word;
min-width: 0;
}     .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar {
display:flex;
flex-flow: row nowrap;
justify-content: space-between;
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
flex: 1 1 0;
min-width: 0;
display:flex;
flex-flow: column nowrap;
justify-content: space-between;
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_month_year,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container {
flex: 1;
display: flex;
flex-flow: column wrap;
justify-content: space-between;
overflow: hidden;
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
flex: 1;
font-size:0.85em;
font-weight: 600;
text-align: center;
}
.flex_tl_matrix_resources .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
font-weight: 400;
font-size:0.75em;
}
.flex_tl_single_resource .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
font-size:0.9em;
padding: 4px 0;
}
.flex_frame_view_days_num_60 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num,
.flex_frame_view_days_num_60 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_week {
font-size:0.7em;
font-weight: 400;
}  @media (max-width: 782px) {
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container {
overflow: hidden;
padding:0;
} .flex_tl_matrix_resources.flex_frame_view_days_num_1,
.flex_tl_matrix_resources.flex_frame_view_days_num_30,
.flex_tl_matrix_resources.flex_frame_view_days_num_60,
.flex_tl_single_resource.flex_frame_view_days_num_30,
.flex_tl_single_resource.flex_frame_view_days_num_365 {
width: 100%;
overflow-x: scroll;
}
.flex_tl_matrix_resources.flex_frame_view_days_num_30 .flex_tl_table,
.flex_tl_single_resource.flex_frame_view_days_num_365 .flex_tl_table{
min-width: 500px;
}
.flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table,
.flex_tl_matrix_resources.flex_frame_view_days_num_60 .flex_tl_table,
.flex_tl_single_resource.flex_frame_view_days_num_30 .flex_tl_table {
min-width: 1000px;
}
}  .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month {
height: 1.5em;
overflow: hidden;
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month.flex_tl_dates_bar .flex_tl_day_cell {
border:none;
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month .flex_tl_day_cell .in_cell_month_year {
overflow: visible;
word-wrap: normal;
white-space: nowrap;
}  .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day {
flex: 1;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
overflow: hidden;
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour {
flex: 1 1 0;
min-width: 0;
} .flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container,
.flex_tl_single_resource.flex_frame_view_days_num_30 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container {
flex-flow: row nowrap;
align-items: center;
}  .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks {
flex: 1 1 0;
text-align: left;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks{
text-align: right;
padding:0 1em;
}
@media (max-width: 782px) {
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container {
justify-content: flex-start;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks {
flex: 0 1 auto;
text-align: left;
padding:0 1em;
}
}    .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar{
min-height: 3em;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_bookings {
margin-top:-3em;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles {
margin-top:-3em;
overflow: hidden; } .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar {
display:flex;
flex-flow: row nowrap;
justify-content: space-between;
}   .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .in_cell_time_section_in_day {
flex: 1 1 0;
min-width: 0;
display:flex;
flex-flow: row nowrap;
justify-content: space-between;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .in_cell_time_section_in_day .in_cell_time_hour {
flex: 1 1 0;
min-width: 0;
display:flex;
flex-flow: row nowrap;
justify-content: space-between;
}    .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
flex: 1 1 0;
min-width: 0;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates {
flex: 1 1 0;
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
} .flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates,
.flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates{
justify-content: flex-start;
align-items: flex-start;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings {
flex: 1 1 0;
min-width: 0;
display: flex;
flex-flow: column nowrap;   justify-content: space-between;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id{
flex: 1 1 0;
min-width: 0;
word-wrap: normal;
white-space: nowrap;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.pending_booking{
border-bottom:1px dashed #555;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking{
border-bottom:1px dashed #ccc;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id:last-child{
border-bottom:none;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a:hover,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a:active,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a{
position: relative;
cursor: default;
outline : none;
box-shadow: none;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id .in_cell_date_booking_pipeline_a .in_cell_date_booking_pipeline_a_sizer {
width: 100%;
height: 100%;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles {
display: flex;
flex-flow: column wrap;
justify-content: flex-start;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title{
overflow: visible;
white-space: nowrap;
word-wrap: initial;
padding: 0px 0.5em;
margin-left: 4px;
margin-top: 4px;
z-index: 1; } .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell{
border:none;
}   .flex_tl_table {
display:none;
}   .hidden_items {
display: none;
}
@media (max-width: 782px) {
.flex_timeline_frame .popover{
width:98%;
max-width:98%;
}
}
.flex_timeline_frame .popover {
border: 2px solid #555;
font-size: 12px;
max-width: 299px;
} .flex_timeline_frame .popover .popover-title {
display: flex;
flex-flow:row wrap;
justify-content: flex-start;
align-items: center;
min-height: 2.5em;
margin:0;
padding: 5px 30px 5px 6px;
border-radius: 5px 5px 0 0;
background-color: #f7f7f7;
}
.flex_timeline_frame .popover .popover-title .popover-title-id {
flex: 0 0 auto;
width: 100%; font-size:14px;
font-weight: 500;
line-height: 1.8;
margin: 0;
padding: 0 12px 0 5px;
border: 0;
vertical-align: baseline;
} .flex_timeline_frame .popover .popover-title .popover-title-buttons{
flex: 1 1 auto;
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
margin: 2px 0;
}
.flex_timeline_frame .popover  .popover-title .popover-title-buttons a,
.flex_timeline_frame .popover  .popover-title .popover-title-buttons a:hover,
.flex_timeline_frame .popover  .popover-title .popover-title-buttons a:focus {
flex: none;
box-sizing: border-box;
margin: 0 5px 0 0;
padding: 0 10px 1px;
font-size: 13px;
height: 28px;
line-height: 28px;
white-space: nowrap;
text-decoration: none;
cursor: pointer;
-webkit-appearance: none;
color: #555;
background: #f7f7f7;
border-radius: 3px;
border: 1px solid #d8d8d8;
box-shadow: none;
outline: none;
}
.flex_timeline_frame .popover  .popover-title .popover-title-buttons a:hover {
background: #fafafa;
border-color: #ccc;
color: #23282d;
}
.flex_timeline_frame .popover .popover-title .popover-title-buttons a.timeline_button_print{
margin-right:1.5em;
} .flex_timeline_frame .popover .popover-close,
.flex_timeline_frame .popover .popover-close:hover {
position: absolute;
right: 0;
top: 0;
font-size: 20px;
line-height: 1.5em;
padding: 5px;
}
.flex_timeline_frame .popover .popover-close a,
.flex_timeline_frame .popover .popover-close a:hover,
.flex_timeline_frame .popover .popover-close a:active,
.flex_timeline_frame .popover .popover-close a:focus {
text-decoration: none;
border-style: none;
outline: 0;
color:#444;
background: transparent;
padding: 0 5px;
} .flex_timeline_frame .popover.bottom > .arrow::after {
border-bottom-color: transparent;
}   .popover-content .flex-popover-content-data {
display:flex;
flex-flow:column wrap;
justify-content: space-between;
}
.popover-content .flex-popover-content-data .flex-popover-bars,
.popover-content .wpbc-popover-content-data .wpbc-popover-cost-bar,
.popover-content .wpbc-popover-content-data .booking-labels,
.popover-content .wpbc-popover-content-data .wpbc-popover-booking-data,
.popover-content .wpbc-popover-content-data .wpbc-popover-booking-notes,
.popover-content .wpbc-popover-content-data .booking-dates{
flex: 1 1 0;
}
.popover-content .flex-popover-content-data .flex-popover-bars {
display:flex;
flex-flow:row nowrap;
justify-content: space-between;
}
.popover-content .flex-popover-content-data .flex-popover-bars .flex-popover-labels-bar{
flex: 1 1 0;
}
.popover-content .flex-popover-content-data .flex-popover-bars .flex-popover-cost-bar {
flex: none;
padding: 0.3em 0;
margin: 0;
}
.popover-content .flex-popover-content-data .flex-popover-labels-bar{
display:flex;
flex-flow:row wrap;
justify-content: flex-start;
}
.popover-content .flex-popover-content-data .flex-popover-labels-bar .flex-label {
flex: 0 1 auto;
min-width: 0;
}
.popover-content .flex-popover-content-data .flex-label {
border: 0;
border-radius: 3px;
text-shadow: none;
box-shadow: 0 0 1px #ddd;
font-weight: 400;
font-size: 95%;
line-height: 1.7em;
padding: .2em .8em 0.2em;
background-color: #5bc0de;
color: #ffffff;
text-align: center;
vertical-align: baseline;
margin: 0.15em 0.75em 0.5em 0;
word-wrap: break-word;
word-wrap: anywhere;
white-space: pre-wrap;
}
.popover-content .flex-popover-content-data .flex-label .label-prefix {
font-size: 70%;
font-weight: 400;
}
.popover-content .flex-popover-content-data .flex-label.flex-label-id {
background: #888;
}
.popover-content .flex-popover-content-data .flex-label.flex-label-booking-status.label-pending {
background: #FFBB45;
}
.popover-content .flex-popover-content-data .flex-label.flex-label-booking-status.label-approved {
background: #9BE;
}
.popover-content .flex-popover-content-data .flex-label.flex-label-payment.payment-label-success {
background: #468847;
}
.popover-content .flex-popover-content-data .flex-label.flex-label-payment.payment-label-unknown {
background: #999;
}
.popover-content .flex-popover-content-data .flex-label.flex-label-trash {
background: #D94A48;
}
.popover-content .flex-popover-content-data .flex-label.flex-label-resource {
text-align: left;
} .popover-content .flex-popover-content-data .flex-label.flex-label-cost {
margin-left:auto;
background: transparent;
font-weight: 600;
color:#333;
box-shadow: none;
padding: 0;
margin: 0;
}
.popover-content .flex-popover-content-data .flex-popover-booking-data {
margin: 1em 0;
text-align: left;
font-size: 1.05em;
line-height: 1.8em;
color: #333;
max-width: 100%;
word-wrap: break-word;
word-wrap: anywhere;
}
.popover-content .flex-popover-content-data .flex-popover-booking-data span.fieldvalue {
background: transparent; padding: 4px 5px;
border-radius: 2px;
} .popover-content .flex-popover-content-data .wpbc-popover-booking-notes{
margin: 0 0 1em 0;
} .popover-content .flex-popover-content-data .flex-label-dates {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
align-items: flex-start;
}
.popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date{
flex:0 1 auto;
font-size: 103%;
padding: 0.1em .7em 0.1em;
margin: 0 0 0.2em;
}
.popover-content .flex-popover-content-data .flex-label-dates .date_tire{
flex:0 1 auto;
margin: 0 0.2em;
font-size: 175%;
line-height: 1em;
}
.popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date .field-booking-time{
font-size: 0.7em;
font-weight: 400;
color:#23282d;
} .popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date{
background: #FFBB45;
} .popover-content .flex-popover-content-data .flex-label-dates .flex-label.field-booking-date.approved{
background: #9BE;
} .popover-content .wpbc_tl_popover_booking_separator {
margin: 20px 0;
border-top: 1px solid #ddd;
box-shadow: 0 1px 1px #f9f9f9;
}.flex_tl_table_loading{
text-align: center;
font-size: 1.1em;
}
.flex_tl_table_loading span {
padding: 0 0.4em;
}  .flex_tl_table {
background: #fff;
border: 1px solid #ddd;
box-shadow: 0 1px 2px #eef;
font-size:12px;
} .flex_tl_table .flex_tl_table_header{
background: #e9e9e9;
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2{
font-weight: 600;
padding: 8px;
line-height: 1.42857143em;
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2{
text-align: center;
}  .flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_title{
color:#777;
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_prev,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_next{
font-size: 22px;
font-weight: 600;
line-height: 12px;
color:#777;
}
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_prev a,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_next a,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_prev a:hover,
.flex_tl_table .flex_tl_table_header .flex_tl_collumn_2 .flex_tl_nav .flex_tl_next a:hover {
text-decoration: none;
color: #757575;
cursor: pointer;
}  .flex_tl_table .flex_tl_table_row_bookings {
border-top: 1px solid #dddddd;
}
.flex_tl_table .flex_tl_table_row_bookings:nth-of-type(2n+1) {
background-color: #f9f9f9;
}  .flex_tl_table .flex_tl_table_titles 	   .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 {
font-weight: 600;
padding: 4px;
line-height: 1.42857143em;
box-shadow: none;
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_1,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title{
color: #999;
font-weight: 400;
overflow: hidden;
white-space: nowrap;
}  .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title a,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title a:hover {
border-bottom: 1px dashed;
color: #789;
text-decoration: none;
text-shadow: none; }
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title.parent {
font-weight: 600;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title.child {
margin-left: 20px;
}    .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar {
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
border-left:1px solid #eee;
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.new_month .in_cell_date_container{
border-left:2px solid #C54;
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday6,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday7,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday6 a,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday7 a{
color: #c32;
background: #FFFCF4;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday6 .in_cell_date_container_show_dates,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.flex_tl_weekday7 .in_cell_date_container_show_dates{
color: #bd7f78;
background: #FFFCF4;
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell a,
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell a:hover{
color: #789;
text-decoration: none;
text-shadow: 0 -1px 0 #EEEEEE;
}  .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar_month {
height: 1.5em;
border-bottom:1px solid #eee;
border-left:1px solid #eee;
} .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_month_year {
color: #c32;
font-size: 0.85em;
font-weight: 600;
padding:0 0.5em;
}  .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day {
}
.flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour {
border-left:1px solid #eee;
border-top:1px solid #eee;
font-size: 0.7em;
display: flex;
justify-content:flex-start;
align-items: center;
padding: 0 0 0 2px;
white-space: nowrap;
overflow: hidden;
min-height: 12px;
} .flex_tl_matrix_resources.flex_frame_view_days_num_1 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num,
.flex_tl_single_resource.flex_frame_view_days_num_30 .flex_tl_table .flex_tl_table_titles .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container .in_cell_day_num{
font-size: 0.85em;
font-weight:600;
text-align: left;
padding: 4px 1em;
}  .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days.flex_tl_weekday6,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_days.flex_tl_weekday7,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks.flex_tl_weekday6,
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_1 .flex_tl_resource_title_dates_container .flex_tl_resource_title_dates_weeks.flex_tl_weekday7{
color: #bd7f78;
}    .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar {
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell {
border-left:1px solid #eee;
color:#aaa;
font-size: 0.7em;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.new_month .in_cell_time_hour:first-child .in_cell_date_container{
border-left:2px solid #C54;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell.new_month.exist_booking_in_cell .in_cell_time_hour:first-child .in_cell_date_container{
border-left:1px solid #C54;
}   .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id{
background: none repeat scroll 0 0 #FC4;
margin-left: -1px; } .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.start_new_booking{
border-left:2px solid #f3a844;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking {
background-color: #78A;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.start_new_booking{
border-color: #616f8b;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.past_date{
background-color:#f0cf77;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.approved_booking.past_date{
background-color:#9099aa;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.start_new_booking.booking_trash {
border-left:2px solid #901c1a;
}
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id.booking_trash {
background-color:#DB6F6D;
}  .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_dates .flex_tl_day_cell.today_date .in_cell_time_section_in_day{ } .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.today_date .in_cell_time_section_in_day{
border-left: 1px solid #090;
} .flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.today_date .in_cell_time_section_in_day,
.flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell.today_date .in_cell_time_section_in_day{
border-left: none;
} .flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour.today_time,
.flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar.flex_tl_row_bar_show_booking_titles .flex_tl_day_cell .in_cell_time_section_in_day .in_cell_time_hour.today_time {
border-left: 1px solid #77ce0f;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_bookings .booking_id a {
font-size:7px;
font-weight:600;
color:#fff;
cursor: pointer;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title{
background: #777;
color: #fff;
border-left: 2px solid #555;
cursor: pointer;
border-radius: 3px;
} .flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_booking_titles .in_cell_date_booking_title.several_bookings_in_cell{
font-weight: bold;
background: #fdab36;
color: #455366;
border-left: 2px solid #dd8b16;
} .flex_timeline_frame.flex_frame_view_days_num_30.flex_tl_single_resource
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates,
.flex_timeline_frame.flex_frame_view_days_num_1.flex_tl_matrix_resources
.flex_tl_table .flex_tl_table_row_bookings .flex_tl_collumn_2 .flex_tl_dates_bar .flex_tl_day_cell .in_cell_date_container_show_dates{
border-left:1px solid #eee;
border-top:1px solid #eee;
font-size:0.8em;
word-wrap: normal;
white-space: nowrap;
overflow: hidden;
padding:0 2px;
}