<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
(function ($) {
"use strict";
var $document = $(document),
$window = $(window),
forms = {
contactForm: $('#contactForm'),
orderForm: $('#orderForm'),
questionForm: $('#questionForm')
};
$document.ready(function () {
// order form
if (forms.orderForm.length) {
var $orderForm = forms.orderForm;
$orderForm.validate({
rules: {
name: {
required: true,
minlength: 2
},
message: {
required: true,
minlength: 20
},
email: {
required: true,
email: true
}
},
messages: {
name: {
required: "Please enter your name",
minlength: "Your name must consist of at least 2 characters"
},
message: {
required: "Please enter message",
minlength: "Your message must consist of at least 20 characters"
},
email: {
required: "Please enter your email"
}
},
submitHandler: function submitHandler(form) {
$(form).ajaxSubmit({
type: "POST",
data: $(form).serialize(),
url: "form/process-order.php",
success: function success() {
$('.successform', $orderForm).fadeIn();
$orderForm.get(0).reset();
},
error: function error() {
$('.errorform', $orderForm).fadeIn();
}
});
}
});
}
// contact page form
if (forms.contactForm.length) {
var $contactform = forms.contactForm;
$contactform.validate({
rules: {
name: {
required: true,
minlength: 2
},
message: {
required: true,
minlength: 20
},
email: {
required: true,
email: true
}
},
messages: {
name: {
required: "Please enter your name",
minlength: "Your name must consist of at least 2 characters"
},
message: {
required: "Please enter message",
minlength: "Your message must consist of at least 20 characters"
},
email: {
required: "Please enter your email"
}
},
submitHandler: function submitHandler(form) {
$(form).ajaxSubmit({
type: "POST",
data: $(form).serialize(),
url: "form/process-contact.php",
success: function success() {
$('.successform', $contactform).fadeIn();
$orderForm.get(0).reset();
},
error: function error() {
$('.errorform', $contactform).fadeIn();
}
});
}
});
}
// question page form
if (forms.questionForm.length) {
var $questionForm = forms.questionForm;
$questionForm.validate({
rules: {
name: {
required: true,
minlength: 2
},
message: {
required: true,
minlength: 20
},
email: {
required: true,
email: true
}
},
messages: {
name: {
required: "Please enter your name",
minlength: "Your name must consist of at least 2 characters"
},
message: {
required: "Please enter message",
minlength: "Your message must consist of at least 20 characters"
},
email: {
required: "Please enter your email"
}
},
submitHandler: function submitHandler(form) {
$(form).ajaxSubmit({
type: "POST",
data: $(form).serialize(),
url: "form/process-question.php",
success: function success() {
$('.successform', $questionForm).fadeIn();
$questionForm.get(0).reset();
},
error: function error() {
$('.errorform', $questionForm).fadeIn();
}
});
}
});
}
// datepicker
if ($('.datetimepicker').length) {
$('.datetimepicker').datetimepicker({
format: 'DD/MM/YYYY',
icons: {
time: 'icon icon-clock',
date: 'icon icon-calendar',
up: 'icon icon-arrow_up',
down: 'icon icon-arrow_down',
previous: 'icon icon-arrow-left',
next: 'icon icon-arrow-right',
today: 'icon icon-today',
clear: 'icon icon-trash',
close: 'icon icon-cancel-music'
}
});
}
if ($('.timepicker').length) {
$('.timepicker').datetimepicker({
format: 'LT',
icons: {
time: 'icon icon-clock',
up: 'icon icon-arrow_up',
down: 'icon icon-arrow_down',
previous: 'icon icon-arrow-left',
next: 'icon icon-arrow-right'
}
});
}
});
})(jQuery);html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0} @media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn&gt;.caret,.dropup&gt;.btn&gt;.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/css/fonts/glyphicons-halflings-regular.eot);src:url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/css/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/css/fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/css/fonts/glyphicons-halflings-regular.woff) format('woff'),url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/css/fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/css/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner&gt;.item&gt;a&gt;img,.carousel-inner&gt;.item&gt;img,.img-responsive,.thumbnail a&gt;img,.thumbnail&gt;img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline&gt;li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table&gt;tbody&gt;tr&gt;td,.table&gt;tbody&gt;tr&gt;th,.table&gt;tfoot&gt;tr&gt;td,.table&gt;tfoot&gt;tr&gt;th,.table&gt;thead&gt;tr&gt;td,.table&gt;thead&gt;tr&gt;th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table&gt;thead&gt;tr&gt;th{vertical-align:bottom;border-bottom:2px solid #ddd}.table&gt;caption+thead&gt;tr:first-child&gt;td,.table&gt;caption+thead&gt;tr:first-child&gt;th,.table&gt;colgroup+thead&gt;tr:first-child&gt;td,.table&gt;colgroup+thead&gt;tr:first-child&gt;th,.table&gt;thead:first-child&gt;tr:first-child&gt;td,.table&gt;thead:first-child&gt;tr:first-child&gt;th{border-top:0}.table&gt;tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed&gt;tbody&gt;tr&gt;td,.table-condensed&gt;tbody&gt;tr&gt;th,.table-condensed&gt;tfoot&gt;tr&gt;td,.table-condensed&gt;tfoot&gt;tr&gt;th,.table-condensed&gt;thead&gt;tr&gt;td,.table-condensed&gt;thead&gt;tr&gt;th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered&gt;tbody&gt;tr&gt;td,.table-bordered&gt;tbody&gt;tr&gt;th,.table-bordered&gt;tfoot&gt;tr&gt;td,.table-bordered&gt;tfoot&gt;tr&gt;th,.table-bordered&gt;thead&gt;tr&gt;td,.table-bordered&gt;thead&gt;tr&gt;th{border:1px solid #ddd}.table-bordered&gt;thead&gt;tr&gt;td,.table-bordered&gt;thead&gt;tr&gt;th{border-bottom-width:2px}.table-striped&gt;tbody&gt;tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover&gt;tbody&gt;tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table&gt;tbody&gt;tr.active&gt;td,.table&gt;tbody&gt;tr.active&gt;th,.table&gt;tbody&gt;tr&gt;td.active,.table&gt;tbody&gt;tr&gt;th.active,.table&gt;tfoot&gt;tr.active&gt;td,.table&gt;tfoot&gt;tr.active&gt;th,.table&gt;tfoot&gt;tr&gt;td.active,.table&gt;tfoot&gt;tr&gt;th.active,.table&gt;thead&gt;tr.active&gt;td,.table&gt;thead&gt;tr.active&gt;th,.table&gt;thead&gt;tr&gt;td.active,.table&gt;thead&gt;tr&gt;th.active{background-color:#f5f5f5}.table-hover&gt;tbody&gt;tr.active:hover&gt;td,.table-hover&gt;tbody&gt;tr.active:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.active,.table-hover&gt;tbody&gt;tr&gt;td.active:hover,.table-hover&gt;tbody&gt;tr&gt;th.active:hover{background-color:#e8e8e8}.table&gt;tbody&gt;tr.success&gt;td,.table&gt;tbody&gt;tr.success&gt;th,.table&gt;tbody&gt;tr&gt;td.success,.table&gt;tbody&gt;tr&gt;th.success,.table&gt;tfoot&gt;tr.success&gt;td,.table&gt;tfoot&gt;tr.success&gt;th,.table&gt;tfoot&gt;tr&gt;td.success,.table&gt;tfoot&gt;tr&gt;th.success,.table&gt;thead&gt;tr.success&gt;td,.table&gt;thead&gt;tr.success&gt;th,.table&gt;thead&gt;tr&gt;td.success,.table&gt;thead&gt;tr&gt;th.success{background-color:#dff0d8}.table-hover&gt;tbody&gt;tr.success:hover&gt;td,.table-hover&gt;tbody&gt;tr.success:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.success,.table-hover&gt;tbody&gt;tr&gt;td.success:hover,.table-hover&gt;tbody&gt;tr&gt;th.success:hover{background-color:#d0e9c6}.table&gt;tbody&gt;tr.info&gt;td,.table&gt;tbody&gt;tr.info&gt;th,.table&gt;tbody&gt;tr&gt;td.info,.table&gt;tbody&gt;tr&gt;th.info,.table&gt;tfoot&gt;tr.info&gt;td,.table&gt;tfoot&gt;tr.info&gt;th,.table&gt;tfoot&gt;tr&gt;td.info,.table&gt;tfoot&gt;tr&gt;th.info,.table&gt;thead&gt;tr.info&gt;td,.table&gt;thead&gt;tr.info&gt;th,.table&gt;thead&gt;tr&gt;td.info,.table&gt;thead&gt;tr&gt;th.info{background-color:#d9edf7}.table-hover&gt;tbody&gt;tr.info:hover&gt;td,.table-hover&gt;tbody&gt;tr.info:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.info,.table-hover&gt;tbody&gt;tr&gt;td.info:hover,.table-hover&gt;tbody&gt;tr&gt;th.info:hover{background-color:#c4e3f3}.table&gt;tbody&gt;tr.warning&gt;td,.table&gt;tbody&gt;tr.warning&gt;th,.table&gt;tbody&gt;tr&gt;td.warning,.table&gt;tbody&gt;tr&gt;th.warning,.table&gt;tfoot&gt;tr.warning&gt;td,.table&gt;tfoot&gt;tr.warning&gt;th,.table&gt;tfoot&gt;tr&gt;td.warning,.table&gt;tfoot&gt;tr&gt;th.warning,.table&gt;thead&gt;tr.warning&gt;td,.table&gt;thead&gt;tr.warning&gt;th,.table&gt;thead&gt;tr&gt;td.warning,.table&gt;thead&gt;tr&gt;th.warning{background-color:#fcf8e3}.table-hover&gt;tbody&gt;tr.warning:hover&gt;td,.table-hover&gt;tbody&gt;tr.warning:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.warning,.table-hover&gt;tbody&gt;tr&gt;td.warning:hover,.table-hover&gt;tbody&gt;tr&gt;th.warning:hover{background-color:#faf2cc}.table&gt;tbody&gt;tr.danger&gt;td,.table&gt;tbody&gt;tr.danger&gt;th,.table&gt;tbody&gt;tr&gt;td.danger,.table&gt;tbody&gt;tr&gt;th.danger,.table&gt;tfoot&gt;tr.danger&gt;td,.table&gt;tfoot&gt;tr.danger&gt;th,.table&gt;tfoot&gt;tr&gt;td.danger,.table&gt;tfoot&gt;tr&gt;th.danger,.table&gt;thead&gt;tr.danger&gt;td,.table&gt;thead&gt;tr.danger&gt;th,.table&gt;thead&gt;tr&gt;td.danger,.table&gt;thead&gt;tr&gt;th.danger{background-color:#f2dede}.table-hover&gt;tbody&gt;tr.danger:hover&gt;td,.table-hover&gt;tbody&gt;tr.danger:hover&gt;th,.table-hover&gt;tbody&gt;tr:hover&gt;.danger,.table-hover&gt;tbody&gt;tr&gt;td.danger:hover,.table-hover&gt;tbody&gt;tr&gt;th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive&gt;.table{margin-bottom:0}.table-responsive&gt;.table&gt;tbody&gt;tr&gt;td,.table-responsive&gt;.table&gt;tbody&gt;tr&gt;th,.table-responsive&gt;.table&gt;tfoot&gt;tr&gt;td,.table-responsive&gt;.table&gt;tfoot&gt;tr&gt;th,.table-responsive&gt;.table&gt;thead&gt;tr&gt;td,.table-responsive&gt;.table&gt;thead&gt;tr&gt;th{white-space:nowrap}.table-responsive&gt;.table-bordered{border:0}.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:first-child,.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:first-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:first-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:first-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:first-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:first-child{border-left:0}.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:last-child,.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:last-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:last-child,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:last-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:last-child,.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:last-child{border-right:0}.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;td,.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;th,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;td,.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group&gt;.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open&gt;.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open&gt;.dropdown-toggle.btn-default.focus,.open&gt;.dropdown-toggle.btn-default:focus,.open&gt;.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open&gt;.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open&gt;.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open&gt;.dropdown-toggle.btn-primary.focus,.open&gt;.dropdown-toggle.btn-primary:focus,.open&gt;.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open&gt;.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open&gt;.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open&gt;.dropdown-toggle.btn-success.focus,.open&gt;.dropdown-toggle.btn-success:focus,.open&gt;.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open&gt;.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open&gt;.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open&gt;.dropdown-toggle.btn-info.focus,.open&gt;.dropdown-toggle.btn-info:focus,.open&gt;.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open&gt;.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open&gt;.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open&gt;.dropdown-toggle.btn-warning.focus,.open&gt;.dropdown-toggle.btn-warning:focus,.open&gt;.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open&gt;.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open&gt;.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open&gt;.dropdown-toggle.btn-danger.focus,.open&gt;.dropdown-toggle.btn-danger:focus,.open&gt;.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open&gt;.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg&gt;.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm&gt;.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs&gt;.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu&gt;li&gt;a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu&gt;li&gt;a:focus,.dropdown-menu&gt;li&gt;a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu&gt;.active&gt;a,.dropdown-menu&gt;.active&gt;a:focus,.dropdown-menu&gt;.active&gt;a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu&gt;.disabled&gt;a,.dropdown-menu&gt;.disabled&gt;a:focus,.dropdown-menu&gt;.disabled&gt;a:hover{color:#777}.dropdown-menu&gt;.disabled&gt;a:focus,.dropdown-menu&gt;.disabled&gt;a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open&gt;.dropdown-menu{display:block}.open&gt;a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right&gt;.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical&gt;.btn,.btn-group&gt;.btn{position:relative;float:left}.btn-group-vertical&gt;.btn.active,.btn-group-vertical&gt;.btn:active,.btn-group-vertical&gt;.btn:focus,.btn-group-vertical&gt;.btn:hover,.btn-group&gt;.btn.active,.btn-group&gt;.btn:active,.btn-group&gt;.btn:focus,.btn-group&gt;.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar&gt;.btn,.btn-toolbar&gt;.btn-group,.btn-toolbar&gt;.input-group{margin-left:5px}.btn-group&gt;.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group&gt;.btn:first-child{margin-left:0}.btn-group&gt;.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group&gt;.btn:last-child:not(:first-child),.btn-group&gt;.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group&gt;.btn-group{float:left}.btn-group&gt;.btn-group:not(:first-child):not(:last-child)&gt;.btn{border-radius:0}.btn-group&gt;.btn-group:first-child:not(:last-child)&gt;.btn:last-child,.btn-group&gt;.btn-group:first-child:not(:last-child)&gt;.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group&gt;.btn-group:last-child:not(:first-child)&gt;.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group&gt;.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group&gt;.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical&gt;.btn,.btn-group-vertical&gt;.btn-group,.btn-group-vertical&gt;.btn-group&gt;.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical&gt;.btn-group&gt;.btn{float:none}.btn-group-vertical&gt;.btn+.btn,.btn-group-vertical&gt;.btn+.btn-group,.btn-group-vertical&gt;.btn-group+.btn,.btn-group-vertical&gt;.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical&gt;.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical&gt;.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical&gt;.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical&gt;.btn-group:not(:first-child):not(:last-child)&gt;.btn{border-radius:0}.btn-group-vertical&gt;.btn-group:first-child:not(:last-child)&gt;.btn:last-child,.btn-group-vertical&gt;.btn-group:first-child:not(:last-child)&gt;.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical&gt;.btn-group:last-child:not(:first-child)&gt;.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified&gt;.btn,.btn-group-justified&gt;.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified&gt;.btn-group .btn{width:100%}.btn-group-justified&gt;.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]&gt;.btn input[type=checkbox],[data-toggle=buttons]&gt;.btn input[type=radio],[data-toggle=buttons]&gt;.btn-group&gt;.btn input[type=checkbox],[data-toggle=buttons]&gt;.btn-group&gt;.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg&gt;.form-control,.input-group-lg&gt;.input-group-addon,.input-group-lg&gt;.input-group-btn&gt;.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg&gt;.form-control,select.input-group-lg&gt;.input-group-addon,select.input-group-lg&gt;.input-group-btn&gt;.btn{height:46px;line-height:46px}select[multiple].input-group-lg&gt;.form-control,select[multiple].input-group-lg&gt;.input-group-addon,select[multiple].input-group-lg&gt;.input-group-btn&gt;.btn,textarea.input-group-lg&gt;.form-control,textarea.input-group-lg&gt;.input-group-addon,textarea.input-group-lg&gt;.input-group-btn&gt;.btn{height:auto}.input-group-sm&gt;.form-control,.input-group-sm&gt;.input-group-addon,.input-group-sm&gt;.input-group-btn&gt;.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm&gt;.form-control,select.input-group-sm&gt;.input-group-addon,select.input-group-sm&gt;.input-group-btn&gt;.btn{height:30px;line-height:30px}select[multiple].input-group-sm&gt;.form-control,select[multiple].input-group-sm&gt;.input-group-addon,select[multiple].input-group-sm&gt;.input-group-btn&gt;.btn,textarea.input-group-sm&gt;.form-control,textarea.input-group-sm&gt;.input-group-addon,textarea.input-group-sm&gt;.input-group-btn&gt;.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child&gt;.btn,.input-group-btn:first-child&gt;.btn-group&gt;.btn,.input-group-btn:first-child&gt;.dropdown-toggle,.input-group-btn:last-child&gt;.btn-group:not(:last-child)&gt;.btn,.input-group-btn:last-child&gt;.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child&gt;.btn-group:not(:first-child)&gt;.btn,.input-group-btn:first-child&gt;.btn:not(:first-child),.input-group-btn:last-child&gt;.btn,.input-group-btn:last-child&gt;.btn-group&gt;.btn,.input-group-btn:last-child&gt;.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn&gt;.btn{position:relative}.input-group-btn&gt;.btn+.btn{margin-left:-1px}.input-group-btn&gt;.btn:active,.input-group-btn&gt;.btn:focus,.input-group-btn&gt;.btn:hover{z-index:2}.input-group-btn:first-child&gt;.btn,.input-group-btn:first-child&gt;.btn-group{margin-right:-1px}.input-group-btn:last-child&gt;.btn,.input-group-btn:last-child&gt;.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav&gt;li{position:relative;display:block}.nav&gt;li&gt;a{position:relative;display:block;padding:10px 15px}.nav&gt;li&gt;a:focus,.nav&gt;li&gt;a:hover{text-decoration:none;background-color:#eee}.nav&gt;li.disabled&gt;a{color:#777}.nav&gt;li.disabled&gt;a:focus,.nav&gt;li.disabled&gt;a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open&gt;a,.nav .open&gt;a:focus,.nav .open&gt;a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav&gt;li&gt;a&gt;img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs&gt;li{float:left;margin-bottom:-1px}.nav-tabs&gt;li&gt;a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs&gt;li&gt;a:hover{border-color:#eee #eee #ddd}.nav-tabs&gt;li.active&gt;a,.nav-tabs&gt;li.active&gt;a:focus,.nav-tabs&gt;li.active&gt;a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified&gt;li{float:none}.nav-tabs.nav-justified&gt;li&gt;a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified&gt;.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified&gt;li{display:table-cell;width:1%}.nav-tabs.nav-justified&gt;li&gt;a{margin-bottom:0}}.nav-tabs.nav-justified&gt;li&gt;a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified&gt;.active&gt;a,.nav-tabs.nav-justified&gt;.active&gt;a:focus,.nav-tabs.nav-justified&gt;.active&gt;a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified&gt;li&gt;a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified&gt;.active&gt;a,.nav-tabs.nav-justified&gt;.active&gt;a:focus,.nav-tabs.nav-justified&gt;.active&gt;a:hover{border-bottom-color:#fff}}.nav-pills&gt;li{float:left}.nav-pills&gt;li&gt;a{border-radius:4px}.nav-pills&gt;li+li{margin-left:2px}.nav-pills&gt;li.active&gt;a,.nav-pills&gt;li.active&gt;a:focus,.nav-pills&gt;li.active&gt;a:hover{color:#fff;background-color:#337ab7}.nav-stacked&gt;li{float:none}.nav-stacked&gt;li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified&gt;li{float:none}.nav-justified&gt;li&gt;a{margin-bottom:5px;text-align:center}.nav-justified&gt;.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified&gt;li{display:table-cell;width:1%}.nav-justified&gt;li&gt;a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified&gt;li&gt;a{margin-right:0;border-radius:4px}.nav-tabs-justified&gt;.active&gt;a,.nav-tabs-justified&gt;.active&gt;a:focus,.nav-tabs-justified&gt;.active&gt;a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified&gt;li&gt;a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified&gt;.active&gt;a,.nav-tabs-justified&gt;.active&gt;a:focus,.nav-tabs-justified&gt;.active&gt;a:hover{border-bottom-color:#fff}}.tab-content&gt;.tab-pane{display:none}.tab-content&gt;.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid&gt;.navbar-collapse,.container-fluid&gt;.navbar-header,.container&gt;.navbar-collapse,.container&gt;.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid&gt;.navbar-collapse,.container-fluid&gt;.navbar-header,.container&gt;.navbar-collapse,.container&gt;.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand&gt;img{display:block}@media (min-width:768px){.navbar&gt;.container .navbar-brand,.navbar&gt;.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav&gt;li&gt;a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu&gt;li&gt;a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu&gt;li&gt;a{line-height:20px}.navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,.navbar-nav .open .dropdown-menu&gt;li&gt;a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav&gt;li{float:left}.navbar-nav&gt;li&gt;a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group&gt;.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav&gt;li&gt;.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav&gt;li&gt;.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav&gt;li&gt;a{color:#777}.navbar-default .navbar-nav&gt;li&gt;a:focus,.navbar-default .navbar-nav&gt;li&gt;a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav&gt;.active&gt;a,.navbar-default .navbar-nav&gt;.active&gt;a:focus,.navbar-default .navbar-nav&gt;.active&gt;a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav&gt;.disabled&gt;a,.navbar-default .navbar-nav&gt;.disabled&gt;a:focus,.navbar-default .navbar-nav&gt;.disabled&gt;a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav&gt;.open&gt;a,.navbar-default .navbar-nav&gt;.open&gt;a:focus,.navbar-default .navbar-nav&gt;.open&gt;a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu&gt;li&gt;a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu&gt;.active&gt;a,.navbar-default .navbar-nav .open .dropdown-menu&gt;.active&gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&gt;.active&gt;a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a,.navbar-default .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav&gt;li&gt;a{color:#9d9d9d}.navbar-inverse .navbar-nav&gt;li&gt;a:focus,.navbar-inverse .navbar-nav&gt;li&gt;a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav&gt;.active&gt;a,.navbar-inverse .navbar-nav&gt;.active&gt;a:focus,.navbar-inverse .navbar-nav&gt;.active&gt;a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav&gt;.disabled&gt;a,.navbar-inverse .navbar-nav&gt;.disabled&gt;a:focus,.navbar-inverse .navbar-nav&gt;.disabled&gt;a:hover{color:@custom-color-alt;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav&gt;.open&gt;a,.navbar-inverse .navbar-nav&gt;.open&gt;a:focus,.navbar-inverse .navbar-nav&gt;.open&gt;a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;li&gt;a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.active&gt;a,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.active&gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.active&gt;a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&gt;.disabled&gt;a:hover{color:@custom-color-alt;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:@custom-color-alt}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb&gt;li{display:inline-block}.breadcrumb&gt;li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb&gt;.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination&gt;li{display:inline}.pagination&gt;li&gt;a,.pagination&gt;li&gt;span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination&gt;li:first-child&gt;a,.pagination&gt;li:first-child&gt;span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination&gt;li:last-child&gt;a,.pagination&gt;li:last-child&gt;span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination&gt;li&gt;a:focus,.pagination&gt;li&gt;a:hover,.pagination&gt;li&gt;span:focus,.pagination&gt;li&gt;span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination&gt;.active&gt;a,.pagination&gt;.active&gt;a:focus,.pagination&gt;.active&gt;a:hover,.pagination&gt;.active&gt;span,.pagination&gt;.active&gt;span:focus,.pagination&gt;.active&gt;span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination&gt;.disabled&gt;a,.pagination&gt;.disabled&gt;a:focus,.pagination&gt;.disabled&gt;a:hover,.pagination&gt;.disabled&gt;span,.pagination&gt;.disabled&gt;span:focus,.pagination&gt;.disabled&gt;span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg&gt;li&gt;a,.pagination-lg&gt;li&gt;span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg&gt;li:first-child&gt;a,.pagination-lg&gt;li:first-child&gt;span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg&gt;li:last-child&gt;a,.pagination-lg&gt;li:last-child&gt;span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm&gt;li&gt;a,.pagination-sm&gt;li&gt;span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm&gt;li:first-child&gt;a,.pagination-sm&gt;li:first-child&gt;span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm&gt;li:last-child&gt;a,.pagination-sm&gt;li:last-child&gt;span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li&gt;a,.pager li&gt;span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li&gt;a:focus,.pager li&gt;a:hover{text-decoration:none;background-color:#eee}.pager .next&gt;a,.pager .next&gt;span{float:right}.pager .previous&gt;a,.pager .previous&gt;span{float:left}.pager .disabled&gt;a,.pager .disabled&gt;a:focus,.pager .disabled&gt;a:hover,.pager .disabled&gt;span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs&gt;.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active&gt;.badge,.nav-pills&gt;.active&gt;a&gt;.badge{color:#337ab7;background-color:#fff}.list-group-item&gt;.badge{float:right}.list-group-item&gt;.badge+.badge{margin-right:5px}.nav-pills&gt;li&gt;a&gt;.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron&gt;hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a&gt;img,.thumbnail&gt;img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert&gt;p,.alert&gt;ul{margin-bottom:0}.alert&gt;p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media&gt;.pull-right{padding-left:10px}.media-left,.media&gt;.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading&gt;.small,.list-group-item.active .list-group-item-heading&gt;small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading&gt;.small,.list-group-item.active:focus .list-group-item-heading&gt;small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading&gt;.small,.list-group-item.active:hover .list-group-item-heading&gt;small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading&gt;.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title&gt;.small,.panel-title&gt;.small&gt;a,.panel-title&gt;a,.panel-title&gt;small,.panel-title&gt;small&gt;a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.list-group,.panel&gt;.panel-collapse&gt;.list-group{margin-bottom:0}.panel&gt;.list-group .list-group-item,.panel&gt;.panel-collapse&gt;.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel&gt;.list-group:first-child .list-group-item:first-child,.panel&gt;.panel-collapse&gt;.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel&gt;.list-group:last-child .list-group-item:last-child,.panel&gt;.panel-collapse&gt;.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.panel-heading+.panel-collapse&gt;.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel&gt;.panel-collapse&gt;.table,.panel&gt;.table,.panel&gt;.table-responsive&gt;.table{margin-bottom:0}.panel&gt;.panel-collapse&gt;.table caption,.panel&gt;.table caption,.panel&gt;.table-responsive&gt;.table caption{padding-right:15px;padding-left:15px}.panel&gt;.table-responsive:first-child&gt;.table:first-child,.panel&gt;.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:first-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:first-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:first-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:first-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:first-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:first-child{border-top-left-radius:3px}.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:last-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:last-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:last-child,.panel&gt;.table-responsive:first-child&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:last-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child td:last-child,.panel&gt;.table:first-child&gt;tbody:first-child&gt;tr:first-child th:last-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child td:last-child,.panel&gt;.table:first-child&gt;thead:first-child&gt;tr:first-child th:last-child{border-top-right-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child,.panel&gt;.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:first-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:first-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:first-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:first-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:first-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:first-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:first-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:first-child{border-bottom-left-radius:3px}.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:last-child,.panel&gt;.table-responsive:last-child&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:last-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child td:last-child,.panel&gt;.table:last-child&gt;tbody:last-child&gt;tr:last-child th:last-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child td:last-child,.panel&gt;.table:last-child&gt;tfoot:last-child&gt;tr:last-child th:last-child{border-bottom-right-radius:3px}.panel&gt;.panel-body+.table,.panel&gt;.panel-body+.table-responsive,.panel&gt;.table+.panel-body,.panel&gt;.table-responsive+.panel-body{border-top:1px solid #ddd}.panel&gt;.table&gt;tbody:first-child&gt;tr:first-child td,.panel&gt;.table&gt;tbody:first-child&gt;tr:first-child th{border-top:0}.panel&gt;.table-bordered,.panel&gt;.table-responsive&gt;.table-bordered{border:0}.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;td:first-child,.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;th:first-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:first-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:first-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;td:first-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;th:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:first-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:first-child{border-left:0}.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;td:last-child,.panel&gt;.table-bordered&gt;tbody&gt;tr&gt;th:last-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:last-child,.panel&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:last-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;td:last-child,.panel&gt;.table-bordered&gt;thead&gt;tr&gt;th:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;td:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr&gt;th:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;td:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr&gt;th:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;td:last-child,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr&gt;th:last-child{border-right:0}.panel&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;td,.panel&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;th,.panel&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;td,.panel&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:first-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;thead&gt;tr:first-child&gt;th{border-bottom:0}.panel&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;td,.panel&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;th,.panel&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;td,.panel&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;tbody&gt;tr:last-child&gt;th,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;td,.panel&gt;.table-responsive&gt;.table-bordered&gt;tfoot&gt;tr:last-child&gt;th{border-bottom:0}.panel&gt;.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse&gt;.list-group,.panel-group .panel-heading+.panel-collapse&gt;.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default&gt;.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#ddd}.panel-default&gt;.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary&gt;.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#337ab7}.panel-primary&gt;.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success&gt;.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#d6e9c6}.panel-success&gt;.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info&gt;.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#bce8f1}.panel-info&gt;.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning&gt;.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#faebcc}.panel-warning&gt;.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger&gt;.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger&gt;.panel-heading+.panel-collapse&gt;.panel-body{border-top-color:#ebccd1}.panel-danger&gt;.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger&gt;.panel-footer+.panel-collapse&gt;.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover&gt;.arrow,.popover&gt;.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover&gt;.arrow{border-width:11px}.popover&gt;.arrow:after{content:"";border-width:10px}.popover.top&gt;.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top&gt;.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right&gt;.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right&gt;.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom&gt;.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom&gt;.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left&gt;.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left&gt;.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner&gt;.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner&gt;.item&gt;a&gt;img,.carousel-inner&gt;.item&gt;img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner&gt;.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner&gt;.item.active.right,.carousel-inner&gt;.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner&gt;.item.active.left,.carousel-inner&gt;.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner&gt;.item.active,.carousel-inner&gt;.item.next.left,.carousel-inner&gt;.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner&gt;.active,.carousel-inner&gt;.next,.carousel-inner&gt;.prev{display:block}.carousel-inner&gt;.active{left:0}.carousel-inner&gt;.next,.carousel-inner&gt;.prev{position:absolute;top:0;width:100%}.carousel-inner&gt;.next{left:100%}.carousel-inner&gt;.prev{left:-100%}.carousel-inner&gt;.next.left,.carousel-inner&gt;.prev.right{left:0}.carousel-inner&gt;.active.left{left:-100%}.carousel-inner&gt;.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical&gt;.btn-group:after,.btn-group-vertical&gt;.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical&gt;.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
 .animated:not(.no-animate) {
-webkit-animation-duration: .9s;
animation-duration: .9s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
opacity: 1;
}
.animation {
opacity: 0;
opacity: 1\9;
}
.animation.no-animate {
opacity: 1 !important;
animation-name: none !important;
-webkit-animation-name: none !important;
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes scaleOut {
from {
opacity: 0;
-webkit-transform: scale3d(1.2, 1.2, 1.2);
transform: scale3d(1.2, 1.2, 1.2);
}
70% {
opacity: 1;
}
}
@keyframes scaleOut {
from {
opacity: 0;
-webkit-transform: scale3d(1.2, 1.2, 1.2);
transform: scale3d(1.2, 1.2, 1.2);
}
70% {
opacity: 1;
}
}
.scaleOut {
-webkit-animation-name: scaleOut;
animation-name: scaleOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(1.3, 1.3, 1.3);
transform: scale3d(1.3, 1.3, 1.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}.slick-slider {
position: relative;
display: block;
-moz-box-sizing: border-box;
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;
}
.slick-slide img {
display: block;
width: 100%;
}
.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;
}body:after {
content: url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/lightbox/close.png) url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/lightbox/loading.gif) url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/lightbox/prev.png) url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/lightbox/next.png);
display: none;
}
body.lb-disable-scrolling {
overflow: hidden;
}
.lightboxOverlay {
position: absolute;
top: 0;
left: 0;
z-index: 9999;
background-color: black;
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=80);
opacity: 0.8;
display: none;
}
.lightbox {
position: absolute;
left: 0;
width: 100%;
z-index: 10000;
text-align: center;
line-height: 0;
font-weight: normal;
}
.lightbox .lb-image {
display: block;
height: auto;
max-width: inherit;
max-height: none;
border-radius: 3px; border: 4px solid white;
}
.lightbox a img {
border: none;
}
.lb-outerContainer {
position: relative;
*zoom: 1;
width: 250px;
height: 250px;
margin: 0 auto;
border-radius: 4px; background-color: white;
}
.lb-outerContainer:after {
content: "";
display: table;
clear: both;
}
.lb-loader {
position: absolute;
top: 43%;
left: 0;
height: 25%;
width: 100%;
text-align: center;
line-height: 0;
}
.lb-cancel {
display: block;
width: 32px;
height: 32px;
margin: 0 auto;
background: url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/lightbox/loading.gif) no-repeat;
}
.lb-nav {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 10;
}
.lb-container &gt; .nav {
left: 0;
}
.lb-nav a {
outline: none;
background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==);
}
.lb-prev,
.lb-next {
height: 100%;
cursor: pointer;
display: block;
}
.lb-nav a.lb-prev {
width: 34%;
left: 0;
float: left;
background: url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/lightbox/prev.png) left 48% no-repeat;
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
-webkit-transition: opacity 0.6s;
-moz-transition: opacity 0.6s;
-o-transition: opacity 0.6s;
transition: opacity 0.6s;
}
.lb-nav a.lb-prev:hover {
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}
.lb-nav a.lb-next {
width: 64%;
right: 0;
float: right;
background: url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/lightbox/next.png) right 48% no-repeat;
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
-webkit-transition: opacity 0.6s;
-moz-transition: opacity 0.6s;
-o-transition: opacity 0.6s;
transition: opacity 0.6s;
}
.lb-nav a.lb-next:hover {
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}
.lb-dataContainer {
margin: 0 auto;
padding-top: 5px;
*zoom: 1;
width: 100%;
-moz-border-radius-bottomleft: 4px;
-webkit-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
-webkit-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
.lb-dataContainer:after {
content: "";
display: table;
clear: both;
}
.lb-data {
padding: 0 4px;
color: #ccc;
}
.lb-data .lb-details {
width: 85%;
float: left;
text-align: left;
line-height: 1.1em;
}
.lb-data .lb-caption {
font-size: 13px;
font-weight: bold;
line-height: 1em;
}
.lb-data .lb-caption a {
color: #4ae;
}
.lb-data .lb-number {
display: block;
clear: left;
padding-bottom: 1em;
font-size: 12px;
color: #999999;
}
.lb-data .lb-close {
display: block;
float: right;
width: 30px;
height: 30px;
background: url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/lightbox/close.png) top right no-repeat;
text-align: right;
outline: none;
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=70);
opacity: 0.7;
-webkit-transition: opacity 0.2s;
-moz-transition: opacity 0.2s;
-o-transition: opacity 0.2s;
transition: opacity 0.2s;
}
.lb-data .lb-close:hover {
cursor: pointer;
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}.prd-grid {
float: left;
position: relative;
margin-bottom: 120px;
width:100%;
}
body:not(.home) {
background-repeat: no-repeat;
}
body.custom-background {
background-color: #81d742;
background-size: 100% 322px;
}
.product-block-gallery .flex-viewport {
float: right;
width: 75%;
}
.woocommerce-product-gallery__image {
text-align: center;
}
.woocommerce-product-gallery__trigger {
position: absolute;
right: 17px;
top: 5px;
z-index: 999;
}
.product.custom-sale-style .row .onsale {
left: 12% !important;
}
.flex-control-nav.flex-control-thumbs img {
cursor: pointer;
}
.flex-control-nav.flex-control-thumbs {
float: left;
height: auto;
overflow: auto;
width: 20%;
padding: 0;
}
#container .woocommerce-breadcrumb {
background-color: #f5f5f5;
border-radius: 0;
color: #333;
display: inline-block;
margin: 0;
padding: 18px 20px;
width: 100%;
}
#container .woocommerce-breadcrumb a {
color: #333;
margin: 0 5px;
}
#container .woocommerce-breadcrumb a:first-child {
margin-left: 0;
}
.woocommerce-products-header {
color: #333;
text-align: center;
}
.woocommerce-products-header {
color: #292929;
font-family: "Muli",sans-serif;
font-size: 44px;
font-weight: 500;
line-height: 44px;
margin: 50px 0 -50px;
}
.woocommerce-products-header h1 {
background: rgba(0, 0, 0, 0) url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/h-decor.png) no-repeat scroll center bottom;
color: #4b5b68;
font-size: 44px;
padding-bottom: 34px;
}
body.custom-background.single-product  {
background-color: #fff;
}
body.custom-background.archive.post-type-archive  {
background-color: #fff;
}
.flex-control-nav.flex-control-thumbs &gt; li:first-child {
margin-top: 0;
}
.summary.entry-summary.col-md-6 {
margin-top: 0;
}
.product_title.entry-title {
font-size: 30px;
line-height: 36px;
margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-product-rating {
margin-bottom: 10px;
}
.woocommerce-review-link {
text-decoration: underline;
}
.woocommerce-review-link:hover {
color:#000;
}
.woocommerce .star-rating span::before{
color:#333;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
color: #4b5b68;
font-size: 24px;
font-weight: 600;
}
.woocommerce div.product .stock {
color: #000;
}
input.input-text.qty {
-moz-appearance: textfield;
border-color: #eeeeee;
border-width: 0 1px;
min-height: 46px;
}
.ui-spinner-button {
background-color: #f7f7f7;
display: block;
height: 70px;
overflow: hidden;
position: absolute;
right: 0;
top: 0;
width: 30px;
}
.ui-spinner-button.ui-spinner-up::before, .ui-spinner-button.ui-spinner-down::before {
color: #808080;
content: "+";
cursor: pointer;
display: block;
line-height: 70px;
text-align: center;
transition: color 0.3s ease 0s;
width: 30px;
font-size: 21px;
}
.ui-spinner {
display: block;
padding: 0 30px;
position: relative;
height: 72px;
}
.ui-spinner-button.ui-spinner-down::before {
content: "-";
font-size: 33px;
}
.ui-spinner-button.ui-spinner-down {
left: 0;
right: auto;
}
.input-text.qty.text.ui-spinner-input {
border: 1px solid #eee;
border-radius: 5px;
height: 70px;
margin: 1px 0;
width: 57px;
}
.quantity {
background: #f5f5f5 none repeat scroll 0 0;
margin-right: 25px !important;
}
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
padding: 10px 20px;
}
.icon-shop-cart {
padding-right: 14px;
font-size: 17px;
vertical-align: text-bottom;
line-height: 22px !important;
font-weight: 700 !important;
}
.header-cart .icon-shop-cart{
margin-right: 0;
}
.woocommerce-product-details__short-description {
border-bottom: 1px solid #e7e7e7;
border-top: 1px solid #e7e7e7;
padding: 25px 0 5px;
margin-bottom: 30px;
}
.up_cart{
margin-top: 30px;
}
.woocommerce span.onsale{
padding: 0px;
}
.wc-tabs &gt; li &gt; a::after {
background: #6fbf52 none repeat scroll 0 0;
bottom: -1px;
content: "";
height: 4px;
left: 0;
position: absolute;
transform: scale(0);
transition: all 0.2s ease 0s;
width: 100%;
}
.wc-tabs &gt; li.active &gt; a::after, .nav-tabs &gt; li:hover &gt; a::after {
transform: scale(1);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
border: 0 solid #d3ced2;
bottom: -1px;
content: " ";
height: 5px;
position: absolute;
width: 5px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
background-color:transparent;
border: 0px solid #d3ced2;
border-radius: 4px 4px 0 0;
display: inline-block;
margin: 0 -5px;
padding: 0 1em;
position: relative;
z-index: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
bottom: 0;
height: 0px;
width: 0px;
}
.tabs.wc-tabs
{
padding:0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
margin: 0 20px;
padding: 0;
}
.tabs.wc-tabs li.active a {
color: #6fbf52  !important;
}
.tabs.wc-tabs li a {
font-size: 24px;
text-transform: capitalize;
}
.woocommerce-Tabs-panel.panel.entry-content.wc-tab {
box-shadow: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
border: 0 solid #e4e1e3;
border-radius: 4px;
margin: 0;
padding: 1em 0 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
border: 0 solid #e4e1e3;
}
.woocommerce .star-rating {
float: left;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
color: #000;
float: left;
font-size: 1.3em;
line-height: 30px;
margin-left:1em;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .description {
float: left;
width: 100%;
}
.woocommerce p.stars a {
color: #005395 !important;
}
.star-5.active {
color: #81d742 !important;
}
#commentform #comment:hover, #commentform #comment:focus, #commentform #comment.focus {
border-color: #005395;
box-shadow: none;
outline: medium none;
}
.textarea-custom {
-moz-appearance: none;
background: #fff none repeat scroll 0 0;
border: 1px solid #dbdbdb;
border-radius: 0;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
color: #2b2b2b;
font-size: 18px;
height: auto;
line-height: 24px;
margin-bottom: 4px;
min-height: 193px;
padding: 15px;
}
.textarea-custom:hover, .textarea-custom:focus, .textarea-custom.focus,.input-custom:hover, .input-custom:focus, .input-custom.focus{
border-color: #005395 !important;
box-shadow: none !important;
outline: medium none !important;
}
.input-custom {
-moz-appearance: none;
background: #fff none repeat scroll 0 0;
border: 1px solid #dbdbdb !important;
border-radius: 0;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) !important;
color: #2b2b2b;
font-size: 18px;
height: 54px !important;
line-height: 24px;
margin-bottom: 4px;
padding: 15px !important;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
color: #515151;
}
.woocommerce-tabs.wc-tabs-wrapper {
margin-bottom: 48px;
margin-top: 48px;
}
.woocommerce .products .prd-info .star-rating ,.woocommerce .product .prd-info .star-rating{
display: block;
float: none;
margin: 0 auto 20px;
}
.prd.product.type-product.status-publish {
text-align: center;
}
.woocommerce-loop-product__title {
margin-bottom: 15px !important;
}
.btn.btn-invert.product_type_simple.add_to_cart_button.ajax_add_to_cart {
margin-top: 20px;
}
.related.products .prd-grid:not(.prd-carousel) .prd{
margin:8px;
}
.related.products .prd-grid:not(.prd-carousel){
margin:0;
}
@media (min-width: 1199px){
.related.products .prd-grid:not(.prd-carousel) .prd:nth-child(3n+1) {
clear: none;
}
}
.flex-direction-nav li::before {
content: "\e91f";
}
.flex-direction-nav li:last-child:before {
content: "\e920";
}
.flex-direction-nav li::before, .flex-direction-nav li::before {
-moz-osx-font-smoothing: grayscale;
color: #727272;
cursor: pointer;
font-family: "auto";
font-size: 23px;
line-height: 30px;
}
.flex-direction-nav li:first-child {
left: -50px;
}
.flex-direction-nav li{
background: transparent none repeat scroll 0 0;
border: medium none;
color: transparent;
cursor: pointer;
display: block;
font-size: 0;
height: 30px;
line-height: 0;
margin-top: -15px;
outline: medium none;
padding: 0;
position: absolute;
text-align: center;
top: 50%;
width: 30px;
z-index: 200;
}
.flex-direction-nav li:last-child {
right: -50px;
}
.archive .prd-grid {
margin-bottom: 70px !important;
}
span.show-result {
float: left;
line-height: 35px;
font-size: 16px;
}
.filters-row .form-inline select {
font-size: 16px;
}
.header-cart-dropdown .prd-sm {
display: block;
margin-bottom: 26px;
position: relative;
}
.filters-row .simple-pagination &gt; span {
float: left;
line-height: 35px;
font-size: 1.2em;
}
.filters-row .page-numbers {
background: transparent none repeat scroll 0 0;
color: #383838;
float: left;
padding: 0;
border: 0 none;
}
.filters-row ul.page-numbers {
float: left;
margin: 0 !important;
padding-left: 0;
font-size: 1.2em;
}
.woocommerce-pagination .page-numbers .page-numbers.current {
background: #6fbf52 none repeat scroll 0 0 !important;
border-radius: 50%;
width: 50px;
height: 50px;
line-height: 24px;
}
.woocommerce-pagination .page-numbers span.page-numbers, 
.woocommerce-pagination .page-numbers a.page-numbers {
padding: 14px 20px !important;
border-radius: 50%;
width: 50px;
height: 50px;
}
.woocommerce-pagination .page-numbers &gt; li {
border: 0px solid #d3ced2 !important;
margin: 10px !important;
}
.woocommerce-pagination ul.page-numbers {
border:0px !important;
}
.woocommerce nav.woocommerce-pagination ul li a:focus{
background: #252936  none repeat scroll 0 0;
color: #8a7e88;
border:1px solid #252936  !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current, 
.woocommerce nav.woocommerce-pagination ul li a:hover {
background: #6fbf52;
color: #fff;
border-radius: 50%;
width: 50px;
height: 50px;
line-height: 24px;
}
.filters-row .page-numbers.current{
color:#252936 !important;
}
.col-md-4.col-lg-3.column-left.column-filters {
background: #f6f6f7;
}
body:not(.home) #pageContent {
padding-top: 100px;
}
.woocommerce-breadcrumb &gt; span {
margin-left: 10px;
}
.title-aside {
font-size: 24px;
}
.product-image-main-div .woocommerce-product-gallery{
opacity: 1;
transition: opacity 0.25s ease-in-out;
}
.prd-sm-img {
float: left;
min-width: 100px;
width: 100px;
}
.attachment-shop_thumbnail.size-shop_thumbnail.wp-post-image {
margin: 0;
width: 100px;
}
.prd-sm-info span {
color: #292929 !important;
font-weight: normal;
}
.col-md-4.col-lg-3.column-left.column-filters.sidebar-div {
padding: 0;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
background-color: #c7c7c7;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
background-color: #6fbf52;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
background-color: #c0c0c0;
}
.coupon-custom.col-md-6 &gt; label {
text-align: left !important;
width: 100%;
}
.column-filters .category-list li a {
font-weight: 400;
}
.apply-coupon.btn.btn-invert {
float: left;
margin-top: 20px;
}
.woocommerce-Tabs-panel {
padding-left: 20px !important;
}
ol.commentlist {
padding-left: 0;
}
.header-cart {
margin-top: 18px;
cursor: pointer;
position: relative;
float: right;
display: inline-block;
vertical-align: top;
padding-left: 25px;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.header-cart .badge {
pointer-events: none;
width: 19px;
height: 19px;
line-height: 15px;
font-size: 12px;
font-weight: 500;
position: absolute;
right: 1px;
top: 0px;
background-color: #f47629;
color: #fff;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-ms-transition: 0.3s;
-o-transition: 0.3s;
border-radius: 50%;
}
.header-cart a.icon {
font-size: 32px;
color: #252936;
text-decoration: none;
}
.header-cart:hover a.icon, 
.header-cart.opened a.icon {
color: #f47629;
}
header .header-cart-dropdown {
position: absolute;
z-index: 1;
right: -20px;
top: -5000px;
width: 350px;
padding: 35px 32px 25px;
background: #fff;
display: block;
opacity: 0;
visibility: hidden;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
text-align: left;
}
@media (max-width: 479px) {
header .header-cart-dropdown {
width: 270px;
padding: 15px 15px;
}
}
header .header-cart-dropdown .header-cart-total {
font-size: 24px;
line-height: 30px;
border-top: 1px solid #e8e8e8;
padding: 20px 0;
overflow: hidden;
}
header .header-cart.opened .header-cart-dropdown {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
-webkit-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
-moz-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
-ms-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
-o-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
opacity: 1;
visibility: visible;
top: 100%;
z-index: 999999;
}
header.page-header .header-row {
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
header .header-row{
overflow:visible;
}
#slide-nav #slidemenu {
display: table;
width: 100%;
}
.prd-sm-item {
float: left;
margin-bottom: 10px;
position: relative;
width: 100% !important;
}
.prd-info {
padding: 0 15px;
text-align: center;
}
.prd-sm-img {
margin-right: 10px;
}
.header-cart-dropdown .prd-sm-img {
margin-right: 30px;
}
.prd-sm {
display:block;
position: relative;
}
.woocommerce-message .btn.btn-invert.wc-forward ,
.woocommerce-error .btn.btn-invert.wc-forward{
float: right;
}
.woocommerce a.added_to_cart{
display:none;
}
.btn.btn-lg .icon {
font-size: 24px;
padding-right: 12px;
}
.btn-lg.product-block-add-to-cart .icon-shop-cart {
padding-right: 14px;
font-size: 23px;
vertical-align: text-bottom;
line-height: 32px !important;
}
.loader-cart-delete {
background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
height: 100%;
position: absolute;
text-align: center;
top: 0;
width: 100%;
}
.loader-cart-delete &gt; img {
position: relative;
top: 50%;
transform: translateY(-50%);
}
.select2-container .select2-selection--single {
height: 46px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
padding: 8px 15px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
top: 10px;
right: 5px;
}
.prd-info .btn [class*='icon-'] {
font-size: 18px;
padding-right: 14px;
vertical-align: text-bottom;
}
@media (max-width: 767px) {
.prd-grid:not(.prd-carousel) {
margin: -45px 0;
}
.input-text.qty.text.ui-spinner-input {
min-width: auto;
}
.quantity {
margin-right:0px !important;
}
.ui-spinner {
display: inline-block;
}
.woocommerce table.shop_table_responsive tr, 
.woocommerce-page table.shop_table_responsive tr {
display: block;
margin-bottom: 30px;
}
.woocommerce table.shop_table_responsive tr td.actions  {
text-align: center !important;
}
.apply-coupon.btn.btn-invert {
float: none;
margin-top: 20px;
}
}
.simple-pagination ul.page-numbers {
margin: 0;
padding: 0;
list-style: none;
}
.simple-pagination ul.page-numbers li {
display: inline-block;
margin-top: 5px;
padding: 0px 8px;
}
.woocommerce-page .category-list li a, 
.woocommerce-page .widget_categories li a {
font-weight: 400;
color: #677d8f;
}
input.input-text.qty {
-moz-appearance: textfield;
border-color: #eeeeee;
border-width: 0 1px;
min-height: 46px;
}
.input-text.qty.text.ui-spinner-input {
border: 1px solid #eee;
border-radius: 5px;
height: 70px;
margin: 1px 0;
width: 57px;
}
.coupon-custom.col-md-6 &gt; label {
text-align: left !important;
width: 100%;
}
input#coupon_code {
width: 100%;
padding: 10px 15px;
}
.woocommerce-billing-fields .input-text {
padding: 10px;
}
.single-product .comment-form textarea {
padding: 12px 0;
overflow: hidden;
border: 1px solid #ccc;
padding: 10px 10px;
}
.prd-info h3 {
margin-top: 20px;
margin-bottom: 0;
font-size: 15px;
line-height: 22px;
text-transform: none;
color: #000;
}
a:focus, a:hover {
text-decoration: none;
}
.woocommerce .star-rating {
float: right;
overflow: hidden;
position: relative;
height: 1em;
line-height: 1;
font-size: 10px;
width: 5.4em;
font-family: star;
}
.price del {
font-size: 14px;
}
.woocommerce ul.product_list_widget li {
padding: 10px 0;
margin: 0;
list-style: none;
} .column-filters {
margin-bottom: 35px;
}
.column-filters-inside {
border: 3px solid #f5f5f5;
}
.column-filters .side-block {
padding: 20px;
margin-bottom: 0;
border-bottom: 1px solid #ebebeb;
}
.column-filters .side-block:last-child {
border-bottom: 0;
}
.column-filters .side-block &gt; h3 {
margin-bottom: 25px;
font-size: 30px;
line-height: 1em;
color: #252936;
}
.column-filters .category-list {
margin-top: 20px;
}
.column-center {
margin-bottom: 35px;
} .noUi-horizontal {
height: 6px;
}
.noUi-horizontal .noUi-handle {
width: 15px;
height: 15px;
left: -7.5px;
top: -5px;
border: 0;
border-radius: 0;
box-shadow: none;
background: #f47629;
border-radius: 50%;
cursor: pointer;
}
.noUi-target {
border-radius: 0;
border: 0;
box-shadow: none;
background-color: #c7c7c7;
margin-bottom: 24px;
}
.noUi-origin {
border-radius: 0;
box-shadow: none;
}
.noUi-connect {
background: #252936;
border: 0;
border-radius: 0;
height: 6px;
-webkit-transition: background 450ms;
transition: background 450ms;
}
.noUi-handle:before,
.noUi-handle:after {
display: none;
border: 0;
border-radius: 0;
-webkit-transition: background 450ms;
transition: background 450ms;
}
.range {
margin-top: 35px;
}
.range p {
color: #444444;
font-size: 15px;
line-height: 20px;
}
.prd-sm {
position: relative;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -ms-flexbox;
display: flex;
}
.prd-sm:not(:last-child) {
margin-bottom: 20px;
}
.prd-sm-img {
min-width: 88px;
width: 88px;
}
.prd-sm-delete {
position: absolute;
top: 6px;
right: -4px;
cursor: pointer;
color: #444;
font-size: 18px;
}
.prd-sm-delete:hover {
opacity: .5;
}
.prd-sm-info {
padding: 0 0 0 10px;
}
.prd-sm-info h3 {
font-size: 15px;
line-height: 22px;
text-transform: none;
font-weight: normal;
color: #000;
}
.prd-sm-info h3 a {
text-decoration: none;
}
.prd-sm-info h3 a:hover {
text-decoration: none;
}
.prd-sm-info .price {
font-size: 20px;
margin-top: 15px;
}
.header-cart-dropdown .prd-sm-info {
padding-right: 30px;
}
.prd-grid:not(.prd-carousel) {
margin: -45px -15px 0;
}
.prd-grid.prd-carousel {
margin: 15px 0 0;
}
.prd-grid.prd-carousel .slick-next:before {
content: "\e91a";
font-size: 47px;
}
.prd-grid.prd-carousel .slick-prev:before {
content: "\e91b";
font-size: 47px;
}
.prd-grid.prd-carousel .slick-dots {
bottom: -40px;
}
.prd-carousel .slick-next {
right: -70px;
}
.prd-carousel .slick-prev {
left: -70px;
}
.prd-grid:not(.prd-carousel) .prd {
width: calc(33.333% - 30px);
float: left;
}
.prd {
margin: 45px 15px 15px;
}
.prd-img img {
width: 100%;
}
.prd-info h3 a {
text-decoration: none;
}
.prd-info h3 a:hover {
text-decoration: none;
color: #f47629;
}
.prd-info .price {
font-size: 26px;
margin-top: 15px;
}
.prd-info .btn {
min-width: 0;
margin-top: 20px;
height: 45px;
font-size: 16px;
line-height: 25px;
font-weight: 500;
padding: 9px 18px 10px;
}
.prd-info .btn [class*='icon-'] {
font-size: 18px;
padding-right: 14px;
vertical-align: text-bottom;
}
.prd .rating + .price {
margin-top: 10px;
}
.rating i {
font-size: 10px;
padding: 0 1px;
color: #f47629;
}
.rating-4 i:nth-child(5) {
color: #c2c2c2;
}
.rating-3 i:nth-last-child(-n+2) {
color: #c2c2c2;
}
.rating-2 i:nth-last-child(-n+3) {
color: #c2c2c2;
}
.rating-1 i:nth-last-child(-n+4) {
color: #c2c2c2;
}
.rating-0 i {
color: #c2c2c2;
}
.rating-text {
display: inline-block;
vertical-align: baseline;
padding-left: 15px;
font-size: 14px;
}
h5 &gt; .rating {
margin-right: 15px;
}
@media (min-width: 1199px) {
.prd-grid:not(.prd-carousel) .prd:nth-child(3n) {
margin-right: 0;
}
}
@media (max-width: 1199px) and (min-width: 480px) {
.prd-grid:not(.prd-carousel) .prd {
width: calc(50% - 30px);
}
.prd-grid:not(.prd-carousel) .prd:nth-child(2n) {
margin-right: 0;
}
.prd-grid:not(.prd-carousel) .prd:nth-child(2n+1) {
clear: left;
}
}
.product-card img {
width: 100%;
}
.btn.wc-forward {
width: 100%;
margin-top: 15px;
}
.filters-row {
display: inline-block;
width: 100%;
padding: 25px 0;
border-top: 1px solid #e8e8e8;
}
.filters-row-left {
float: left;
}
.filters-row-right {
float: right;
text-align: right;
}
.filters-row .form-inline {
display: inline-block;
}
.filters-row .form-inline:not(:first-child) {
margin-left: 3vw;
}
.woocommerce-checkout #payment div.form-row {
padding: 1em;
margin-bottom: 80px;
}
.filters-row .form-inline select {
background-color: transparent;
height: 35px;
border-radius: 5px;
border: 0;
padding: 0 15px 0 15px;
outline: none !important;
color: #7c7c7c;
border: 1px solid #ccc;
}
.filters-row .form-inline .select-wrapper:before {
display: none;
}
.simple-pagination {
display: inline-block;
color: #444;
}
.simple-pagination span,
.simple-pagination a {
display: inline-block;
vertical-align: top;
color: #444;
padding: 2px 5px;
text-decoration: none;
}
.simple-pagination a.active {
color: #252936;
}
.product-block .rating i {
font-size: 12px;
}
.product-block-info &gt; *:not(:first-child):not(span) {
margin-top: 21px;
}
.product-previews {
float: left;
width: 106px;
}
@media (max-width: 480px) {
.product-previews {
width: 80px;
}
}
.product-previews img {
width: 100%;
}
.product-previews-item {
display: block;
margin-bottom: 11px;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.product-previews-item:hover {
opacity: .7;
}
.product-block-gallery {
margin-bottom: 30px;
overflow: hidden;
}
.product-block-mainimage {
float: right;
width: calc(100% - 127px);
}
@media (max-width: 480px) {
.product-block-mainimage {
width: calc(100% - 100px);
}
}
.product-block-mainimage img {
width: 100%;
}
.product-block-title {
font-size: 30px;
line-height: 36px;
}
.product-block-price {
font-size: 26px;
line-height: 36px;
}
.product-block-price-comment {
font-size: 14px;
margin-top: 0 !important;
}
@media (max-width: 480px) {
.btn.product-block-add-to-cart {
width: 100%;
margin-top: 30px;
}
}
.product-block-description {
border-top: 1px solid #e7e7e7;
border-bottom: 1px solid #e7e7e7;
padding: 12px 0px 25px;
}
.product-block-actions {
margin-top: 40px !important;
}
.qty-count {
height: 70px;
background-color: #f5f5f5;
display: inline-block;
border-radius: 5px;
margin-right: 25px;
}
.count-add,
.count-input,
.count-reduce {
float: left;
margin-right: -1px;
position: relative;
z-index: 0;
}
.count-add,
.count-reduce {
height: 70px;
width: 30px;
text-align: center;
line-height: 70px;
color: #565656;
font-size: 20px;
-ms-user-select: none;
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
}
.count-add:hover,
.count-reduce:hover {
color: #000;
cursor: pointer;
}
.count-input {
width: 57px;
height: 70px;
line-height: 15px;
border: 1px solid #eee;
border-radius: 5px;
text-align: center;
}
.zoomWrapper {
position: relative;
}
.zoomContainer {
z-index: 100;
}
.zoomLens {
border: 1px solid #b0b0b0 !important;
}
.zoomWindowContainer &gt; * {
border: 2px solid #b0b0b0 !important;
}
@media (max-width: 1199px) {
.header-cart {
padding-left: 5px;
}
}
@media (max-width: 991px) {
.header-cart {
margin-top: 11px;
}
}
@media (max-width: 767px) {
.header-cart {
margin-top: -8px;
margin-right: 15px;
}
}
.header-cart:hover a.icon,
.header-cart.opened a.icon {
color: #f47629;
}
.header-cart:hover .badge,
.header-cart.opened .badge {
background-color: #000;
}
.header-cart-dropdown {
position: absolute;
z-index: 100;
right: -20px;
top: -5000px;
width: 350px;
padding: 35px 32px 25px;
background: #fff;
display: block;
opacity: 0;
visibility: hidden;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
-webkit-transform: translateX(20px);
-ms-transform: translateX(20px);
transform: translateX(20px);
text-align: left;
}
@media (max-width: 479px) {
.header-cart-dropdown {
width: 270px;
padding: 15px 15px;
}
}
@media (min-width: 1199px){
.prd-grid:not(.prd-carousel) .prd:nth-child(3n+1) {
clear: left;
}
}
.header-cart-dropdown .header-cart-total {
font-size: 24px;
line-height: 30px;
font-family: 'Roboto', sans-serif;
border-top: 1px solid #e8e8e8;
padding: 20px 0;
overflow: hidden;
}
.header-cart.opened .header-cart-dropdown {
-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);
-webkit-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
-moz-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
-ms-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
-o-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
opacity: 1;
visibility: visible;
top: 100%;
}
.quantity {
height: 70px;
background-color: #f5f5f5;
display: inline-block;
border-radius: 5px;
margin-right: 25px;
}
.count-add, .count-reduce {
height: 70px;
width: 30px;
text-align: center;
line-height: 70px;
color: #565656;
font-size: 20px;
-ms-user-select: none;
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
}
.count-add, .count-input, .count-reduce {
float: left;
margin-right: -1px;
position: relative;
z-index: 0;
}
.prd-grid:not(.prd-carousel) .prd {
width: calc(33% - 30px);
float: left;
}
ol.flex-control-nav.flex-control-thumbs li {
margin: 5px 0px;
}
.related.products {
float: left;
margin-bottom: 120px;
margin-top: 40px;
width: 100%;
} .column-filters .side-block {
padding: 20px;
margin-bottom: 0;
border-bottom: 1px solid #ebebeb;
}
.column-filters .side-block &gt; h3 {
margin-bottom: 25px;
font-size: 30px;
line-height: 1em;
color: #252936;
}
.woocommerce .product-categories{
margin: 0 0 5px;
padding: 0;
list-style: none;
}
.woocommerce .product-categories &gt; li {
position: relative;
font-size: 16px;
line-height: 20px;
}
.woocommerce .product-categories &gt; li:after {
color: #f47629;
}
.woocommerce .product-categories &gt; li:after {
position: absolute;
top: 9px;
left: 20px;
display: block;
font-family: 'Electrician';
content: "\e91d";
font-size: 8px;
}
.woocommerce .product-categories &gt; li a {
display: block;
padding: 8px 0 8px 36px;
color: #252936;
font-weight: 500;
}
.single-product.woocommerce .woocommerce-product-rating .star-rating {
margin: 13px 15px 0px 0px !important;
}
.woocommerce ul.product_list_widget li { 
padding: 10px 0; 
margin: 0; 
list-style: none; 
} 
.woocommerce .blockUI.blockOverlay::before, .woocommerce .loader::before { 
background: rgba(0, 0, 0, 0) none repeat scroll 0 0; 
} 
.woocommerce .woocommerce-product-rating .star-rating{ 
margin: 1.5em 4px 0 0; 
} 
.woocommerce-review-link { 
font-size: 14px; 
text-decoration: none; 
} 
.woocommerce-review-link:hover { 
text-decoration: underline; 
}
.comment-form .input-custom { 
padding: 15px; 
} .woocommerce-message .btn.wc-forward {
max-width: 100%;
margin-top: 0px;
display: inline-block;
width: auto;
}
body.post-type-archive-product #pageContent {
padding-top: 50px !important;
}
body.single-product #pageContent {
padding-top: 50px !important;
}
@media (max-width: 479px) {
.prd-grid {
width: auto;
}
} .column-filters {
margin-bottom: 35px;
}
.column-filters-inside {
background: #f6f6f7;
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.column-filters .side-block {
border-color: #ebebeb;
padding: 20px 20px 30px;
margin-bottom: 10px;
border-bottom: 1px solid #e3e3e4;
}
.column-filters .side-block h3 {
margin-bottom: 20px;
}
.column-filters .category-list {
margin-top: 10px;
margin-bottom: 15px;
}
.column-filters .category-list li a {
font-weight: 400;
}
.column-filters .category-list li a:not(:hover) {
color: #677d8f;
} .noUi-horizontal {
height: 6px;
}
.noUi-horizontal .noUi-handle {
width: 15px;
height: 15px;
left: -7.5px;
top: -5px;
border: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
background: #6fbf52;
border-radius: 50%;
cursor: pointer;
}
.noUi-target {
border-radius: 0;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
background-color: #e4e4e5;
margin-bottom: 24px;
}
.noUi-origin {
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
.noUi-connect {
background: #c0c0c0;
border: 0;
border-radius: 0;
height: 6px;
-webkit-transition: background 450ms;
-o-transition: background 450ms;
transition: background 450ms;
}
.noUi-handle:before,
.noUi-handle:after {
display: none;
border: 0;
border-radius: 0;
-webkit-transition: background 450ms;
-o-transition: background 450ms;
transition: background 450ms;
}
.range {
margin-top: 35px;
}
.range p {
font-size: 15px;
line-height: 20px;
margin-bottom: 10px;
}
.prd-sm {
position: relative;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.prd-sm:not(:last-child) {
margin-bottom: 20px;
}
.prd-sm-img {
width: 88px;
min-width: 88px;
}
.prd-sm-delete {
position: absolute;
top: 0;
right: -4px;
cursor: pointer;
font-size: 16px;
color: #6fbf52;
}
.prd-sm-delete:hover {
opacity: .5;
}
.prd-sm-info {
padding: 0 15px;
}
.prd-sm-info h3 {
font-size: 14px;
line-height: 22px;
text-transform: none;
font-weight: 400;
color: #4b5b68;
}
.prd-sm-info h3 a {
text-decoration: none;
}
.prd-sm-info h3 a:hover {
text-decoration: underline;
}
.prd-sm-info .price {
font-size: 20px;
margin-top: 10px;
color: #4b5b68;
font-weight: 600;
}
.header-cart-dropdown .prd-sm-info {
padding-right: 30px;
}
.prd-grid:not(.prd-carousel) {
margin: -25px -15px 0;
}
.prd-grid.prd-carousel {
margin: -25px 0 0;
}
.prd-grid:not(.prd-carousel) .prd {
width: calc(33.333% - 30px);
float: left;
}
.prd {
margin: 35px 15px 30px;
}
.prd-img img {
width: 100%;
}
.prd-info {
padding: 0 15px;
text-align: center;
}
.prd-info h3 {
margin-top: 14px;
margin-bottom: 0;
font-size: 15px;
line-height: 24px;
text-transform: none;
color: #4b5b68;
font-weight: 400;
}
.prd-info h3 a {
text-decoration: none;
}
.prd-info h3:hover {
text-decoration: underline;
}
.prd-info .price {
font-size: 24px;
margin-top: 13px;
font-weight: 600;
}
.prd-info .btn {
min-width: 0;
margin-top: 27px;
height: 41px;
font-size: 12px;
line-height: 15px;
font-weight: 600;
padding: 12px 25px 15px;
}
.prd-info .btn [class*='icon-'] {
font-size: 18px;
color: #fff;
padding-right: 8px;
vertical-align: text-bottom;
}
.prd .rating + .price {
margin-top: 10px;
}
.rating i {
font-size: 12px;
padding: 0 1px;
color: #ffb400;
}
.rating-4 i:nth-child(5) {
color: #c2c2c2;
}
.rating-3 i:nth-last-child(-n+2) {
color: #c2c2c2;
}
.rating-2 i:nth-last-child(-n+3) {
color: #c2c2c2;
}
.rating-1 i:nth-last-child(-n+4) {
color: #c2c2c2;
}
.rating-0 i {
color: #c2c2c2;
}
.rating-text {
display: inline-block;
vertical-align: baseline;
padding-left: 15px;
font-size: 14px;
}
h5 &gt; .rating {
margin-right: 15px;
}
@media (min-width: 1199px) {
.prd-grid:not(.prd-carousel) .prd:nth-child(3n) {
margin-right: 0;
}
.prd-grid:not(.prd-carousel) .prd:nth-child(3n+1) {
clear: left;
}
}
@media (max-width: 1199px) and (min-width: 480px) {
.prd-grid:not(.prd-carousel) .prd {
width: calc(50% - 30px);
}
.prd-grid:not(.prd-carousel) .prd:nth-child(2n) {
margin-right: 0;
}
.prd-grid:not(.prd-carousel) .prd:nth-child(2n+1) {
clear: left;
}
.prd-grid:not(.prd-carousel) {
margin: -25px 0px 0;
}
}
@media (max-width: 479px) {
.prd-grid {
margin-right: 0;
margin-left: 0;
}
.prd-info a.btn i {
display: none;
}
.related.products {
float: left;
margin-bottom: 60px;
}
}
.product-card img {
width: 100%;
}
@media (max-width: 360px) {
.prd-grid:not(.prd-carousel) .prd {
width: 100% !important;
margin-right: 15px !important;
margin-left: 0px !important;
max-width: 290px;
}
}
.prd-carousel .slick-next {
right: -50px;
}
.prd-carousel .slick-prev {
left: -50px;
}
.filters-row {
display: inline-block;
width: 100%;
padding: 25px 0;
}
.filters-row-left {
float: left;
}
.filters-row-right {
float: right;
text-align: right;
}
.filters-row .form-inline {
display: inline-block;
}
.filters-row .form-inline:not(:first-child) {
margin-left: 3vw;
}
.filters-row .form-inline select {
min-width: 200px;
}
.woocommerce-page .category-list li, 
.woocommerce-page .widget_categories li {
position: relative;
margin-top: 0px;
}
@media (max-width: 479px) {
.filters-row .form-inline {
display: block;
margin-left: 0 !important;
margin-top: 10px;
}
}
.simple-pagination {
display: inline-block;
font-size: 15px;
}
.simple-pagination span,
.simple-pagination a {
display: inline-block;
vertical-align: top;
padding: 2px 8px;
text-decoration: none;
}
.simple-pagination a.active {
color: #6fbf52;
}
.product-block .rating i {
font-size: 12px;
}
.product-block-info &gt; *:not(:first-child):not(span) {
margin-top: 15px;
}
.product-previews {
float: left;
width: 106px;
}
@media (max-width: 479px) {
.product-previews {
width: 80px;
}
}
.product-previews img {
width: 100%;
}
.product-previews-item {
display: block;
margin-bottom: 11px;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.product-previews-item:hover {
opacity: .7;
}
.product-block-add-to-cart {
height: 70px;
font-size: 18px;
line-height: 32px;
border-radius: 35px;
padding-left: 50px;
padding-right: 50px;
}
@media (max-width: 991px) {
.product-block-add-to-cart {
padding-right: 25px;
padding-left: 25px;
}
}
.product-block-add-to-cart [class*='icon'] {
font-size: 20px;
}
.product-block-gallery {
margin-bottom: 30px;
overflow: hidden;
}
.product-block-mainimage {
float: right;
width: calc(100% - 127px);
}
@media (max-width: 479px) {
.product-block-mainimage {
width: calc(100% - 100px);
}
}
.product-block-mainimage img {
width: 100%;
}
.product-block-title {
font-size: 24px;
line-height: 34px;
margin-bottom: 0;
}
.product-block-price {
font-size: 36px;
line-height: 36px;
font-weight: 600;
color: #4b5b68;
}
.product-block-price-comment {
font-size: 14px;
margin-top: 0 !important;
}
@media (max-width: 479px) {
.btn.product-block-add-to-cart {
width: 100%;
}
}
@media (max-width: 479px) {
.prd-grid {
margin-right: 0;
margin-left: 0;
}
.prd-grid:not(.prd-carousel) .prd {
width: calc(50% - 2px);
margin-right: 1px !important;
margin-left: 1px !important;
height: 100%;
min-height: 500px;
}
.related.products .prd-grid:not(.prd-carousel) .prd {
margin-right: 2px !important;
margin-bottom: 30px;
margin-left: 0px !important;
}
.prd-grid .btn {
padding: 10px 10px 30px !important;
}
.woocommerce-page .related.products img {
padding: 5px;
}
}
.product-block-description {
padding: 12px 0px 25px;
}
.product-block-actions {
margin-top: 37px !important;
}
.qty-count {
height: 70px;
background-color: #f5f5f5;
display: inline-block;
border-radius: 5px;
margin-right: 25px;
}
.count-add,
.count-input,
.count-reduce {
float: left;
margin-right: -1px;
position: relative;
z-index: 0;
}
.count-add,
.count-reduce {
height: 70px;
width: 30px;
text-align: center;
line-height: 70px;
color: #677d8f;
font-size: 20px;
-ms-user-select: none;
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
}
.count-add:hover,
.count-reduce:hover {
color: #000;
cursor: pointer;
}
.count-input {
width: 57px;
height: 70px;
line-height: 15px;
border: 1px solid #f5f5f5;
border-radius: 5px;
text-align: center;
color: #677d8f;
}
.zoomWrapper {
position: relative;
}
.zoomContainer {
z-index: 100;
}
.zoomLens {
border: 1px solid #b0b0b0 !important;
}
.zoomWindowContainer &gt; * {
border: 2px solid #b0b0b0 !important;
} @media (min-width: 768px) {
.image-scale {
position: relative;
overflow: hidden;
display: block;
}
.image-scale &gt; a {
display: block;
overflow: hidden;
}
.image-scale img {
-webkit-transition: transform 0.4s ease-in-out 0.05s;
-moz-transition: transform 0.4s ease-in-out 0.05s;
-ms-transition: transform 0.4s ease-in-out 0.05s;
-o-transition: transform 0.4s ease-in-out 0.05s;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
image-rendering: optimizeQuality;
vertical-align: middle;
max-width: 100%;
}
.image-scale:hover img {
-webkit-transform: scale3d(1.1, 1.1, 1) rotate(0.0001deg);
transform: scale3d(1.1, 1.1, 1) rotate(0.0001deg);
}
}
.related .prd-grid:not(.prd-carousel) .prd {
width: calc(25% - 30px);
float: left;
clear:none;
}
.single-product .marker-list-arrow li,
.single-product .no-marker li{
margin-top: 0px;
}
.single-product .marker-list-arrow li:last-child,
.single-product .no-marker li:last-child{
border:none;
}
.woocommerce-Reviews .star-rating{
float: left;
overflow: hidden;
position: relative;
height: 1em;
line-height: 1;
font-size: 10px;
width: 5.4em;
font-family: star;
margin-top: 10px;
}
@media (min-width: 768px) {
.image-scale-color {
position: relative;
overflow: hidden;
display: block;
}
.image-scale-color &gt; a {
display: block;
overflow: hidden;
}
.image-scale-color img {
-webkit-transition: transform 0.4s ease-in-out 0.05s;
-moz-transition: transform 0.4s ease-in-out 0.05s;
-ms-transition: transform 0.4s ease-in-out 0.05s;
-o-transition: transform 0.4s ease-in-out 0.05s;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
image-rendering: optimizeQuality;
vertical-align: middle;
max-width: 100%;
}
.image-scale-color:after {
content: '';
background: #6fbf52;
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
-webkit-transition: opacity 0.4s ease-in-out;
-moz-transition: opacity 0.4s ease-in-out;
-ms-transition: opacity 0.4s ease-in-out;
-o-transition: opacity 0.4s ease-in-out;
}
.image-scale-color:hover:after {
opacity: 0.2;
}
.image-scale-color:hover img {
-webkit-transform: scale3d(1.1, 1.1, 1) rotate(0.0001deg);
transform: scale3d(1.1, 1.1, 1) rotate(0.0001deg);
}
}
@-webkit-keyframes arrowUpDown {
0%,
20%,
50%,
80%,
100% {
-webkit-transform: translateY(0);
}
40% {
-webkit-transform: translateY(-10px);
}
60% {
-webkit-transform: translateY(-5px);
}
}
@-moz-keyframes arrowUpDown {
0%,
20%,
50%,
80%,
100% {
-moz-transform: translateY(0);
}
40% {
-moz-transform: translateY(-10px);
}
60% {
-moz-transform: translateY(-5px);
}
}
@-o-keyframes arrowUpDown {
0%,
20%,
50%,
80%,
100% {
-o-transform: translateY(0);
}
40% {
-o-transform: translateY(-10px);
}
60% {
-o-transform: translateY(-15px);
}
}
@keyframes arrowUpDown {
0%,
20%,
50%,
80%,
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
40% {
-webkit-transform: translateY(-10px);
transform: translateY(-10px);
}
60% {
-webkit-transform: translateY(-5px);
transform: translateY(-5px);
}
}html, body {  overflow-x:hidden }
body {
font-family: 'Open Sans', sans-serif;
color: #677d8f;
font-size: 16px;
line-height: 28px;
font-weight: 400;
}
@media (max-width: 767px) {
body {
font-size: 14px;
line-height: 22px;
}
}
body.modal-open {
padding-right: 0 !important;
}
a {
text-decoration: none;
color: #677d8f;
}
a:hover,
a:focus {
text-decoration: none;
color: #677d8f;
}
p {
font-size: 16px;
line-height: 28px;
margin-bottom: 28px;
}
p.font-sm {
font-size: 15px;
line-height: 24px;
margin-bottom: 24px;
}
p.info {
border-top: 1px solid #b7dfa8;
border-bottom: 1px solid #b7dfa8;
text-align: center;
padding: 12px 20px;
font-weight: bold;
margin: 0 0 35px;
}
* + p.info {
margin-top: 30px;
}
.color,
a.color,
a.color:hover,
a.color:focus {
color: #6fbf52 !important;
}
.color-alt {
color: #4ba0e8;
}
h1, h2.h-lg {
font-size: 50px;
line-height: 60px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
margin: 0 0 38px;
color: #4b5b68;
}
@media (max-width: 991px) {
h1,
h2.h-lg {
font-size: 40px;
line-height: 46px;
}
}
@media (max-width: 479px) {
h1,
h2.h-lg {
font-size: 30px;
line-height: 34px;
}
}
h1.h-decor,
h2.h-decor {
padding-bottom: 34px;
background: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/h-decor.png) no-repeat bottom center;
}
@media (max-width: 767px) {
h1.h-decor,
h2.h-decor {
background: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/h-decor-sm.png) no-repeat bottom center;
}
}
h2,
h1.h-sm {
font-size: 36px;
line-height: 40px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
margin: 0 0 30px;
color: #4b5b68;
}
@media (max-width: 767px) {
h2,
h1.h-sm {
font-size: 28px;
line-height: 30px;
margin: 0 0 15px;
}
}
h3 {
font-size: 24px;
line-height: 1.2em;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
padding: 0;
margin: 0 0 20px;
color: #4b5b68;
}
h4 {
font-size: 22px;
line-height: 28px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
padding: 0;
margin: 0 0 25px;
color: #4b5b68;
}
h5 {
font-size: 20px;
line-height: 28px;
font-weight: 600;
font-family: 'Open Sans', sans-serif;
padding: 0;
margin: 0 0 15px;
color: #4b5b68;
}
h6 {
font-size: 16px;
line-height: 28px;
font-weight: 600;
font-family: 'Open Sans', sans-serif;
padding: 0;
margin: 0 0 15px;
color: #4b5b68;
}
h1.h-white,
h2.h-white,
h3.h-white,
h4.h-white,
h5.h-white,
h6.h-white {
color: #fff;
}
.divider-xl {
clear: both;
height: 60px;
}
.divider-lg {
clear: both;
height: 45px;
}
.divider {
clear: both;
height: 20px;
}
.divider-sm {
clear: both;
height: 10px;
}
.divider-line {
height: 25px;
border-bottom: 1px solid #e6e9ec;
margin-bottom: 25px;
}
.img-fullwidth {
width: 100%;
}
.marker-list {
margin: 0 0 25px;
padding: 0;
list-style: none;
}
@media (max-width: 767px) {
.marker-list {
margin-bottom: 10px;
}
}
.marker-list &gt; li {
font-size: 16px;
line-height: 28px;
font-weight: 500;
position: relative;
padding-left: 27px;
margin-bottom: 10px;
}
.marker-list &gt; li:last-child {
margin-bottom: 0;
}
.marker-list &gt; li:after {
position: absolute;
top: 0;
left: 0;
display: block;
font-family: 'cleaning';
content: "\e907";
font-size: 17px;
color: #6fbf52;
}
.social-list {
margin: 15px 0 15px;
padding: 0;
list-style: none;
}
.social-list &gt; li {
display: inline-block;
margin-right: 4px;
}
.social-list &gt; li a {
font-size: 40px;
line-height: 40px;
text-decoration: none;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.social-list &gt; li a:hover {
color: #6fbf52;
}
.social-list-sm {
margin: 15px 0 10px;
}
.social-list-sm &gt; li {
display: inline-block;
margin-right: 5px;
}
.social-list-sm &gt; li a {
font-size: 30px;
line-height: 30px;
}
.services-list,
#menu-service-menu.menu {
padding: 0;
margin-bottom: 50px;
font-size: 16px;
line-height: 19px;
text-align: left;
list-style: none;
}
.services-list li ,
#menu-service-menu.menu li {
position: relative;
background-color: #f2f4f5;
margin-bottom: 1px;
margin-top: 0;
}
.services-list li a ,
#menu-service-menu.menu li a{
display: block;
text-decoration: none;
color: #4b5b68;
padding: 15px 0 15px 22px;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.services-list li:after,
#menu-service-menu.menu li:after  {
content: '';
position: absolute;
left: 0;
top: 0;
width: 3px;
height: 100%;
background: #6fbf52;
opacity: 0;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.services-list li:hover,
#menu-service-menu.menu li:hover {
background-color: #fff;
}
.services-list li:hover:after ,
#menu-service-menu.menu li:hover:after{
opacity: 1;
}
.services-list li.active ,
#menu-service-menu.menu li.current-menu-item{
background-color: #6fbf52;
}
.services-list li.active a ,
#menu-service-menu.menu li.current-menu-item a {
color: #fff;
}
.services-list li.active a:before ,
#menu-service-menu.menu li.current-menu-item a:before {
display: inline-block;
vertical-align: middle;
font-size: 12px;
color: #fff;
font-family: 'cleaning';
content: "\e90a";
padding: 0 10px 0 0;
}
.category-list,.widget_categories {
margin: 0 0 55px;
padding: 0;
font-size: 16px;
line-height: 18px;
text-align: left;
list-style: none;
}
.category-list li,.widget_categories li {
position: relative;
}
.category-list li a, .widget_categories li a {
display: inline-block;
padding: 10px 0px;
font-size: 16px;
line-height: 18px;
font-weight: 600;
color: #4b5b68;
text-decoration: none;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.category-list li:before ,.widget_categories li:before {
display: inline-block;
vertical-align: middle;
font-size: 12px;
color: #6fbf52;
font-family: 'cleaning';
content: "\e90a";
padding: 0 12px 0 0;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.category-list li:hover a,.widget_categories li:hover a  {
color: #6fbf52;
}
.category-list li:hover:before,.widget_categories li:hover:before  {
padding: 0 16px 0 0;
}
.no-marker,
.marker-list-arrow {
margin: 0;
padding: 0;
list-style: none;
}
.no-marker &gt; li,
.marker-list-arrow &gt; li {
font-size: 15px;
line-height: 17px;
font-weight: 400;
position: relative;
padding: 10px 0;
border-bottom: 1px solid #f0f2f4;
}
.no-marker &gt; li {
font-weight: 600;
}
.marker-list-arrow &gt; li {
padding-left: 22px;
}
.marker-list-arrow &gt; li:after {
position: absolute;
top: 11px;
left: 4px;
display: block;
font-family: 'cleaning';
content: "\e90a";
font-size: 8px;
color: #6fbf52;
}
.vert-wrap{
display: table;
height: 100%;
width: 100%;
position: relative;
z-index: 1;
}
.vert {
display: table-cell;
vertical-align: middle;
}
.more-loader {
display: none;
position: relative;
height: 50px;
}
.more-loader .loading-content {
display: block !important;
}
.more-loader.visible {
display: block;
text-align: center;
padding-bottom: 25px;
}
.table &gt; tbody &gt; tr &gt; th,
.table &gt; tfoot &gt; tr &gt; th,
.table &gt; thead &gt; tr &gt; th {
padding: 15px 8px;
border-top: 0;
border-bottom: 3px solid #e5e5e5;
}
.table &gt; tbody &gt; tr &gt; td {
border-top: 1px solid #e5e5e5;
padding: 10px 8px;
}
.table .cell-marker {
background: #6fbf52;
border-color: #6fbf52;
padding-left: 12px;
padding-right: 12px;
}
.table th.cell-marker {
border-color: #fff;
}
.pagination {
margin: 20px 0 30px;
}
.pagination {
margin: 0 auto;
width: 100%;
}
.nav-links {
margin: 0 auto;
display: table;
}
.nav-links &gt; .page-numbers {
float: left;
width: 60px;
height: 60px;
background: #fff;
margin-right: 5px;
line-height: 58px;
text-align: center;
} 
.nav-links &gt; .page-numbers.current,
.nav-links &gt; .page-numbers:hover{
display: inline-block;
border-radius: 50%;
margin-right: 5px;
width: 60px;
height: 60px;
text-align: center;
line-height: 58px;
}
.nav-links &gt; .page-numbers:hover {
background: #f7f7f7;
color:#677d8f;
}
.nav-links &gt; .page-numbers.current{
background: #6fbf52;
color: #fff;
}
.nav-links &gt; .next.page-numbers{
background-color: transparent;
color: #677d8f;
}
.pagination &gt; li &gt; a,
.pagination &gt; li &gt; span {
padding: 0;
margin: 0;
width: 56px;
height: 56px;
font-size: 16px;
line-height: 56px;
font-weight: 66;
border: 0;
text-align: center;
border-radius: 50%;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.pagination &gt; li &gt; a,
.pagination &gt; li &gt; span,
.pagination &gt; li &gt; a:focus,
.pagination &gt; li &gt; span:focus {
color: #363636;
background-color: #fff;
}
.pagination &gt; li:first-child &gt; a,
.pagination &gt; li:first-child &gt; span,
.pagination &gt; li:last-child &gt; a,
.pagination &gt; li:last-child &gt; span {
border-radius: 50%;
}
.pagination &gt; li &gt; a:hover,
.pagination &gt; li &gt; span:hover {
background-color: #f7f7f7;
}
.pagination &gt; .active &gt; a,
.pagination &gt; .active &gt; span,
.pagination &gt; .active &gt; a:hover,
.pagination &gt; .active &gt; span:hover {
color: #fff;
background-color: #6fbf52;
}
.bg-text {
padding: 20px 10px 20px 40px;
}
.bg-text-inside {
width: 600px;
}
@media (max-width: 1199px) {
.bg-text-inside {
width: 485px;
}
}
@media (max-width: 991px) {
.bg-text-inside {
width: 100%;
}
.services-pages-list .list-item-services.vc_col-sm-3{
width:50% !important;
}
}
@media (max-width: 991px) {
.bg-text {
padding: 20px 15px;
}
}
@media (min-width: 992px) {
.row-flex-text {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
background-color: #f6f6f7;
}
.row-flex-text &gt; .col-50 {
-webkit-box-flex: 0;
-webkit-flex: 0 1 50%;
-ms-flex: 0 1 50%;
flex: 0 1 50%;
min-width: 50%;
}
}
@media (max-width: 991px) {
.row-flex-text {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.row-flex-text &gt; .col-50 {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
}
.contact-box {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
background-color: #f3f3f3;
padding: 26px 30px;
color: #4b5b68;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 1199px){
.contact-box {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding: 30px 10px;
text-align: center;
margin-right: 0px;
margin-left: 0px;
}
}
@media (max-width: 767px) and (min-width: 481px){
.services-pages-list .list-item-services.vc_col-sm-3 {
width: 50% !important;
float: left;
margin-bottom: 20px;
}
}
@media (max-width: 767px) {
.contact-box {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding: 15px 10px;
}
.contact-box &gt; * {
margin: 10px 0;
}
}
.contact-info-wrap {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin-right: 40px;
}
@media (max-width: 767px) {
.contact-info-wrap {
-webkit-justify-content: space-around;
-ms-flex-pack: distribute;
justify-content: space-around;
margin-right: 0;
width: 100%;
}
}
@media (max-width: 600px) {
.contact-info-wrap {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.contact-info-wrap &gt; * {
margin: 10px auto;
width: 300px;
}
}
.contact-info {
padding-left: 35px;
position: relative;
font-size: 16px;
line-height: 28px;
text-align: left;
}
.contact-info &gt; .icon {
position: absolute;
top: 4px;
left: 0;
font-size: 24px;
line-height: 1em;
color: #6fbf52;
}
.contact-info-sm {
margin: 35px 0 40px;
padding-left: 43px;
position: relative;
text-align: left;
}
.contact-info-sm:first-child {
margin-top: 0;
}
.contact-info-sm &gt; .icon {
position: absolute;
top: 0;
left: 0;
font-size: 26px;
line-height: 1em;
color: #6fbf52;
}
.contact-info-sm &gt; h5 {
text-transform: none;
margin-bottom: 10px;
}
.address-box {
background-color: #f6f6f7;
padding: 25px 35px 10px;
}
@media (max-width: 767px) {
.address-box {
margin-top: 25px;
}
.showallServices {
text-align: center;
text-decoration: underline;
margin-top: 20px;
}
}
.address-box .contact-info-sm {
margin-top: 15px;
}
.address-box b {
font-weight: 600;
}
.address-box,
.address-box a {
color: #8091a0;
}
.address-box a {
text-decoration: underline;
}
.address-box a:hover {
text-decoration: none;
}
.address-box .social-list-sm {
margin-top: 20px;
}
.google-map {
min-height: 446px;
width: 100%;
}
@media (max-width: 767px) {
.google-map {
min-width: 300px;
}
.services-pages-list .wpb_content_element {
margin-bottom: 0px !important;
}
}
b, strong {
font-weight: 700;
webkit-appearance: none;
} body.is-loaded .loading-content {
opacity: 0;
visibility: hidden;
}
.loading-content {
height: 100%;
width: 100%;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
z-index: 200;
background-color: #fff;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
opacity: 1;
pointer-events: none;
visibility: visible;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
}
.loading-dots {
margin-left: -1.5em;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-animation: loading-dots-fadein 0.5s linear forwards;
-moz-animation: loading-dots-fadein 0.5s linear forwards;
-o-animation: loading-dots-fadein 0.5s linear forwards;
-ms-animation: loading-dots-fadein 0.5s linear forwards;
animation: loading-dots-fadein 0.5s linear forwards;
}
.loading-dots i {
width: .5em;
height: .5em;
display: inline-block;
vertical-align: middle;
background: #e0e0e0;
-webkit-border-radius: 50%;
border-radius: 50%;
margin: 0 .125em;
-webkit-animation: loading-dots-middle-dots 0.5s linear infinite;
-moz-animation: loading-dots-middle-dots 0.5s linear infinite;
-o-animation: loading-dots-middle-dots 0.5s linear infinite;
-ms-animation: loading-dots-middle-dots 0.5s linear infinite;
animation: loading-dots-middle-dots 0.5s linear infinite;
}
.loading-dots.dark-gray i {
background: #4ba0e8;
}
.loading-dots i:first-child {
-webkit-animation: loading-dots-first-dot 0.5s infinite;
-moz-animation: loading-dots-first-dot 0.5s linear infinite;
-o-animation: loading-dots-first-dot 0.5s linear infinite;
-ms-animation: loading-dots-first-dot 0.5s linear infinite;
animation: loading-dots-first-dot 0.5s linear infinite;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
-webkit-transform: translate(-1em);
-moz-transform: translate(-1em);
-o-transform: translate(-1em);
-ms-transform: translate(-1em);
transform: translate(-1em);
}
.loading-dots i:last-child {
-webkit-animation: loading-dots-last-dot 0.5s linear infinite;
-moz-animation: loading-dots-last-dot 0.5s linear infinite;
-o-animation: loading-dots-last-dot 0.5s linear infinite;
-ms-animation: loading-dots-last-dot 0.5s linear infinite;
animation: loading-dots-last-dot 0.5s linear infinite;
}
@-moz-keyframes loading-dots-fadein {
100% {
opacity: 1;
-ms-filter: none;
filter: none;
}
}
@-webkit-keyframes loading-dots-fadein {
100% {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
}
}
@-o-keyframes loading-dots-fadein {
100% {
opacity: 1;
-ms-filter: none;
filter: none;
}
}
@keyframes loading-dots-fadein {
100% {
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
}
}
@-moz-keyframes loading-dots-first-dot {
100% {
-webkit-transform: translate(1em);
-moz-transform: translate(1em);
-o-transform: translate(1em);
-ms-transform: translate(1em);
transform: translate(1em);
opacity: 1;
-ms-filter: none;
filter: none;
}
}
@-webkit-keyframes loading-dots-first-dot {
100% {
-webkit-transform: translate(1em);
-moz-transform: translate(1em);
-o-transform: translate(1em);
-ms-transform: translate(1em);
transform: translate(1em);
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
}
}
@-o-keyframes loading-dots-first-dot {
100% {
-webkit-transform: translate(1em);
-moz-transform: translate(1em);
-o-transform: translate(1em);
-ms-transform: translate(1em);
transform: translate(1em);
opacity: 1;
-ms-filter: none;
filter: none;
}
}
@keyframes loading-dots-first-dot {
100% {
-webkit-transform: translate(1em);
-moz-transform: translate(1em);
-o-transform: translate(1em);
-ms-transform: translate(1em);
transform: translate(1em);
opacity: 1;
-ms-filter: none;
-webkit-filter: none;
filter: none;
}
}
@-moz-keyframes loading-dots-middle-dots {
100% {
-webkit-transform: translate(1em);
-moz-transform: translate(1em);
-o-transform: translate(1em);
-ms-transform: translate(1em);
transform: translate(1em);
}
}
@-webkit-keyframes loading-dots-middle-dots {
100% {
-webkit-transform: translate(1em);
-moz-transform: translate(1em);
-o-transform: translate(1em);
-ms-transform: translate(1em);
transform: translate(1em);
}
}
@-o-keyframes loading-dots-middle-dots {
100% {
-webkit-transform: translate(1em);
-moz-transform: translate(1em);
-o-transform: translate(1em);
-ms-transform: translate(1em);
transform: translate(1em);
}
}
@keyframes loading-dots-middle-dots {
100% {
-webkit-transform: translate(1em);
-moz-transform: translate(1em);
-o-transform: translate(1em);
-ms-transform: translate(1em);
transform: translate(1em);
}
}
@-moz-keyframes loading-dots-last-dot {
100% {
-webkit-transform: translate(2em);
-moz-transform: translate(2em);
-o-transform: translate(2em);
-ms-transform: translate(2em);
transform: translate(2em);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-webkit-keyframes loading-dots-last-dot {
100% {
-webkit-transform: translate(2em);
-moz-transform: translate(2em);
-o-transform: translate(2em);
-ms-transform: translate(2em);
transform: translate(2em);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@-o-keyframes loading-dots-last-dot {
100% {
-webkit-transform: translate(2em);
-moz-transform: translate(2em);
-o-transform: translate(2em);
-ms-transform: translate(2em);
transform: translate(2em);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
@keyframes loading-dots-last-dot {
100% {
-webkit-transform: translate(2em);
-moz-transform: translate(2em);
-o-transform: translate(2em);
-ms-transform: translate(2em);
transform: translate(2em);
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
}
}
body.admin-bar .page-header.is-sticky{
top: 30px;
}
@media (max-width: 767px) {
.admin-bar .page-header.is-sticky {
top: -50px !important;
}
}
body.admin-bar.fixed {
top: 0px;
} input,
select,
textarea {
font-family: 'Open Sans', sans-serif;
}
.input-custom {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin-bottom: 5px;
padding: 14px 15px 14px;
font-size: 15px;
line-height: 24px;
height: 54px;
background: #fff;
border: 1px solid #d7dbdf;
border-radius: 3px;
color: #2b2b2b;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.input-custom:hover,
.input-custom:focus,
.input-custom.focus {
outline: none;
border-color: #6fbf52;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.input-custom.input-full {
width: 100%;
}
.input-custom.input-custom--sm {
padding: 9px 15px;
height: 42px;
line-height: 20px;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
background: #fff;
}
.textarea-custom {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin-bottom: 5px;
padding: 14px 15px 14px;
font-size: 15px;
line-height: 24px;
height: 54px;
background: #fff;
border: 1px solid #d7dbdf;
border-radius: 3px;
color: #2b2b2b;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
min-height: 193px;
height: auto;
}
.textarea-custom:hover,
.textarea-custom:focus,
.textarea-custom.focus {
outline: none;
border-color: #6fbf52;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.textarea-custom.input-full {
width: 100%;
}
.input-wrapper {
position: relative;
margin-bottom: 15px;
}
.placeholder {
font-size: 15px;
line-height: 20px;
color: #a7b3bd;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
font-size: 15px;
line-height: 20px;
color: #a7b3bd;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
font-size: 15px;
line-height: 20px;
color: #a7b3bd;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
font-size: 15px;
line-height: 20px;
color: #a7b3bd;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
font-size: 15px;
line-height: 20px;
color: #a7b3bd;
}
.required {
color: red;
}
input.input-custom,
textarea.textarea-custom,
.select-wrapper select.input-custom {
-webkit-appearance: none;
-moz-appearance: none;
}
.select-wrapper {
position: relative;
}
.select-wrapper:before {
content: '\25BE';
position: absolute;
right: 1px;
top: 1px;
bottom: 1px;
width: 52px;
height: 52px;
font-size: 14px;
line-height: 54px;
pointer-events: none;
color: #5d6a75;
text-align: center;
z-index: 999;
}
.select-wrapper select {
padding-right: 40px;
width: 100%;
background-color: #fff;
color: #2b2b2b;
}
.select-wrapper--sm:before {
width: 40px;
height: 40px;
line-height: 42px;
}
.select-wrapper.select-time {
width: 110px;
display: inline-block;
}
.widget select {
-webkit-appearance: menuitemtext;
-o-appearance: menuitemtext;
-ms-appearance: menuitemtext;
} select::-ms-expand {
display: none;
}
.contact-form {
margin-bottom: 15px;
margin-top: 0;
}
label {
font-size: 16px;
line-height: 24px;
font-weight: 400;
margin-bottom: 5px;
color: #000;
}
form label.error {
display: block;
color: #ff0000;
font-size: 13px !important;
opacity: 1 !important;
margin-top: -18px;
}
form.contact-form label.error {
margin-top: -5px;
}
form.contact-form textarea + label.error {
margin-top: -12px;
}
.successform,
.errorform {
display: none;
min-height: 50px;
}
.successform,
.errorform {
margin-top: 15px;
}
.successform p,
.errorform p {
margin-bottom: 0 !important;
}
.successform {
color: #6fbf52;
}
.errorform {
color: #c0392b;
}
.form-table input::-webkit-input-placeholder {
color: #000;
}
.form-table input::-moz-placeholder {
color: #000;
}
.form-table input:-ms-input-placeholder {
color: #000;
}
.form-table input:-moz-placeholder {
color: #000;
}
@media (min-width: 992px) {
.form-table {
display: table;
width: 100%;
table-layout: fixed;
padding-top: 5px;
}
.form-table .form-group-cell {
display: table-cell;
vertical-align: top;
padding: 0 10px;
}
.form-table .form-group-cell.sm {
width: 125px;
}
.form-table .form-group-cell.action {
width: 190px;
}
.form-table .form-group-cell .btn {
height: 55px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.form-table .form-group-cell {
display: inline-block;
vertical-align: top;
padding: 0 10px;
width: 50%;
margin-right: -4px;
}
.form-table .form-group-cell.sm {
width: 125px;
}
.form-table .form-group-cell.action {
width: 190px;
}
.form-table .form-group-cell .btn {
height: 55px;
}
}
@media (max-width: 767px) {
.form-table {
max-width: 460px;
margin: 0 auto;
}
}
.label-box-wrap {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 100%;
}
@media (max-width: 600px) {
.label-box-wrap {
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
}
.label-box-wrap &gt; * {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
margin: 0 10px;
text-align: center;
}
@media (max-width: 600px) {
.label-box-wrap &gt; * {
min-width: 150px;
margin: 10px !important;
}
}
.label-box-wrap &gt; *:first-child {
margin-left: 0;
}
.label-box-wrap &gt; *:last-child {
margin-right: 0;
}
.label-box-wrap input[type=radio] {
position: absolute;
left: -9999px;
}
.label-box-wrap input[type=radio] + label {
height: 86px;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center;
-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
text-align: center;
cursor: pointer;
border-radius: 3px;
font-size: 15px;
line-height: 24px;
color: #a7b3bd;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.label-box-wrap input[type=radio] + label b {
display: block;
color: #677d8f;
font-weight: 600;
}
.label-box-wrap input[type=radio]:checked + label {
background-color: #6fbf52;
}
.label-box-wrap input[type=radio]:checked + label,
.label-box-wrap input[type=radio]:checked + label b {
color: #fff;
}
.order-form-box {
border: 1px solid #e6e9ec;
padding: 26px 18px 35px;
-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
.order-form-box {
padding: 33px 20px;
}
}
.order-form-box .input-custom {
margin-bottom: 18px;
}
.order-form-box h4 {
margin-bottom: 7px;
}
.order-form-box h6 {
margin-bottom: 0;
}
.order-form-box h6 + input,
.order-form-box h6 + .select-wrapper {
margin-top: 15px;
}
.order-form-box p {
margin-bottom: 15px;
}
.order-form-box .divider-line {
position: relative;
margin-left: -33px;
margin-right: -33px;
height: 10px;
margin-bottom: 30px;
width: calc(100% + 66px);
}
.slick-slide img {
display: block;
width: 100%;
height: auto;
}
@media (max-width: 1199px) {
.order-form-box .divider-line {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px);
}
}
.order-form-box .divider {
height: 26px;
}
.defr-content {
display: block;
}
@media (max-width: 767px) {
.order-form-box .text-center-xs {
text-align: center;
}
}
.input-comment {
font-size: 13px;
line-height: 14px;
color: #a7b3bd;
margin-bottom: 15px;
}
.qty-count.qty-count--order {
background: transparent;
position: relative;
width: 100%;
margin: 0;
}
.qty-count.qty-count--order .count-add,
.qty-count.qty-count--order .count-reduce {
position: absolute;
z-index: 1;
top: 28px;
left: 1px;
height: 42px;
width: 40px;
text-align: center;
line-height: 38px;
color: #a8b3bd;
font-size: 20px;
border-right: 1px solid #e6e9ec;
background: transparent;
}
.qty-count.qty-count--order .count-add {
left: auto;
right: 1px;
border-left: 1px solid #e6e9ec;
border-right: 0;
line-height: 42px;
}
.qty-count.qty-count--order .count-input {
width: 100%;
padding-left: 50px;
padding-right: 50px;
height: 42px;
line-height: 24px;
background: #fff;
border: 1px solid #d7dbdf;
border-radius: 3px;
text-align: center;
color: #2b2b2b;
font-size: 15px;
}
.qty-count.qty-count--order:only-child {
margin-bottom: 18px;
}
.datetimepicker-wrap .form-control,
.timepicker-wrap .form-control {
width: 100%;
}
.datetimepicker-wrap {
position: relative;
}
.select-wrapper-self p{
display: inline-block;
}
.defr-content{
display: block !important;
}
.datetimepicker-wrap.icon-time:before {
content: "\e90d";
font-family: 'cleaning';
position: absolute;
display: block;
top: 50%;
margin-top: -10px;
right: 15px;
font-size: 15px;
line-height: 20px;
color: #6fbf52;
z-index: 999;
}
.timepicker-wrap {
position: relative;
}
.timepicker-wrap:before {
content: "\e913";
font-family: 'cleaning';
position: absolute;
display: block;
top: 50%;
margin-top: -10px;
right: 15px;
font-size: 15px;
line-height: 20px;
color: #6fbf52;
}
.bootstrap-datetimepicker-widget .btn[data-action] {
width: auto;
background: transparent !important;
min-width: 0;
}
.bootstrap-datetimepicker-widget .btn[data-action]:after,
.bootstrap-datetimepicker-widget .btn[data-action]:before {
display: none;
opacity: 1;
}
.bootstrap-datetimepicker-widget .btn[data-action].btn-primary {
border: 0;
background-color: #4ba0e8 !important;
color: #fff;
}
.bootstrap-datetimepicker-widget table td span {
display: block;
opacity: 1;
}
.order-form-box .input-custom {
height: 46px !important;
padding: 8px 15px !important;
}
.label-box-wrap input[type=radio] + span {
height: 86px;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center;
-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
text-align: center;
cursor: pointer;
border-radius: 3px;
font-size: 15px;
line-height: 24px;
color: #a7b3bd;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
width: 150px;
padding: 0px 2px;
} button,
.btn {
-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
button:focus,
.btn:focus,
button:active:focus,
.btn:active:focus,
button.active:focus,
.btn.active:focus,
button.focus,
.btn.focus,
button:active.focus,
.btn:active.focus,
button.active.focus,
.btn.active.focus {
outline: 0;
outline: none;
}
button:hover,
.btn:hover,
button:focus,
.btn:focus,
button.focus,
.btn.focus {
outline: 0;
outline: none;
}
button:active,
.btn:active,
button.active,
.btn.active {
outline: 0;
outline: none;
}
.more-link {
display: inline-block;
}
.btn, .more-link {
padding: 15px 29px;
font-size: 17px;
line-height: 28px;
font-weight: 600;
height: auto;
background-color: #4ba0e8;
color: #fff;
border-radius: 27.5px;
border: 0;
vertical-align: top;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
text-decoration: none;
text-transform: uppercase;
position: relative;
overflow: hidden;
}
.more-link {
margin-top: 30px;
}
.btn.focus,.more-link .focus,
.btn:focus,.more-link:focus {
background-color: #4ba0e8;
color: #fff;
}
.btn:hover,.more-link:hover,
.btn.active,.more-link.active
.btn:active ,.more-link:active {
background: #4ba0e8;
color: #fff;
}
.btn:focus,.more-link:focus  {
outline: 0;
}
.btn:before {
content: '';
display: block;
position: absolute;
background: rgba(255, 255, 255, 0.5);
width: 60px;
height: 100%;
left: 0;
top: 0;
opacity: .5;
-webkit-filter: blur(30px);
filter: blur(30px);
-webkit-transform: translateX(-100px) skewX(-10deg);
-ms-transform: translateX(-100px) skewX(-10deg);
transform: translateX(-100px) skewX(-10deg);
}
.btn:after {
content: '';
display: block;
position: absolute;
background: rgba(255, 255, 255, 0.2);
width: 30px;
height: 100%;
left: 30px;
top: 0;
opacity: 0;
-webkit-filter: blur(5px);
filter: blur(5px);
-webkit-transform: translateX(-100px) skewX(-10deg);
-ms-transform: translateX(-100px) skewX(-10deg);
transform: translateX(-100px) skewX(-10deg);
}
.btn:hover {
background: #338033;
cursor: pointer;
}
.btn:hover:before {
-webkit-transform: translateX(300px) skewX(-10deg);
-ms-transform: translateX(300px) skewX(-10deg);
transform: translateX(300px) skewX(-10deg);
opacity: 0.6;
-webkit-transition: .7s;
-o-transition: .7s;
transition: .7s;
}
.btn:hover:after {
-webkit-transform: translateX(300px) skewX(-10deg);
-ms-transform: translateX(300px) skewX(-10deg);
transform: translateX(300px) skewX(-10deg);
opacity: 1;
-webkit-transition: .7s;
-o-transition: .7s;
transition: .7s;
}
.btn span {
display: inline-block;
vertical-align: middle;
}
.btn [class*='icon'] {
display: inline-block;
vertical-align: sub;
padding-right: 10px;
font-size: 20px;
margin-left: 0;
width: auto;
}
.btn.text-left {
text-align: left;
}
.btn.text-right {
text-align: right;
}
.btn-sm {
padding: 10px 26px;
font-size: 17px;
line-height: 23px;
border-radius: 21px;
}
.btn-wide {
min-width: 264px;
}
.btn-lg {
padding: 17px 29px;
font-size: 20px;
line-height: 26px;
border-radius: 31px;
}
.btn-full {
width: 100%;
}
.btn-invert {
background: #4ba0e8;
}
.btn-invert.focus,
.btn-invert:focus {
background: #4ba0e8;
}
.btn-white,
.btn-white.focus,
.btn-white:focus {
background: #fff;
color: #425d74;
}
.btn-white:hover,
.btn-white.active,
.btn-white:active {
background-color: #6fbf52;
color: #fff;
}
.btn-white:hover [class*='icon'],
.btn-white.active [class*='icon'],
.btn-white:active [class*='icon'] {
color: #fff;
}
.btn-white [class*='icon'] {
color: #6fbf52;
}
.btn-inline .btn {
margin: 0 24px 10px 0;
}
.text-center .btn-inline .btn {
margin: 0 12px 10px;
}
@-webkit-keyframes ring {
0% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
2% {
-webkit-transform: rotate(10deg);
transform: rotate(10deg);
}
4% {
-webkit-transform: rotate(-15deg);
transform: rotate(-15deg);
}
6% {
-webkit-transform: rotate(15deg);
transform: rotate(15deg);
}
8% {
-webkit-transform: rotate(-12deg);
transform: rotate(-12deg);
}
10% {
-webkit-transform: rotate(12deg);
transform: rotate(12deg);
}
12% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
}
@keyframes ring {
0% {
-webkit-transform: rotate(-10deg);
-ms-transform: rotate(-10deg);
transform: rotate(-10deg);
}
2% {
-webkit-transform: rotate(10deg);
-ms-transform: rotate(10deg);
transform: rotate(10deg);
}
4% {
-webkit-transform: rotate(-15deg);
-ms-transform: rotate(-15deg);
transform: rotate(-15deg);
}
6% {
-webkit-transform: rotate(15deg);
-ms-transform: rotate(15deg);
transform: rotate(15deg);
}
8% {
-webkit-transform: rotate(-12deg);
-ms-transform: rotate(-12deg);
transform: rotate(-12deg);
}
10% {
-webkit-transform: rotate(12deg);
-ms-transform: rotate(12deg);
transform: rotate(12deg);
}
12% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
}
.btn:hover &gt; .icon-bell {
-webkit-animation: ring 10s ease .1s;
animation: ring 10s ease .1s;
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
transform-origin-z: initial;
} .social-links ul {
margin: 0;
padding: 0;
}
.social-links ul li {
display: inline-block;
margin: 0 7px 5px 0;
list-style: none;
text-align: center;
}
@media screen and (max-width: 767px) {
.social-links ul li {
margin: 0 4px 3px 0;
}
}
.social-links ul li:last-child {
margin-right: 0;
}
.social-links ul li a {
font-size: 45px;
color: #6fbf52;
text-decoration: none;
cursor: pointer;
-webkit-transition: color 0.3s ease;
-moz-transition: color 0.3s ease;
-ms-transition: color 0.3s ease;
-o-transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
.social-links ul li a {
font-size: 36px;
}
}
.social-links ul li a:hover {
color: #4ba0e8;
}
.link a {
font-size: 34px;
line-height: 1em;
color: #6fbf52;
text-decoration: none;
padding: 0 4px 0 0;
-webkit-transition: color 0.3s ease;
-moz-transition: color 0.3s ease;
-ms-transition: color 0.3s ease;
-o-transition: color 0.3s ease;
}
.link a:hover {
color: #4ba0e8;
}
a.icon-facebook-logo:hover {
color: #3b5998 !important;
}
a.icon-twitter-logo:hover {
color: #55acee !important;
}
a.icon-google-plus-logo:hover {
color: #dd4b39 !important;
}
a.icon-linkedin-logo:hover {
color: #4875B4 !important;
}
a.icon-pinterest-logo:hover {
color: #C92228 !important;
}
a.icon-instagram-logo:hover {
color: #4E433C !important;
} .tag {
display: block;
color: #677d8f;
font-size: 15px;
line-height: 24px;
padding: 5px 10px;
text-decoration: none;
border: 1px solid #b7dfa8;
border-radius: 3px;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
}
.tags-list ,.tagcloud{
position: relative;
list-style: none;
margin: 30px 0 0;
padding: 0;
}
.tags-list li ,.tagcloud a {
display: inline-block;
padding: 0;
margin-bottom: 7px;
margin-right: 5px;
}
.tags-list li a ,.tagcloud a{
color: #677d8f;
font-size: 15px !important;
line-height: 24px;
padding: 5px 10px;
text-decoration: none;
border: 1px solid #b7dfa8;
border-radius: 3px;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
}
.tags-list li a:hover,.tagcloud a:hover{
background-color: #6fbf52;
border-color: #6fbf52;
color: #fff;
}
.widget_calendar th {
background-color: #f5f5f5;
}
.widget_calendar th, .widget_calendar td {
border: 1px solid #f7f7f7;
color: #2c2c2c;
cursor: pointer;
line-height: 34px;
text-align: center;
font-weight: 400;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
padding: 0px;
}
.widget_calendar table{
border:none;
}
.widget_calendar caption {
padding-top: 8px;
padding-bottom: 15px;
color: #444;
text-align: left;
text-transform: uppercase;
font-weight: 600;
}
.side-block .blog-post .post-image img{
margin-bottom: 10px;
}
.post-title a{
color:#4b5b68;
} .calendar__header {
font-size: 16px;
line-height: 22px;
text-transform: uppercase;
font-weight: 600;
color: #425d74;
padding: 0 0 15px;
}
.calendar__footer {
font-size: 16px;
color: #425d74;
padding: 10px 0 0;
}
.calendar__footer a {
text-decoration: none;
}
.calendar__footer a:hover {
color: #6fbf52;
}
.calendar table {
background: #fff;
border-collapse: collapse;
font-size: 14px;
width: 100%;
max-width: 350px;
border-spacing: 1px;
border-collapse: separate;
}
.calendar th,
.calendar td {
border: 1px solid #f7f7f7;
color: #2c2c2c;
cursor: pointer;
line-height: 36px;
text-align: center;
font-weight: 400;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
}
.calendar th:hover,
.calendar td:hover {
background-color: #f5f5f5;
}
.calendar th {
background-color: #f5f5f5;
}
.calendar tr:first-child td {
color: #2c2c2c;
padding-bottom: 10px;
}
.calendar .selected,
.calendar .selected:hover {
background-color: #6fbf52;
color: #fff;
} .nav-tabs {
border-bottom: 1px solid #d8d8d8;
}
.nav-tabs &gt; li {
margin: 0 20px;
}
@media (max-width: 479px) {
.nav-tabs &gt; li {
width: 100%;
margin: 0;
}
}
.nav-tabs &gt; li.active &gt; a,
.nav-tabs &gt; li.active &gt; a:focus,
.nav-tabs &gt; li.active &gt; a:hover {
border-width: 0;
}
.nav-tabs &gt; li &gt; a {
padding-left: 0;
padding-right: 0;
font-size: 24px;
line-height: 24px;
font-weight: 600;
border: none;
color: #4b5b68;
text-decoration: none;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.nav-tabs &gt; li.active &gt; a,
.nav-tabs &gt; li &gt; a:hover {
border: none;
color: #6fbf52 !important;
background: transparent;
}
.nav-tabs &gt; li &gt; a::after {
content: "";
background: #6fbf52;
height: 4px;
position: absolute;
width: 100%;
left: 0px;
bottom: -1px;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
}
.nav-tabs &gt; li.active &gt; a::after,
.nav-tabs &gt; li:hover &gt; a::after {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.tab-nav &gt; li &gt; a::after {
background: #6fbf52 none repeat scroll 0% 0%;
color: #fff;
}
.tab-pane {
padding: 15px 0;
}
.tab-content {
padding: 20px;
}
@media (max-width: 479px) {
.tab-content {
padding: 0;
}
}
.tab-services .tab-content {
position: relative;
}
.tab-services .tab-content &gt; .tab-pane {
display: block;
position: absolute;
width: calc(100% + 30px);
top: -10000px;
}
.tab-services .tab-content &gt; .active {
position: relative;
top: 0;
}
.nav-pills {
margin: 70px 0 47px;
text-align: center;
}
.nav-pills &gt; li {
display: inline-block;
float: none;
margin: 0 3px 10px 3px;
}
.nav-pills &gt; li &gt; a {
display: block;
border-radius: 0;
padding: 0 18px;
min-width: 50px;
border: 1px solid #eaeaea;
font-size: 14px;
line-height: 53px;
color: #383838;
text-decoration: none;
text-align: center;
}
.nav-pills &gt; li.active &gt; a,
.nav-pills &gt; li.active &gt; a:focus,
.nav-pills &gt; li.active &gt; a:hover {
background: #6fbf52;
border-color: #6fbf52;
color: #383838;
}    html,body {
overflow-x: hidden;
}
.block {
margin-bottom: 90px;
}
@media (max-width: 767px) {
.block {
margin-bottom: 50px;
}
}
.block.bottom-null {
margin-bottom: 0;
}
[data-bg] {
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
}
@media (max-width: 1199px) {
[data-bg].hide-bg-md {
background-image: none !important;
}
}
@media (max-width: 991px) {
[data-bg].hide-bg-sm {
background-image: none !important;
}
}
@media (max-width: 767px) {
[data-bg].hide-bg-xs {
background-image: none !important;
}
}
.block.bg-bottom {
background-position: bottom;
}
.block.bg-top {
background-position: top;
}
.block.bg-cover {
background-size: cover;
}
.block:not(.fullwidth):not(.fullwidth-bg).inset-20 &gt; .container {
padding-top: 20px;
padding-bottom: 20px;
}
.block:not(.fullwidth):not(.fullwidth-bg).inset-35 &gt; .container {
padding-top: 35px;
padding-bottom: 35px;
}
@media (max-width: 479px) {
.block:not(.fullwidth):not(.fullwidth-bg).inset-35 &gt; .container {
padding-top: 20px;
padding-bottom: 20px;
}
}
.block:not(.fullwidth):not(.fullwidth-bg).inset-50 &gt; .container {
padding-top: 50px;
padding-bottom: 50px;
}
@media (max-width: 767px) {
.block:not(.fullwidth):not(.fullwidth-bg).inset-50 &gt; .container {
padding-top: 30px;
padding-bottom: 30px;
}
}
.block:not(.fullwidth):not(.fullwidth-bg).inset-70 &gt; .container {
padding-top: 70px;
padding-bottom: 70px;
}
@media (max-width: 767px) {
.block:not(.fullwidth):not(.fullwidth-bg).inset-70 &gt; .container {
padding-top: 40px;
padding-bottom: 40px;
}
}
.block:not(.fullwidth):not(.fullwidth-bg).inset-85 &gt; .container {
padding-top: 85px;
padding-bottom: 85px;
}
@media (max-width: 767px) {
.block:not(.fullwidth):not(.fullwidth-bg).inset-85 &gt; .container {
padding-top: 60px;
padding-bottom: 60px;
}
}
.block.fullwidth.inset-20,
.block.fullwidth-bg.inset-20 {
padding: 20px 0;
}
.block.fullwidth.inset-35,
.block.fullwidth-bg.inset-35 {
padding: 35px 0;
}
.block.fullwidth.inset-50,
.block.fullwidth-bg.inset-50 {
padding: 50px 0;
}
@media (max-width: 767px) {
.block.fullwidth.inset-50,
.block.fullwidth-bg.inset-50 {
padding: 30px 0;
}
}
.block.fullwidth.inset-70,
.block.fullwidth-bg.inset-70 {
padding: 70px 0;
}
@media (max-width: 767px) {
.block.fullwidth.inset-70,
.block.fullwidth-bg.inset-70 {
padding: 40px 0;
}
}
.block.fullwidth.inset-85,
.block.fullwidth-bg.inset-85 {
padding: 85px 0;
}
@media (max-width: 767px) {
.block.fullwidth.inset-85,
.block.fullwidth-bg.inset-85 {
padding: 50px 0;
}
}
.block-bg-grey {
background-color: #f5f6f7;
}
.block.bg-gradient:not(.fullwidth):not(.fullwidth-bg) .container {
background-image: -webkit-gradient(linear, left top, right top, from(#46c6cf), to(#47a8e3));
background-image: -webkit-linear-gradient(left, #46c6cf, #47a8e3);
background-image: -o-linear-gradient(left, #46c6cf, #47a8e3);
background-image: linear-gradient(90deg, #46c6cf, #47a8e3);
}
.block.bg-gradient, .block.fullwidth-bg.bg-gradient {
background-image: -webkit-gradient(linear, left top, right top, from(#46c6cf), to(#47a8e3));
background-image: -webkit-linear-gradient(left, #46c6cf, #47a8e3);
background-image: -o-linear-gradient(left, #46c6cf, #47a8e3);
background-image: linear-gradient(90deg, #46c6cf, #47a8e3);
padding: 37px 25px;
text-align: center;
font-size: 36px;
line-height: 36px;
color: #fff;
}
.block.bg-gradient-1:not(.fullwidth):not(.fullwidth-bg) .container {
background-image: -webkit-gradient(linear, left top, right top, from(#46c6cf), to(#62c699));
background-image: -webkit-linear-gradient(left, #46c6cf, #62c699);
background-image: -o-linear-gradient(left, #46c6cf, #62c699);
background-image: linear-gradient(90deg, #46c6cf, #62c699);
}
.block.bg-gradient-1,
.block.fullwidth-bg.bg-gradient-1 {
background-image: -webkit-gradient(linear, left top, right top, from(#46c6cf), to(#62c699));
background-image: -webkit-linear-gradient(left, #46c6cf, #62c699);
background-image: -o-linear-gradient(left, #46c6cf, #62c699);
background-image: linear-gradient(90deg, #46c6cf, #62c699);
}
.block.fullwidth &gt; .container {
width: 100%;
}
.block.fullwidth.no-pad &gt; .container {
padding-left: 0;
padding-right: 0;
}
.no-gutter {
margin: 0;
}
.no-gutter &gt; [class*='col-'] {
padding-right: 0;
padding-left: 0;
}
body.fixed {
position: fixed;
overflow: hidden;
width: 100%;
}
.page-main {
padding-bottom: 25px;
}
.page-main:before,
.page-main:after {
content: '';
display: table;
}
@media (min-width: 1200px) {
.container {
width: 1200px;
}
}
@media (max-width: 991px) {
.aside + .aside {
margin-top: 50px;
}
} .page-header {
position: relative;
width: 100%;
z-index: 1000;
padding: 0;
margin: 0;
border: 0;
color: #425d74;
}
.page-header-menu {
border-top: 3px solid #4ba0e8;
}
.page-header-top {
padding: 15px 0 15px;
color: #425d74;
position: relative;
}
.page-header-top &gt; .container {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 991px) {
.page-header-top &gt; .container {
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.page-header-phone span.phone-number {
font-size: 18px;
}
}
.page-header-top &gt; .container &gt; *:last-child {
margin-left: auto;
margin-right: 0;
}
.page-header-top &gt; .container &gt; *:first-child {
margin-right: auto;
margin-left: 0;
}
.page-header-top .logo {
min-width: 272px;
position: relative;
}
.page-header-top .logo .shine {
position: absolute;
top: -30%;
left: 6%;
pointer-events: none;
}
@media (max-width: 1000px) {
.page-header-top .logo {
min-width: 160px !important;
max-width: 160px !important;
}
.page-header .header-cart {
padding-left: 5px !important;
}
.page-header-top .btn{
padding: 15px 20px;
}
}
@media (max-width: 1030px) {
.home-block-1 .wpb_text_column.wpb_content_element.get-banner {
margin-bottom: 30px !important;
padding-right: 0px !important;
}
}
@media (max-width: 767px) {
.page-header-top {
padding: 5px 0;
background-color: #fff;
position: relative;
}
.page-header-top:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 49px;
background-color: #4ba0e8;
}
}
.page-header-top-middle {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
position: relative;
}
@media (max-width: 767px) {
.page-header-top-middle {
-webkit-box-ordinal-group: 2;
-webkit-order: 1;
-ms-flex-order: 1;
order: 1;
margin-right: 15px;
}
}
.page-header-top-middle &gt; * {
margin: 0 15px 0px 8px;
}
@media (max-width: 767px) {
.page-header-top-middle &gt; * {
margin: 5px 0;
}
}
.page-header .logo img {
max-width: 100%;
}
@media (max-width: 767px) {
.page-header .logo {
-webkit-box-ordinal-group: 4;
-ms-flex-order: 2;
margin-top: 55px;
min-width: 170px;
max-width: 170px;
position: relative;
left: -17%;
}
}
@media (max-width: 767px){
.page-header .quote-button-wrap .btn {
padding: 7px 15px;
font-size: 12px;
line-height: 24px;
position: absolute;
right: 0;
top: 0;
}
}
@media (max-width: 480px){
.page-header .header-cart {
position: absolute !important;
right: 14%;
top: 84px;
z-index: 1000;
}
}
@media (max-width: 767px){
.page-header .header-cart {
position: absolute !important;
right: 20%;
top: 84px;
z-index: 1000;
}
}
.page-header-slogan {
font-size: 16px;
line-height: 20px;
}
.page-header-shedule {
font-size: 16px;
line-height: 20px;
padding-left: 35px;
position: relative;
}
.page-header-shedule .icon {
position: absolute;
left: 0;
top: 0;
font-size: 24px;
color: #6fbf52;
}
.page-header-phone {
font-size: 16px;
line-height: 20px;
}
.page-header-phone span.phone-number {
display: block;
font-size: 26px;
line-height: 26px;
white-space: nowrap;
}
@media (max-width: 767px) {
.page-header-phone span.phone-number {
font-size: 22px;
color: #fff;
}
.page-header-info a{
text-decoration: underline;
}
}
@media (max-width: 767px) {
.page-header .quote-button-wrap {
-webkit-box-ordinal-group: 3;
-webkit-order: 2;
-ms-flex-order: 2;
order: 2;
}
.page-header .quote-button-wrap .btn {
padding: 7px 15px;
font-size: 12px;
line-height: 24px;
margin-top: 5px;
}
.page-header .quote-button-wrap .btn,
.page-header .quote-button-wrap .btn.focus,
.page-header .quote-button-wrap .btn:focus {
background: #fff;
color: #677d8f;
}
.page-header .quote-button-wrap .btn:hover,
.page-header .quote-button-wrap .btn.active,
.page-header .quote-button-wrap .btn:active {
background: #fff;
color: #677d8f;
}
.page-header .quote-button-wrap .btn .icon {
font-size: 15px;
color: #6fbf52;
padding-right: 7px;
}
}
.page-header .header-cart {
position: relative;
display: inline-block;
vertical-align: top;
padding-left: 15px;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.page-header .header-cart a.icon {
font-size: 34px;
color: #425d74;
text-decoration: none;
}
.page-header .header-cart .badge {
width: 18px;
height: 18px;
line-height: 12px;
font-size: 11px;
position: absolute;
right: -18px;
top: -3px;
background-color: #6fbf52;
color: #fff;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.page-header .header-cart:hover a.icon,
.page-header .header-cart.opened a.icon {
color: #6fbf52;
}
.page-header .header-cart:hover .badge,
.page-header .header-cart.opened .badge {
background-color: #4ba0e8;
}
.page-header .header-cart-dropdown {
position: absolute;
z-index: 1000;
right: 0;
top: -5000px;
width: 350px;
padding: 35px 32px 25px;
background: #fff;
display: block;
opacity: 0;
visibility: hidden;
-webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
text-align: left;
}
@media (max-width: 991px) {
.page-header-phone span.phone-number {
font-size: 18px;
}
}
@media (max-width: 479px) {
.page-header .header-cart-dropdown {
width: 270px;
padding: 15px 15px;
right: -60px;
}
}
.page-header .header-cart-dropdown .header-cart-total {
font-size: 22px;
line-height: 30px;
font-weight: 600;
border-top: 1px solid #e8e8e8;
padding: 20px 0;
overflow: hidden;
}
.page-header .header-cart.opened .header-cart-dropdown {
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
-webkit-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
-moz-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
-ms-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
-o-transition: opacity 0.4s ease 0s, transform 0.4s ease 0s, -webkit-transform 0.4s ease 0s;
opacity: 1;
visibility: visible;
top: 100%;
margin-top: 3px;
}
body:not(.page-index) .page-header {
-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
.page-header .menu {
display: block;
padding: 0;
margin: 0;
height: 58px;
}
.page-header .menu &gt; li {
display: inline-block;
position: relative;
z-index: 100;
margin-right: -4px;
margin-top: 0;
}
.page-header .menu &gt; li &gt; a {
font-size: 16px;
line-height: 28px;
font-weight: 600;
text-decoration: none;
padding: 15px 39px;
display: block;
color: #425d74;
text-transform: uppercase;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
}
.page-header .menu &gt; li &gt; a .arrow {
display: none;
}
.page-header .menu &gt; li:first-child &gt; a {
padding-left: 25px;
}
.page-header .menu li a:hover,
.page-header .menu li:hover &gt; a,
.page-header .menu li.active &gt; a {
color: #6fbf52;
}
.page-header .menu ul {
visibility: hidden;
opacity: 0;
margin: 0;
padding: 0;
width: 355px;
position: absolute;
left: 0px;
background: #fff;
z-index: 99;
-webkit-transform: translate(0, 20px);
-ms-transform: translate(0, 20px);
transform: translate(0, 20px);
-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
-webkit-transition: all 0.2s ease-out 0s;
-moz-transition: all 0.2s ease-out 0s;
-ms-transition: all 0.2s ease-out 0s;
-o-transition: all 0.2s ease-out 0s;
}
.page-header .menu ul li {
display: block;
float: none;
background: none;
margin: 0;
padding: 0;
border-bottom: 1px solid #edeff1;
}
.page-header .menu ul li a {
font-size: 14px;
line-height: 30px;
padding: 10px 32px;
font-weight: normal;
display: block;
color: #4b5b68;
text-transform: uppercase;
text-decoration: none;
}
.page-header .menu ul li a:before {
display: inline-block;
vertical-align: middle;
font-family: 'cleaning';
content: '\e90a';
font-size: 10px;
position: relative;
top: -1px;
width: 0;
opacity: 0;
overflow: hidden;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-ms-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
}
.page-header .menu ul li a:hover,
.page-header .menu ul li:hover &gt; a {
color: #6fbf52;
}
.page-header .menu ul li a:hover:before,
.page-header .menu ul li:hover &gt; a:before {
width: 16px;
opacity: 1;
}
.page-header .menu li:hover &gt; ul {
visibility: visible;
opacity: 1;
-webkit-transition: all 0.2s ease-out 0.3s;
-moz-transition: all 0.2s ease-out 0.3s;
-ms-transition: all 0.2s ease-out 0.3s;
-o-transition: all 0.2s ease-out 0.3s;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
.page-header .menu ul ul {
left: 355px;
top: 0px;
visibility: hidden;
opacity: 0;
-webkit-transform: translate(20px, 20px);
-ms-transform: translate(20px, 20px);
transform: translate(20px, 20px);
-webkit-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;
}
.page-header .menu li &gt; ul ul:hover {
visibility: visible;
opacity: 1;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@media (min-width: 768px){
.page-header .menu li a:hover, 
.page-header .menu li:hover &gt; a, 
.page-header .menu li.current-menu-item &gt; a {
color: #6fbf52;
}
}
@media (min-width: 768px) and (max-width: 1199px) {
.page-header .menu &gt; li:first-child &gt; a {
padding-left: 11px;
}
}
.menu-toggle {
display: none;
position: absolute;
right: 15px;
bottom: 24px;
margin-top: 5px;
text-decoration: none;
font-size: 28px;
line-height: 28px;
z-index: 999999;
}
.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus {
color: #4ba0e8;
}
.menu-toggle i.icon-cancel {
font-size: 25px;
margin-top: 4px;
}
.menu-toggle &gt; *:last-child {
display: none;
}
.menu-toggle.opened &gt; *:last-child {
display: block;
}
.menu-toggle.opened &gt; *:first-child {
display: none;
}
@media (max-width: 1199px) {
.page-header .menu &gt; li &gt; a {
padding: 15px 21px;
}
}
@media (max-width: 991px) {
.page-header .menu &gt; li &gt; a {
padding: 15px 7px;
}
}
@media (max-width: 767px) {
.page-header .menu-toggle {
display: block;
}
.page-header .menu {
display: none;
margin: 0;
padding: 0;
}
.page-header .menu ul {
margin: 0;
padding: 0;
display: none;
border-top: 1px solid #edeff1;
background: #f8f8f8;
}
.page-header .menu ul li a {
font-size: 14px;
font-weight: 400;
}
.page-header .menu li {
display: block;
width: 100%;
background: none;
margin: 0;
padding: 0;
border-bottom: 1px solid #edeff1;
}
.page-header .menu li:last-child {
border-bottom: 0;
}
.page-header .menu li a {
font-size: 15px;
line-height: 30px;
padding: 10px 32px;
font-weight: normal;
display: block;
color: #4b5b68;
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
position: relative;
}
.page-header .menu li a .arrow {
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 50px;
text-align: center;
cursor: pointer;
}
.page-header .menu li a .arrow:before {
display: block;
font-family: 'cleaning';
content: '\e90a';
font-size: 12px;
line-height: 50px;
position: relative;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-ms-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
}
.page-header .menu li a.opened {
color: #6fbf52;
}
.page-header .menu li a.opened .arrow:before {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
}
.page-header-menu {
position: absolute;
width: 100%;
background-color: #fff;
border-top: 0;
-webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
overflow-y: auto;
height: 0;
border-top: 1px solid #edeff1;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-ms-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
}
.page-header-menu &gt; .container {
padding: 0;
}
}
body.is-loaded .page-header .menu,
body.is-loaded .page-header .logo {
height: auto;
}
.page-header.is-sticky {
position: fixed !important;
width: 100%;
background: rgba(255, 255, 255, 0.9);
border-bottom: 0 !important;
-webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15)!important;
-moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15)!important;
box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15)!important;
top: 0px;
left: 0px;
}
.page-header.is-sticky .page-header-menu {
border-top: 0;
}
@media (min-width: 1149px) {
.clean-with-conscience {
background-image: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/block-bg-1.jpg);
background-size: cover;
}
}
@media (min-width: 768px) {
body:not(.home) header.page-header.is-sticky #slidemenu {
margin-bottom: 0;
}
}
body.page-shop .page-header-top-middle &gt; * {
margin-left: 10px;
margin-right: 10px;
}
@media (max-width: 1199px) {
body.page-shop .page-header-top .logo {
min-width: 30px;
max-width: 250px;
}
}
.page-header.is-sticky .page-header-top{
display: none;
}
.prd-grid .btn {
min-width: 0;
margin-top: 27px;
height: 41px;
font-size: 12px;
line-height: 15px;
font-weight: 600;
padding: 10px 25px 30px;
}
.page-header-info {
font-size: 15px;
line-height: 24px;
padding-left: 28px;
position: relative;
color: #677d8f;
}
.page-header-info .icon {
position: absolute;
left: 0;
top: 4px;
font-size: 16px;
}
.page-header-info:not(:first-child) {
margin-top: 10px;
}
.page-header-mobile-info-content .social-list {
margin-bottom: 0;
}
@media (max-width: 767px) {
.page-header.is-sticky {
top: -50px !important;
}
.page-header.is-sticky .page-header-top{
display: block;
}
.page-header-mobile-info-toggle {
position: absolute;
z-index: 1;
top: 0;
left: 20px;
width: 20px;
height: 20px;
text-align: center;
color: #fff;
cursor: pointer;
}
.page-header-mobile-info-toggle:before {
display: block;
font-family: 'cleaning';
content: '\e90a';
font-size: 14px;
line-height: 50px;
position: relative;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-ms-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
}
.page-header-mobile-info-toggle.opened:before {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
}
.page-header-mobile-info-content {
display: none;
padding: 15px;
background-color: #f3f5f6;
}
.page-header-mobile-info-content .social-list a {
font-size: 20px;
line-height: 20px;
}
.page-header-mobile-info-content .social-list {
margin: 10px 0 0px;
}
}
@media (min-width: 768px){
.page-header-mobile-info, 
.page-header-mobile-info-toggle {
display: none;
}
} .page-footer {
clear: both;
position: relative;
}
.page-footer-bot .logo {
margin-top: -40px;
}
.coupon-txt-margin {
padding-bottom: 60px;
}
.page-footer-menu {
position: relative;
background-image: -webkit-gradient(linear, left top, right top, from(#46c6cf), to(#47a8e3));
background-image: -webkit-linear-gradient(left, #46c6cf, #47a8e3);
background-image: -o-linear-gradient(left, #46c6cf, #47a8e3);
background-image: linear-gradient(90deg, #46c6cf, #47a8e3);
width: 100%;
height: 75px;
}
.page-footer-menu ul li .sub-menu{
display: none;
}
.page-footer-menu .container {
position: relative;
}
.page-footer-bot {
padding: 60px 0 0;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.page-footer-bot &gt; * {
margin: 0 50px;
}
.footer-copyright {
padding: 0px 0px 40px;
}
@media (min-width: 668px){
.page-footer .page-footer-col-2, .page-footer .page-footer-col-3 {
padding-top: 45px;
}
.page-footer-col-3 .social-list{
margin-top: -20px;
}
}
@media (max-width: 1199px) {
.page-footer-bot {
padding-top: 30px;
}
}
@media (max-width: 1023px) {
.page-footer-bot {
padding-top: 30px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
text-align: left;
display: block;
}
.page-footer-bot &gt; *:not(:first-child) {
margin: 30px 0 0;
}
}
@media (min-width: 1023px) {
.page-footer-bot &gt; *:last-child {
margin-left: auto;
margin-right: 0;
}
.page-footer-bot &gt; *:first-child {
margin-right: auto;
margin-left: 0;
}
}
.page-footer-bot .logo img {
max-width: 100%;
}
@media (max-width: 1199px) {
.page-footer-bot .logo {
width: 100%;
margin-top: 0px;
max-width: 160px;
}
.page-footer-bot &gt; * {
margin:0px 15px;
}
}
.page-footer .footer-ribbon {
position: absolute;
right: 0;
top: -22px;
width: 186px;
}
.page-footer .footer-ribbon img {
width: 100%;
}
@media (max-width: 1199px) {
.page-footer .footer-ribbon {
display: none;
}
}
.page-footer .footer-copyright:not(:first-child) {
font-size: 16px;
line-height: 24px;
}
@media (max-width: 991px) {
.page-footer .footer-copyright:not(:first-child) {
text-align: center;
}
}
.page-footer .menu {
display: block;
margin: 0;
padding: 0 200px 0 0;
}
@media (max-width: 1023px) and (min-width: 668px){
.page-footer-bot {
padding: 60px 0 0;
display: block;
}
.page-footer-bot .page-footer-col-1, 
.page-footer-bot .page-footer-col-2 {
min-width: 50%;
float: left;
}
.page-footer-col-3 {
overflow: hidden;
display: block;
text-align: center;
width: 100%;
}
}
@media (max-width: 1200px) and (min-width: 769px){
.entry-content img {
margin: 16% 0;
}
.gallery-item-image img{
margin:0px;
}
.brand-carousel img{
margin:0px;
}
}
@media (max-width: 1199px) {
.page-footer .menu {
padding: 0;
}
.page-footer .menu li {
margin-top: 5px;
}
}
.page-footer .menu li {
display: inline-block;
position: relative;
z-index: 100;
}
.page-footer h4 {
font-size: 20px;
margin-bottom: 20px;
}
@media (max-width: 767px) {
.page-footer .menu li {
display: none;
width: 100%;
text-align: center;
}
.page-footer-menu {
height:auto;
}
.page-footer .menu{
margin:5px 0px;
}
.coupon-txt-margin {
padding-bottom: 10px !important;
}
.page-footer-col-3 .social-list{
text-align: center;
}
}
@media (min-width: 992px) {
.page-footer .menu li:first-child a {
padding-left: 0;
}
}
.page-footer .menu li a {
font-size: 16px;
line-height: 27px;
font-weight: 600;
text-decoration: none;
padding: 20px 25px;
display: block;
color: #fff;
text-transform: uppercase;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
}
@media (max-width: 1199px) {
.page-footer .menu li a {
padding: 10px 5px;
}
.page-footer .menu {
display: none;
}
.page-footer-menu {
height: 5px;
}
}
@media (max-width: 991px) {
.calendar-cover-front{
top: -28px !important;
left: 0;
}
}
@media (max-width: 767px) {
.page-footer .menu li a {
padding: 5px 25px;
}
.calendar-cover-front {
top: -2px !important;
left: 0;
}
}
.page-footer .menu li a:hover,
.page-footer .menu li:hover &gt; a,
.page-footer .menu li.active &gt; a {
color: #425d74;
}
.page-footer-info {
font-size: 15px;
line-height: 22px;
padding-left: 30px;
position: relative;
}
.page-footer-info .icon {
position: absolute;
left: 0;
top: 0;
font-size: 16px;
}
.page-footer-info a{
text-decoration: underline;
}
.page-footer-info a:hover{
text-decoration:none;
}
.page-footer-info + * {
margin-top: 20px;
}
@media (max-width: 767px) {
.page-footer-phone {
text-align: center;
}
}
@media (min-width: 768px) {
.page-footer .backToTop {
position: fixed;
right: 15px;
bottom: -100px;
z-index: 10000;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
}
.page-footer .backToTop:hover {
background-color: #6fbf52;
color: #fff;
}
.page-footer .backToTop.visible {
bottom: 100px;
}
}
.page-footer .backToTop {
position: fixed;
z-index: 10000;
right: 15px;
bottom: 70px;
opacity: 0;
width: 50px;
height: 48px;
border-radius: 8px;
background: #4ba0e8;
font-size: 18px;
line-height: 48px;
color: #fff;
text-decoration: none;
text-align: center;
cursor: pointer;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-ms-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
}
.page-footer .backToTop i.icon:before {
display: inline-block;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
}
.page-footer .backToTop:hover {
-webkit-animation: ripple 0.5s linear 1;
animation: ripple 0.5s linear 1;
}
.page-footer .backToTop.visible {
opacity: 1;
}
@-webkit-keyframes ripple {
0% {
-webkit-box-shadow: 0 0 0 0 rgba(75, 160, 232, 0.3), 0 0 0 10px rgba(75, 160, 232, 0.3);
box-shadow: 0 0 0 0 rgba(75, 160, 232, 0.3), 0 0 0 10px rgba(75, 160, 232, 0.3);
}
100% {
-webkit-box-shadow: 0 0 0 10px rgba(129, 198, 100, 0), 0 0 0 20px rgba(129, 198, 100, 0);
box-shadow: 0 0 0 10px rgba(129, 198, 100, 0), 0 0 0 20px rgba(129, 198, 100, 0);
}
}
@keyframes ripple {
0% {
-webkit-box-shadow: 0 0 0 0 rgba(75, 160, 232, 0.3), 0 0 0 10px rgba(75, 160, 232, 0.3);
box-shadow: 0 0 0 0 rgba(75, 160, 232, 0.3), 0 0 0 10px rgba(75, 160, 232, 0.3);
}
100% {
-webkit-box-shadow: 0 0 0 10px rgba(129, 198, 100, 0), 0 0 0 20px rgba(129, 198, 100, 0);
box-shadow: 0 0 0 10px rgba(129, 198, 100, 0), 0 0 0 20px rgba(129, 198, 100, 0);
}
}  #mainSlider,
#mainSlider .img--holder {
height: 680px;
}
@media (max-width: 991px) {
#mainSlider,
#mainSlider .img--holder {
height: 500px;
}
}
@media (max-width: 767px) {
#mainSlider,
#mainSlider .img--holder {
height: 400px;
}
}
@media (max-width: 479px) {
#mainSlider,
#mainSlider .img--holder {
height: 250px;
}
}
#mainSlider {
margin-bottom: 30px;
opacity: 0;
}
#mainSlider.slick-initialized {
opacity: 1;
z-index: 101;
}
#mainSlider .slide .img--holder {
background-size: cover;
background-position: center bottom;
background-repeat: no-repeat;
}
#mainSlider .slide-content {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
color: #fff;
z-index: 100;
}
#mainSlider .slide-content.center {
text-align: center;
}
#mainSlider .slide-content h2 {
font-size: 80px;
line-height: 1.08em;
font-weight: 600;
color: #fff;
text-transform: none;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.55);
margin: 0;
}
#mainSlider .slide-content a.btn {
margin-top: 40px;
}
#mainSlider .slide-content .btn,
#mainSlider .slide-content .btn:focus,
#mainSlider .slide-content .btn.focus {
height: auto;
font-size: 17px;
line-height: 27px;
font-weight: 700;
text-transform: uppercase;
padding: 15px 20px;
outline: 0;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
border: 2px solid #fff;
background-color: transparent;
color: #fff;
border-radius: 28.5px;
z-index:9;
}
#mainSlider .slide-content p .btn{
margin-top: 3em;
}
#mainSlider .slide-content .btn:hover,
#mainSlider .slide-content .btn.active,
#mainSlider .slide-content .btn:active {
background: #fff;
color: #6fbf52;
}
@media (max-width: 1199px) {
#mainSlider .slide-content h2 {
font-size: 80px;
}
}
@media (max-width: 991px) {
#mainSlider .slide-content h2 {
font-size: 60px;
}
#mainSlider .slide-content .btn {
font-size: 14px;
padding: 13px 18px;
}
}
@media (max-width: 767px) {
#mainSlider .slide-content h2 {
font-size: 55px;
}
#mainSlider .slide-content.center {
text-align: center;
left: 100px;
width: calc(100% - 200px);
}
}
@media (max-width: 667px) {
#mainSlider .slide-content h2 {
font-size: 40px;
}
#mainSlider .slide-content .btn {
font-size: 12px;
line-height: 14px;
padding: 10px 15px;
}
}
@media (max-width: 479px) {
#mainSlider .slide-content h2 {
font-size: 28px;
}
#mainSlider .slide-content .btn {
font-size: 10px;
line-height: 12px;
padding: 10px 15px;
border-width: 1px;
}
#mainSlider .slide-content.center {
text-align: center;
left: 35px;
width: calc(100% - 70px);
}
}
#mainSlider .slick-prev,
#mainSlider .slick-next {
width: 50px;
height: 50px;
margin-top: -25px;
}
#mainSlider .slick-prev:before,
#mainSlider .slick-next:before {
font-size: 50px;
line-height: 1em;
color: #fff;
}
#mainSlider .slick-prev {
left: 50px;
}
#mainSlider .slick-next {
right: 50px;
}
@media (max-width: 1199px) {
#mainSlider .slick-prev {
left: 0;
}
#mainSlider .slick-next {
right: 0;
}
#mainSlider .slick-prev,
#mainSlider .slick-next {
width: 50px;
height: 50px;
margin-top: -25px;
}
#mainSlider .slick-prev:before,
#mainSlider .slick-next:before {
font-size: 50px;
}
}
@media (max-width: 767px) {
#mainSlider .slick-prev,
#mainSlider .slick-next {
display: none !important;
}
}
#mainSliderWrapper {
position: relative;
}
#starshine {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
overflow: hidden;
}
.shine {
display: block;
position: absolute;
background-image: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/glitter.png);
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
overflow: hidden;
z-index: 2;
opacity: 0;
width: 130px;
height: 130px;
-webkit-animation: glitter 6s linear 0s infinite normal;
animation: glitter 6s linear 0s infinite normal;
text-indent: -9999px;
}
@media (max-width:767px){
.page-header-top .shine {
display: none;
}
}
.shine.shine-1 {
top: 50%;
left: 10%;
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.shine.shine-2 {
top: 65%;
left: 50%;
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
.shine.shine-3 {
top: 26%;
left: 83%;
-webkit-animation-delay: 4s;
animation-delay: 4s;
}
.shine.shine-4 {
top: 30%;
left: 40%;
-webkit-animation-delay: 6s;
animation-delay: 6s;
}
.shine.shine-5 {
top: 20%;
left: 60%;
-webkit-animation-delay: 8s;
animation-delay: 8s;
}
@-webkit-keyframes glitter {
0% {
-webkit-transform: scale(0.3) rotate(0deg);
opacity: 0;
}
25% {
-webkit-transform: scale(1) rotate(360deg);
opacity: 1;
}
50% {
-webkit-transform: scale(0.3) rotate(720deg);
opacity: 0;
}
100% {
-webkit-transform: scale(0.3) rotate(0deg);
opacity: 0;
}
}
@keyframes glitter {
0% {
-webkit-transform: scale(0.3) rotate(0deg);
transform: scale(0.3) rotate(0deg);
opacity: 0;
}
25% {
-webkit-transform: scale(1) rotate(360deg);
transform: scale(1) rotate(360deg);
opacity: 1;
}
50% {
-webkit-transform: scale(0.3) rotate(720deg);
transform: scale(0.3) rotate(720deg);
opacity: 0;
}
100% {
-webkit-transform: scale(0.3) rotate(0deg);
transform: scale(0.3) rotate(0deg);
opacity: 0;
}
}
@-moz-keyframes glitter {
0% {
-moz-transform: scale(0.3) rotate(0deg);
opacity: 0;
}
25% {
-moz-transform: scale(1) rotate(360deg);
opacity: 1;
}
50% {
-moz-transform: scale(0.3) rotate(720deg);
opacity: 0;
}
100% {
-moz-transform: scale(0.3) rotate(0deg);
opacity: 0;
}
}    .breadcrumbs {
overflow: hidden;
background-color: #f6f6f7;
}
.breadcrumbs .breadcrumb {
color: #74828e;
display: inline-block;
padding: 16px 0;
border-radius: 0;
margin: 0;
width: 100%;
font-size: 14px;
}
.breadcrumb span{
padding-left: 7px;
}
.breadcrumbs .breadcrumb li, 
.breadcrumbs .breadcrumb a {
color: #74828e;
font-size: 14px;
line-height: 28px;
text-decoration: none;
margin-right: 8px;
}
.breadcrumbs .breadcrumb a:hover {
color: #6fbf52;
}
.breadcrumbs .breadcrumb &gt; li {
display: inline-block;
}
.breadcrumbs .breadcrumb &gt; li + li:before {
display: inline-block;
vertical-align: middle;
font-size: 7px;
color: #74828e;
font-family: 'cleaning';
content: "\e90a";
padding: 0 8px;
} .video-responsive {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.video-responsive iframe {
border: 0;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}  .text-icon {
margin-top: 45px;
text-align: center;
}
.text-icon &gt; *:not(:first-child) {
margin-top: 25px;
margin-bottom: 0;
}
.text-icon-icon {
margin-left: auto;
margin-right: auto;
width: 108px;
height: 108px;
border-radius: 50%;
background-color: #f6f6f7;
text-align: center;
-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.text-icon-icon .icon {
font-size: 46px;
line-height: 108px;
color: #6fbf52;
width: auto;
}
.text-icon-text {
max-width: 450px;
margin-left: auto;
margin-right: auto;
}
.text-icon-text,
.text-icon-text:not(:first-child) {
margin-top: 12px;
}
.text-icon-carousel .text-icon {
float: none;
vertical-align: top;
} .text-icon-hor {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
@media (max-width: 767px) {
.text-icon-hor {
margin-bottom: 30px;
}
}
@media (max-width: 767px) {
.clean-with-conscience {
padding-bottom: 0px !important;
padding-top: 50px !important;
}
}
@media (max-width: 1400px) {
.clean-with-conscience {
background-size: 1350px auto;
background-position: left bottom;
background-repeat: no-repeat;
}
}
.clean-with-conscience h3{
font-size: 24px;
}
.text-icon-hor-icon {
-webkit-box-flex: 0;
-webkit-flex: 0 1 70px;
-ms-flex: 0 1 70px;
flex: 0 1 70px;
min-width: 70px;
}
.text-icon-hor-icon .icon {
font-size: 64px;
line-height: 1em;
color: #6fbf52;
}
.text-icon-hor-text {
padding-left: 30px;
}
.clean-with-conscience{
padding-bottom: 55px;
padding-top: 50px;
}
.get-banner h2 {
padding-top: 3px;
} .home-testimonials-text {
background-image: url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/block-bg-3.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position:center;
}
.home-testimonials-text{
padding:60px 0px;
}
@media (max-width: 991px){
.home-testimonials-text {
background-size: 1330px 460px;
background-position: 48%;
}
}
@media (max-width: 767px){
.block-testimonials-bg.block.bg-cover {
background-size: 100% 100%;
background-position: center center;
padding: 50px 0;
}
.home-testimonials-text {
padding: 40px 0px 60px;
}
}
.testimonials-carousel {
margin-bottom: 165px;
}
.testimonials-carousel .slick-dots {
position: absolute;
width: 100%;
padding: 0;
margin: 0;
bottom: -60px;
}
@media (max-width: 767px) {
.block-testimonials-bg.block.bg-cover {
background-size: 1600px;
background-position: 65%;
}
.testimonial-item-inside h3{
font-size: 21px;
}
}
.block-testimonials .slick-prev,
.block-testimonials .slick-next {
opacity: 0;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.block-testimonials:hover .slick-prev,
.block-testimonials:hover .slick-next {
opacity: 1;
}
.block-testimonials-bg .testimonial-item {
position: relative;
text-align: center;
color: #fff;
}
.block-testimonials-bg .testimonial-item-inside {
max-width: 800px;
padding: 35px 50px 0;
margin: 0 auto;
position: relative;
}
@media (max-width: 767px) {
.block-testimonials-bg .testimonial-item-inside {
max-width: 90%;
padding: 35px 30px 0;
}
}
.block-testimonials-bg .testimonial-item-inside:after {
content: '“';
position: absolute;
top: 102px;
left: -6px;
font-size: 160px;
color: #fff;
}
@media (max-width: 767px) {
.block-testimonials-bg .testimonial-item-inside:after {
top: 20px;
left: 10px;
font-size: 100px;
}
}
.block-testimonials-bg .testimonial-item-inside &gt; *:not(:first-child) {
margin-top: 17px;
}
.block-testimonials-bg .testimonial-item h2,
.block-testimonials-bg .testimonial-item h3,
.block-testimonials-bg .testimonial-item h4,
.block-testimonials-bg .testimonial-item h5,
.block-testimonials-bg .testimonial-item h6 {
color: #fff;
margin-bottom: 0;
}
.block-testimonials-bg .testimonial-item p {
font-size: 18px;
line-height: 28px;
margin-bottom: 0;
max-height: 125px;
color: #d6f2ff;
}
.testimonials-list-btn .btn.view-more-testimonials {
padding: 17px 22px;
}
@media (max-width: 767px) {
.home-testimonials-text {
background-image: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/testiminials-bg-mobile.jpg) !important;
}
.home-testimonials-text .testimonial-item p {
font-size: 17px;
line-height: 25px;
}
.home-testimonials-text{
background-size: 100% 100%;
background-position: center center;
}
.home-testimonials-text .vc_column-inner {
padding-left: 0px !important;
padding-right: 0px !important;
}
.home-testimonials-text .testimonials-carousel {
padding-bottom: 85px;
padding-top: 10px;
background-image: -webkit-gradient(linear, left bottom, left top, from(#3e7fbb), to(#40a0e1));
background-image: -webkit-linear-gradient(bottom, #3e7fbb, #40a0e1);
background-image: -o-linear-gradient(bottom, #3e7fbb, #40a0e1);
background-image: linear-gradient(0deg, #3e7fbb, #40a0e1);
}
.testimonials-carousel .slick-dots {
bottom: 25px;
}
.order-images img{
display: none;
}
span.wpcf7-list-item {
display:block;
margin:0 !important;
}
}
@media (max-width: 600px) {
.label-box-wrap input[type=radio] + span {
min-width: 190px;
}
}
@media (max-width: 520px){
.label-box-wrap input[type=radio] + span {
min-width: 170px;
}
}
@media (max-width: 480px){
.label-box-wrap input[type=radio] + span {
min-width: 150px;
}
}
.order-images {
padding-bottom:80px;
}
.label-box-wrap input[type=radio]:checked + label {
background-color: #6fbf52;
}
@media (max-width: 1299px) {
.testimonials-carousel-1 {
margin-bottom: 65px;
}
}
.testimonials-carousel-1 .slick-dots {
position: absolute;
width: 100%;
padding: 0;
margin: 0;
bottom: -40px;
}
.block-testimonials .testimonial-item {
position: relative;
text-align: center;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 600px) {
.block-testimonials .testimonial-item {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
}
.block-testimonials .testimonial-item-inside {
width: calc(100% - 250px);
padding: 0 60px 0 130px;
position: relative;
}
@media (max-width: 767px) {
.home-block-1 .wpb_text_column.wpb_content_element.get-banner {
display: inline-block;
margin-bottom: 20px !important;
padding-right: 0px !important;
}
}
@media (max-width: 991px) {
.block-testimonials .testimonial-item-inside {
width: calc(100% - 215px);
padding: 0 20px 0 80px;
}
}
@media (max-width: 600px) {
.block-testimonials .testimonial-item-inside {
padding: 40px 30px 0 30px;
}
}
.block-testimonials .testimonial-item-inside:after {
content: '“';
position: absolute;
top: 30px;
left: 50px;
font-size: 120px;
color: #c7d5e1;
}
@media (max-width: 600px) {
.block-testimonials .testimonial-item-inside:after {
left: 0;
}
}
.block-testimonials .testimonial-item-inside &gt; *:not(:first-child) {
margin-top: 17px;
}
.block-testimonials .testimonial-item-author {
width: 250px;
min-height: 1px;
}
@media (max-width: 991px) {
.block-testimonials .testimonial-item-author {
width: 200px;
padding-left: 15px;
}
}
.block-testimonials .testimonial-item-author img {
width: 100%;
border-radius: 50%;
}
.block-testimonials .testimonial-item h2,
.block-testimonials .testimonial-item h3,
.block-testimonials .testimonial-item h4,
.block-testimonials .testimonial-item h5,
.block-testimonials .testimonial-item h6 {
margin-bottom: 0;
}
.block-testimonials .testimonial-item p {
font-size: 16px;
line-height: 28px;
margin-bottom: 0;
}
@media (max-width: 767px) {
.block-testimonials .testimonial-item p {
font-size: 15px;
line-height: 25px;
}
}
.testimonials-grid {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.testimonials-grid .testimonial-item {
border-left: 1px solid #e9eef3;
padding: 60px 0 30px;
width: 33.333%;
}
.testimonials-grid .testimonial-item:first-child {
border: 0;
}
@media (min-width: 992px) {
.testimonials-grid .testimonial-item:nth-child(3n+1) {
border: 0;
}
}
@media (max-width: 991px) {
.testimonials-grid .testimonial-item {
width: 50%;
}
.testimonials-grid .testimonial-item:nth-child(2n+1) {
border: 0;
}
}
@media (max-width: 480px) {
.testimonials-grid .testimonial-item {
width: 100%;
border: 0;
}
}
.testimonials-grid .testimonial-item-inside {
padding: 0 40px;
text-align: center;
position: relative;
}
.testimonials-grid .testimonial-item-inside:after {
content: '“';
position: absolute;
top: 35px;
left: 15px;
font-size: 90px;
color: #c7d5e1;
}
@media (max-width: 600px) {
.testimonials-grid .testimonial-item-inside:after {
left: 0;
}
}
.testimonials-grid .testimonial-item-inside &gt; * {
margin-top: 12px;
margin-bottom: 0;
}
.testimonials-grid .testimonial-item-inside h5 {
font-size: 18px;
}
.testimonials-grid .testimonial-item-inside p {
font-size: 15px;
line-height: 24px;
}
.testimonials-grid--first .testimonial-item {
padding: 10px 0 50px;
}
@media (max-width: 767px) {
.testimonials-grid .testimonials-item {
margin-bottom: 60px;
}
.testimonials-grid .testimonial-item {
padding: 30px 0 30px;
}
}
.testi-brand{
margin-bottom: 80px;
}
@media (max-width: 767px){
.testi-brand{
margin-bottom: 50px;
}
} .person {
text-align: center;
}
.person &gt; *:not(:first-child) {
margin-top: 20px;
margin-bottom: 0;
}
.person-img {
position: relative;
overflow: hidden;
z-index: 1;
width: auto;
border-radius: 50%;
max-width: 300px;
margin-left: auto;
margin-right: auto;
}
.person-img img {
border-radius: 50%;
max-width: 100%;
}
.person-name,
.person-name:not(:first-child) {
line-height: 1em;
margin-top: 35px;
}
.person-position {
padding: 0;
font-weight: normal;
text-transform: none;
color: #677d8f;
}
.person-position:not(:first-child) {
margin-top: 12px;
}
.person-text {
font-size: 15px;
line-height: 24px;
padding-left: 15px;
padding-right: 15px;
margin-left: auto;
margin-right: auto;
max-width: 350px;
}
.person-divider {
margin: 15px auto;
height: 2px;
width: 35px;
background-color: #6fbf52;
}
@media (max-width: 767px) {
.person:not(.last) {
margin-bottom: 45px;
}
} .vc_row.banner-text-2u {
margin-top: 80px;
margin-bottom: 60px;
margin-left: -30px !important;
}
.get-started-text p {
display: inline-block;
margin: 0;
padding: 0;
}
.get-started-text .vc_column-inner {
padding-top: 0 !important;
}
.block.fullwidth.inset-70, 
.block.fullwidth-bg.inset-70 {
padding: 70px 0;
}
.clean-with-conscience .vc_column-inner {
padding-top: 0 !important;
}
.clean-with-conscience p{
margin-bottom: 22px;
}
[data-bg] {
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
}
.get-banner {
color: #fff;
padding: 3px 0;
}
.get-banner h2 {
display: inline-block;
vertical-align: middle;
font-size: 30px;
margin-bottom: 0;
color: #fff;
}
.get-banner h2 +p .btn {
margin: 0 0 0 55px;
vertical-align: middle;
}
@media (max-width: 991px) {
.get-banner h2 {
font-size: 36px;
line-height: 42px;
}
.banner-text-2u .bg-gradient p {
font-size: 28px !important;
}
.get-banner h2 +p .btn {
margin: 20px 0 20px 20px;
vertical-align: middle;
}
.banner-text-2u .container {
padding-right: 0px !important;
padding-left: 0px !important;
}
.banner-text-2u .vc_column_container&gt;.vc_column-inner {
box-sizing: border-box;
padding-left: 0px;
padding-right: 0px;
width: 100%;
}
}
.get-banner-2 {
position: relative;
background-image: -webkit-gradient(linear, left top, right top, from(#46c6cf), to(#47a8e3));
background-image: -webkit-linear-gradient(left, #46c6cf, #47a8e3);
background-image: -o-linear-gradient(left, #46c6cf, #47a8e3);
background-image: linear-gradient(90deg, #46c6cf, #47a8e3);
color: #fff;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding: 25px 45px 25px 35px;
-webkit-box-pack: justify;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 991px){
.get-banner-2 {
background-image: -webkit-gradient(linear, left top, right top, from(#48b0da), to(#499fe5));
background-image: -webkit-linear-gradient(left, #48b0da, #499fe5);
background-image: -o-linear-gradient(left, #48b0da, #499fe5);
background-image: linear-gradient(90deg, #48b0da, #499fe5);
padding: 25px;
}
}
.get-banner-2 p {
font-size: 20px;
line-height: 1.5em;
}
.get-banner-2 h2,
.get-banner-2 h3,
.get-banner-2 h4,
.get-banner-2 h5,
.get-banner-2 p {
color: #fff;
margin-bottom: 0;
}
.get-banner-2 h2 {
font-size: 36px;
line-height: 40px;
font-weight: 400;
}
.get-banner-text {
text-align: right;
margin: 0 50px;
}
.get-banner-text &gt; *:not(:first-child) {
margin-top: 7px;
margin-bottom: 0;
}
.get-banner-calendar {
display: block;
position: relative;
margin: -75px 0;
-webkit-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
}
.get-banner-calendar &gt; img {
position: relative;
display: block;
}
@media (min-width: 1025px) {
.get-banner-2:hover .get-banner-calendar .calendar-cover {
-webkit-transform: rotateX(180deg);
-moz-transform: rotateX(180deg);
-ms-transform: rotateX(180deg);
-o-transform: rotateX(180deg);
}
}
.get-banner-calendar .calendar-cover {
top: 60px;
left: 0;
-webkit-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transition: 0.8s ease 0.1s;
-o-transition: 0.8s ease 0.1s;
transition: 0.8s ease 0.1s;
position: relative;
z-index: 1;
}
.get-banner-content {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
@media (max-width: 991px) {
.get-banner-content {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.get-banner-text {
text-align: center;
margin: 0 auto 20px;
}
}
@media (max-width: 767px) {
.get-banner-2 {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding-bottom: 130px;
}
.get-banner-text &gt; *:not(:first-child) {
margin-top: 25px !important;
}
.get-banner-calendar {
-webkit-box-ordinal-group: 4;
-webkit-order: 3;
-ms-flex-order: 3;
order: 3;
margin: 20px 0 -75px;
}
.get-banner-text,
.get-banner-text:not(:first-child) {
text-align: center;
margin-top: 0;
}
.vc_row.banner-text-2u{
margin-top:50px; 
margin-bottom:20px; 
}
.vc_row.banner-text-2u{
margin-left: -30px !important;
margin-right: -30px !important;
}
}
.get-banner-text b p{
font-weight: 400 !important;
}
.calendar-cover-front,
.calendar-cover-back {
-webkit-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
position: absolute;
top: 0;
left: 0;
}
.calendar-cover-front {
z-index: 2;
-webkit-transform: rotateY(0deg);
-moz-transform: rotateY(0deg);
-ms-transform: rotateY(0deg);
-o-transform: rotateY(0deg);
}
.calendar-cover-back {
-webkit-transform: rotateY(180deg);
-moz-transform: rotateY(180deg);
-ms-transform: rotateY(180deg);
-o-transform: rotateY(180deg);
}
.banner-guarantee {
background-color: #4ba0e8;
padding: 30px 25px 0 0;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 60px;
-webkit-box-align: end;
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
}
@media (max-width: 1199px) {
.banner-guarantee {
padding: 30px 25px 0 25px;
}
}
.banner-guarantee-img {
-webkit-box-flex: 0;
-webkit-flex: 0 1 345px;
-ms-flex: 0 1 345px;
flex: 0 1 345px;
min-width: 345px;
}
@media (max-width: 1199px) {
.banner-guarantee-img {
-webkit-box-flex: 0;
-webkit-flex: 0 1 300px;
-ms-flex: 0 1 300px;
flex: 0 1 300px;
min-width: 300px;
}
}
@media (max-width: 991px) {
.banner-guarantee-img {
display: none;
}
.banner-text-2u .bg-gradient i {
color: #fff;
font-size: 26px !important;
margin: 12px 20px 0px 0px !important;
}
}
.banner-guarantee-img--topnegative {
position: relative;
}
.banner-guarantee-img--topnegative img {
margin-top: -150px;
margin-left: -10px;
max-width: 100%;
}
.banner-guarantee-text {
color: #fff;
padding-bottom: 40px;
text-align: center;
}
.banner-guarantee-text h1,
.banner-guarantee-text h2,
.banner-guarantee-text h3,
.banner-guarantee-text h4,
.banner-guarantee-text h5,
.banner-guarantee-text h6 {
color: #fff;
}
.banner-guarantee-text p {
font-size: 15px;
line-height: 24px;
}
.banner-guarantee-text &gt; * {
margin-bottom: 0;
}
.banner-guarantee-text &gt; *:not(:first-child) {
margin-top: 20px;
}
.banner-text {
background-image: -webkit-gradient(linear, left top, right top, from(#48b0da), to(#499fe5));
background-image: -webkit-linear-gradient(left, #48b0da, #499fe5);
background-image: -o-linear-gradient(left, #48b0da, #499fe5);
background-image: linear-gradient(90deg, #48b0da, #499fe5);
padding: 37px 25px;
text-align: center;
font-size: 36px;
line-height: 46px;
color: #fff;
}
@media (max-width: 768px) {
.banner-text {
padding: 30px 15px;
font-size: 28px;
}
}
.banner-text h1,
.banner-text h2,
.banner-text h3,
.banner-text h4,
.banner-text h5,
.banner-text h6 {
color: #fff;
}
.banner-text i.icon {
font-size: 24px;
padding: 0 25px;
position: relative;
top: 13px;
right: 10px;
}
a[href^=tel] { color: inherit; text-decoration: none; }
@media (min-width: 768px) and (max-width:992px ) {
.banner-text {
width: 500%;
margin-left: -200%;
}
.banner-text i.icon {
top: 9px;
}
} .services-pages-list{
padding-top: 50px;
padding-bottom: 80px;
}
.service-box {
text-align: center;
margin: 20px 0 25px;
}
.service-box &gt; *:not(:first-child) {
margin-top: 15px;
margin-bottom: 0;
}
.service-box-img {
display: block;
position: relative;
overflow: hidden;
z-index: 1;
width: auto;
border-radius: 50%;
max-width: 309px;
margin-left: auto;
margin-right: auto;
text-decoration: none;
}
.service-box-img img {
border-radius: 50%;
max-width: 100%;
}
.service-box-title,
.service-box-title:not(:first-child) {
margin-top: 22px;
}
.service-box-text {
font-size: 15px;
line-height: 24px;
}
.service-box-link {
display: inline-block;
text-transform: uppercase;
font-size: 13px;
line-height: 18px;
font-weight: bold;
color: #6fbf52;
text-decoration: none;
}
@media (min-width: 992px) {
.services-grid .service-box:nth-child(3n+1) {
clear: left;
}
}
@media (max-width: 991px) and (min-width: 480px) {
.services-grid .service-box:nth-child(2n+1) {
clear: left;
}
}
@media (max-width: 480px) {
.service-box {
margin-bottom: 0;
}
}
.services-circle {
position: relative;
height: 520px;
margin: 80px 0 40px;
}
@media (max-width: 991px) {
.services-circle {
height: 650px;
margin:0px;
}
}
.services-circle-item {
position: absolute;
width: 388px;
}
.services-circle-item.pos-1 {
top: 11%;
left: -9.5%;
width: 388px;
}
.services-circle-item.pos-1 .services-circle-item-title {
right: -26%;
top: 40%;
}
@media (max-width: 767px) {
.services-circle {
height: auto;
}
.services-pages-list {
padding-top: 20px;
padding-bottom: 50px;
}
.services-circle-item {
position: relative;
left: auto !important;
right: auto !important;
top: auto !important;
bottom: auto !important;
padding: 0 65px 20px 10px;
}
}
.services-circle-item.pos-2 {
top: 0;
left: 30%;
width: 291px;
}
.services-circle-item.pos-2 .services-circle-item-title {
left: -30%;
top: -43px;
width: 151px;
height: 151px;
background-image: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/content/service-circle-title-2.png);
}
@media (max-width: 991px) {
.services-circle-item.pos-2 .services-circle-item-title {
right: -26%;
top: 7%;
}
}
@media (max-width: 1199px) and (min-width: 991px) {
.services-circle-item.pos-2 {
width: 250px;
}
}
@media (max-width: 991px) {
.services-circle-item.pos-2 {
width: 200px;
left: auto;
right: 0px;
top: 4%;
width: 30%;
min-width: 135px;
}
.address-box {
background-color: #f6f6f7;
padding: 25px 35px 10px;
overflow: hidden;
}
}
.services-circle-item.pos-3 {
left: 47%;
top: 32%;
width: 357px;
}
.services-circle-item.pos-3 .services-circle-item-title {
right: -20%;
bottom: -3%;
width: 151px;
height: 151px;
background-image: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/content/service-circle-title-2.png);
}
@media (max-width: 991px) {
.services-circle-item.pos-3 .services-circle-item-title {
right: -26%;
top: 55%;
}
}
@media (max-width: 1199px) and (min-width: 991px) {
.services-circle-item.pos-3 {
width: 280px;
}
}
.services-circle-item.pos-4 {
right: -3%;
top: 9%;
width: 291px;
}
.home .entry-content{
margin: 0;
}
.services-circle-item.pos-4 .services-circle-item-title {
left: 0%;
top: -23%;
}
@media (max-width: 991px) {
.services-circle-item.pos-4 .services-circle-item-title {
left: -30%;
top: 2%;
}
}
@media (max-width: 1199px) and (min-width: 991px) {
.services-circle-item.pos-4 {
width: 250px;
right: -1%;
}
}
@media (max-width: 480px) {
.services-circle-item.pos-4 {
bottom: 5%;
}
}
.services-circle-item.pos-5 {
bottom: 0;
left: 30%;
width: 176px;
}
@media (max-width: 1199px) and (min-width: 991px) {
.services-circle-item.pos-5 {
width: 130px;
}
}
@media (max-width: 991px) {
.services-circle-item.pos-5 {
width: 25%;
min-width: 75px;
left: auto;
right: 3%;
top: 75%;
}
}
.services-circle-item.pos-6 {
bottom: 0%;
right: -16%;
width: 169px;
}
@media (min-width: 1400px) {
.row-flex-text {
padding: 50px 0px;
}
}
@media (max-width: 1199px) and (min-width: 991px) {
.services-circle-item.pos-6 {
width: 120px;
right: -2%;
}
}
@media (max-width: 991px) {
.services-circle-item.pos-6 {
width: 18%;
min-width: 80px;
left: 16%;
top: 42%;
}
}
@media (max-width: 991px) {
.services-circle-item.pos-1 {
top: 34%;
left: 0;
width: 38%;
min-width: 175px;
}
.services-circle-item.pos-2 {
left: 22%;
top: 0;
width: 30%;
min-width: 135px;
}
.services-circle-item.pos-3 {
width: 36%;
min-width: 170px;
left: 50%;
top: 36%;
}
.services-circle-item.pos-4 {
right: 33px;
top: 1%;
left: auto;
width: 30%;
min-width: 145px;
}
.services-circle-item.pos-1 .services-circle-item-title {
right: -15%;
top: 53%;
}
.clean-with-conscience .marker-list {
width: 50%;
float: left;
margin-bottom: 30px;
}
}
@media (max-width: 767px){
.clean-with-conscience .marker-list {
width: 100%;
float: none;
margin-bottom:0px;
}
}
.services-circle-item:hover .services-circle-item-title {
-webkit-transform: translateY(-40px);
-ms-transform: translateY(-40px);
transform: translateY(-40px);
}
.services-circle-item-img {
position: relative;
display: block;
opacity: 0.8;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
overflow: hidden;
border-radius: 50%;
z-index: 1;
}
.services-circle-item-img img {
border-radius: 50%;
width: 100%;
}
.services-circle-item-img:hover {
opacity: 1;
}
.services-circle-item-title {
width: 170px;
height: 170px;
background-image: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/content/service-circle-title-1.png);
-webkit-box-shadow: inset 0 0 0 100px 20px rgba(71, 171, 225, 0);
-moz-box-shadow: inset 0 0 0 100px 20px rgba(71, 171, 225, 0);
box-shadow: inset 0 0 0 100px 20px rgba(71, 171, 225, 0);
position: absolute;
z-index: 2;
border-radius: 50%;
font-size: 18px;
line-height: 22px;
font-weight: 600;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
padding: 0 10%;
text-align: center;
pointer-events: none;
-webkit-transition: all 0.5s ease-out 0.1s;
-moz-transition: all 0.5s ease-out 0.1s;
-ms-transition: all 0.5s ease-out 0.1s;
-o-transition: all 0.5s ease-out 0.1s;
}
@media (max-width: 1199px) and (min-width: 991px) {
.services-circle-item-title {
width: 140px !important;
height: 140px !important;
font-size: 16px;
line-height: 18px;
background-image: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/content/service-circle-title-2.png) !important;
}
}
@media (max-width: 1199px) and (min-width: 991px){
.services-circle-item.pos-1 {
width: 330px;
}
.clean-with-conscience .marker-list {
width: 50%;
float: left;
margin-bottom: 30px;
}
}
@media (max-width: 480px) {
.services-circle-item-title {
width: 88px !important;
height: 88px !important;
font-size: 11px;
line-height: 13px;
}
}
@-webkit-keyframes shine {
0% {
top: -100%;
left: -100%;
}
100% {
top: -10%;
left: 100%;
}
}
@keyframes shine {
0% {
top: -100%;
left: -100%;
}
100% {
top: -10%;
left: 100%;
}
}
.home-block-1 .wpb_wrapper {
text-align: center;
}
.home-block-1 .wpb_text_column.wpb_content_element.get-banner {
display: inline-block;
margin-bottom: 0;
padding-right: 50px;
}
.about-pages-23 {
padding-bottom: 50px;
}
.btn-white.about-pages-btn {
margin: 15px 0px;
}
.btn.about-pages-btn {
margin: 13px 0px;
}
.sub-service-btn .wpb_content_element{
display: inline-block;
margin-bottom: 0px;
}
.btn.sub-btn {
float: right;
}
.sub-service-btn .contact-info {
padding-right: 30px;
}
@media (max-width: 991px) {
.services-circle-item-title {
width: 110px !important;
height: 110px !important;
font-size: 13px;
line-height: 15px;
background-size: cover;
padding: 0 2%;
}
.sub-service-btn .contact-info {
margin: 0px 40px;
}
}
@media (max-width: 767px) {
.services-circle-item-title {
width: 120px !important;
height: 120px !important;
font-size: 18px;
line-height: 20px;
background-size: cover;
padding: 0 2%;
}
.services-circle-item-title {
left: auto !important;
right: 0 !important;
top: 47% !important;
}
.about-pages-23{
padding-bottom: 50px;
}
} .how-works {
margin-top: 20px;
text-align: center;
}
.how-works-number {
display: inline-block;
width: 110px;
height: 110px;
border-radius: 50%;
background-color: #6fbf52;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
font-size: 40px;
line-height: 110px;
font-weight: bold;
text-align: center;
color: #fff;
}
.how-works-number--color1 {
background-color: #7bd6c5;
}
.how-works-number--color2 {
background-color: #6dd0f0;
}
.how-works-number--color3 {
background-color: #4ba0e8;
}
.how-works-title {
margin: 0;
}
.how-works-title span {
color: #6fbf52;
}
.how-works p {
font-size: 15px;
line-height: 24px;
}
.how-works &gt; *:not(:first-child) {
margin-top: 15px;
} .home-coupons-area{
padding-bottom: 70px;
padding-top: 90px;
}
.coupon {
width: 493px;
min-height: 418px;
position: relative;
margin: 8px auto 48px;
}
@media (max-width: 520px) {
.coupon {
width: 307px;
min-height: 302px;
}
}
.coupon-top-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: -1;
}
.coupon-bot-bg {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
z-index: -1;
}
.coupon-inside {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 40px 69px 40px 38px;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
-o-transition: 0.5s;
}
@media (max-width: 520px) {
.coupon-inside {
padding: 20px 45px 20px 25px;
}
}
@media (max-width: 520px) {
.coupon-logo {
width: 80px;
}
}
.coupon-text-1 {
font-size: 12px;
line-height: 20px;
float: right;
width: calc(100% - 135px);
padding-left: 40px;
padding-top: 12px;
}
@media (max-width: 520px) {
.coupon-text-1 {
font-size: 12px;
line-height: 16px;
width: calc(100% - 90px);
padding-left: 10px;
padding-top: 4px;
}
}
.coupon-text-2 {
font-size: 26px;
line-height: 32px;
font-weight: 600;
margin-top: 30px;
text-align: right;
color: #4b5b68;
min-height: 40px;
}
.coupon-text-2 span {
color: #6fbf52;
}
@media (max-width: 520px) {
.coupon-text-2 {
font-size: 21px;
line-height: 22px;
margin: 20px 0px;
min-height: 0;
}
}
.coupon-text-3 {
font-size: 15px;
line-height: 24px;
margin-top: 12px;
text-align: right;
}
@media (max-width: 767px) {
.coupon-text-3 {
font-size: 12px;
line-height: 18px;
margin-top: 7px;
min-height: 0;
}
.services-prices {
padding-bottom: 20px !important;
}
}
.coupon-ribbon {
margin-right: -69px;
margin-top: -6px;
padding-right: 52px;
font-size: 50px;
line-height: 80px;
font-weight: 600;
height: 114px;
color: #fff;
padding-top: 28px;
text-align: right;
background: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/coupon-ribbon.png) no-repeat right top;
}
@media (max-width: 520px) {
.coupon-ribbon {
background-size: contain;
height: 72px;
width: 266px;
margin-right: 0px;
padding-right: 35px;
font-size: 30px;
line-height: 30px;
padding-top: 27px;
position: relative;
right: -9px;
top: -4px;
margin-bottom: 0;
}
}
.coupon-print {
opacity: 0;
position: absolute;
top: 60%;
left: 50%;
width: 90px;
height: 90px;
margin: -64px 0 0 -55px;
border-radius: 50%;
font-size: 37px;
line-height: 90px;
background-color: #4ba0e8;
color: #fff;
text-align: center;
text-decoration: none;
cursor: pointer;
-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-ms-transition: 0.3s;
-o-transition: 0.3s;
}
.coupon-print:hover {
background-color: #6fbf52;
color: #fff;
}
.coupon:hover .coupon-inside {
opacity: .35;
}
.coupon:hover .coupon-print {
top: 50%;
opacity: 1;
}
.coupons-carousel .slick-dots {
margin: -20px 0 20px;
}
.coupon .coupon-inside img{
margin:auto;
}
@media (max-width: 1200px) and (min-width: 668px){
.coupon {
margin: 8px auto 48px;
min-height: 302px;
position: relative;
width: 307px;
}
.coupon-inside {
height: 100%;
left: 0;
padding: 20px 45px 20px 25px;
position: absolute;
top: 0;
transition: all 0.5s ease 0s;
width: 100%;
}
.coupon-bot-bg {
bottom: 0;
height: 175px !important;
left: 0;
position: absolute;
width: 100%;
z-index: -1;
}
.coupon-text-2 {
font-size: 20px;
line-height: 24px;
}
.coupon-logo {
float: left;
width: 80px;
}
.coupon-text-1 {
width: calc(100% - 100px);
padding-left: 0px;
padding-top: 0px;
}
.coupon-text-2 {
margin-top: 10px;
}
.coupon-text-3 {
font-size: 12px;
line-height: 18px;
margin-top: 5px;
}
.coupon-ribbon {
background-size: contain;
height: 72px;
width: 266px;
margin-right: 0px;
padding-right: 35px;
font-size: 32px;
line-height: 35px;
padding-top: 25px;
position: relative;
right: -14px;
top: -4px;
margin-bottom: 0;
}
}
@media (max-width: 667px) {
.coupon {
margin: 8px auto 48px;
min-height: 302px;
position: relative;
width: 307px;
}
.coupon-inside {
height: 100%;
left: 0;
padding: 20px 45px 20px 25px;
position: absolute;
top: 0;
transition: all 0.5s ease 0s;
width: 100%;
}
.coupon-bot-bg {
bottom: 0;
height: 175px !important;
left: 0;
position: absolute;
width: 100%;
z-index: -1;
}
}
.coupon-logo {
float: left;
width: 135px;
}
@media (max-width: 1199px) {
.coupon-logo {
float: left;
width: 80px;
}
.coupon-text-1 {
font-size: 12px;
line-height: 16px;
width: calc(100% - 90px);
padding-left: 10px;
padding-top: 4px;
}
.coupon-text-2 {
font-size: 20px;
line-height: 24px;
margin-top: 20px;
min-height: 0;
}
.coupon-ribbon {
background-size: contain;
height: 72px;
width: 266px;
margin-right: 0px;
padding-right: 35px;
font-size: 32px;
line-height: 35px;
padding-top: 25px;
position: relative;
right: -14px;
top: -4px;
margin-bottom: 0;
}
} .home-gallery-area {
margin-bottom: 85px;
margin-top: 85px;
}
@media (max-width: 767px) {
.home-gallery-area {
margin-bottom: 30px;
}
}
.block.fullwidth .gallery-isotope {
margin: 0 -15px;
width: calc(100% + 30px);
}
.gallery-item {
position: relative;
float: left;
width: 20%;
overflow: hidden;
background: #071638;
}
@media (max-width: 767px) {
.gallery-item {
width: 25%;
}
}
@media (max-width: 479px) {
.gallery-item {
width: 50%;
}
}
.gallery-item img {
width: 100%;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.gallery-item-image {
overflow: hidden;
}
.gallery-item-caption {
position: absolute;
bottom: 8px;
width: 100%;
padding: 12px 15px;
font-size: 16px;
line-height: 26px;
font-weight: 500;
text-align: center;
z-index: 3;
color: #fff;
opacity: 0;
-webkit-transform: translateY(101%);
-ms-transform: translateY(101%);
transform: translateY(101%);
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.gallery-item-caption:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #2a333a;
opacity: .8;
z-index: -1;
}
.gallery-item-zoom {
position: absolute;
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
font-size: 200px;
line-height: 1em;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
color: #fff;
z-index: 1;
opacity: 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
cursor: pointer;
text-decoration: none;
}
.gallery-item-zoom:hover {
color: #fff;
}
.gallery-item-zoom i.icon {
z-index: 2;
}
.gallery-item-zoom:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #4b5b68;
opacity: .6;
z-index: 0;
}
.gallery-item:before {
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
z-index: 4;
border: 0 solid #fff;
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
pointer-events: none;
}
.gallery-slick {
margin-right: -15px;
margin-left: -15px;
}
.banner-text-2u .bg-gradient p{
color:#fff;
font-weight: 700px;
font-size: 36px;
}
.banner-text-2u .bg-gradient i {
color: #fff;
font-size: 36px;
margin: 12px 30px 0px 0px;
}
@media (max-width: 991px) {
.gallery-item {
width: 33.333%;
}
}
@media (min-width: 1025px) {
.gallery-item:hover:before {
opacity: 1;
border-width: 8px;
}
.gallery-item:hover .gallery-item-zoom {
opacity: 1;
font-size: 82px;
}
.gallery-item:hover .gallery-item-caption {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
}
.filters-by-category ul {
margin: 0 0 35px;
padding: 0;
list-style: none;
text-align: center;
}
.filters-by-category ul li {
display: inline-block;
line-height: 1em;
margin: 0 0 10px;
}
.filters-by-category ul li a {
display: block;
position: relative;
font-size: 16px;
line-height: 28px;
font-weight: 600;
text-decoration: none;
padding: 0 30px;
text-transform: uppercase;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
color: #425d74;
}
.filters-by-category ul li a:hover,
.filters-by-category ul li a.selected {
color: #6fbf52;
}
@media (max-width: 991px) {
.get-banner-calendar {
width: 120px;
position: absolute;
bottom: 55px;
}
.filters-by-category ul li a {
padding: 0 15px;
}
}
@media (max-width: 767px) {
.filters-by-category ul li {
margin: 0px 15px;
}
.filters-by-category ul li:not(:first-child) {
border-top: 1px solid #e8ecee;
}
.filters-by-category ul li a {
text-align: left;
padding:5px 0px;
}
.get-banner-calendar .calendar-cover {
top: 35px;
}
.get-banner-2 h2 {
font-size: 36px;
line-height: 46px;
margin-bottom: 25px;
}
.get-banner-calendar {
width: 120px;
position: absolute;
bottom: 55px;
}
.banner-text-2u .get-banner h2 {
font-size: 28px;
line-height: 46px;
padding: 0px 13px;
font-weight: 400;
}
.banner-text-2u .bg-gradient p{
font-size: 28px;
}
.banner-text-2u .vc_column_container&gt;.vc_column-inner {
padding-left: 0px !important;
padding-right: 0px !important;
}
.btn.sub-btn {
float: none;
margin: 30px 0px 20px;
}
.banner-guarantee {
margin-top: 0px;
}
}
.banner-text-2u .banner-text p {
color: #fff;
font-weight: 700px;
font-size: 36px;
}
@media (max-width: 480px){
.services-pages-list .marker-list {
width: 200px;
margin-left: auto;
margin-right: auto;
}
}
@media (max-width: 440px){
.get-banner-2 {
background-image: -webkit-gradient(linear, left top, right top, from(#48b0da), to(#499fe5));
background-image: -webkit-linear-gradient(left, #48b0da, #499fe5);
background-image: -o-linear-gradient(left, #48b0da, #499fe5);
background-image: linear-gradient(90deg, #48b0da, #499fe5);
padding-right: 90px;
padding-left: 90px;
padding-top: 30px;
}
}
@media (max-width: 380px){
.get-banner-2 {
background-image: -webkit-gradient(linear, left top, right top, from(#48b0da), to(#499fe5));
background-image: -webkit-linear-gradient(left, #48b0da, #499fe5);
background-image: -o-linear-gradient(left, #48b0da, #499fe5);
background-image: linear-gradient(90deg, #48b0da, #499fe5);
padding-right: 90px;
padding-left: 90px;
padding-top: 30px;
}
}
@media (max-width: 767px){
.banner-text-2u .banner-text p {
font-size: 28px;
}
.banner-text i.icon {
top: 8px;
right: 15px;
padding: 0 15px;
}
.services-circle-carousel {
width: 290px !important;
padding-bottom: 20px;
margin-left: auto;
margin-right: auto;
}
}
@media (max-width: 768px){
.banner-text-2u .banner-text p {
font-size: 28px;
}
.list-item-services .wpb_content_element{
margin-bottom: 10px !important;
}
.about-top-txt.vc_custom_1499060433376{
background:transparent !important;
}
} .news-prw {
background-color: #f7f8f9;
margin-top: 10px;
padding: 0 30px 50px;
}
.news-prw-image {
position: relative;
margin: 0 -30px;
}
.news-prw-image img {
width: 100%;
}
.news-prw &gt; *:not(:first-child) {
margin-top: 22px;
}
.news-prw-title:not(:first-child) {
margin-top: 15px;
}
.news-prw-date {
font-size: 13px;
font-weight: bold;
text-transform: uppercase;
color: #6fbf52;
}
.news-prw-title {
margin-bottom: 0;
}
.news-prw p {
font-size: 15px;
line-height: 24px;
margin-bottom: 0;
}
.news-prw-link {
display: block;
position: absolute;
bottom: -25px;
right: 22px;
width: 51px;
height: 51px;
border-radius: 50%;
font-size: 18px;
line-height: 53px;
padding-left: 3px;
background-color: #4ba0e8;
color: #fff;
text-align: center;
text-decoration: none;
-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.news-prw-link:hover {
background-color: #6fbf52;
color: #fff;
} @media (min-width: 992px){
.row-flex-text &gt; .col-50 {
-webkit-box-flex: 0;
-webkit-flex: 0 1 50%;
-ms-flex: 0 1 50%;
flex: 0 1 50%;
min-width: 50%;
}
}
.wpb_text_column.wpb_content_element.col-50 {
padding: 77px 100px;
}
.about-top-txt .wpb_content_element{
margin-bottom: 0px !important;
}
.about-top-txt .vc_column-inner {
padding-top: 0px !important;
}
.icon-target-lined:before {
content: "\e92a";
}
.banner-about-txt p{
display: inline-block;
}
@media (max-width: 991px) {
.about-top-txt .vc_col-sm-6,
.value-area .vc_col-sm-6{
width: 100% !important;
}
.value-area .wpb_single_image.vc_align_left {
text-align: center;
}
}
@media (min-width: 767px) {
.text-icon {
height: 100%;
min-height: 385px;
}
} .pages-fact-area{
padding-top:40px;
padding-bottom: 90px;
}
.fact-item-image {
position: relative;
width: 209px;
height: 209px;
border-radius: 50%;
margin: 7px auto 12px;
}
.fact-item-text-wrap {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
color: #fff;
}
.fact-item-text-wrap &gt; *:not(:first-child) {
margin-top: 10px;
}
.fact-item-number {
font-size: 50px;
line-height: 1em;
font-weight: 600;
}
.fact-item-text {
font-size: 24px;
line-height: 1em;
font-weight: 600;
}
@media (max-width: 767px) {
.pages-fact-area{
padding-top:0px;
padding-bottom: 50px;
}
} .bg-icons-back {
background: url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/block-bg-2.jpg);
background-size: cover;
background-position: top center;
background-repeat: no-repeat;
}
.bg-icons-back{
padding-top: 80px;
padding-bottom: 80px;
}
.feature-text {
margin-bottom: 30px;
padding: 0 50px 0 0;
}
.feature-text h5 {
margin-top: 10px;
}
.feature-text p {
margin-bottom: 0;
}
@media (max-width: 991px) {
.feature-text {
padding: 0;
}
}
.feature-text.text-right {
padding: 0 0 0 50px;
}
@media (max-width: 991px) {
.feature-text.text-right {
padding: 0;
}
}
@media (max-width: 767px) {
.feature-wrapper {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.feature-wrapper &gt; .feature-image {
-webkit-box-ordinal-group: 0;
-webkit-order: -1;
-ms-flex-order: -1;
order: -1;
}
.feature-text,
.feature-text.text-right {
text-align: center;
padding: 0;
}
.bg-icons-back{
background-size: auto 100%;
background-position: 67% center;
}
} .discount-box-row {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
min-height: 190px;
margin-top: 40px;
}
.discount-box-row &gt; * {
margin: 0 15px;
}
.discount-box-row &gt; *:first-child {
margin-left: 0;
}
.discount-box-row &gt; *:last-child {
margin-right: 0;
}
.discount-box {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
text-align: center;
background-color: #6fbf52;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
font-size: 24px;
line-height: 36px;
font-weight: 400;
color: #fff;
}
.discount-box--color1 {
background-color: #7bd6c5;
}
.discount-box--color2 {
background-color: #6dd0f0;
}
.discount-box--color3 {
background-color: #4ba0e8;
}
.discount-box-sale {
font-size: 36px;
line-height: 1em;
font-weight: 600;
}
.discount-box &gt; *:not(:first-child) {
margin-top: 12px;
}
@media (max-width: 767px) {
.discount-box-row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
min-height: inherit;
}
.discount-box-row &gt; * {
margin: 10px 0;
}
.discount-box {
max-width: 300px;
width: 100%;
padding: 20px 0;
}
.discount-box-row {
margin-top: 0px;
}
.pages-prices {
padding-top: 70px !important;
}
.page-header-menu {
border-top:none !important;
}
} .services-prices{
padding-bottom: 80px;
}
.pages-prices {
padding-top: 80px;
}
.prices-box {
position: relative;
width: 25%;
margin-top: 20px;
float: left;
text-align: center;
font-size: 16px;
line-height: 20px;
border-top: 1px solid  #e6e9ec;
border-right: 1px solid  #e6e9ec;
}
.prices-box:first-child:before,
.prices-box.slick-active:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 1px;
height: 100%;
background-color: #e6e9ec;
}
.prices-box:last-child:before {
content: '';
position: absolute;
right: 1px;
left: auto;
top: 0;
width: 1px;
height: 100%;
background-color: #e6e9ec;
}
.prices-box.slick-active + .slick-active:not(:last-child):before {
display: none;
}
.prices-box.slick-active + .slick-slide:not(.slick-active):before {
content: '';
position: absolute;
left: -3px;
top: 0;
width: 1px;
height: 100%;
background-color: #e6e9ec;
}
.prices-box &gt; * {
min-height: 60px;
padding: 20px 0;
border-bottom: 1px solid  #e6e9ec;
}
.prices-box-price{
padding: 0px;
}
.prices-box-price p{
margin-bottom: 15px;
}
.prices-box-title {
border-bottom: 2px solid  #e6e9ec;
margin-bottom: 0;
}
.prices-box-price b {
display: block;
font-size: 50px;
line-height: 1em;
font-weight: 600;
color: #6fbf52;
}
.prices-box-price b sup {
font-size: 20px;
top: -1em;
}
.prices-box-price span {
display: block;
font-size: 14px;
}
@media (max-width:767px;){
.services-prices{
padding-bottom: 70px;
}
} .question-box {
padding: 5px 7px 3px;
background: url(https://www.etabetaservizi.it/wp-content/themes/cleaning-services/images/question-box-bg.jpg) no-repeat center top #9bd9e8;
background-size: 100%;
}
.question-box-title {
font-size: 36px;
line-height: 40px;
font-weight: 600;
color: #fff;
margin-bottom: 18px;
}
.question-box .form-control {
height: 42px;
background: #fff;
border: 0;
margin-bottom: 9px;
border-radius: 3px;
}
.question-box textarea.form-control {
height: 162px;
padding-top: 10px;
}
.placeholder-dark {
color: #656d74;
}
.question-box input::-webkit-input-placeholder,
.question-box textarea::-webkit-input-placeholder {
color: #656d74;
}
.question-box input::-moz-placeholder,
.question-box textarea::-moz-placeholder {
color: #656d74;
}
.question-box input:-ms-input-placeholder,
.question-box textarea:-ms-input-placeholder {
color: #656d74;
}
.question-box input:-moz-placeholder,
.question-box textarea:-moz-placeholder {
color: #656d74;
}
.question-box + * {
margin-bottom: 30px;
}
.question-box .successform,
.question-box .errorform {
margin-bottom: 25px;
}
.question-box .successform,
.question-box .errorform,
.question-box .successform p,
.question-box .errorform p {
text-align: center;
font-size: 15px;
line-height: 18px;
}
.question-box .successform {
color: #fff;
}
.question-box .errorform {
color: #ff0000;
}
.question-form label.error {
font-size: 13px !important;
margin-top: -7px;
line-height: 15px;
color: #ff0000;
} .brand-carousel img {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
transition: opacity 0.3s, -webkit-filter 0.3s;
-webkit-transition: opacity 0.3s, -webkit-filter 0.3s;
-o-transition: filter 0.3s, opacity 0.3s;
transition: filter 0.3s, opacity 0.3s;
transition: filter 0.3s, opacity 0.3s, -webkit-filter 0.3s;
-webkit-transition: filter 0.3s, -webkit-filter 0.3s, opacity 0.3s;
opacity: 0.5;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.brand-carousel img:hover {
-webkit-filter: none;
filter: none;
opacity: 1;
} .panel-group {
margin-top: 43px;
margin-bottom: 0;
}
.cleaning-faq-text .vc_toggle_title&gt;h4 {
display: inline;
font-size: 18px;
text-transform: uppercase;
color: #6fbf52;
-webkit-transition: 0.4s;
-o-transition: 0.4s;
-ms-transition: 0.4s;
-moz-transition: 0.4s;
}
.cleaning-faq-text .vc_toggle_title&gt;h4:hover{
color: #4ba0e8;
padding-left: 30px;
-webkit-transition: 0.4s;
-o-transition: 0.4s;
-ms-transition: 0.4s;
-moz-transition: 0.4s;
}
.cleaning-faq-text .vc_toggle_title i.vc_toggle_icon:hover{
color: #4ba0e8 !important;
}
.cleaning-faq-text .vc_toggle_active .vc_toggle_title&gt;h4{
color: #4ba0e8;
}
.cleaning-faq-text .vc_toggle_active .vc_toggle_content&gt;p{
padding-left: 30px;
}
.cleaning-faq-text .vc_toggle_active .vc_toggle_title i.vc_toggle_icon{
border:2px solid #4ba0e8 !important;
}
.cleaning-faq-text .vc_toggle_default.vc_toggle {
display: block;
margin: 0 0 21.74px;
padding: 0;
font-size: 1em;
height: auto;
min-height: 80px;
}
.cleaning-faq-text .vc_toggle_size_md.vc_toggle_default .vc_toggle_content, 
.cleaning-faq-text .vc_toggle_size_md.vc_toggle_default .vc_toggle_title {
padding-left:5px;
}
.cleaning-faq-text .vc_toggle_default .vc_toggle_icon {
background-color: transparent;
padding: 21px;
border: none;
width: 53px !important;
height: 53px !important;
position: absolute !important;
left: -85px !important;
top: 15px !important;
border-radius: 50%;
border: 2px solid #6fbf52;
}
.cleaning-faq-text .vc_toggle_default .vc_toggle_icon::after, 
.cleaning-faq-text .vc_toggle_default .vc_toggle_icon::before {
background: #6fbf52;
}
.cleaning-faq-text .vc_toggle_default .vc_toggle_icon::before {
border: none;
}
.cleaning-faq-text .vc_toggle_active .vc_toggle_icon::before {
visibility: visible !important;
color: #6fbf52;
}
.cleaning-faq-text .vc_toggle_default .vc_toggle_icon::before {
height: 2px;
width: 16px;
}
.cleaning-faq-text .vc_toggle_default .vc_toggle_icon::after {
height: 16px;
width: 2px;
}
.cleaning-faq-text .vc_toggle_title, 
.cleaning-faq-text .vc_toggle_content {
margin-left: 80px;
margin-bottom: 20px;
}
.cleaning-faq-text .vc_toggle_active .vc_toggle_icon::before{
background: #4ba0e8 !important;
}
@media (max-width: 767px) {
.cleaning-faq-text .vc_toggle_title&gt;h4 {
font-size: 16px;
}
.cleaning-faq-text .vc_toggle_content {
margin-left: 50px;
}
}
.discounts-about {
padding-top: 50px;
}
.discounts-about .wpb_text_column.wpb_content_element{
margin-bottom: 0px !important;
}    .blog-post {
margin-bottom: 100px;
overflow: hidden;
}
@media (max-width: 767px) {
.blog-post {
margin-bottom: 50px;
}
.blog-post .post-image img {
height: auto;
max-width: 100%;
width: 100% !important;
}
}
.blog .title-aside {
font-size: 36px;
line-height: 40px;
}
.blog-post .post-video {
position: relative;
padding-bottom: 56.25%; height: 0;
}
.blog-post .post-video iframe,
.blog-post .post-video object,
.blog-post .post-video embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
.blog-post .post-music iframe,
.blog-post .post-music object,
.blog-post .post-music embed {
width: 100%;
height: auto;
border: 0;
}
.blog-post .post-image {
position: relative;
border-radius: 0;
}
.blog-post .post-image img,
.blog-post .post-video,
.blog-post .post-carousel,
.blog-post .post-music{
width: 100%;
margin-bottom: 35px;
}
.post-read-more {
margin-top: 30px;
}
.blog-post .post-link-wrapper {
position: absolute;
top: 0;
width: 100%;
height: 100%;
text-align: center;
}
.blog-post .post-image .post-link {
font-size: 42px;
line-height: 1em;
color: #fff;
-webkit-transition: all 200ms ease;
-moz-transition: all 200ms ease;
-ms-transition: all 200ms ease;
-o-transition: all 200ms ease;
text-decoration: none;
}
@media (max-width: 767px) {
.blog-post .post-image .post-link {
font-size: 4vw;
}
}
.blog-post .post-image .post-link:hover {
color: #6fbf52;
text-decoration: none;
}
.blog-post .post-title {
margin-bottom: 20px;
font-size: 36px;
}
.blog-post .post-meta {
padding: 0;
overflow: hidden;
list-style: none;
margin-bottom: 15px;
}
.blog-post .post-meta li {
float: left;
font-size: 14px;
padding-right: 80px;
}
.single_pg_cont .blog-post {
margin-bottom: 10px;
}
.calendar_wrap tbody tr td {
text-align: center;
}
@media (max-width: 1199px) {
.blog-post .post-meta li {
padding-right: 40px;
}
}
@media (max-width: 991px) {
.blog-post .post-meta li {
padding-right: 15px;
}
}
.blog-post .post-meta li i.icon,
.blog-post .post-meta li span {
display: inline-block;
vertical-align: middle;
}
.blog-post .post-meta li i.icon {
font-size: 18px;
padding-right: 7px;
color: #6fbf52;
}
.blog-post .post-meta li:last-child {
padding-right: 0;
}
.blog-post .post-meta .post-meta-reviews span {
font-size: 14px;
}
.blog-post .post-read-more:not(:first-child) {
margin-top: 35px;
}
.blog-post .post-teaser p:last-child {
margin-bottom: 0;
}
.blog-post .post-author {
font-size: 15px;
margin-bottom: 20px;
}
.post-author .author,
.meta-author a,
.meta-author i {
font-weight: 700;
}
.post-meta-date a,
.comment .meta-date,.date time {
font-size: 13px;
line-height: 22px;
font-weight: bold;
color: #6fbf52;
text-transform: uppercase;
}
.post-carousel {
overflow: hidden;
}
.post-carousel .slick-prev:before,
.post-carousel .slick-next:before {
font-size: 40px;
}
.post-carousel .slick-prev {
left: 20px;
}
.post-carousel .slick-next {
right: 20px;
}
.post-carousel .slick-prev:before,
.post-carousel .slick-next:before {
color: #fff;
}
.blog-post.single {
margin-bottom: 0;
}
.blog-post .post-content {
padding-bottom: 50px;
border-bottom: 1px solid #efefef;
}
.post-preview {
margin-top: 28px;
margin-bottom: 45px;
}
.post-preview .post-meta {
margin-top: 15px;
font-size: 13px;
}
.post-preview .post-title {
font-size: 24px;
line-height: 30px;
margin-top: 10px;
}
.post-preview .post-title a {
color: #4b5b68;
text-decoration: none;
-webkit-transition: color 200ms ease;
-moz-transition: color 200ms ease;
-ms-transition: color 200ms ease;
-o-transition: color 200ms ease;
}
.post-preview .post-title a:hover {
color: #6fbf52;
}
.view-more-post {
margin-bottom: 30px;
}
.blog-post .side-block {
margin-bottom: 55px;
}
.blog-post .side-block h3 {
font-size: 36px;
line-height: 40px;
margin-bottom: 30px;
}
.side-block:last-child {
border-bottom: 0;
margin-bottom: 50px;
}
.blog-post .link-images {
position: relative;
display: block;
margin-bottom: 35px;
} .comment-list {
margin-top: 60px;
}
.comment-body {
margin-bottom: 40px;
}
.comment-list .comment .userpic {
width: 104px;
height: 104px;
float: left;
margin: 0 23px 0 0;
font-size: 60px;
line-height: 104px;
border-radius: 50%;
text-align: center;
color: #6fbf52;
}
.comment-list .comment .text {
overflow: hidden;
padding-top: 4px;
}
.comment-list .comment .text p {
margin-bottom: 10px;
}
.comment-list .comment .text .meta {
padding-bottom: 10px;
margin-bottom: 12px;
font-size: 14px;
border-bottom: 1px solid #efefef;
padding-bottom: 7px;
}
.comment-list .comment .text .meta .icon {
padding-right: 5px;
}
.comment-list .comment .text .meta-author {
padding-right: 30px;
font-size: 15px;
}
.comment-list .comment a.comment-reply-link, .edit-link a {
display: inline-block;
padding: 0 11px;
border-radius: 2px;
color: #fff;
background-color: #4ba0e8;
font-size: 10px;
line-height: 23px;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
-webkit-transition: color 200ms ease;
-moz-transition: color 200ms ease;
-ms-transition: color 200ms ease;
-o-transition: color 200ms ease;
}
.comment-list .comment a.comment-reply-link:hover, 
.edit-link a:hover {
background-color: #6fbf52;
}
.comment-list .comment .text a.reply {
display: inline-block;
padding: 0 11px;
border-radius: 2px;
color: #fff;
background-color: #4ba0e8;
font-size: 10px;
line-height: 23px;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
-webkit-transition: color 200ms ease;
-moz-transition: color 200ms ease;
-ms-transition: color 200ms ease;
-o-transition: color 200ms ease;
}
.comment-list .comment .text a.reply:hover {
background-color: #6fbf52;
}
.comment-list .comment.replay {
margin-left: 115px;
}
@media (max-width: 767px) {
.comment-list .comment.replay {
margin-left: 70px;
}
}
.comment-form {
margin-bottom: 50px;
}
.comment-form .textarea-custom {
height: 170px;
}
.blog-post-isotope {
overflow: hidden;
margin-bottom: 50px;
margin-top: 10px;
overflow: visible;
}
.blog-post-isotope .post-meta li.author {
display: none;
}
.blog-post-isotope .post-image {
margin-left: -20px;
margin-right: -20px;
margin-top: -20px;
}
.blog-post-isotope .blog-post {
position: relative;
float: left;
width: calc(33.333% - 20px);
text-align: center;
padding: 20px 20px 40px;
margin-bottom: 30px;
border: 1px solid #e1e5e9;
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.blog-post-isotope .blog-post .post-author {
display: none;
}
.blog-post-isotope .blog-post .quote {
text-align: left;
font-size: 16px;
line-height: 24px;
}
@media (max-width: 1199px) {
.blog-post-isotope .blog-post {
width: calc(50% - 15px);
}
}
@media (max-width: 767px) {
.blog-post-isotope .blog-post {
width: 100%;
}
}
@media (min-width: 768px) {
.blog-post-isotope .post-meta {
font-size: 14px;
}
.blog-post-isotope .post-title {
font-size: 24px;
line-height: 30px;
}
.blog-post-isotope .post-image .post-link {
font-size: 22px;
}
.blog-post-isotope .quote {
margin-top: 15px;
margin-bottom: 20px;
padding-left: 80px;
}
.blog-post-isotope .post-read-more .btn-sm {
font-size: 14px;
}
.blog-post-isotope .post-meta:not(:first-child) {
margin-top: 20px;
}
.blog-post-isotope .post-read-more:not(:first-child) {
margin-top: 20px;
}
.blog-post-isotope &gt; *:not(:first-child) {
margin-top: 12px;
}
}
@media (max-width: 767px) {
.page-main blockquote {
padding-left:70px !important;
}
.banner-text-2u .bg-gradient i {
color: #fff;
font-size: 24px;
margin: 9px 15px 0px 0px;
}
.filters-by-category ul li {
display: block;
}
}
.blog-post .gallery-item:hover:before{
opacity: 1;
border-width:0px;
}    .slick-loading .slick-list {
background: #fff url(//www.etabetaservizi.it/wp-content/themes/cleaning-services/images/ajax-loader.gif) center center no-repeat;
} .slick-prev,
.slick-next {
font-size: 0;
line-height: 0;
position: absolute;
top: 50%;
display: block;
width: 30px;
height: 30px;
margin-top: -15px;
padding: 0;
cursor: pointer;
color: transparent;
border: none;
outline: none;
background: transparent;
z-index: 200;
text-align: center;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-transition: 0.2s;
-moz-transition: 0.2s;
-ms-transition: 0.2s;
-o-transition: 0.2s;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
color: transparent;
outline: none;
background: transparent;
opacity: .5;
}
.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,
.slick-prev.slick-disabled:after,
.slick-next.slick-disabled:after {
opacity: .25;
}
.slick-prev:before,
.slick-next:before {
font-family: 'cleaning';
font-size: 36px;
line-height: 40px;
color: #8a9aa7;
cursor: pointer;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slick-prev:hover:before,
.slick-next:hover:before {
color: #6fbf52;
}
.slick-prev {
left: -60px;
}
.slick-prev:before {
content: "\e90b";
}
.slick-next {
right: -60px;
}
.slick-next:before {
content: "\e909";
} .slick-slider {
padding: 0;
list-style: none;
}
.slick-slider.nav-dot {
margin-bottom: 75px;
}
@media (max-width: 767px) {
.slick-slider {
margin-bottom: 30px;
}
}
.slick-dots {
display: block;
width: 100%;
padding: 0;
margin: 38px 0 -18px;
list-style: none;
text-align: center;
}
.slick-dots li {
position: relative;
display: inline-block;
margin: 0 -4px 0 0;
padding: 0;
cursor: pointer;
}
.slick-dots li button {
position: relative;
display: block;
width: 10px;
height: 10px;
margin: 0 10px;
padding: 0;
color: transparent;
background-color: transparent;
border: 0;
outline: none;
border-radius: 50%;
background: #e1e5e9;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
@media (max-width: 479px) {
.slick-dots li button {
width: 6px;
height: 6px;
margin: 0 5px;
}
}
.slick-dots li button:after {
display: none;
}
.slick-dots li.slick-active button,
.slick-dots li.slick-active button:hover {
background: #6fbf52;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
outline: none;
}
@media (max-width: 991px) {
.slick-slide .animation {
opacity: 1 !important;
animation-name: none !important;
-webkit-animation-name: none !important;
}
}
td#today {
background-color: #6fbf52;
color: #fff;
}
.testimonial-item.grid-item{
display: none;
}
.view-more-testimonials{
display: none;
}
.testimonial-item.grid-item:nth-child(-n+3) {
display: block;
}
@media (max-width: 767px) {
.block-testimonials .testimonial-item-inside {
width: 100% !important;
padding: 40px 30px 0 30px;
}
}
i.icon{
margin-left: 0px;
line-height: 24px;
}
.how-works .how-works-title,
.text-h3-size h3 {
font-size: 24px;
}
.wpb_text_column.wpb_content_element.col-50 {
padding: 30px 30px 10px 40px;
}
.sub-services-list b {
display: block;
}
.testimonials-list-btn .testiminials-page-btn {
text-align: center;
margin-top: 60px;
}
body.single-post #pageContent{
padding-top: 0px !important;
}
.comment-respond .textarea-custom.input-full{
margin-bottom: 30px;
}
#cleaning_contact_box-2 .col-md-12{
margin-left: -15px;
}
.blog .page-main {
margin-top: 80px;
}
.woocommerce-message .btn.wc-forward {
max-width: 100%;
margin-top: 0px;
display: inline-block;
}
.wrap .content-area {
margin-bottom: 30px;
}
@media (min-width: 1200px) {
.clean-with-conscience { background-position: left bottom;
background-repeat: no-repeat;
background-size: 100% auto;
}
}
@media (max-width: 1199px) {
.clean-with-conscience {
background-image: none;
}
.clean-with-conscience .wpb_column.vc_column_container.vc_col-sm-9 {
width: 100%;
}
}
.vc_row.home-calender{
margin-bottom: 100px;
}
.widget_calendar table {
background: #fff;
border-collapse: collapse;
font-size: 14px;
width: 100%;
max-width: 350px;
border-spacing: 1px;
border-collapse: separate;
}
@media (max-width: 991px) {
.vc_row.home-calender{
margin-left:-30px !important;
margin-right:-30px !important;
}
.home-calender .vc_column-inner {
padding-left: 0px !important;
padding-right: 0px !important;
}
}
@media (max-width: 767px) {
.vc_row.home-calender{
margin-bottom: 50px;
}
}
@media (max-width: 1200px) and (min-width: 768px){
.btn.sub-btn {
float: none;
margin: 30px auto 0px;
}
.contact-info-wrap {
margin-right: 0px;
}
}
@media (min-width: 992px){
.get-banner-text b {
display: block;
}
}
.contact-pages-list{
padding-top: 80px;
padding-bottom: 80px;
}
@media (max-width: 767px){
.contact-pages-list{
padding-top: 50px;
padding-bottom: 50px;
}
.label-box-wrap .wpcf7-list-item{
float: left;
width: 50%;
}
.order-images {
padding-bottom:0px;
}
.sub-service-btn .contact-info {
margin: 10px 0px;
}
}
@media(min-width: 601px){
.label-box-wrap .wpcf7-list-item {
float: left;
width: 25%;
}
.label-box-wrap input[type=radio] + span{
width: 123px;
}
}
@media(min-width: 730px){
.label-box-wrap input[type=radio] + span{
width: 150px;
}
.label-box-wrap .wpcf7-list-item {
float: left;
width: auto !important;
}
}
@media(min-width: 992px) and (max-width:1199px){
.label-box-wrap input[type=radio] + span{
width: 200px;
}
}
.bootstrap-datetimepicker-widget .datepicker th,
.bootstrap-datetimepicker-widget .datepicker td,
.bootstrap-datetimepicker-widget .datepicker tr,
.bootstrap-datetimepicker-widget .datepicker table{
border:none;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
top: -5px !important;
}
@media (max-width: 400px){
.label-box-wrap label{
width: 100%;
}
}
@media (max-width: 1199px){
.order-images .vc_col-sm-4{
display: none !important;
}
.order-images .vc_col-sm-8{
width:100% !important;
}
}
@media (max-width: 1025px){
.page-header-top .shine{
display: none;
}
}
@media (max-width: 991px){
.side-contact-1.vc_col-sm-4,
.side-contact-2.vc_col-sm-8,
.list-contact-1.vc_col-sm-4{
width: 100% !important;
}
.list-contact-2.vc_col-sm-4,
.list-contact-3.vc_col-sm-4{
width: 50% !important;
}
}
.wpcf7-list-item input:checked + span {
background: #6fbf52;
color: #fff;
}
@media (max-width: 767px){
.list-contact-2.vc_col-sm-4,
.list-contact-3.vc_col-sm-4{
width: 100% !important;
}
}
@media (max-width:428px){
.label-box-wrap .wpcf7-list-item {
display: block;
width: 100%;
float: none;
}
.wpcf7-list-item label{
width: 100%;
}
.wpcf7-list-item-label {
width: 100% !important;
}
}</pre></body></html>