@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&amp;display=swap');

/*font-family: 'Poppins', sans-serif;*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: 400;
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
}

p {
    margin: 0 0 22px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px 0;
    padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1 {}

h2 {}

h3 {}

h4 {}

ul {
    margin-left: 0px;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: #feb620;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: #e92f11;
}

img {
    max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.form-control,
select {
    background-color: #fff;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    color: #000;
    border: 1px solid #b8b8b8;
    height: 48px;
    padding: 0 16px;
}

textarea {
    background-color: #fff;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid #b8b8b8;
    padding: 12px 16px;
    width: 100%;
}

select {
    border: 1px solid #b8b8b8;
    width: 100%;
    padding: 0 11px;
    background: url(../arrow_bottom.html) no-repeat calc(100% - 16px) center #fff;
    background-size: 18px;
    padding-right: 40px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="button"],
input[type="submit"] {
    background: #ccc;
    color: #333;
    height: 52px;
    border: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    padding-left: 30px;
    padding-right: 30px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100px;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    box-shadow: none !important;
    text-transform: capitalize !important;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="submit"]:focus {
    background: #000;
}

::-webkit-input-placeholder {
    opacity: 1;
    color: #878787;
}

:-ms-input-placeholder {
    opacity: 1;
    color: #878787;
}

::-moz-placeholder {
    opacity: 1;
    color: #878787;
}

:-moz-placeholder {
    opacity: 1;
    color: #878787;
}


/* images alignment for wordpress content pages */

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    float: none;
    clear: both;
}


/* custom checkbox */

.form_input_check {
    position: relative;
    margin: 0;
    padding-left: 40px;
}

.form_input_check span {
    margin: 0;
    padding: 0;
}

.form_input_check input[type="checkbox"] {
    visibility: hidden;
    display: none;
}

.form_input_check input[type="checkbox"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    border: 2px solid #feb620;
    background: #fff;
}

.form_input_check input[type="checkbox"]+span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: url(../checked.html) no-repeat center center;
    background-size: 15px;
}

.form_input_check input[type="checkbox"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_check input[type="checkbox"]:checked + span::before {
  
} */

.form_input_check input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio */

.form_input_radio {
    position: relative;
    margin: 0;
    padding-left: 30px;
}

.form_input_radio span {
    margin: 0;
    padding: 0;
}

.form_input_radio input[type="radio"] {
    visibility: hidden;
    display: none;
}

.form_input_radio input[type="radio"]+span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 1px solid #cbcbcb;
    border-radius: 100%;
    background: #fff;
}

.form_input_radio input[type="radio"]+span::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #4b0049;
    position: absolute;
    top: 6px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.form_input_radio input[type="radio"]:not(:checked)+span::after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}


/* .form_input_radio input[type="radio"]:checked + span::before {
  
} */

.form_input_radio input[type="radio"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* custom radio end */


/* back to top */

#backtotop {
    display: inline-block;
    background-color: #FF9800;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#backtotop::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#backtotop:hover {
    cursor: pointer;
    background-color: #333;
}

#backtotop.show {
    opacity: 1;
    visibility: visible;
}


/* navbar*/

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar {
    background: none;
    margin: 0;
    padding: 0;
    min-height: inherit;
    height: inherit;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.navbar-nav li {
    position: relative;
    list-style: none;
}

.navbar-nav>li {
    margin: 0 15px;
    padding: 15px 0;
    position: relative;
}

.navbar-nav>li:last-child {
    margin-right: 0;
}

.navbar-nav>li:first-child {
    margin-left: 0;
}

.navbar-nav>li>a {
    color: #425964;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
    color: #00bce4;
}


/* navbar submenu*/

.sub-menu {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 140px;
    padding: 0;
}

.sub-menu>li>a {
    color: #425964;
    display: block;
    width: 100%;
    padding: 5px 10px;
}

.sub-menu>li {
    width: 100%;
    display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a {
    background: #00bce4;
    color: #fff;
}

.navbar-nav>li:last-child>.sub-menu {
    right: 0;
    left: inherit;
    padding: 0;
}


/* 2nd level submenu */

.navbar-nav>li>.sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
}

.cmn-gap {
    padding-top: 80px;
    padding-bottom: 80px;
}

.form_ckbox {
    margin-top: 55px;
    clear: both;
}

.hdr_social .apss-social-share {
    display: flex;
    margin-left: 20px;
}

.navbar-nav>li.menu-item-has-children {
    position: relative;
}

.navbar-nav>li.menu-item-has-children:after {
    position: absolute;
    right: 0;
    top: 0;
    background: url(../down-arrow.html)no-repeat center center;
    background-size: 24px;
    content: "";
    width: 25px;
    height: 25px;
}


/*
Theme Name: 15Zine
Theme URI: https://themeforest.net/item/15zine-hd-magazine-newspaper-wordpress-theme/10802918
Author: Codetipi
Author URI: http://www.codetipi.com
Description: Responsive, modern and clean Wordpress theme.
Version: 3.2.2
Text Domain: cubell
License: http://themeforest.net/licenses/regular_extended
License URI: http://themeforest.net/licenses/regular_extended
*/


/* normalize.css v3.0.1 | MIT License | git.io/normalize */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
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: transparent
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    height: auto
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

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 {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type="checkbox"],
input[type="radio"] {
    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-appearance: textfield;
    box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

b,
strong,
.strong {
    font-weight: bold
}

dfn,
em,
.em {
    font-style: italic
}

small,
.small {
    font-size: 75%
}

td,
th,
ul,
ol {
    padding: 0;
    list-style-type: none
}

dd {
    margin: 0
}

.sidebar ul,
.sidebar ol,
.commentlist {
    list-style: none
}

.clearfix {
    zoom: 1
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table
}

.clearfix:after {
    clear: both
}

* {
    box-sizing: border-box
}

.image-replacement {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden
}


/*
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
    font-family: 'FontAwesome';
    src: url("../fontawesome-webfont5b62.html");
    src: url("../fontawesome-webfontd41d-2.html#iefix&v=4.6.3") format("embedded-opentype"), url("../fontawesome-webfont5b62-2.html") format("woff2"), url("../fontawesome-webfont5b62-3.html") format("woff"), url("../fontawesome-webfont5b62-4.html") format("truetype"), url("../fontawesome-webfont5b62-5.html#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-gear:before,
.fa-cog:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-gears:before,
.fa-cogs:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150"
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151"
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152"
}

.fa-euro:before,
.fa-eur:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-rupee:before,
.fa-inr:before {
    content: "\f156"
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157"
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158"
}

.fa-won:before,
.fa-krw:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,
.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-hotel:before,
.fa-bed:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,
.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-tv:before,
.fa-television:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4"
}

.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
}

.onecol {
    width: 100%
}

.twocol {
    width: 100%
}

.threecol {
    width: 100%
}

.fourcol {
    width: 100%
}

.fivecol {
    width: 100%
}

.sixcol {
    width: 100%
}

.sevencol {
    width: 100%
}

.eightcol {
    width: 100%
}

.ninecol {
    width: 100%
}

.tencol {
    width: 100%
}

.elevencol {
    width: 100%
}

.twelvecol {
    width: 100%
}

body {
    font-size: 14px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    color: #484848
}

img:not(.boxer-image) {
    max-width: 100%
}

.cb-circle {
    border-radius: 50%
}

.cb-link-overlay {
    position: absolute;
    z-index: 15;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-height: 100%;
    max-width: 100%;
    -webkit-transition: .5s opacity ease;
    -transition: .5s opacity ease;
    transition: .5s opacity ease
}

.cb-sidebar {
    padding: 20px
}

.cb-pre-load>div,
.cb-pre-load>ul,
.cb-pre-load>article,
.cb-infinite-load a {
    opacity: 1;
    -webkit-transition: .25s opacity ease;
    -transition: .25s opacity ease;
    transition: .25s opacity ease;
    -moz-transition: none
}

.cb-pre-load:before {
    margin-top: -30px;
    margin-left: -20px;
    font-family: 'fontawesome';
    content: '\f110';
    -webkit-animation: cb-spinner 2.5s infinite linear;
    animation: cb-spinner 2.5s infinite linear;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 40px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: .25s opacity ease;
    -transition: .25s opacity ease;
    transition: .25s opacity ease
}

.cb-main.cb-pre-load:before {
    content: ''
}

.cb-slide-up {
    -webkit-transform: translate(0, 180px);
    -ms-transform: translate(0, 180px);
    transform: translate(0, 180px);
    -webkit-animation: cb-slide-reset .5s ease forwards;
    animation: cb-slide-reset .5s ease forwards
}

.cb-slide-up-subtle {
    -webkit-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    transform: translate(0, 30px);
    -webkit-animation: cb-slide-reset .5s ease forwards;
    animation: cb-slide-reset .5s ease forwards
}

.cb-slide-to-r {
    -webkit-transform: translate(-20px, 0);
    -ms-transform: translate(-20px, 0);
    transform: translate(-20px, 0);
    -webkit-animation: cb-slide-reset .5s ease forwards;
    animation: cb-slide-reset .5s ease forwards
}

.cb-slide-opa {
    opacity: 0;
    -webkit-animation: cb-slide-up-opa .5s ease forwards;
    animation: cb-slide-up-opa .5s ease forwards
}

.cb-slide-up-opa .cb-main,
.cb-slide-up-opa>.cb-fis {
    opacity: 0;
    -webkit-transform: translate(0, 200px);
    -ms-transform: translate(0, 200px);
    transform: translate(0, 200px);
    -webkit-animation: cb-slide-up-opa .5s ease forwards;
    animation: cb-slide-up-opa .5s ease forwards
}

.cb-dark-loader.cb-pre-load:before {
    color: #fff
}

.cb-light-loader.cb-pre-load:before {
    color: #161616
}

.cb-pre-load.cb-pro-load:before {
    opacity: 1
}

.cb-pre-load.cb-pro-load>div,
.cb-pre-load.cb-pro-load>ul,
.cb-pre-load.cb-pro-load>form,
.cb-pre-load.cb-pro-load>article,
.cb-infinite-load .cb-pre-load {
    opacity: .15 !important
}

.cb-hidden {
    display: none
}

.cb-mask {
    margin: 0;
    position: relative;
    overflow: hidden
}

#cb-bg-to {
    top: 0;
    left: 0;
    position: fixed;
    display: inline;
    width: 100%;
    cursor: pointer;
    height: 100%
}

#cb-container {
    -webkit-transition: .35s ease opacity;
    -transition: .35s ease opacity;
    transition: .35s ease opacity
}

.cb-bg-to-on #cb-container,
.cb-bg-to-on #cb-footer,
.cb-bg-to-on #cb-top-menu {
    position: relative
}

.cb-alp-ld {
    position: relative;
    display: block;
    height: 100px;
    text-align: center
}

.cb-alp-ld i {
    -webkit-animation: fa-spin 1.2s infinite linear;
    animation: fa-spin 1.2s infinite linear
}

.cb-alp-ld .cb-end {
    display: none;
    text-transform: uppercase
}

.cb-no-more i {
    display: none
}

.cb-no-more .cb-end {
    display: block
}

article.sticky .cb-mask:before {
    content: "\f08d";
    font-family: fontAwesome;
    position: absolute;
    top: 0;
    z-index: 15;
    left: 0;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px
}

.cb-read-more {
    text-transform: uppercase;
    padding-left: 3px;
    -webkit-transition: .35s background, 0.35s color;
    -transition: .35s background, 0.35s color;
    transition: .35s background, 0.35s color;
    font-size: 10px;
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 700
}

.cb-body-light .cb-alp-ld {
    color: #000;
    background: #fff
}

.cb-body-light .cb-breadcrumbs a {
    color: #161616
}

.cb-body-light .widget_tag_cloud a,
.cb-body-light .tags-title,
.cb-body-light .cb-tags a,
.cb-body-light .bbp-topic-tags a {
    color: #161616;
    border: 1px solid #161616
}

.cb-body-light .cb-fis-block-video {
    background: #fff
}

.cb-body-light .cb-text-buttons a {
    color: #161616
}

.cb-body-light .cb-fis-title-bg {
    background: #fff
}

.cb-body-light .cb-byline-short {
    color: #777
}

.cb-body-light .cb-byline-short a {
    color: #777
}

.cb-body-light blockquote {
    color: #161616
}

.cb-body-light .cb-slider.cb-meta-below .slides .cb-byline,
.cb-body-light .cb-slider.cb-meta-below .slides .cb-byline a {
    color: #777
}

.cb-body-light .cb-contact-icon i {
    color: #161616
}

.cb-body-light .cb-pagination a,
.cb-body-light .cb-entry-content .cb-pagination a {
    color: #161616;
    border: 1px solid #161616
}

.cb-body-light .cb-pagination a:hover,
.cb-body-light .cb-entry-content .cb-pagination a:hover {
    background: #161616;
    color: #fff
}

.cb-body-light .cb-pagination .current,
.cb-body-light .cb-pagination>.cb-page,
.cb-body-light .cb-entry-content .cb-pagination .current,
.cb-body-light .cb-entry-content .cb-pagination>.cb-page {
    background: #161616;
    border: 1px solid #161616;
    color: #fff
}

.cb-body-light .cb-widget-title {
    border-bottom: 3px solid #161616
}

.cb-body-light .cb-sidebar-widget a {
    color: #161616
}

.cb-body-light .cb-toggler,
.cb-body-light .cb-toggle {
    color: #161616
}

.cb-body-light .cb-tabs>ul li a {
    color: #999
}

.cb-body-light .cb-tabs>ul li a:hover {
    color: #666
}

.cb-body-light .cb-tabs>ul .current {
    border-bottom: #161616 3px solid
}

.cb-body-light .cb-tabs>ul .current a {
    color: #161616
}

.cb-body-light .cb-read-more {
    color: #161616
}

.cb-body-light .cb-next-previous i {
    color: #000
}

.cb-body-light .cb-separated {
    border-bottom: 1px dotted #ddd
}

.cb-body-light .cb-article-small.cb-separated {
    border-bottom: 1px dotted #ddd
}

.cb-body-light .cb-module-header .cb-module-title a {
    color: #161616
}

.cb-body-light .cb-module-header .cb-module-title a:hover {
    color: #444
}

.cb-body-light .cb-module-header .cb-module-title:after {
    background: #161616
}

.cb-body-light #cb-content,
.cb-body-light .cb-hp-section {
    background: #fff
}

.cb-body-light .cb-sidebar {
    background: #f2f2f2
}

.cb-body-light .cb-byline {
    color: #777
}

.cb-body-light .cb-byline a {
    color: #777
}

.cb-body-light h1,
.cb-body-light h2,
.cb-body-light h3,
.cb-body-light h4,
.cb-body-light h5 {
    color: #161616
}

.cb-body-light .cb-module-block .cb-post-title a {
    color: #161616
}

.cb-body-light .cb-post-meta {
    color: #868686
}

.cb-body-light .cb-post-meta .cb-element a,
.cb-body-light .cb-post-meta .cb-element>span {
    color: #868686;
    background: #e9e9e9
}

.cb-body-light .cb-post-meta .cb-element:hover {
    color: #f2f2f2
}

.cb-body-light .cb-post-meta .cb-element:hover a,
.cb-body-light .cb-post-meta .cb-element:hover>span:not(.cb-lkd) {
    color: #f2f2f2;
    background: #161616
}

.cb-body-light .cb-post-meta .cb-views {
    background: #e9e9e9
}

.cb-body-light .cb-post-meta .cb-views:hover {
    color: #868686;
    background: #e9e9e9
}

.cb-body-light .cb-post-block-bg {
    background: #f2f2f2
}

.cb-body-light .cb-article-footer .cb-title,
.cb-body-light .cb-article-footer #reply-title {
    color: #161616
}

.cb-body-light .cb-article-footer .cb-title-header {
    border-bottom: 5px solid #161616
}

.cb-body-light #cb-author-box .cb-meta a {
    color: #161616
}

.cb-body-light .cb-meta-below .slides li .cb-post-title a {
    color: #161616
}

.cb-body-light .cb-multi-widget .tabbernav li a {
    color: #777
}

.cb-body-light .cb-multi-widget .tabbernav .tabberactive a {
    color: #161616;
    border-bottom: #161616 3px solid
}

.cb-body-light .commentlist .comment .cb-comment-body .comment-author .fn a {
    color: #202020
}

.cb-body-light .commentlist .comment .cb-comment-body .comment-author time a {
    color: #9a9a9a
}

.cb-body-light .commentlist .comment .cb-comment-body .comment-reply-link,
.cb-body-light .commentlist .comment .cb-comment-body .comment-edit-link {
    color: #4d4d4d
}

.cb-body-light .commentlist .comment .cb-comment-body .alert p {
    color: #4d4d4d
}

.cb-body-light .commentlist article {
    border-bottom: 1px solid #ddd
}

.cb-body-light #commentform input,
.cb-body-light #commentform textarea {
    background: #f2f2f2;
    color: #858585
}

.cb-body-light #commentform input:focus,
.cb-body-light #commentform textarea:focus {
    background: #e1e1e1
}

.cb-body-light #commentform #submit,
.cb-body-light #commentform label {
    color: #161616
}

.cb-body-light #commentform #submit {
    border: 2px solid #161616;
    background: transparent
}

.cb-body-light #commentform #submit:hover {
    background: #161616;
    color: #f2f2f2
}

.cb-body-light .wpcf7-submit {
    color: #161616;
    border: 2px solid #161616;
    background: transparent
}

.cb-body-light .wpcf7-submit:hover {
    background: #161616;
    color: #f2f2f2
}

.cb-body-light .bypostauthor>article {
    border-bottom: 1px solid #ddd
}

.cb-body-light .cb-review-box {
    color: #161616
}

.cb-body-light .cb-review-box .cb-conclusion {
    padding-bottom: 20px
}

.cb-body-light .cb-review-box .cb-review-area {
    background: #f2f2f2
}

.cb-body-light .cb-review-box .cb-review-title {
    color: #161616
}

.cb-body-light .cb-review-box .cb-bar {
    color: #161616
}

.cb-body-light .cb-review-box .cb-bar .cb-user-rating-wrap .cb-votes-count {
    color: gray
}

.cb-body-light .cb-review-box .cb-bar .cb-overlay {
    background: #e0e0e0
}

.cb-body-light .cb-review-box .cb-overlay-stars .cb-opacity {
    background: #f2f2f2
}

.cb-body-light .cb-review-box .cb-title {
    color: #161616
}

.cb-body-light .cb-review-box .cb-score-box {
    color: #161616;
    border-color: #161616
}

.cb-body-light .cb-review-box .cb-score-box i {
    color: #161616
}

.cb-body-light .cb-grid-x .cb-grid-feature {
    border-color: #fff
}

.cb-body-light .cb-author-details.cb-sidebar h3 a {
    color: #161616
}

.cb-body-light .cb-entry-content .alignleft .wp-caption-text,
.cb-body-light .cb-entry-content .alignright .wp-caption-text,
.cb-body-light .cb-entry-content .aligncenter .wp-caption-text {
    color: #464646
}

.cb-body-light .cb-entry-content .alignnone.cb-fs-embed .wp-caption-text {
    background: #f2f2f2;
    color: #464646
}

.cb-body-dark {
    color: #c5c5c5;
    background: #161616
}

.cb-body-dark .cb-alp-ld {
    color: #fff;
    background: #161616
}

.cb-body-dark .cb-breadcrumbs a {
    color: #f2f2f2
}

.cb-body-dark .widget_tag_cloud a,
.cb-body-dark .tags-title,
.cb-body-dark .cb-tags a,
.cb-body-dark .bbp-topic-tags a {
    color: #c5c5c5;
    border: 1px solid #c5c5c5
}

.cb-body-dark .cb-fis-block-video {
    background: #161616
}

.cb-body-dark .cb-read-more {
    color: #f2f2f2
}

.cb-body-dark .cb-fis-title-bg {
    background: #161616
}

.cb-body-dark .cb-text-buttons a {
    color: #f2f2f2
}

.cb-body-dark .cb-slider.cb-meta-below .slides .cb-byline,
.cb-body-dark .cb-slider.cb-meta-below .slides .cb-byline a {
    color: #777
}

.cb-body-dark blockquote {
    color: #f2f2f2
}

.cb-body-dark .cb-entry-content .alignleft .wp-caption-text,
.cb-body-dark .cb-entry-content .alignright .wp-caption-text,
.cb-body-dark .cb-entry-content .aligncenter .wp-caption-text {
    color: #999
}

.cb-body-dark .cb-entry-content .alignnone.cb-fs-embed .wp-caption-text {
    background: #161616;
    color: #999
}

.cb-body-dark .cb-pagination a,
.cb-body-dark .cb-entry-content .cb-pagination a {
    color: #f2f2f2;
    border: 1px solid #f2f2f2
}

.cb-body-dark .cb-pagination a:hover,
.cb-body-dark .cb-entry-content .cb-pagination a:hover {
    background: #f2f2f2;
    color: #161616
}

.cb-body-dark .cb-pagination .current,
.cb-body-dark .cb-pagination>.cb-page,
.cb-body-dark .cb-entry-content .cb-pagination .current,
.cb-body-dark .cb-entry-content .cb-pagination>.cb-page {
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    color: #161616
}

.cb-body-dark .cb-tabs>ul li a {
    color: #555
}

.cb-body-dark .cb-tabs>ul li a:hover {
    color: #f2f2f2
}

.cb-body-dark .cb-tabs>ul .current {
    border-bottom: #f2f2f2 3px solid
}

.cb-body-dark .cb-tabs>ul .current a {
    color: #f2f2f2
}

.cb-body-dark .cb-contact-icon i {
    color: #fff
}

.cb-body-dark .cb-sidebar-widget a {
    color: #f2f2f2
}

.cb-body-dark .cb-toggler,
.cb-body-dark .cb-toggle {
    color: #f2f2f2
}

.cb-body-dark .cb-next-previous i {
    color: #f2f2f2
}

.cb-body-dark .cb-module-header a {
    color: #f2f2f2
}

.cb-body-dark .cb-module-header a:hover {
    color: #e0e0e0
}

.cb-body-dark .cb-module-header .cb-module-title:after {
    background: #f2f2f2
}

.cb-body-dark .cb-separated {
    border-bottom: 1px dotted #282828
}

.cb-body-dark .cb-article-small.cb-separated {
    border-bottom: 1px dotted #282828
}

.cb-body-dark #cb-content,
.cb-body-dark .cb-hp-section {
    background: #161616
}

.cb-body-dark .cb-sidebar {
    background: #0f0f0f
}

.cb-body-dark h1,
.cb-body-dark h2,
.cb-body-dark h3,
.cb-body-dark h4,
.cb-body-dark h5 {
    color: #f2f2f2
}

.cb-body-dark .cb-byline {
    color: #f2f2f2
}

.cb-body-dark .cb-byline a {
    color: #f2f2f2
}

.cb-body-dark .cb-fis h1 {
    color: #f2f2f2
}

.cb-body-dark .cb-fis-big .cb-meta h1 {
    color: #fff
}

.cb-body-dark .cb-module-block .cb-post-title a {
    color: #f2f2f2
}

.cb-body-dark .cb-post-meta {
    color: #e9e9e9
}

.cb-body-dark .cb-post-meta .cb-element a,
.cb-body-dark .cb-post-meta .cb-element>span {
    color: #e9e9e9;
    background: #161616
}

.cb-body-dark .cb-post-meta .cb-element:hover {
    color: #161616
}

.cb-body-dark .cb-post-meta .cb-element:hover a,
.cb-body-dark .cb-post-meta .cb-element:hover>span:not(.cb-lkd) {
    color: #161616;
    background: #e9e9e9
}

.cb-body-dark .cb-post-meta .cb-views {
    background: #161616
}

.cb-body-dark .cb-post-meta .cb-views:hover {
    color: #e9e9e9;
    background: #161616
}

.cb-body-dark .cb-byline-short {
    color: #777
}

.cb-body-dark .cb-byline-short a {
    color: #777
}

.cb-body-dark .cb-post-block-bg {
    background: #0f0f0f
}

.cb-body-dark .cb-article-footer .cb-title,
.cb-body-dark .cb-article-footer #reply-title {
    color: #f2f2f2
}

.cb-body-dark .cb-article-footer .cb-title-header {
    border-bottom: 5px solid #161616
}

.cb-body-dark #cb-author-box .cb-meta a {
    color: #f2f2f2
}

.cb-body-dark .cb-meta-below .slides li .cb-meta .cb-byline {
    color: #f2f2f2
}

.cb-body-dark .cb-meta-below .slides li .cb-meta .cb-byline a {
    color: #f2f2f2
}

.cb-body-dark .cb-meta-below .slides li a {
    color: #f2f2f2
}

.cb-body-dark .cb-multi-widget .tabbernav li a {
    color: #777
}

.cb-body-dark .cb-multi-widget .tabbernav .tabberactive a {
    color: #f2f2f2;
    border-bottom: #f2f2f2 3px solid
}

.cb-body-dark .commentlist .comment .cb-comment-body .comment-author .fn a {
    color: #f2f2f2
}

.cb-body-dark .commentlist .comment .cb-comment-body .comment-author time a {
    color: #9a9a9a
}

.cb-body-dark .commentlist .comment .cb-comment-body .comment-reply-link,
.cb-body-dark .commentlist .comment .cb-comment-body .comment-edit-link {
    color: #9a9a9a
}

.cb-body-dark .commentlist .comment .cb-comment-body .alert p {
    color: #9a9a9a
}

.cb-body-dark .commentlist article {
    border-bottom: 1px solid #202020
}

.cb-body-dark #commentform input,
.cb-body-dark #commentform textarea {
    background: #0f0f0f;
    color: #858585
}

.cb-body-dark #commentform input:focus,
.cb-body-dark #commentform textarea:focus {
    background: #111
}

.cb-body-dark #commentform #submit,
.cb-body-dark #commentform label {
    color: #4d4d4d
}

.cb-body-dark #commentform #submit {
    background: #0f0f0f
}

.cb-body-dark #commentform #submit:hover {
    background: #111
}

.cb-body-dark .wpcf7-submit {
    color: #858585;
    background: #0f0f0f
}

.cb-body-dark .wpcf7-submit:hover {
    background: #111
}

.cb-body-dark .bypostauthor>article {
    border-bottom: 1px solid #202020
}

.cb-body-dark .cb-review-box {
    color: #f2f2f2
}

.cb-body-dark .cb-review-box .cb-review-area {
    background: #0f0f0f
}

.cb-body-dark .cb-review-box .cb-review-title {
    color: #f2f2f2
}

.cb-body-dark .cb-review-box .cb-bar {
    color: #f2f2f2
}

.cb-body-dark .cb-review-box .cb-bar .cb-user-rating-wrap .cb-votes-count {
    color: gray
}

.cb-body-dark .cb-review-box .cb-bar .cb-overlay {
    background: #1f1f1f
}

.cb-body-dark .cb-review-box .cb-title {
    color: #f2f2f2
}

.cb-body-dark .cb-review-box .cb-score-box {
    color: #f2f2f2;
    border-color: #f2f2f2
}

.cb-body-dark .cb-review-box .cb-score-box i {
    color: #f2f2f2
}

.cb-body-dark .cb-review-box .cb-overlay-stars .cb-opacity {
    background: #0f0f0f
}

.cb-body-dark .cb-grid-x .cb-grid-feature {
    border-color: #161616
}

.cb-body-dark .cb-author-details.cb-sidebar h3 a {
    color: #f2f2f2
}

.cb-footer-dark .cb-footer-widget-title {
    color: #f2f2f2;
    border-bottom: 0
}

.cb-footer-dark #cb-footer {
    background-color: #10100f
}

.cb-footer-dark #cb-footer a {
    color: #eee
}

.cb-footer-dark #cb-footer .cb-byline-short a {
    color: #777
}

.cb-footer-dark #cb-footer .cb-arrows-tr .flex-direction-nav a {
    color: #161616
}

.cb-footer-dark #cb-footer .cb-article-small.cb-separated {
    border-bottom: 1px dotted #282828
}

.cb-footer-dark #cb-footer .cb-multi-widget .tabbernav .tabberactive a {
    border-bottom: #f2f2f2 3px solid
}

.cb-footer-dark .cb-footer-lower {
    background: #0c0c0b;
    color: #a6a6a6
}

.cb-footer-dark .cb-footer-lower a {
    color: #a6a6a6
}

.cb-footer-dark .cb-footer-lower .cb-to-top a {
    color: #fff
}

.cb-footer-dark .cb-to-top a i {
    border: 2px solid #fff
}

.cb-footer-light .cb-footer-widget-title {
    color: #161616;
    border-bottom: 0
}

.cb-footer-light #cb-footer {
    background-color: #f2f2f2
}

.cb-footer-light #cb-footer a {
    color: #161616
}

.cb-footer-light #cb-footer .cb-byline-short a {
    color: #777
}

.cb-footer-light #cb-footer .cb-arrows-tr .flex-direction-nav a {
    color: #161616
}

.cb-footer-light #cb-footer .cb-article-small.cb-separated {
    border-bottom: 1px dotted #ddd
}

.cb-footer-light .cb-footer-lower {
    background: #e1e1e1;
    color: #999
}

.cb-footer-light .cb-footer-lower a {
    color: #999
}

.cb-footer-light .cb-footer-lower .cb-to-top a {
    color: #161616
}

.cb-footer-light .cb-to-top a i {
    border: 2px solid #161616
}

.cb-ani-fade-in-2-5s {
    opacity: 0;
    animation: cb-ani-fade-in 2.5s ease forwards;
    -webkit-animation: cb-ani-fade-in 2.5s ease forwards
}

.cb-ani-fade-in-1s {
    opacity: 0;
    animation: cb-ani-fade-in 1s ease forwards;
    -webkit-animation: cb-ani-fade-in 1s ease forwards
}

.cb-ani-fade-in-1-5s {
    opacity: 0;
    animation: cb-ani-fade-in 1.5s ease forwards;
    -webkit-animation: cb-ani-fade-in 1.5s ease forwards
}

.cb-ani-fade-in-0-5s {
    opacity: 0;
    animation: cb-ani-fade-in .5s ease forwards;
    -webkit-animation: cb-ani-fade-in .5s ease forwards
}

.cb-ani-fade-out {
    opacity: 1;
    animation: cb-ani-fade-out 2.5s ease forwards;
    -webkit-animation: cb-ani-fade-out 2.5s ease forwards
}

.cb-ani-fade-out-fast {
    opacity: 1;
    animation: cb-ani-fade-out .5s ease forwards;
    -webkit-animation: cb-ani-fade-out .5s ease forwards
}

.cb-fade {
    -webkit-transition: opacity .5s;
    -transition: opacity .5s;
    transition: opacity .5s
}

.cb-fade-in {
    opacity: 1
}

.cb-fade-out {
    opacity: 0
}

.cb-fade-to-03 {
    animation: cb-ani-fade-to-03 3s ease both;
    -webkit-animation: cb-ani-fade-to-03 3s ease both
}

.cb-z-999 {
    z-index: 999
}

.wrap,
.cb-wrap-off #cb-content {
    width: 100%;
    margin: 0 auto
}

.cb-pb .cb-full-width {
    padding: 0 0 30px 0
}

.cb-box-light .wrap {
    box-shadow: -1px 0 0 0 #ddd, 1px 0 0 0 #ddd;
    -moz-box-shadow: -1px 0 0 0 #ddd, 1px 0 0 0 #ddd;
    -webkit-box-shadow: -1px 0 0 0 #ddd, 1px 0 0 0 #ddd
}

.cb-box-heavy .wrap {
    box-shadow: -1px 0 0 0 #888, 1px 0 0 0 #888;
    -moz-box-shadow: -1px 0 0 0 #888, 1px 0 0 0 #888;
    -webkit-box-shadow: -1px 0 0 0 #888, 1px 0 0 0 #888
}

.cb-box-light.cb-nav-bar-wrap.wrap,
.cb-box-light.cb-main-nav.wrap,
.cb-box-light #cb-widgets.wrap,
.cb-box-light .cb-footer-lower .wrap,
.cb-box-heavy.cb-nav-bar-wrap.wrap,
.cb-box-heavy.cb-main-nav.wrap,
.cb-box-heavy #cb-widgets.wrap,
.cb-box-heavy .cb-footer-lower .wrap {
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important
}

a {
    color: #000;
    text-decoration: none
}

a:hover,
a:focus,
a:visited {
    color: #000
}

a:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3)
}

a:visited {
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5 {
    font-family: sans-serif;
    text-rendering: optimizelegibility;
    font-weight: 700;
    line-height: 1.3
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
    text-decoration: none
}

h1 {
    font-size: 3em
}

h2 {
    font-size: 2.5em
}

h3 {
    font-size: 1.5em
}

h4 {
    font-size: 1.3em;
    font-weight: 700
}

h5 {
    font-size: .846em;
    text-transform: uppercase;
    letter-spacing: 2px
}

blockquote {
    margin: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-style: italic
}

blockquote cite {
    font-size: 12px;
    color: #adadad;
    display: block;
    margin-top: 10px
}

.cb-entry-content {
    margin: 0 0 20px
}

.cb-entry-content dt {
    font-weight: bold
}

.cb-entry-content dd {
    padding-left: 50px
}

.cb-entry-content table {
    width: 100%;
    margin-bottom: 20px
}

.cb-entry-content table tr td {
    border-bottom: 1px solid #e7e7e7;
    padding: 10px
}

.cb-entry-content table tr th {
    border-bottom: 3px solid #e7e7e7;
    padding: 10px;
    background-color: #f0f0f0
}

.cb-entry-content ol,
.cb-entry-content ul {
    margin: 15px 0;
    list-style-position: inside
}

.cb-entry-content ol li ol,
.cb-entry-content ol li ul,
.cb-entry-content ul li ol,
.cb-entry-content ul li ul {
    margin: 0 0 0 20px
}

.cb-entry-content ul {
    list-style-type: circle
}

.cb-entry-content ol {
    list-style-type: decimal
}

.cb-entry-content dd {
    margin-left: 0;
    font-size: .9em;
    color: #787878;
    margin-bottom: 1.5em
}

.cb-entry-content pre {
    background: #eee;
    border: 1px solid #cecece;
    padding: 10px
}

.cb-entry-content video,
.cb-entry-content object {
    max-width: 100%;
    height: auto
}

.cb-entry-content .alignnone {
    position: relative;
    max-width: 100%;
    padding: 20px 0
}

.cb-entry-content .alignnone img {
    width: 100%
}

.cb-entry-content .aligncenter {
    position: relative;
    max-width: 100%;
    padding: 20px 0;
    display: block;
    margin: 0 auto;
    line-height: 0;
    text-align: center
}

.cb-entry-content .alignleft {
    float: left;
    margin: 0 20px 20px 0;
    line-height: 0;
    max-width: 100%
}

.cb-entry-content .alignleft img {
    width: 100%
}

.cb-entry-content .alignright {
    float: right;
    max-width: 100%;
    margin: 0 0 20px 20px;
    line-height: 0
}

.cb-entry-content .alignright img {
    width: 100%
}

.cb-entry-content .alignleft .wp-caption-text,
.cb-entry-content .alignright .wp-caption-text,
.cb-entry-content .aligncenter .wp-caption-text {
    line-height: 1.5;
    padding: 7px 12px;
    margin: 0;
    font-style: italic;
    text-align: center
}

.cb-entry-content .alignnone.cb-fs-embed .wp-caption-text,
.cb-entry-content .aligncenter .wp-caption-text {
    padding: 7px 12px;
    margin: 0;
    line-height: 1.8
}

.cb-entry-content .alignnone .wp-caption-text {
    font-style: italic;
    text-align: center
}

.cb-entry-content .wp-caption.alignleft,
.cb-entry-content .wp-caption.alignright {
    margin-bottom: 0
}

.cb-sidebar-none-narrow.cb-embed-out .wp-caption-text {
    text-align: center
}

.cb-entry-title {
    margin: 0
}

.cb-first-drop .cb-entry-content .cb-itemprop>p:first-of-type:first-letter,
.cb-first-drop .cb-entry-content>p:first-of-type:first-letter {
    font-size: 6em;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin: 0 20px 0 0
}

.cb-itemprop {
    display: block
}

.cb-dropcap-big {
    font-size: 6em;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin: 0 20px 0 0
}

.cb-post-list {
    margin: 0 0 30px 0
}

.cb-post-list .cb-mask {
    width: 100%;
    margin: 0;
    float: left
}

.cb-post-list .cb-mask a {
    display: block
}

.cb-post-list .cb-meta {
    width: 100%;
    float: left;
    padding: 10px 20px 10px 10px
}

.cb-post-list .cb-meta h2 {
    margin: 0 0 5px 0;
    font-weight: 700;
    letter-spacing: 2px
}

.cb-post-list .cb-meta .cb-excerpt {
    margin: 0
}

.cb-sidebar {
    width: 100%;
    float: left
}

.cb-sidebar-widget {
    margin-bottom: 40px;
    max-width: 100%;
    overflow: hidden
}

.cb-sidebar-widget:last-child {
    margin-bottom: 0
}

.cb-widget-title {
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    letter-spacing: 2px;
    line-height: 1.2
}

.cb-footer-widget-title {
    width: 100%;
    text-align: center
}

.fb_iframe_widget {
    display: block
}

#cb-blog-infinite-load {
    margin: 0 0 40px 0
}

.cb-no-more-posts {
    display: block;
    text-align: center;
    margin: 0 0 40px 0;
    font-size: 16px;
    color: #5a5a5a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-align: center
}

.cb-no-more-posts span {
    display: inline-block;
    padding: 10px;
    width: 50%;
    border: 2px solid #5a5a5a
}

.cb-pagination-button {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
    float: left;
    width: 100%
}

.cb-pagination-button a {
    -webkit-transition: all .35s;
    -transition: all .35s;
    transition: all .35s;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    width: 50%;
    color: #161616;
    letter-spacing: 2px;
    border: 2px solid #161616;
    font-size: 18px;
    text-transform: uppercase;
    background: transparent
}

.cb-pagination-button a:hover {
    background: #161616;
    color: #fff
}

.cb-infinite-load.cb-pagination-button a.cb-pre-load:hover {
    background: transparent;
    color: #161616;
    cursor: default
}

.cb-pagination {
    text-align: center;
    width: 100%;
    margin: 20px 0 40px 0;
    clear: both
}

.cb-pagination li {
    display: inline-block
}

.cb-pagination a,
.cb-pagination .current,
.cb-pagination>.cb-page {
    padding: 5px 12px;
    font-weight: 700;
    font-size: 9px !important;
    display: inline-block;
    margin: 0 10px 10px 0;
    -webkit-transition: .35s all ease;
    -transition: .35s all ease;
    transition: .35s all ease
}

#cb-logo-box {
    display: table;
    padding: 15px
}

.cb-fw {
    width: 100%
}

#logo h1 {
    margin: 0;
    line-height: 0
}

#logo,
#mob-logo {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    float: left;
    line-height: 0
}

#logo a,
#mob-logo a {
    display: inline-block;
    line-height: 0
}

#logo img,
#mob-logo img {
    max-height: 50px
}

#logo img:not(.cb-retina),
#mob-logo img:not(.cb-retina) {
    width: auto
}

.cb-logo-center #logo,
.cb-logo-center #mob-logo {
    padding: 0;
    width: 100%;
    display: block;
    text-align: center
}

.cb-large {
    float: left;
    padding: 0 10px;
    width: 100%
}

.cb-medium {
    float: right
}

.cb-block {
    margin-top: 10px;
    text-align: center;
    width: 100%
}

.cb-block img,
.cb-block iframe {
    max-width: 100%
}

.cb-logo-center .cb-block {
    margin: 10px 0;
    float: none;
    text-align: center;
    width: 100%
}

.cb-category-top {
    width: 100%;
    text-align: center;
    margin: 0 0 30px 0
}

.cb-category-top img {
    width: auto
}

.cb-header {
    background: #fff;
    z-index: 15;
    position: relative
}

#cb-top-menu {
    display: block;
    text-transform: uppercase;
    line-height: 40px;
    height: 40px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    position: relative;
    z-index: 105
}

#cb-top-menu .cb-lwa-trigger img {
    height: 18px;
    width: 18px;
    vertical-align: middle;
    border-radius: 50%;
    top: -1px;
    position: relative
}

#cb-top-menu ul {
    margin: 0;
    float: left
}

#cb-top-menu ul li {
    display: inline-block
}

#cb-top-menu ul li .cb-has-children>a:after {
    content: '+';
    float: right
}

#cb-top-menu ul li a {
    display: block
}

#cb-top-menu ul li ul {
    margin-top: 0;
    position: absolute;
    opacity: 0;
    -webkit-transition: .15s opacity;
    -transition: .15s opacity;
    transition: .15s opacity;
    visibility: hidden;
    z-index: 999;
    min-height: 40px;
    width: 200px
}

#cb-top-menu ul li ul li {
    position: relative;
    width: 100%
}

#cb-top-menu ul li ul li a {
    padding: 10px 20px;
    margin: 0 !important;
    width: 100%;
    line-height: 20px
}

#cb-top-menu ul li:hover>ul {
    top: 100%;
    opacity: 1;
    visibility: visible
}

#cb-top-menu ul li:hover>ul li>ul {
    opacity: 0;
    visibility: hidden;
    left: 100%;
    top: 0
}

#cb-top-menu ul li:hover>ul li:hover>ul {
    opacity: 1;
    visibility: visible
}

#cb-top-menu ul .cb-icons {
    padding: 0 10px
}

#cb-top-menu ul .cb-icons ul {
    float: none
}

#cb-top-menu ul .cb-icons ul li {
    vertical-align: middle
}

#cb-top-menu ul .cb-icons ul li img {
    height: 18px;
    width: 18px
}

#cb-top-menu ul .cb-icons ul .cb-icon-logged-in a {
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1
}

#cb-top-menu .cb-left-side {
    width: 62%;
    float: left
}

#cb-top-menu .cb-left-side a {
    margin: 0 7px 0 0
}

#cb-top-menu .cb-top-nav.cb-left-side {
    display: none
}

#cb-top-menu .cb-right-side {
    width: 38%;
    text-align: right;
    float: right;
    height: inherit
}

#cb-top-menu .cb-right-side a {
    margin: 0 7px
}

#cb-top-menu .cb-right-side a span {
    display: none
}

#cb-top-menu .cb-right-side i {
    font-size: 14px
}

#cb-top-menu .cb-top-menu-wrap {
    height: inherit
}

#cb-top-menu .cb-top-logo {
    width: 50%;
    float: right;
    min-height: 1px;
    display: table;
    height: inherit
}

#cb-top-menu .cb-top-logo a {
    display: table-cell;
    vertical-align: middle
}

#cb-top-menu .cb-top-logo img {
    max-width: 100%;
    max-height: 30px
}

#cb-top-menu #cb-mob-open {
    float: left;
    width: 50%;
    margin: 0;
    padding-left: 10px
}

#cb-top-menu .cb-social-icons-extra {
    display: none
}

.cb-mob-menu {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #161616;
    z-index: 110;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%
}

.cb-mob-menu .cb-mob-bg {
    background-size: cover;
    background-position: 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    opacity: .8;
    z-index: -1
}

.cb-mob-menu .cb-mob-close-wrap {
    width: 100%;
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    position: absolute;
    z-index: 3;
    top: 0;
    background: #010101
}

.cb-mob-menu #cb-mob-close {
    color: #fff;
    float: right
}

.cb-mob-menu .cb-mob-social {
    float: left
}

.cb-mob-menu .cb-mob-social a {
    color: #fff;
    padding: 0 15px 0 0;
    font-size: 16px
}

.cb-mob-menu .cb-mob-menu-wrap {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    height: 100%
}

.cb-mob-menu .cb-mob-menu-wrap .cb-mobile-nav {
    padding: 0 20px
}

.cb-mob-menu .cb-mob-menu-wrap ul {
    width: 100%;
    display: none
}

.cb-mob-menu .cb-mob-menu-wrap ul .cb-icon-plus {
    display: inline-block;
    float: right;
    color: #fff;
    padding: 0 5px;
    font-size: 24px;
    line-height: 24px
}

.cb-mob-menu .cb-mob-menu-wrap ul .cb-icon-plus:after {
    content: '+';
    font-weight: 700
}

.cb-mob-menu .cb-mob-menu-wrap ul .cb-selected:after {
    content: '-'
}

.cb-mob-menu .cb-mob-menu-wrap ul li {
    display: block;
    margin: 15px 0;
    font-size: 16px
}

.cb-mob-menu .cb-mob-menu-wrap ul li a {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-decoration: none;
    color: #f2f2f2
}

.cb-mob-menu .cb-mob-menu-wrap ul li a:hover {
    text-decoration: underline
}

.cb-mob-menu .cb-mob-menu-wrap .cb-mob-ul-show {
    display: block;
    overflow-y: auto
}

.cb-mob-menu .cb-mob-menu-wrap .sub-menu {
    padding-left: 20px
}

.cb-mob-menu .cb-mob-menu-wrap .sub-menu li:last-of-type {
    margin-bottom: 0
}

.cb-mob-op #cb-outer-container {
    overflow: hidden
}

.cb-mob-op .cb-mob-menu {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.cb-mob-op #cb-container {
    opacity: .5
}

.cb-tm-dark #cb-top-menu {
    background-color: #010101
}

.cb-tm-dark #cb-top-menu ul li a {
    color: #fff
}

.cb-tm-dark #cb-top-menu ul li a:hover {
    color: #bebebe
}

.cb-tm-dark #cb-top-menu ul li ul {
    background: #161616
}

.cb-tm-dark #cb-top-menu .cb-top-menu-wrap {
    background-color: inherit
}

.cb-tm-dark #cb-top-menu .cb-link {
    color: #fff
}

.cb-tm-light #cb-top-menu {
    background-color: #f2f2f2
}

.cb-tm-light #cb-top-menu ul li a {
    color: #161616
}

.cb-tm-light #cb-top-menu ul li a:hover {
    color: #7e7e7e
}

.cb-tm-light #cb-top-menu ul li ul {
    background: #f2f2f2
}

.cb-tm-light #cb-top-menu .cb-top-menu-wrap {
    background-color: inherit
}

.cb-tm-light #cb-top-menu .cb-link {
    color: #161616
}

.cb-logo-nav-sticky-type {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0)
}

.cb-logo-nav-always-type {
    margin: 0 20px
}

#cb-nav-bar .cb-main-nav #cb-nav-logo {
    float: left;
    width: 0;
    -webkit-transition: opacity ease .35s, transform ease .2s;
    -webkit-transition: opacity ease .35s, -webkit-transform ease .2s;
    transition: opacity ease .35s, -webkit-transform ease .2s;
    transition: opacity ease .35s, transform ease .2s;
    transition: opacity ease .35s, transform ease .2s, -webkit-transform ease .2s
}

.cb-sticky-menu-up #cb-nav-bar .cb-main-nav #cb-nav-logo {
    -webkit-transition: 0;
    transition: 0
}

.cb-stuck #cb-nav-bar .cb-main-nav .cb-logo-nav-sticky-type {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

#cb-nav-logo a {
    padding: 0 !important;
    line-height: 0
}

.cb-menu-light #cb-nav-bar .cb-nav-bar-wrap {
    background: #fff
}

.cb-menu-light #cb-nav-bar .cb-main-nav {
    border-bottom: 3px solid #161616
}

.cb-menu-light #cb-nav-bar .cb-main-nav>li>a {
    color: #161616
}

.cb-menu-light #cb-nav-bar .cb-main-nav #cb-nav-logo:hover {
    background: transparent
}

.cb-menu-dark #cb-nav-bar .cb-nav-bar-wrap {
    background: #161616
}

.cb-menu-dark #cb-nav-bar .cb-main-nav>li>a {
    color: #f2f2f2
}

#cb-nav-bar {
    display: none
}

#cb-nav-bar .cb-byline-short {
    color: #777
}

.cb-stuck.cb-menu-light #cb-nav-bar .cb-main-nav {
    border-bottom: 0
}

.cb-stuck.cb-menu-light #cb-nav-bar .cb-nav-bar-wrap {
    background: #fff;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid #161616
}

.cb-stuck.cb-menu-light #cb-nav-bar .cb-link {
    color: #1e1e20
}

.cb-mm-on.cb-menu-light #cb-nav-bar .cb-main-nav>li:hover {
    background: #161616
}

.cb-stuck.cb-menu-dark #cb-nav-bar .cb-nav-bar-wrap {
    background: rgba(22, 22, 22, 0.95)
}

.cb-stuck.cb-menu-dark #cb-nav-bar .cb-link {
    color: #fff
}

.cb-stuck .cb-menu-fw {
    width: 100%
}

.cb-stuck #cb-nav-bar {
    padding-bottom: 0;
    background: #fff
}

.cb-stuck #cb-nav-bar .cb-nav-bar-wrap {
    position: fixed
}

.cb-stuck #cb-nav-bar #cb-nav-logo {
    margin: 0 20px
}

.cb-stuck #cb-nav-bar .cb-logo-nav-sticky-type {
    visibility: visible;
    opacity: 1
}

.cb-stuck #cb-nav-bar.cb-full-width {
    width: 100%
}

.cb-grid-x {
    position: relative
}

.cb-grid-x>div,
.cb-grid-x ul li ul>li {
    overflow: hidden;
    display: block;
    width: 100%;
    float: left;
    position: relative
}

.cb-grid-x .cb-link {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 17
}

.cb-grid-x .cb-grid-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.cb-grid-x .cb-grid-img img {
    opacity: .75;
    min-width: 100%
}

.cb-grid-x .cb-grid-feature {
    border-bottom: 3px solid transparent;
    -webkit-transform: translateZ(0);
    background: #000
}

.cb-grid-x .cb-s {
    width: 100%
}

.cb-grid-x .cb-s h2 {
    font-size: 12px
}

.cb-grid-x .cb-s {
    height: 220px
}

.cb-grid-x .cb-m {
    height: 120px
}

.cb-grid-x .cb-m .cb-byline {
    display: none
}

.cb-grid-x .cb-m h2 {
    font-size: 14px
}

.cb-grid-x .cb-l {
    height: 220px
}

.cb-grid-x .cb-l h2 {
    font-size: 14px
}

.cb-grid-x .cb-byline,
.cb-grid-x .cb-byline a {
    color: #fff
}

.cb-grid-3-sq .cb-s {
    border-bottom: 3px solid transparent
}

.cb-cl-block .cb-grid-feature {
    position: relative
}

.cb-slider-grid-3 .slides>li {
    display: none;
    -webkit-backface-visibility: hidden
}

.cb-slider-grid-3 .flex-viewport,
.cb-slider-grid-3 .slides {
    height: 100%
}

.cb-grid-img {
    line-height: 0;
    background: #000
}

.cb-full-height {
    height: 100%
}

.cb-no-margin {
    margin: 0
}

.cb-fi-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: 50%;
    opacity: .8;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.cb-module-header {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    font-weight: 700
}

.cb-module-header .cb-module-title {
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: 5px;
    padding: 0 30px 0 0;
    line-height: 1.2;
    text-transform: uppercase
}

.cb-module-header .cb-module-title:after {
    content: "";
    display: block;
    height: 6px;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    width: 1920px;
    left: 100%
}

.cb-module-header p {
    color: #828282;
    margin: 5px 0 0;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.cb-module-header h2 {
    font-size: 20px
}

.cb-module-header h1 {
    font-size: 20px
}

.cb-mini-title {
    color: #161616;
    font-size: 20px;
    letter-spacing: 3px
}

.cb-module-half .cb-module-header p {
    font-size: 14px
}

.cb-module-e .cb-meta .cb-post-title {
    margin-top: 20px
}

.cb-module-e img {
    min-width: 100%
}

.cb-module-block {
    margin-bottom: 40px
}

.cb-module-block .cb-article-row {
    width: 100%;
    float: left
}

.latest_travel_sec .cb-img-fw a img,
.latest_travel_sec .cb-module-block .cb-article-row img {
    min-width: 100%;
    min-height: 230px;
    object-fit: cover;
}

.latest_travel_sec .cb-mask.cb-img-fw {
    line-height: 0;
}

.cb-module-block .cb-author-details.cb-article-row img {
    min-width: 0
}

.cb-module-block .cb-no-1 {
    margin-left: 0 !important
}

.cb-module-block .cb-article {
    margin-bottom: 30px
}

.cb-module-block .cb-post-title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0 0 5px;
    font-size: 16px
}

.cb-module-block .cb-mask {
    line-height: 0
}

.cb-module-block .cb-excerpt {
    margin-top: 10px;
    font-size: .9em
}

.cb-module-block .cb-article-small {
    width: 100%;
    float: left;
    margin-bottom: 20px
}

.cb-module-block .cb-article-small .cb-mask {
    float: left;
    margin-right: 30px;
    display: block;
    max-width: 100px
}

.cb-module-block .cb-article-small .cb-meta {
    overflow: hidden
}

.cb-module-block .cb-article-small .cb-post-title {
    font-size: 14px;
    margin: 0;
    letter-spacing: 2px
}

.cb-module-block .cb-article-big.cb-meta-style-2 {
    background: #000
}

.cb-module-block .cb-article-big.cb-meta-style-2 .cb-post-title {
    font-size: 14px;
    margin: 0;
    letter-spacing: 2px
}

.cb-module-block .cb-article-big.cb-meta-style-2 .cb-post-title a {
    color: #fff
}

.cb-module-block .cb-article-big.cb-meta-style-2 .cb-byline-short {
    color: #fff;
    margin-top: 5px
}

.cb-module-block .cb-article-big.cb-meta-style-2 .cb-article-meta {
    padding: 0 20px
}

.cb-module-block .cb-meta-style-2 img,
.cb-module-block .cb-meta-style-2 .cb-fi-cover {
    opacity: .6
}

.cb-module-block .cb-meta-style-6 .cb-article-meta {
    display: none
}

.cb-module-block .cb-byline-short {
    color: #939393;
    font-size: 11px;
    letter-spacing: 2px
}

.cb-module-block .cb-article-big.cb-meta-style-2.cb-article-review .cb-post-title {
    font-size: 22px;
    letter-spacing: 3px
}

.cb-module-block .cb-article-big.cb-meta-style-2.cb-article-review img {
    opacity: .5
}

.cb-module-block .cb-article-big.cb-meta-style-2.cb-article-review:hover img {
    opacity: .25
}

.cb-module-block .cb-article-big.cb-meta-style-2.cb-article-review .cb-byline-short {
    px: letter-spacing;
    margin-top: 10px
}

.cb-module-block .cb-article-small.cb-separated {
    padding-bottom: 20px;
    margin-bottom: 20px
}

.cb-module-block .cb-article-small:last-child {
    margin-bottom: 0;
    border-bottom: none !important;
    padding-bottom: 0
}

.cb-block-no-sb.cb-module-block {
    margin-bottom: 0
}

.cb-module-d img {
    width: 100%
}

.cb-module-d .cb-article:last-child {
    margin-bottom: 0;
    border-bottom: none !important
}

#cb-section-f .cb-slider img,
#cb-section-g .cb-slider img {
    min-width: 100%
}

#cb-section-f .cb-slider .cb-module-header,
#cb-section-g .cb-slider .cb-module-header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
    z-index: 2;
    text-align: center
}

#cb-section-f .cb-slider .cb-module-header .cb-module-title,
#cb-section-g .cb-slider .cb-module-header .cb-module-title {
    font-size: 14px;
    color: #fff;
    padding: 0
}

#cb-section-f .cb-slider .cb-module-header .cb-module-title:after,
#cb-section-g .cb-slider .cb-module-header .cb-module-title:after {
    display: none
}

#cb-section-f .cb-slider li,
#cb-section-g .cb-slider li {
    max-height: 800px
}

#cb-section-f .cb-slider .cb-byline,
#cb-section-g .cb-slider .cb-byline {
    font-size: 9px;
    letter-spacing: 0;
    margin-top: 5px
}

#cb-section-f .cb-slider .cb-meta-style-2 .cb-article-meta,
#cb-section-g .cb-slider .cb-meta-style-2 .cb-article-meta {
    padding: 0 10%
}

#cb-section-f .cb-slider .cb-grid-img,
#cb-section-g .cb-slider .cb-grid-img {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    transform: translatey(-50%)
}

#cb-section-f .cb-module-block,
#cb-section-g .cb-module-block {
    margin-bottom: 0
}

#cb-section-f .cb-module-custom,
#cb-section-g .cb-module-custom {
    padding: 20px 40px
}

#cb-section-a {
    padding-top: 3px
}

.cb-section-after-fs {
    padding-top: 30px !important
}

.cb-first-mod-pad {
    padding-top: 30px
}

.cb-blog-style-grid.cb-module-block {
    margin-bottom: 0
}

.cb-blog-style-roll #cb-blog-infinite-load,
.cb-blog-style-roll .cb-no-more-posts span {
    margin-top: 20px
}

.cb-separated,
.cb-module-block .cb-separated {
    padding-bottom: 20px;
    margin-bottom: 20px
}

.cb-no-last-underline.cb-separated:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

.cb-blog-style-roll .cb-module-d {
    clear: both
}

.cb-blog-style-roll .cb-grid-x .cb-grid-feature {
    -webkit-transform: none
}

.cb-img-fw a {
    display: block
}

.cb-img-fw a img {
    -webkit-transition: .35s opacity;
    -transition: .35s opacity;
    transition: .35s opacity
}

.cb-img-above-meta .cb-meta .cb-post-title {
    margin-top: 20px
}

.cb-module-half {
    margin-bottom: 60px
}

.cb-box .cb-module-title {
    margin: 0 0 5px;
    text-transform: uppercase;
    color: #aeaeae;
    font-size: 10px
}

.cb-a-medium,
.cb-a-large {
    height: auto;
    width: 100%
}

.cb-a-square,
.cb-a-medium,
.cb-a-large {
    text-align: center;
    height: auto
}

.cb-slider {
    position: relative;
    padding: 0
}

.cb-slider .slides {
    margin: 0
}

.cb-slider .slides>li {
    display: none;
    position: relative
}

.cb-slider .slides li .wp-post-image {
    min-width: 100%
}

.cb-slider .slides .cb-byline,
.cb-slider .slides .cb-byline a {
    color: #fff
}

.cb-slider ul {
    margin: 0
}

.cb-slider .flex-control-paging {
    display: none
}

.cb-slider .cb-slider-single .slides>li {
    display: block
}

.cb-slider-1 .slides li .cb-meta .cb-post-title {
    font-size: 14px
}

.cb-slider-2 .slides li {
    float: left;
    width: 100%;
    position: relative
}

.cb-slider-2 .slides li .cb-meta .cb-byline {
    margin: 0
}

.cb-slider-2 .slides li h4 {
    margin: 0
}

.cb-slider-2 .slides li img {
    width: 100%
}

.cb-slider-2 .slides .cb-no-1 {
    margin-right: 3px
}

.cb-slider-2 .slides .cb-no-2 {
    margin-right: 3px
}

.cb-slider-3 .slides li {
    margin-right: 3px
}

.cb-slider-3 .slides li .cb-meta .cb-post-title {
    font-size: 16px
}

.cb-module-dark {
    background: #161616
}

.cb-module-dark .cb-module-title {
    color: #f2f2f2
}

.cb-module-block-fs {
    padding-left: 60px;
    padding-right: 60px
}

.cb-section-fs .cb-grid-3 .cb-m {
    height: 220px
}

.cb-section-fs .cb-grid-3 .cb-m .cb-byline {
    display: block
}

.cb-relative {
    position: relative
}

.cb-recent-slider.cb-slider-1 {
    padding-bottom: 0;
    border-bottom: 0
}

.cb-recent-slider.cb-slider-1 .slides li {
    position: static
}

.cb-recent-slider.cb-slider-1 .slides li .cb-meta {
    text-align: center
}

.cb-recent-slider.cb-slider-1 .slides li .cb-meta .cb-post-title {
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1.2
}

.cb-recent-slider.cb-slider-1 .flex-direction-nav li a i {
    font-size: 20px
}

.cb-style-1 .cb-meta {
    text-align: center
}

.cb-style-1 .cb-meta .cb-post-title {
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase
}

.cb-style-1 .cb-meta .cb-byline {
    color: #777
}

.cb-style-1 .cb-mask {
    line-height: 0;
    margin-bottom: 15px;
    background: #000
}

.cb-style-1 .cb-mask img {
    min-width: 100%
}

.cb-meta-style-1 .cb-grid-img img,
.cb-meta-style-5 .cb-grid-img img {
    opacity: 1
}

.cb-meta-style-1 .cb-article-meta,
.cb-meta-style-5 .cb-article-meta {
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    -webkit-transition: background .35s;
    -transition: background .35s;
    transition: background .35s
}

.cb-meta-style-1 .cb-article-meta h2,
.cb-meta-style-5 .cb-article-meta h2 {
    margin: 0 0 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    line-height: 1.2
}

.cb-meta-style-1 .cb-article-meta h2 a,
.cb-meta-style-5 .cb-article-meta h2 a {
    color: #fff
}

.cb-meta-style-1 .cb-article-meta .cb-byline,
.cb-meta-style-5 .cb-article-meta .cb-byline {
    margin: 0
}

.cb-meta-style-5 .cb-article-meta {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 20px 20px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(100%, rgba(0, 0, 0, 0.65)));
    background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.65) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0)
}

.cb-grid-x .cb-grid-feature.cb-meta-style-1:hover img {
    opacity: 1
}

.cb-meta-style-1.cb-s .cb-article-meta {
    padding: 15px 20px
}

.cb-meta-style-1.cb-s .cb-article-meta h2 {
    font-size: 18px
}

.cb-meta-style-1.cb-s .cb-article-meta .cb-byline {
    font-size: 10px
}

.cb-meta-style-2 {
    position: relative
}

.cb-meta-style-2 .cb-article-meta {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 0 20px
}

.cb-meta-style-2 .cb-article-meta h2 {
    margin: 0 0 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 1.3
}

.cb-meta-style-2 .cb-article-meta h2 a {
    color: #fff
}

.cb-meta-style-2 .cb-article-meta .cb-byline {
    margin: 0
}

.cb-meta-style-1.cb-s.cb-meta-style-3 .cb-article-meta {
    padding: 20px 15px
}

.cb-meta-style-3 .cb-article-meta {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(100%, rgba(0, 0, 0, 0.65)));
    background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.65) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0)
}

.cb-meta-style-4 {
    position: relative
}

.cb-meta-style-4 .cb-article-meta {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 95%;
    padding: 10px
}

.cb-meta-style-4 .cb-article-meta h2 {
    margin: 0 0 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 1.3
}

.cb-meta-style-4 .cb-article-meta h2 a {
    color: #fff
}

.cb-meta-style-4 .cb-article-meta .cb-byline {
    margin: 0
}

.cb-meta-style-4.cb-s .cb-article-meta {
    padding: 10px;
    width: 95%
}

.cb-reviews-widget .cb-article-small {
    margin-bottom: 20px
}

.cb-reviews-widget .cb-article-small .cb-mask {
    float: left;
    margin-right: 30px;
    display: block;
    line-height: 0
}

.cb-reviews-widget .cb-article-small .cb-post-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0
}

.widget_tag_cloud a,
.tags-title,
.cb-tags a,
.bbp-topic-tags a {
    padding: 5px 10px;
    font-weight: 700;
    font-size: 9px !important;
    display: inline-block;
    margin: 0 10px 10px 0;
    letter-spacing: 2px;
    text-transform: uppercase
}

.instagram-pics {
    width: calc(100% + 4px);
    list-style-type: none;
    margin: 0
}

.instagram-pics li {
    position: relative;
    overflow: hidden;
    float: left;
    width: 33.33333%;
    border-right: 4px solid transparent;
    line-height: 0;
    margin: 0 0 4px
}

.instagram-pics li a {
    display: block
}

.instagram-pics li img {
    width: 100%
}

.fb-like-box {
    min-height: 250px
}

.cb-google-follow-widget>div {
    min-height: 106px
}

.widget_categories ul {
    margin: 15px 0;
    list-style-type: circle;
    list-style-position: inside
}

.widget_categories ul li ol,
.widget_categories ul li ul {
    margin: 0 0 0 20px
}

.widget_nav_menu ul,
.widget_rss ul,
.widget_recent_entries ul,
.widget_recent_comments ul,
.widget_meta ul,
.widget_categories ul,
.widget_archive ul,
.widget_pages ul {
    list-style-type: disc;
    list-style-position: inside
}

.widget_search .cb-search {
    margin-top: 0;
    position: relative;
    color: #161616;
    font-weight: 700
}

.widget_search .cb-search .cb-search-field {
    width: 100%;
    font-size: 16px;
    padding: 10px 80px 10px 20px;
    height: 60px;
    outline: 0;
    background: #e4e4e4;
    border: 0
}

.widget_search .cb-search .cb-search-submit {
    background: transparent;
    font-size: 18px;
    border: 0;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-appearance: none;
    outline: 0
}

.widget_search .cb-search .cb-search-submit:hover {
    color: #555
}

.widget_search ::-webkit-input-placeholder {
    color: #161616
}

.widget_search :-moz-placeholder {
    color: #161616
}

.widget_search ::-moz-placeholder {
    color: #161616
}

.widget_search :-ms-input-placeholder {
    color: #161616
}

.cb-remember-me label {
    vertical-align: middle
}

.cb-remember-me input {
    -webkit-appearance: checkbox !important;
    height: auto !important;
    line-height: 1 !important;
    margin-left: 5px;
    vertical-align: middle
}

.widget_loginwithajaxwidget .cb-modal-title,
.widget_loginwithajaxwidget .cb-close-m,
.widget_loginwithajaxwidget .lwa-remember,
.widget_loginwithajaxwidget .cb-lwa-logo {
    display: none
}

.cb-widget-subtitle {
    position: relative;
    top: -25px;
    margin-bottom: 5px;
    width: 100%;
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #777
}

.cb-social-media-icons.cb-white a {
    background-image: url(../cb-widget-social-media-light.html)
}

#calendar_wrap {
    background-color: #e4e4e4
}

#calendar_wrap td {
    padding: 10px;
    text-align: center
}

#wp-calendar {
    width: 100%;
    font-size: 12px
}

#wp-calendar caption {
    padding: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700
}

#wp-calendar thead,
#wp-calendar tfoot {
    background-color: #e4e4e4
}

#wp-calendar thead tr th {
    padding: 5px 0
}

#wp-calendar a {
    text-decoration: underline
}

.cb-social-media-icons.cb-colors a {
    background-image: url(../cb-widget-social-media-colors.html)
}

.cb-social-media-icons.cb-colors .cb-twitter {
    background-position: -64px 0;
    width: 51px
}

.cb-social-media-icons.cb-colors .cb-youtube {
    background-position: -191px 0;
    width: 51px
}

.cb-social-media-icons {
    text-align: center
}

.cb-social-media-icons a {
    display: inline-block;
    width: 51px;
    height: 50px;
    margin: 0 25px 25px;
    background-repeat: no-repeat;
    -webkit-transition: all .2s;
    -transition: all .2s;
    transition: all .2s;
    position: relative;
    top: 0
}

.cb-social-media-icons a:hover {
    top: -5px
}

.cb-social-media-icons .cb-facebook {
    background-position: 0 0
}

.cb-social-media-icons .cb-instagram {
    background-position: -129px 0
}

.cb-social-media-icons .cb-twitter {
    background-position: -60px 0;
    width: 62px
}

.cb-social-media-icons .cb-youtube {
    background-position: -187px 0;
    width: 71px
}

.cb-social-media-icons.cb-white.cb-small a {
    background-image: url(../cb-widget-social-media-light-30px.html)
}

.cb-social-media-icons.cb-white.cb-small a {
    width: 31px;
    height: 30px;
    margin: 0 20px
}

.cb-social-media-icons.cb-white.cb-small a:hover {
    top: -2px
}

.cb-social-media-icons.cb-white.cb-small .cb-facebook {
    background-position: 0 0
}

.cb-social-media-icons.cb-white.cb-small .cb-twitter {
    background-position: -37px 0;
    width: 35px
}

.cb-social-media-icons.cb-white.cb-small .cb-instagram {
    background-position: -78px 0
}

.cb-social-media-icons.cb-white.cb-small .cb-youtube {
    background-position: -113px 0;
    width: 42px
}

.cb-sidebar .cb-social-media-icons {
    text-align: left
}

.cb-sidebar .cb-social-media-icons a {
    margin: 0 15px 10px 0
}

.cb-small-squares-widget {
    text-align: center
}

.cb-small-squares-widget li {
    display: inline-block;
    margin: 5px
}

.cb-small-squares-widget li p {
    margin: 0
}

.cb-multi-widget .tabberlive .tabbertabhide,
.cb-multi-widget .tabber {
    display: none
}

.cb-multi-widget .tabbernav li {
    width: 33.33333333%;
    font-size: 16px;
    padding: 3px
}

.cb-multi-widget .cb-tab-1 li {
    width: 100%;
    font-size: 20px
}

.cb-multi-widget .cb-tab-2 li {
    width: 50%;
    font-size: 18px;
    padding: 3px 5px
}

.cb-multi-widget .cb-tab-3 li {
    width: 33.333333333333%;
    font-size: 14px;
    padding: 3px
}

.cb-multi-widget .cb-tab-4 li {
    width: 25%;
    font-size: 12px;
    padding: 5px 2px
}

.cb-multi-widget .tabbernav {
    margin: 0 0 30px 0
}

.cb-multi-widget .tabbernav ul {
    margin: 0
}

.cb-multi-widget .tabbernav li {
    text-align: center;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px;
    line-height: 1.2
}

.cb-multi-widget .tabbernav li a {
    display: inline-block
}

.cb-multi-widget .tabbernav .tabberactive a {
    padding-bottom: 10px
}

.cb-multi-widget .tabberlive .tabbertab ul {
    margin: 0
}

.cb-body-light .cb-post-meta .cb-element a,
.cb-body-light .cb-post-meta .cb-element>span {
    color: #868686;
    background: #e9e9e9;
}

.cb-multi-widget .tabberlive .tabbertab h2,
.cb-multi-widget .tabberlive .tabbertab h3 {
    display: none
}

#cb-footer .cb-slider .cb-post-title {
    margin-top: 10px
}

#cb-footer #cb-widgets {
    overflow: hidden;
    padding: 30px 0 50px
}

#cb-footer #cb-widgets>div {
    float: left;
    padding-top: 10px
}

#cb-footer #cb-widgets .cb-125-ads li {
    margin: 0 10px 15px
}

#cb-footer #cb-widgets .cb-single-image-widget {
    padding-bottom: 0;
    text-align: center
}

#cb-footer #cb-widgets .cb-single-image-widget img {
    padding: 10px 0 20px 0
}

#cb-footer #cb-widgets .lwa .cb-header {
    display: none
}

#cb-footer #cb-widgets .lwa-form,
#cb-footer #cb-widgets .lwa-remember,
#cb-footer #cb-widgets .lwa-register-form,
#cb-footer #cb-widgets .lwa.cb-logged-in {
    padding: 0
}

#cb-footer #cb-widgets .lwa .cb-form-body .cb-username,
#cb-footer #cb-widgets .cb-join-modal .cb-form-body .cb-username {
    margin: 0 0 30px 0
}

#cb-footer #cb-widgets .lwa .cb-form-body .cb-password,
#cb-footer #cb-widgets .cb-join-modal .cb-form-body .cb-password {
    margin: 0 0 30px 0
}

#cb-footer #cb-widgets .lwa .cb-form-body .cb-email,
#cb-footer #cb-widgets .cb-join-modal .cb-form-body .cb-email {
    margin: 0 0 30px 0
}

#cb-footer #cb-widgets .widget_tag_cloud a {
    background: #242424
}

#cb-footer .cb-column {
    margin-bottom: -700px;
    padding-bottom: 700px;
    padding-right: 10px;
    padding-left: 10px
}

#cb-footer .cb-footer-x .cb-one {
    width: 100%
}

#cb-footer .cb-footer-x .cb-two {
    width: 100%
}

#cb-footer .cb-footer-x .cb-three {
    width: 100%
}

#cb-footer .cb-footer-x .cb-footer-widget {
    margin: 0 10px;
    padding-bottom: 20px
}

#cb-footer .cb-under-footer .cb-footer-widget {
    overflow: hidden
}

#cb-footer .cb-footer-lower {
    padding: 40px 20px;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase
}

#cb-footer .cb-footer-lower .cb-copyright {
    width: 100%;
    margin-bottom: 50px
}

#cb-footer .cb-footer-lower .cb-footer-links {
    width: 100%;
    margin-bottom: 15px
}

#cb-footer .cb-footer-lower .cb-footer-links ul {
    margin: 0
}

#cb-footer .cb-footer-lower .cb-footer-links ul li {
    display: inline-block;
    margin: 0 3px
}

#cb-footer .cb-footer-lower .cb-footer-links ul li .sub-menu {
    display: none
}

#cb-footer .cb-footer-lower .cb-footer-links ul li:before {
    content: '/';
    margin: 0 10px
}

#cb-footer .cb-footer-lower .cb-footer-links ul li:nth-of-type(1):before {
    content: ' '
}

#cb-footer-logo {
    line-height: 0;
    margin-bottom: 50px
}

.cb-to-top {
    margin: 30px auto;
    font-size: 30px;
    letter-spacing: 0
}

.cb-to-top a i {
    height: 60px;
    width: 60px;
    display: inline-block;
    padding-top: 10px;
    top: 0;
    position: relative;
    -webkit-transition: all .2s;
    -transition: all .2s;
    transition: all .2s
}

.cb-to-top a i:hover {
    top: -5px
}

.cb-byline {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    width: 100%;
    display: block;
    margin: 0 0 15px;
    text-transform: uppercase;
    color: #777
}

.cb-byline a {
    color: #777
}

.cb-byline span {
    vertical-align: middle
}

.cb-byline .cb-separator {
    margin: 0 8px;
    font-size: 8px;
    line-height: 1
}

.cb-byline img {
    margin: 0 10px 0 0;
    position: relative;
    height: auto !important;
    border-radius: 50%;
    vertical-align: middle
}

.cb-byline .cb-avatar {
    margin-right: 15px;
    display: inline-block;
    height: 25px
}

.cb-byline .price {
    font-size: 12px
}

.cb-byline .price ins {
    color: #d91e0a
}

.cb-like-count {
    -webkit-transition: .35s opacity linear;
    -transition: .35s opacity linear;
    transition: .35s opacity linear;
    display: inline-block
}

.cb-like-count .cb-like-icon {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 6px
}

.cb-like-count .cb-like-icon i {
    width: 100%;
    text-align: center;
    -webkit-transition: .35s opacity ease-in-out;
    -transition: .35s opacity ease-in-out;
    transition: .35s opacity ease-in-out;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0
}

.cb-lkd-0 .cb-icon-full {
    opacity: 0
}

.cb-lkd-0 .cb-icon-empty {
    opacity: 1
}

.cb-lkd-0:hover {
    cursor: pointer
}

.cb-lkd-0:hover .cb-icon-full {
    opacity: 1
}

.cb-lkd .cb-icon-full {
    opacity: 1
}

.cb-lkd .cb-icon-empty {
    opacity: 0
}

.cb-byline.cb-byline-short {
    margin: 10px 0 0
}

.cb-byline-review .cb-score {
    float: right;
    color: #5a5a5a;
    font-size: 14px
}

.cb-byline-review .cb-score-bar {
    width: 100%;
    height: 15px;
    background: #f2f2f2;
    margin-top: 5px;
    clear: both
}

.cb-byline-review .cb-score-overlay {
    height: 100%;
    float: left
}

.cb-sidebar .cb-byline-review .cb-score-bar {
    background: #fff
}

.cb-post-meta {
    font-size: 8px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 15px 0 0 0;
    text-transform: uppercase;
    float: left
}

.cb-post-meta .cb-element a,
.cb-post-meta .cb-element>span,
.cb-post-meta .cb-views {
    padding: 5px 7px;
    display: inline-block;
    margin: 5px 5px 0 0
}

.cb-fis-b-background-slideshow .backstretch {
    position: absolute !important;
    background: #000
}

.cb-fis-b-background-slideshow .backstretch img {
    opacity: .6
}

.cb-menu-light.cb-fis-big-border #cb-nav-bar .cb-nav-bar-wrap {
    border-bottom: 3px solid #161616
}

.cb-menu-light.cb-fis-big-border #cb-nav-bar .cb-main-nav {
    border-bottom: 0
}

.cb-fis-b-off .cb-fis-block-video .cb-meta {
    padding-top: 0
}

.cb-fis-b-off .cb-review-top {
    margin-top: 30px
}

.cb-al-post {
    position: relative
}

.cb-al-post .cb-vertical-down {
    display: none !important
}

.cb-fis {
    position: relative;
    z-index: 1
}

.cb-fis p {
    background: transparent;
    padding: 20px;
    margin: 0
}

.cb-fis h1 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 16px;
    color: #161616
}

.cb-fis .cb-byline {
    margin-top: 10px;
    font-size: 8px
}

.cb-fis .cb-byline .cb-like-count {
    -webkit-backface-visibility: hidden;
    position: relative;
    top: -2px
}

.cb-fis .cb-byline .cb-like-count .cb-like-icon {
    height: 13px;
    width: 14px;
    margin-right: 5px
}

.cb-fis .cb-vertical-down {
    position: absolute;
    bottom: 40px;
    margin: 0 0 0 -0.5em;
    text-align: center;
    z-index: 20;
    font-size: 40px;
    color: #fff;
    left: 50%;
    width: 40px;
    height: 40px;
    line-height: 1
}

.cb-fis .cb-fis-bg {
    background-size: cover;
    height: 100%;
    opacity: 0;
    background-position: 50% 50%;
    -webkit-transition: .5s ease-in-out opacity;
    transition: .5s ease-in-out opacity;
    position: absolute;
    z-index: -1;
    width: 100%;
    top: 0
}

.cb-fis .cb-fis-bg-ldd {
    opacity: .6
}

.cb-fis-big .cb-meta {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    padding: 0 20px
}

.cb-fis-big .cb-meta h1 {
    color: #fff
}

.cb-fis-big .cb-meta .cb-byline {
    color: #fff
}

.cb-fis-big .cb-meta .cb-byline a {
    color: #fff
}

.cb-fis-big .cb-meta .cb-media-icon {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 10px
}

.cb-fis-big .cb-no-mt .cb-media-icon {
    margin-top: -30px
}

.cb-fis-title-bg {
    padding: 10px
}

.cb-fis-off .cb-entry-header h1 {
    margin: 0
}

.cb-slideshow-wrap .cb-fis-bg {
    opacity: .6
}

.cb-fis-block-slideshow .cb-meta {
    position: absolute
}

.cb-fis-with-bg {
    background: #000
}

.cb-fis-block-standard .cb-meta {
    margin: 0 0 30px
}

.cb-fis-block-standard .cb-mask {
    margin: 0 0 30px 0;
    line-height: 0
}

.cb-fis-block-standard .cb-mask img {
    width: 100%
}

.cb-fis-block-standard .cb-mask #cb-video-data {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    padding: 0 20px
}

.cb-fis-block-standard .cb-post-meta {
    margin: 5px 0 0
}

#cb-parallax-bg {
    position: absolute;
    background-color: #161616;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden
}

#cb-par-wrap {
    position: absolute;
    overflow: hidden;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%
}

#cb-par-wrap img {
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    min-width: 50%;
    min-height: 50%;
    max-width: none;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.cb-fis-block-site-width {
    height: 200px;
    width: 100%;
    margin-top: 3px
}

.cb-sw-menu-fw .cb-fis-block-site-width {
    margin-top: 30px
}

.cb-fis-block-screen-width {
    margin-top: 0
}

.cb-fis-block-video iframe {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.cb-fis-block-video .cb-video-frame,
.cb-fis-block-video .cb-video-frame-wrap {
    position: relative;
    padding-top: 56%;
    margin-bottom: 30px
}

.cb-fis-block-video audio {
    width: 100%;
    display: block
}

.cb-fis-block-video audio::-webkit-media-controls-enclosure {
    max-width: 100%
}

.cb-fis-block-video .cb-meta {
    padding: 10px
}

.cb-fis-b-standard .cb-fis-block-video .cb-meta {
    padding: 10px
}

.cb-credit-line {
    font-size: 12px;
    position: absolute;
    right: 0;
    bottom: 1px;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    line-height: 1.2
}

.cb-credit-line i {
    margin-right: 3px
}

.cb-credit-line a {
    color: #fff
}

.cb-credit-line a:hover {
    text-decoration: underline
}

.cb-post-entry embed {
    max-width: 100%
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: inherit
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    height: inherit
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    background: #000;
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    height: inherit;
    position: relative
}

.slick-slide:focus {
    outline: 0
}

[dir='rtl'] .slick-slide {
    float: right
}

.slick-slide img {
    display: block;
    height: calc(100vh + 1px);
    width: auto;
    opacity: 0
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.cb-slider-hidden img,
.cb-slider-hidden span {
    opacity: 0
}

.cb-gallery-post-wrap {
    height: 100vh;
    background: #000
}

.cb-gallery-post-wrap .cb-caption {
    bottom: 0;
    font-size: 14px;
    right: 0;
    padding: 5px 10px;
    position: absolute;
    background: #fff;
    background: rgba(255, 255, 255, 0.8);
    max-width: 80%;
    color: #464646;
    opacity: 0
}

.cb-gallery-post-wrap .cb-meta {
    visibility: visible;
    -webkit-transition: opacity .35s ease-in-out, visibility .35s ease-in-out;
    -transition: opacity .35s ease-in-out, visibility .35s ease-in-out;
    transition: opacity .35s ease-in-out, visibility .35s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80%
}

.cb-gallery-post-wrap img {
    -webkit-transition: .5s ease-in-out opacity, 0.5s transform ease-in-out;
    -transition: .5s ease-in-out opacity, 0.5s transform ease-in-out;
    -webkit-transition: .5s ease-in-out opacity, 0.5s -webkit-transform ease-in-out;
    transition: .5s ease-in-out opacity, 0.5s -webkit-transform ease-in-out;
    transition: .5s ease-in-out opacity, 0.5s transform ease-in-out;
    transition: .5s ease-in-out opacity, 0.5s transform ease-in-out, 0.5s -webkit-transform ease-in-out;
    height: inherit
}

.cb-gallery-post-wrap .cb-slider-image {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent
}

.cb-gallery-post-wrap .slick-initialized article {
    display: block
}

.cb-arrows-hover .cb-gallery-post-wrap .cb-slider-ldd img {
    opacity: 1 !important
}

.cb-arrows-hover .cb-gallery-post-wrap .cb-meta {
    visibility: hidden;
    opacity: 0
}

.slick-slider {
    height: inherit
}

.slick-slider .cb-slider-ldd {
    border-left-color: #fff;
    border-right-color: #fff
}

.slick-slider .cb-slider-ldd .cb-caption {
    opacity: 1
}

.slick-slider .cb-slider-ldd img {
    opacity: .7
}

.cb-sw-tm-box .cb-gallery-post-wrap,
.cb-sw-tm-box .cb-fis-block-slideshow,
.cb-sw-header-box .cb-gallery-post-wrap,
.cb-sw-header-box .cb-fis-block-slideshow {
    position: static
}

.cb-sw-tm-box #cb-gallery-post,
.cb-sw-tm-box .cb-slideshow-wrap,
.cb-sw-header-box #cb-gallery-post,
.cb-sw-header-box .cb-slideshow-wrap {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%
}

.cb-video-overlay-icon {
    color: #161616;
    background: #fff;
    background: rgba(255, 255, 255, 0.7);
    height: 60px;
    width: 60px;
    line-height: 60px;
    display: inline-block
}

.cb-module-block .format-video .cb-mask a:after,
.cb-module-block .format-audio .cb-mask a:after,
.cb-module-block .format-gallery .cb-mask a:after {
    font-family: 'FontAwesome';
    color: #161616;
    background: #fff;
    background: rgba(255, 255, 255, 0.7);
    height: 60px;
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    line-height: 60px;
    border-radius: 50% 50%;
    margin-left: -30px;
    margin-top: -30px
}

.cb-module-block .format-video .cb-mask a:after,
.cb-module-block .format-audio .cb-mask a:after {
    content: '\f04b'
}

.cb-module-block .format-gallery .cb-mask a:after {
    content: '\f030'
}

.cb-module-block .cb-blog-style-e.format-video .cb-mask a:after,
.cb-module-block .cb-blog-style-e.format-audio .cb-mask a:after,
.cb-module-block .cb-blog-style-e.format-gallery .cb-mask a:after {
    display: none
}

.cb-b-video .cb-fis .cb-vertical-down,
.cb-b-audio .cb-fis .cb-vertical-down {
    display: none
}

.cb-widget-latest-articles .format-video .cb-mask a:after,
.cb-widget-latest-articles .format-audio .cb-mask a:after,
.cb-widget-latest-articles .format-gallery .cb-mask a:after,
.cb-widget-popular-posts .format-video .cb-mask a:after,
.cb-widget-popular-posts .format-audio .cb-mask a:after,
.cb-widget-popular-posts .format-gallery .cb-mask a:after {
    display: none
}

.cb-widget-latest-article .cb-article-big img {
    width: 100%
}

.cb-blog-style-d .wp-caption {
    max-width: 100%
}

.cb-article-footer .cb-title,
.cb-article-footer #reply-title {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px
}

.cb-article-footer .cb-title-header {
    font-size: 18px;
    margin: 0 0 30px;
    padding-bottom: 10px;
    display: inline-block
}

.cb-post-footer-block {
    margin: 0 0 60px
}

.cb-review-box {
    margin: 0 0 10px 0
}

.cb-review-box .cb-conclusion {
    margin: 0 0 20px 0
}

.cb-review-box .cb-review-title {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 0 20px 0;
    font-weight: 700
}

.cb-review-box .cb-bar {
    font-weight: 700;
    width: 100%;
    margin: 0 0 25px 0;
    position: relative;
    letter-spacing: 2px;
    font-size: 12px;
    float: left
}

.cb-review-box .cb-bar .cb-user-rating-wrap {
    width: 100%;
    position: relative
}

.cb-review-box .cb-bar .cb-user-rating-wrap .cb-votes-count {
    margin-left: 2px
}

.cb-review-box .cb-bar .cb-criteria-score {
    float: right;
    z-index: 5
}

.cb-review-box .cb-bar .cb-criteria {
    z-index: 5
}

.cb-review-box .cb-bar .cb-overlay {
    height: 15px;
    margin-top: 5px;
    display: block;
    width: 100%;
    background: #fff
}

.cb-review-box .cb-bar .cb-overlay span {
    height: 100%;
    display: block;
    -webkit-transition: 1.2s linear opacity;
    -transition: 1.2s linear opacity;
    transition: 1.2s linear opacity;
    opacity: 0
}

.cb-review-box .cb-bar .cb-overlay .cb-trigger {
    opacity: 1
}

.cb-review-box .cb-criteria-area .cb-bar:last-child {
    margin: 0 0 10px 0
}

.cb-review-box .cb-stars .cb-criteria {
    float: left
}

.cb-review-box .cb-stars .cb-overlay-stars {
    float: right;
    position: relative
}

.cb-review-box .cb-stars .cb-overlay-stars i {
    font-size: 20px;
    margin-left: 5px
}

.cb-review-box .cb-stars .cb-overlay-stars .cb-opacity {
    position: absolute;
    opacity: .75;
    top: 0;
    right: 0;
    height: 100%
}

.cb-review-box .cb-pros-cons-wrap {
    margin-right: 150px
}

.cb-review-box .cb-pros-cons {
    width: 50%;
    float: left;
    letter-spacing: 1px;
    padding-right: 10px
}

.cb-review-box .cb-pros-cons span {
    font-size: 12px;
    margin-bottom: 10px;
    color: #6a6a6a;
    display: block;
    font-weight: 700
}

.cb-review-box .cb-pros-cons .cb-pro:before {
    content: "+ "
}

.cb-review-box .cb-pros-cons .cb-con:before {
    content: "- "
}

.cb-review-box .cb-title {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 40px;
    height: 40px
}

.cb-review-box .cb-score-box {
    position: relative;
    float: right;
    width: 130px;
    min-height: 110px;
    border: 3px solid;
    font-weight: 700
}

.cb-review-box .cb-score-box>span {
    line-height: 1;
    width: 100%;
    display: block;
    text-align: center
}

.cb-review-box .cb-score-box .score {
    font-size: 50px;
    padding: 15px 0 0 0
}

.cb-review-box .cb-score-box .score span {
    font-size: .5em
}

.cb-review-box .cb-score-box .score-title {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 15px 0 0 0
}

.cb-review-box .cb-score-box .filling {
    top: 0;
    opacity: .7
}

.cb-review-box .cb-score-box .cb-overlay-stars {
    width: 100%;
    float: none;
    padding: 10px 0;
    max-width: 125px;
    margin: 0 auto
}

.cb-review-box .cb-score-box.cb-stars {
    height: auto
}

.cb-review-box .cb-review-area {
    margin-top: 5px;
    padding: 20px 10px
}

.cb-review-box .cb-summary-area.cb-review-area {
    margin-top: 0
}

.cb-review-box.cb-readers .cb-review-area {
    margin-top: 0
}

.cb-review-box.cb-readers .cb-review-title {
    margin: 0
}

.cb-review-box.cb-readers .cb-summary-area {
    padding-bottom: 0
}

.cb-img-fw a:hover img {
    opacity: 1
}

.commentlist .comment {
    display: inline-block;
    width: 100%;
    margin: 20px 0
}

.commentlist .comment .cb-comment-body .cb-gravatar-image {
    float: left;
    margin-right: 20px;
    line-height: 0
}

.commentlist .comment .cb-comment-body .comment-author {
    min-height: 80px
}

.commentlist .comment .cb-comment-body .comment-author .fn {
    font-style: normal;
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px
}

.commentlist .comment .cb-comment-body .comment-author time a {
    font-size: 12px
}

.commentlist .comment .cb-comment-body .comment_content p {
    margin: 5px 0
}

.commentlist .comment .cb-comment-body .comment-reply-link,
.commentlist .comment .cb-comment-body .comment-edit-link {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700
}

.commentlist .comment .cb-comment-body .alert p {
    margin: 15px 0;
    font-weight: 700;
    font-size: .6em;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    font-weight: 700
}

.commentlist .comment #respond {
    padding-left: 40px
}

.commentlist .comment .children {
    padding-left: 40px;
    margin: 20px 0 -20px 0
}

.commentlist #cancel-comment-reply-link {
    display: block
}

.commentlist article {
    padding-bottom: 30px
}

.comment-reply-title,
.cb-footer-title.cb-footer-title-sub {
    margin: 0 0 20px 0
}

#commentform input,
#commentform textarea {
    width: 100%;
    border: 0;
    padding: 20px;
    -webkit-transition: background .35s;
    -transition: background .35s;
    transition: background .35s
}

#commentform input:focus,
#commentform textarea:focus {
    outline-width: 0
}

#commentform textarea {
    height: 320px
}

#commentform #submit,
#commentform label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    display: block;
    font-weight: 700
}

#commentform #submit {
    font-size: 12px;
    width: auto;
    padding: 10px 20px;
    margin: 50px 0;
    -webkit-transition: background .35s;
    -transition: background .35s;
    transition: background .35s
}

.cb-social-sharing {
    padding: 40px
}

.cb-social-sharing .cb-facebook {
    position: relative;
    top: -5px
}

.cb-social-sharing .cb-sharing-button {
    margin-left: 30px;
    display: inline-block;
    margin-bottom: 10px
}

.cb-social-sharing .cb-twitter {
    width: 93px
}

.cb-social-sharing .cb-sharing-buttons {
    float: right;
    padding-top: 5px
}

.cb-social-sharing .cb-title {
    float: left;
    font-size: 20px
}

.cb-social-sharing.cb-text-buttons {
    letter-spacing: 1px;
    text-align: center
}

.cb-social-sharing.cb-text-buttons a {
    margin: 5px 15px;
    display: inline-block
}

.cb-social-sharing.cb-text-buttons .cb-sharing-buttons,
.cb-social-sharing.cb-text-buttons .cb-title {
    float: none
}

.cb-social-sharing.cb-on .cb-twitter {
    margin-left: 0
}

.cb-social-sharing.cb-color-buttons {
    padding: 40px 0 20px
}

.cb-social-sharing.cb-color-buttons a {
    padding: 7px 0;
    width: 130px;
    text-align: center;
    text-transform: uppercase;
    margin-right: 25px;
    color: #fff;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 25px
}

.cb-social-sharing.cb-color-buttons .cb-social-fb {
    background: #3b5998
}

.cb-social-sharing.cb-color-buttons .cb-social-tw {
    background: #1da1f2
}

.cb-social-sharing.cb-color-buttons .cb-social-pin {
    background: #bd081c
}

.cb-social-sharing.cb-color-buttons .cb-social-go {
    background: #dc4e41
}

.cb-social-sharing.cb-color-buttons .cb-social-su {
    background: #fd2212
}

.cb-social-sharing.cb-color-buttons .cb-social-em {
    background: #222;
    margin-right: 0
}

.cb-separation {
    display: block;
    background: #ddd;
    height: 2px;
    width: 100%;
    margin: 0 0 40px 0
}

.cb-next-previous {
    text-align: center;
    padding: 10px
}

.cb-next-previous .cb-next-previous-block {
    width: 100%;
    line-height: 1.2;
    font-weight: 700
}

.cb-next-previous .cb-next-previous-block .cb-read-title {
    text-transform: uppercase;
    font-size: 10px;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 2px
}

.cb-next-previous .cb-next-previous-block .cb-read-title a {
    color: #999
}

.cb-next-previous .cb-next-post {
    padding-top: 10px
}

.cb-next-previous .cb-next-post i {
    padding-left: 20px;
    float: right
}

.cb-next-previous .cb-previous-post i {
    padding-right: 20px;
    float: left
}

.cb-next-previous i {
    font-size: 40px;
    padding-bottom: 500px;
    margin-bottom: -500px
}

.cb-post-large {
    width: 100%
}

.cb-breadcrumbs {
    width: 100%;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0 0 20px 0
}

.cb-breadcrumbs div {
    display: inline-block
}

.cb-breadcrumbs i {
    margin: 0 10px;
    color: #161616
}

.cb-breadcrumbs.cb-padding-off {
    width: 100%
}

#cb-related-posts-block .slides .cb-no-1 {
    clear: left
}

#cb-related-posts-block .slides li {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 20px
}

#cb-related-posts-block .slides li .cb-meta {
    text-align: left;
    padding-left: 3px
}

#cb-related-posts-block .slides li h4 {
    margin: 0
}

#cb-related-posts-block #cb-related-posts {
    position: relative
}

#cb-related-posts-block #cb-related-posts .flex-viewport .cb-no-1 {
    clear: none
}

#cb-related-posts-block #cb-related-posts .slides li {
    display: none;
    margin-bottom: 0;
    margin-right: 3px
}

.cb-arrows-tr .flex-direction-nav {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    z-index: 20
}

.cb-arrows-tr .flex-direction-nav i {
    font-size: 30px;
    padding: 10px 20px
}

.cb-arrows-tr .flex-direction-nav li {
    float: left
}

.cb-arrows-tr .flex-direction-nav a {
    color: #161616;
    background: #fff;
    background: rgba(255, 255, 255, 0.8);
    float: left
}

.cb-arrows-tr .flex-disabled {
    opacity: .2
}

.cb-arrows-sides .flex-direction-nav li a {
    color: #fff;
    display: inline-block;
    position: absolute;
    z-index: 20;
    top: 50%;
    line-height: 1;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 9px 20px;
    border: 3px solid #fff;
    -webkit-transition: all .35s;
    -transition: all .35s;
    transition: all .35s;
    margin: 0 10px;
    color: #fff;
    background: transparent
}

.cb-arrows-sides .flex-direction-nav li a i {
    font-size: 30px
}

.cb-arrows-sides .flex-direction-nav li a:hover {
    color: #161616;
    background: #fff
}

.cb-arrows-sides .flex-direction-nav li .flex-next {
    right: 0
}

.cb-arrows-sides .flex-direction-nav li .flex-prev {
    left: 0
}

.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    height: 60px;
    border: 0;
    background: #e1e1e1;
    padding: 20px;
    color: #858585;
    -webkit-transition: background .35s;
    -transition: background .35s;
    transition: background .35s
}

.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
    background: #eaeaea;
    outline: 0
}

.wpcf7-form-control.wpcf7-text:invalid,
.wpcf7-form-control.wpcf7-textarea:invalid {
    outline: 0;
    background-color: #f6e7eb;
    -ms-box-shadow: none;
    box-shadow: none
}

.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    height: 320px
}

.wpcf7-form p {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #4d4d4d;
    display: block;
    font-weight: 700;
    margin: 40px 0
}

.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
    background-color: #f2f2f2
}

.wpcf7-form-control-wrap {
    display: block;
    margin: 10px 0
}

.wpcf7-submit {
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    display: block;
    font-weight: 700;
    font-size: 12px;
    width: auto;
    padding: 10px 20px;
    margin: 50px 0;
    -webkit-transition: background .35s;
    -transition: background .35s;
    transition: background .35s
}

.wpcf7-response-output {
    font-size: 20px
}

#post-not-found {
    text-align: center
}

#post-not-found .cb-search {
    margin: 40px 0 200px
}

#post-not-found .cb-search .cb-search-field {
    margin: 0;
    height: 80px;
    font-size: 18px
}

#post-not-found .cb-search .cb-search-submit {
    height: 80px;
    width: 80px
}

.cb-404-page .cb-404-header {
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin: 40px 0;
    font-weight: 700
}

.cb-404-page h1 {
    margin: 5px 0
}

.cb-404-page p {
    color: #828282;
    margin: 0;
    font-size: 18px;
    letter-spacing: 1px
}

.cb-review-ext-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    font-weight: 700
}

.cb-review-ext-box .cb-bg,
.cb-review-ext-box .cb-score {
    display: block
}

.cb-review-ext-box .cb-percent-sign {
    font-size: 12px;
    position: relative
}

.cb-review-ext-box .cb-score {
    font-size: 16px;
    position: relative;
    letter-spacing: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.cb-review-ext-box .cb-bg {
    opacity: .9;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute
}

.cb-review-ext-box.cb-small-box {
    width: 20px;
    height: 20px;
    top: 0;
    right: 0
}

.cb-review-ext-box.cb-small-box .cb-percent-sign {
    font-size: 10px;
    margin-left: 1px
}

.cb-review-ext-box.cb-small-box .cb-score {
    font-size: 12px;
    line-height: 20px
}

.cb-author-details.cb-sidebar {
    text-align: center
}

.cb-author-details.cb-sidebar a {
    color: #161616
}

.cb-author-details.cb-sidebar h3 {
    margin: 30px 0 0
}

.cb-author-details.cb-sidebar h3 a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px
}

.cb-author-details.cb-sidebar .cb-mask {
    line-height: 0
}

.cb-author-details.cb-sidebar .cb-mask img {
    border-radius: 50%;
    -webkit-transition: opacity .35s;
    -transition: opacity .35s;
    transition: opacity .35s
}

.cb-author-details.cb-sidebar .cb-mask img:hover {
    opacity: .7
}

.cb-author-details.cb-sidebar .cb-author-bio,
.cb-author-details.cb-sidebar .cb-author-page-contact {
    margin: 20px 0 0 0
}

.cb-author-details.cb-sidebar a i {
    font-size: 20px;
    margin: 0 10px
}

.cb-author-details.cb-sidebar .cb-author-position {
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 16px
}

.page-template .cb-author-details.cb-sidebar {
    margin-top: 0
}

#cb-author-box {
    padding: 30px 20px
}

#cb-author-box .cb-mask {
    display: none;
    float: left;
    overflow: hidden;
    line-height: 0
}

#cb-author-box .cb-mask img {
    margin: 0;
    border-radius: 50%;
    -webkit-transition: opacity .35s;
    -transition: opacity .35s;
    transition: opacity .35s
}

#cb-author-box .cb-mask img:hover {
    opacity: .7
}

#cb-author-box .cb-title {
    font-size: 18px;
    letter-spacing: 3px
}

#cb-author-box .cb-meta {
    overflow: hidden
}

#cb-author-box a {
    color: #161616
}

#cb-author-box a i {
    font-size: 20px;
    margin-right: 20px
}

#cb-author-box .cb-author-position {
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.5;
    text-transform: uppercase
}

.woocommerce .single_add_to_cart_button:before {
    font-size: 18px;
    margin-right: 10px;
    content: "\f07a";
    font-family: FontAwesome
}

div.images {
    margin-bottom: 2em
}

div.images img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: none
}

div.images div.thumbnails {
    padding-top: 1em
}

div.images.woocommerce-product-gallery {
    position: relative
}

div.images .woocommerce-product-gallery__wrapper {
    -webkit-transition: all cubic-bezier(0.795, -0.035, 0, 1) .5s;
    transition: all cubic-bezier(0.795, -0.035, 0, 1) .5s
}

div.images .woocommerce-product-gallery__image:nth-child(n+2) {
    width: 25%;
    display: inline-block
}

div.images .woocommerce-product-gallery__trigger {
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 2em;
    z-index: 9;
    width: 36px;
    height: 36px;
    background: #fff;
    text-indent: -9999px;
    border-radius: 100%;
    box-sizing: content-box
}

div.images .woocommerce-product-gallery__trigger:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 9px;
    box-sizing: content-box
}

div.images .woocommerce-product-gallery__trigger:after {
    content: "";
    display: block;
    width: 2px;
    height: 8px;
    background: #000;
    border-radius: 6px;
    position: absolute;
    top: 19px;
    left: 22px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    box-sizing: content-box
}

div.images .flex-control-thumbs {
    overflow: hidden;
    zoom: 1;
    margin: 0;
    padding: 0
}

div.images .flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0;
    list-style: none
}

div.images .flex-control-thumbs li img {
    cursor: pointer;
    opacity: .5;
    margin: 0
}

div.images .flex-control-thumbs li img.flex-active,
div.images .flex-control-thumbs li img:hover {
    opacity: 1
}

.woocommerce-product-gallery figure {
    margin: 0
}

.cb-modal {
    width: 90%;
    max-width: 360px;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -70%, 0);
    transform: translate3d(-50%, -70%, 0);
    opacity: 0;
    z-index: 906;
    visibility: hidden;
    -webkit-transition: .5s opacity ease, 0.5s transform ease;
    -transition: .5s opacity ease, 0.5s transform ease;
    -webkit-transition: .5s opacity ease, 0.5s -webkit-transform ease;
    transition: .5s opacity ease, 0.5s -webkit-transform ease;
    transition: .5s opacity ease, 0.5s transform ease;
    transition: .5s opacity ease, 0.5s transform ease, 0.5s -webkit-transform ease
}

.cb-modal .cb-byline-short {
    color: #777
}

.cb-modal .cb-close-m {
    padding-bottom: 5px
}

.cb-modal input,
.cb-modal .cb-subm {
    background: transparent;
    border: 0;
    font-weight: 700;
    font-size: 14px;
    height: 40px;
    letter-spacing: 1px;
    display: inline-block;
    line-height: 36px;
    -webkit-appearance: none;
    border-radius: 0
}

.cb-modal input:focus,
.cb-modal .cb-subm:focus {
    outline: 0
}

.cb-modal input:hover,
.cb-modal .cb-subm:hover {
    text-decoration: none
}

.cb-modal .cb-author-meta .cb-modal-avatar {
    line-height: 0;
    margin-bottom: 20px
}

.cb-modal .cb-author-meta .cb-modal-avatar img {
    border-radius: 50%
}

.cb-modal .cb-log-out {
    margin-top: 30px
}

.cb-modal a {
    color: #161616
}

.cb-modal .cb-modal-title {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 1px
}

.cb-modal .cb-modal-title a {
    color: #5a5a5a;
    margin: 0 10px
}

.cb-modal .cb-modal-title .cb-active {
    color: #161616;
    border-bottom: 3px solid #161616;
    padding-bottom: 3px
}

.cb-modal .cb-modal-inner {
    background: #f2f2f2;
    padding: 20px;
    color: #161616;
    position: relative
}

.cb-modal .cb-modal-inner .cb-extra {
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 5px
}

.cb-modal ::-webkit-input-placeholder {
    color: #161616
}

.cb-modal :-moz-placeholder {
    color: #161616
}

.cb-modal ::-moz-placeholder {
    color: #161616
}

.cb-modal :-ms-input-placeholder {
    color: #161616
}

.cb-modal.cb-m-modal {
    text-align: center;
    display: inline-block;
    top: -100%
}

.cb-modal.cb-m-modal .cb-close-m {
    padding-bottom: 10px
}

.cb-lwa-modal .cb-submit {
    margin-top: 15px
}

.cb-lwa-modal .cb-lwa-logo {
    margin: 10px 0 20px;
    float: left;
    width: 100%
}

.cb-lwa-modal .cb-lwa-logo img {
    max-height: 40px;
    max-width: 100%
}

.cb-lwa-modal .cb-form-input {
    border-bottom: 2px solid #161616;
    padding: 10px 20px 10px 7px;
    width: 100%;
    margin-bottom: 20px
}

.cb-lwa-modal .cb-form-input:focus {
    outline: 0
}

.cb-lwa-modal .lwa-status {
    display: none;
    margin: 10px 0 20px;
    color: #fff;
    letter-spacing: 1px;
    font-size: 12px
}

.cb-lwa-modal .lwa-status a {
    color: white;
    text-decoration: underline
}

.cb-lwa-modal .lwa-status a:hover {
    color: #eee
}

.cb-lwa-modal .lwa-status-invalid {
    background: #d04a4a
}

.cb-lwa-modal .lwa-status-confirm {
    background: #8cb68c
}

.cb-lwa-modal .lwa-status-live {
    padding: 10px;
    display: block
}

.cb-lwa-modal .cb-form {
    display: none
}

.cb-lwa-modal .cb-form-active {
    display: block
}

#cb-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 905;
    visibility: hidden;
    -webkit-transition: .4s all;
    -transition: .4s all;
    transition: .4s all;
    background: #000
}

.cb-lwa-modal-on .cb-lwa-modal {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

.cb-lwa-modal-on #cb-overlay {
    visibility: visible;
    opacity: .9
}

.cb-modal .cb-submit-form {
    text-transform: uppercase;
    padding: 0 30px;
    -webkit-transition: .35s background, 0.35s color;
    -transition: .35s background, 0.35s color;
    transition: .35s background, 0.35s color;
    border: 2px solid #161616;
    margin-bottom: 10px
}

.cb-modal .cb-submit-form:hover {
    background: #161616;
    color: white
}

.cb-s-modal .cb-search-field {
    color: #161616;
    padding: 0 0 0 10px;
    width: 100%;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    letter-spacing: 1px;
    border-bottom: 3px solid #161616
}

.cb-s-modal .cb-search-field:focus {
    outline: 0
}

.cb-s-modal .cb-search-submit {
    display: none
}

.cb-s-modal .cb-info {
    margin-top: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 10px
}

.cb-s-modal .cb-mask {
    float: left
}

.cb-s-modal .cb-meta .cb-title {
    margin: 0;
    font-size: 16px;
    letter-spacing: 1px
}

.cb-s-modal .cb-sub-posts {
    margin: 10px 0;
    text-align: center
}

.cb-s-modal .cb-sub-posts li .cb-mask {
    display: none
}

.cb-s-modal .cb-sub-posts li .cb-meta {
    padding: 0 10px 10px
}

.cb-s-modal .cb-sub-posts li .cb-byline {
    margin-bottom: 0
}

.cb-s-modal .cb-byline-short {
    margin-top: 0
}

.cb-s-modal .cb-results-title {
    margin: 15px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700
}

.cb-s-modal .cb-submit-form {
    margin-bottom: 0
}

.cb-modal.cb-s-modal {
    max-width: none
}

.cb-modal.cb-m-modal {
    max-width: none
}

.cb-modal.cb-m-modal iframe {
    max-width: 100%
}

.cb-modal.cb-m-modal audio {
    width: 100%
}

.cb-modal.cb-m-modal audio::-webkit-media-controls-enclosure {
    max-width: 100%
}

.cb-modal.cb-m-modal iframe[src*="soundcloud"] {
    height: auto
}

.cb-s-qry {
    color: #777
}

.cb-s-modal-on .cb-s-modal {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

.cb-s-modal-on #cb-overlay {
    visibility: visible;
    opacity: .9
}

.cb-post-format-embed {
    opacity: 0;
    visibility: hidden;
    z-index: 910;
    position: fixed;
    -webkit-transform: translate3d(-50%, -60%, 0);
    transform: translate3d(-50%, -60%, 0);
    -webkit-transition: transform .35s ease-in-out, opacity .35s ease-in-out, visibility .35s ease-in-out;
    -transition: transform .35s ease-in-out, opacity .35s ease-in-out, visibility .35s ease-in-out;
    -webkit-transition: opacity .35s ease-in-out, visibility .35s ease-in-out, -webkit-transform .35s ease-in-out;
    transition: opacity .35s ease-in-out, visibility .35s ease-in-out, -webkit-transform .35s ease-in-out;
    transition: transform .35s ease-in-out, opacity .35s ease-in-out, visibility .35s ease-in-out;
    transition: transform .35s ease-in-out, opacity .35s ease-in-out, visibility .35s ease-in-out, -webkit-transform .35s ease-in-out;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    top: 50%;
    left: 50%
}

.cb-post-format-embed .cb-close-m {
    padding-bottom: 10px
}

.cb-m-modal-on .cb-post-format-embed.cb-active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

.cb-m-modal-on #cb-media-overlay {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    top: 50%
}

.cb-m-modal-on #cb-overlay {
    visibility: visible;
    opacity: .9
}

.cb-embed-wrap {
    position: relative;
    padding-top: 56%
}

.cb-embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.cb-embed-wrap audio {
    width: 100%
}

.cb-self-hosted {
    padding-top: 0;
    margin-bottom: 30px
}

.fa.cb-times {
    color: #fff;
    font-size: 20px
}

.fa.cb-times:before {
    content: '\f105'
}

.fa.cb-times:after {
    content: '\f104';
    position: relative;
    left: -3px
}

.cb-ta-right {
    text-align: right
}

.cb-ta-left {
    text-align: left
}

.cb-ta-center {
    text-align: center
}

.boxer-lock {
    overflow: hidden !important
}

#boxer-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 106;
    background: #000;
    opacity: 0;
    -webkit-transition: opacity .25s linear;
    transition: opacity .25s linear
}

.boxer-open #boxer-overlay {
    opacity: .75
}

#boxer {
    width: 200px;
    height: 200px;
    position: absolute;
    right: 0;
    left: 0;
    z-index: 107;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 25px #000;
    opacity: 0;
    margin: 0 auto;
    padding: 10px
}

#boxer * {
    -webkit-transition: none;
    transition: none
}

#boxer,
#boxer * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

#boxer,
#boxer *,
#boxer *:before,
#boxer *:after {
    box-sizing: border-box
}

#boxer.fixed {
    position: fixed;
    top: 0;
    bottom: 0;
    margin: auto
}

#boxer.inline {
    padding: 30px
}

#boxer.animating {
    -webkit-transition: height .25s ease, width .25s ease, opacity .25s linear, top .25s ease;
    transition: height .25s ease, width .25s ease, opacity .25s linear, top .25s ease
}

#boxer.animating .boxer-container {
    -webkit-transition: opacity .25s linear .25s;
    transition: opacity .25s linear .25s
}

.boxer-open #boxer {
    opacity: 1
}

#boxer.loading .boxer-container {
    opacity: 0;
    -webkit-transition: opacity .25s linear;
    transition: opacity .25s linear
}

#boxer .boxer-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -7.5px;
    right: -7.5px;
    z-index: 105;
    background: #fff;
    border-radius: 100%;
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 0;
    text-indent: 200%;
    white-space: nowrap
}

#boxer .boxer-close:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #333;
    content: "\00d7";
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin: auto;
    text-align: center;
    text-indent: 0;
    -webkit-transition: color .15s linear;
    transition: color .15s linear
}

.no-opacity #boxer .boxer-close {
    text-indent: -999px
}

#boxer .boxer-loading {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 105;
    display: block;
    margin: auto;
    opacity: 0;
    -webkit-transition: opacity .25s linear;
    transition: opacity .25s linear
}

#boxer .boxer-loading:before,
#boxer .boxer-loading:after {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 110%;
    content: '';
    display: block
}

#boxer .boxer-loading:before {
    border: 5px solid rgba(51, 51, 51, 0.25)
}

#boxer .boxer-loading:after {
    -webkit-animation: boxer-loading-spin .75s linear infinite;
    animation: boxer-loading-spin .75s linear infinite;
    border: 5px solid transparent;
    border-top-color: #333
}

#boxer.loading .boxer-loading {
    opacity: 1
}

#boxer .boxer-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 103;
    background: #fff;
    overflow: hidden
}

#boxer .boxer-content {
    width: 100%;
    background: #fff;
    opacity: 1;
    overflow: hidden;
    padding: 0
}

#boxer.inline .boxer-content,
#boxer.iframe .boxer-content {
    width: auto
}

#boxer .boxer-image {
    float: left
}

#boxer .boxer-video {
    width: 100%;
    height: 100%
}

#boxer .boxer-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    float: left;
    overflow: auto
}

#boxer .boxer-meta {
    clear: both
}

#boxer .boxer-control {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    background: #fff;
    border-radius: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    display: block;
    margin-right: auto;
    margin-left: auto;
    opacity: 1;
    overflow: hidden;
    text-indent: 200%;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear;
    white-space: nowrap
}

#boxer .boxer-control:before {
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    margin: auto
}

#boxer .boxer-control.previous {
    left: 20px
}

#boxer .boxer-control.previous:before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10.4px solid #333;
    margin-left: 14px
}

#boxer .boxer-control.next {
    right: 20px
}

#boxer .boxer-control.next:before {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10.4px solid #333;
    margin-right: 14px
}

#boxer .boxer-control.disabled {
    opacity: 0
}

.no-opacity #boxer .boxer-control {
    text-indent: -999px
}

.no-touch #boxer .boxer-control {
    opacity: 0
}

.no-touch #boxer:hover .boxer-control {
    opacity: 1
}

.no-touch #boxer:hover .boxer-control.disabled {
    opacity: 0;
    cursor: default !important
}

#boxer .boxer-meta {
    padding: 10px 0 0 0
}

#boxer .boxer-position {
    color: #999;
    font-size: 12px;
    margin: 0;
    padding: 15px 15px 0 15px
}

#boxer .boxer-caption p {
    color: #666;
    font-size: 14px;
    margin: 0;
    padding: 15px
}

#boxer .boxer-caption.gallery p {
    padding-top: 0
}

#boxer .boxer-error {
    width: 250px
}

#boxer .boxer-error p {
    color: #900;
    font-size: 14px;
    margin: 0;
    padding: 25px;
    text-align: center;
    text-transform: uppercase
}

#boxer.mobile {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #111;
    border-radius: 0;
    padding: 40px 0 0
}

#boxer.mobile .boxer-close,
#boxer.mobile .boxer-close:hover {
    height: 40px;
    width: 40px;
    top: 0;
    right: 0;
    background: #111;
    border-radius: 0
}

.admin-bar #boxer.mobile .boxer-close,
.admin-bar #boxer.mobile .boxer-close:hover {
    top: 32px
}

#boxer.mobile .boxer-close:before,
#boxer.mobile .boxer-close:hover:before {
    color: #ccc;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px
}

#boxer.mobile .boxer-loading:before {
    border-color: rgba(153, 153, 153, 0.25)
}

#boxer.mobile .boxer-loading:after {
    border-top-color: #999
}

#boxer.mobile .boxer-container {
    background: #111
}

#boxer.mobile .boxer-content {
    background-color: #111
}

#boxer.mobile .boxer-control {
    width: 50px;
    height: 100%;
    background: #111;
    border-radius: 0;
    box-shadow: none;
    opacity: 1
}

#boxer.mobile .boxer-control.previous {
    left: 0
}

#boxer.mobile .boxer-control.previous:before {
    border-right-color: #eee;
    margin-left: 19px
}

#boxer.mobile .boxer-control.next {
    right: 0
}

#boxer.mobile .boxer-control.next:before {
    border-left-color: #eee;
    margin-right: 19px
}

.no-touch #boxer.mobile .boxer-control,
.no-touch #boxer.mobile:hover .boxer-control {
    opacity: 1
}

.no-touch #boxer.mobile .boxer-control.disabled,
.no-touch #boxer.mobile:hover .boxer-control.disabled {
    opacity: 0;
    cursor: default !important
}

#boxer.mobile .boxer-meta {
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #111;
    padding: 15px 65px
}

#boxer.mobile .boxer-position {
    color: #999;
    font-size: 12px;
    margin: 0;
    padding: 0 15px 0 0
}

#boxer.mobile .boxer-caption p {
    color: #eee;
    font-size: 14px;
    margin: 0;
    padding: 0
}

#boxer.mobile .boxer-image {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

#boxer.mobile.animated .boxer-image {
    -webkit-transition: -webkit-transform .25s ease-out !important;
    transition: -webkit-transform .25s ease-out !important;
    transition: transform .25s ease-out !important;
    transition: transform .25s ease-out, -webkit-transform .25s ease-out !important
}

#boxer.mobile.inline .boxer-content,
#boxer.mobile.iframe .boxer-content {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.tipper {
    width: 1px;
    height: 1px;
    position: absolute;
    top: -999px;
    left: -999px;
    z-index: 100;
    margin-top: 20px;
    opacity: 0;
    pointer-events: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 10px;
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.tipper * {
    -webkit-transition: none;
    transition: none
}

.tipper,
.tipper * {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

.tipper.visible {
    opacity: 1
}

.tipper .tipper-content {
    background: #161616;
    border-radius: 3px;
    color: #fff;
    display: block;
    float: left;
    margin: 0;
    padding: 10px 15px;
    position: relative;
    white-space: nowrap
}

.tipper .tipper-caret {
    width: 0;
    height: 0;
    content: '';
    display: block;
    margin: 0;
    position: absolute
}

.tipper.right .tipper-content {
    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.35)
}

.tipper.right .tipper-caret {
    top: 0;
    left: -5px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #111
}

.tipper.left .tipper-content {
    box-shadow: -1px 0 5px rgba(0, 0, 0, 0.35)
}

.tipper.left .tipper-caret {
    top: 0;
    right: -5px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #111
}

.tipper.top .tipper-caret,
.tipper.bottom .tipper-caret {
    display: block;
    float: none;
    margin: 0 auto
}

.tipper.top .tipper-content {
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.35)
}

.tipper.top .tipper-caret {
    bottom: -5px;
    left: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #111
}

.tipper.bottom .tipper-content {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35)
}

.tipper.bottom .tipper-caret {
    top: -5px;
    left: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #111
}

.cb-entry-content>span {
    display: block
}

.cb-entry-content .cb-tabs {
    margin: 0 0 30px 0
}

.cb-entry-content .cb-tabs>ul {
    margin: 0
}

.cb-entry-content .cb-tabs>ul li {
    text-align: center;
    border-bottom: #e5e5e5 3px solid;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    padding: 14px 30px 15px 30px
}

.cb-entry-content .cb-tabs .cb-panes .cb-tab-content {
    margin-top: 30px;
    display: none
}

.cb-entry-content .cb-tabs .cb-panes .cb-tab-content h2 {
    font-size: 30px;
    margin: -20px 0 0 0
}

.cb-entry-content .cb-tabs .cb-panes .cb-tab-content p {
    margin: 20px 0
}

.cb-entry-content .cb-video-frame {
    margin: 20px 0
}

.cb-entry-content p embed {
    max-width: 100%
}

.cb-toggler {
    margin-bottom: 15px
}

.cb-toggler .fa-minus,
.cb-toggler .fa-plus {
    display: inline-block;
    margin-right: 10px;
    float: left;
    line-height: 26px;
    font-size: 10px
}

.cb-toggler .fa-minus {
    display: none
}

.cb-toggler .cb-toggle {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px
}

.cb-toggler .cb-toggle-content {
    display: none;
    margin-bottom: 15px
}

.cb-toggler.cb-on .fa-plus {
    display: none
}

.cb-toggler.cb-on .fa-minus {
    display: inline-block
}

.cb-toggler.cb-on .cb-toggle-content {
    display: block
}

.cb-accordion a,
.cb-accordion span {
    color: #fff;
    display: block;
    padding: 10px
}

.cb-accordion span {
    background-color: #666
}

.cb-accordion a {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    background-color: #2d2d2d
}

.cb-alert {
    width: 100%;
    padding: 40px;
    color: #fff;
    border: 3px solid transparent;
    margin: 20px 0;
    text-align: center;
    letter-spacing: 2px
}

.cb-alert.cb-red {
    background: #d62f2f;
    border-color: #af2323
}

.cb-alert.cb-yellow {
    background: #f0d544;
    color: #666;
    border-color: #bfa40f
}

.cb-alert.cb-green {
    background: #1ba83f;
    border-color: #13732b
}

.cb-alert.cb-white {
    background: #f2f2f2;
    color: #161616;
    border-color: #eee
}

.cb-alert.cb-blue {
    background: #263852;
    border-color: #16202f
}

.cb-highlight {
    border-radius: 3px;
    padding: 3px 1px;
    color: #fff
}

.cb-button {
    letter-spacing: 2px
}

.cb-button a {
    border-radius: 3px;
    padding: 10px 30px;
    color: #f2f2f2 !important;
    display: inline-block;
    margin: 2px 2px 2px 0;
    border: 3px solid transparent
}

.cb-button.cb-center {
    display: block;
    text-align: center
}

.cb-button.cb-no-url {
    border-radius: 3px;
    padding: 10px 30px;
    color: #f2f2f2;
    display: inline-block;
    margin: 2px 2px 2px 0;
    border: 3px solid transparent
}

.cb-button.cb-yellow a,
.cb-button.cb-yellow.cb-no-url {
    background: #eccb15
}

.cb-button.cb-white a,
.cb-button.cb-white.cb-no-url {
    background: transparent;
    color: #808080 !important;
    border-color: #777
}

.cb-button.cb-pink a,
.cb-button.cb-pink.cb-no-url {
    background: #ca56b0
}

.cb-button.cb-green a,
.cb-button.cb-green.cb-no-url {
    background: #1a9f3c
}

.cb-button.cb-red a,
.cb-button.cb-red.cb-no-url {
    background: #d62f2f
}

.cb-button.cb-black a,
.cb-button.cb-black.cb-no-url {
    background: #1a1a1a
}

.cb-button.cb-grey a,
.cb-button.cb-grey.cb-no-url {
    background: #4d4d4d
}

.cb-button.cb-blue a,
.cb-button.cb-blue.cb-no-url {
    background: #263852
}

.cb-button.cb-brown a,
.cb-button.cb-brown.cb-no-url {
    background: #975021
}

.cb-button.cb-big a,
.cb-button.cb-big.cb-no-url {
    padding: 15px 40px;
    font-size: 18px
}

.cb-divider {
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    margin: 30px 0
}

.cb-divider .cb-title {
    color: #777;
    margin: 0;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    padding: 7px 30px;
    font-size: 14px;
    font-weight: 700;
    background: #fff
}

.cb-divider .cb-title:after {
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    width: 1920px;
    left: 100%;
    background: #ddd
}

.cb-divider .cb-title:before {
    content: "";
    display: block;
    height: 10px;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    width: 1920px;
    right: 100%;
    background: #ddd
}

.cb-video-gallery .cb-media-icon {
    color: #161616;
    background: #fff;
    background: rgba(255, 255, 255, 0.7);
    height: 60px;
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    line-height: 60px;
    border-radius: 50% 50%;
    margin-left: -30px;
    margin-top: -30px;
    z-index: 10
}

.cb-article-meta {
    direction: ltr
}

.cb-slider {
    direction: ltr
}

.woocommerce-MyAccount-navigation ul {
    list-style-type: none;
    background: #f2f2f2;
    padding: 30px 30px 0;
    text-transform: uppercase;
    font-weight: 700;
    float: left;
    width: 100%;
    margin-bottom: 30px
}

.woocommerce-MyAccount-navigation li {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px
}

.heateorSssFacebookBackground {
    background-color: #3c589a;
}

.heateorSssTwitterBackground {
    background-color: #55acee;
}

.heateorSssInstagramBackground {
    background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.heateorSssPinterestBackground {
    background-color: #cc2329;
}

.heateorSssYoutubeBackground {
    background-color: red;
}

ul.heateor_sss_follow_ul li,
ul.heateor_sss_sharing_ul li {
    float: left!important;
    margin: 0!important;
    padding: 0!important;
    list-style: none!important;
    border: none!important;
    clear: none!important;
}

#heateor_sss_error {
    color: red;
    margin: 7px 0
}

.heateor_sss_login_container {
    margin: 2px 0
}

.heateor_sss_login_container img,
.heateor_sss_sharing_container img {
    cursor: pointer;
    margin: 2px;
    border: none
}

.heateor_sss_login_container img {
    display: none;
    float: left
}

#heateor_sss_loading_image {
    display: block!important;
    float: none
}

.heateor_sss_error {
    background-color: #ffffe0;
    border: 1px solid #e6db55;
    padding: 5px;
    margin: 10px
}

#heateor_sss_sharing_more_providers {
    position: fixed;
    top: 50%;
    left: 47%;
    background: #fafafa;
    width: 650px;
    margin: -180px 0 0 -300px;
    z-index: 10000000;
    text-shadow: none!important;
    height: 308px
}

#heateor_sss_popup_bg {
    background: url(../transparent_bg.html);
    bottom: 0;
    display: block;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000
}

#heateor_sss_sharing_more_providers .title {
    font-size: 14px!important;
    height: auto!important;
    background: #58b8f8!important;
    border-bottom: 1px solid #d7d7d7!important;
    color: #fff;
    font-weight: 700;
    letter-spacing: inherit;
    line-height: 34px!important;
    padding: 0!important;
    text-align: center;
    text-transform: none;
    margin: 0!important;
    text-shadow: none!important;
    width: 100%
}

#heateor_sss_sharing_more_providers * {
    font-family: Arial, Helvetica, sans-serif
}

#heateor_sss_sharing_more_providers #heateor_sss_sharing_more_content {
    background: #fafafa;
    border-radius: 4px;
    color: #555;
    height: auto;
    width: 100%
}

#heateor_sss_sharing_more_providers .filter {
    margin: 0;
    padding: 10px 0 0;
    position: relative;
    width: 100%
}

#heateor_sss_sharing_more_providers .all-services {
    clear: both;
    height: 250px;
    overflow: auto
}

#heateor_sss_sharing_more_content .all-services ul {
    margin: 10px!important;
    overflow: hidden;
    list-style: none;
    padding-left: 0!important;
    position: static!important;
    width: auto!important
}

#heateor_sss_sharing_more_content .all-services ul li {
    margin: 0;
    background: 0 0!important;
    float: left;
    width: 33.3333%!important;
    text-align: left!important
}

#heateor_sss_sharing_more_providers .close-button img {
    margin: 0
}

#heateor_sss_sharing_more_providers .close-button.separated {
    background: 0 0!important;
    border: none!important;
    box-shadow: none!important;
    width: auto!important;
    height: auto!important;
    z-index: 1000
}

#heateor_sss_sharing_more_providers .close-button {
    height: auto!important;
    width: auto!important;
    left: auto!important;
    display: block!important;
    color: #555!important;
    cursor: pointer!important;
    font-size: 29px!important;
    line-height: 29px!important;
    margin: 0!important;
    padding: 0!important;
    position: absolute;
    right: -13px;
    top: -11px
}

#heateor_sss_sharing_more_providers .filter input.search {
    width: 94%;
    display: block;
    float: none;
    font-family: "open sans", "helvetica neue", helvetica, arial, sans-serif;
    font-weight: 300;
    height: auto;
    line-height: inherit;
    margin: 0 auto;
    padding: 5px 8px 5px 10px;
    border: 1px solid #ccc!important;
    color: #000;
    background: #fff!important;
    font-size: 16px!important;
    text-align: left!important
}

#heateor_sss_sharing_more_providers .footer-panel {
    background: #fff;
    border-top: 1px solid #d7d7d7;
    padding: 6px 0;
    width: 100%;
    color: #fff
}

#heateor_sss_sharing_more_providers .footer-panel p {
    background-color: transparent;
    top: 0;
    text-align: left!important;
    color: #000;
    font-family: 'helvetica neue', arial, helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    margin: 0!important;
    padding: 0 6px!important;
    text-indent: 0!important
}

#heateor_sss_sharing_more_providers .footer-panel a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-indent: 0!important
}

#heateor_sss_sharing_more_providers .all-services ul li a {
    border-radius: 3px;
    color: #666!important;
    display: block;
    font-size: 18px;
    height: auto;
    line-height: 28px;
    overflow: hidden;
    padding: 8px;
    text-decoration: none!important;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: none!important;
    text-indent: 0!important;
    background: 0 0!important;
    text-shadow: none
}

.heateor_sss_share_count {
    display: block;
    text-indent: 0!important;
    visibility: hidden;
    background-color: #58b8f8!important;
    width: 5px;
    height: auto;
    text-align: center;
    min-width: 8px!important;
    padding: 1px 4px!important;
    color: #fff!important;
    font-family: 'Open Sans', arial, sans-serif!important;
    font-size: 10px!important;
    font-weight: 600!important;
    -webkit-border-radius: 15px!important;
    border-radius: 15px!important;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .4);
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    line-height: 14px!important;
    border: 2px solid #fff!important;
    z-index: 1;
    margin: 2px auto!important;
    box-sizing: content-box!important
}

.heateor_sss_share_count,
.heateor_sss_vertical_sharing {
    -webkit-box-sizing: content-box!important;
    -moz-box-sizing: content-box!important
}

ul.heateor_sss_follow_ul,
ul.heateor_sss_sharing_ul {
    list-style: none!important;
    padding-left: 0!important
}

.heateorSssXingButton {
    background-position: -64px 0;
    width: 32px;
    height: 32px;
    display: block
}

.heateorSssFacebookButton {
    background-position: 0 0;
    width: 32px;
    height: 32px;
    display: none
}

.heateorSssLiveButton {
    background-position: -32px -96px;
    width: 32px;
    height: 32px;
    display: block
}

.heateorSssInstagramButton {
    background-position: 0 -32px;
    width: 32px;
    height: 32px;
    display: block!important
}

.heateorSssLinkedinButton {
    background-position: -32px -32px;
    width: 32px;
    height: 32px;
    display: none
}

.heateorSssTwitterButton {
    background-position: 0 -64px;
    width: 32px;
    height: 32px;
    display: block!important
}

.heateorSssVkontakteButton {
    background-position: -32px -64px;
    width: 32px;
    height: 32px;
    display: none
}

ul.heateor_sss_follow_ul,
ul.heateor_sss_sharing_ul {
    margin: 1px 0!important
}

#heateor_sss_sharing_popup_close img {
    opacity: 1!important;
    background: 0 0!important;
    border: none!important;
    outline: 0!important;
    box-shadow: none!important;
    width: auto!important;
    height: auto!important;
    top: inherit!important;
    right: inherit!important;
    left: 9px!important;
    padding: 0!important
}

ul.heateor_sss_follow_ul li.heateorSssSharingRound,
ul.heateor_sss_sharing_ul li.heateorSssSharingRound {
    background: 0 0!important
}

.heateor_sss_square_count {
    display: none;
    text-align: center;
    font-weight: bolder;
    font-family: sans-serif;
    font-style: normal;
    font-size: .8em;
    visibility: hidden
}

ul.heateor_sss_follow_ul li,
ul.heateor_sss_sharing_ul li {
    float: left!important;
    margin: 0!important;
    padding: 0!important;
    list-style: none!important;
    border: none!important;
    clear: none!important
}

.heateorSssSharing,
.heateorSssSharingButton {
    display: block;
    cursor: pointer;
    margin: 2px
}

ul.heateor_sss_follow_ul li:before,
ul.heateor_sss_sharing_ul li:before {
    content: none!important
}

ul.heateor_sss_follow_ul li a {
    display: inline
}

ul.heateor_sss_follow_ul li {
    width: auto
}

.heateor_sss_vertical_sharing {
    background: 0 0;
    -webkit-box-shadow: 0 1px 4px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 1px 4px 1px rgba(0, 0, 0, .1);
    position: fixed;
    overflow: visible;
    z-index: 10000000;
    display: block;
    padding: 10px;
    border-radius: 4px;
    opacity: 1;
    box-sizing: content-box!important
}

div.heateor_sss_horizontal_counter li.heateor_sss_facebook_share,
div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_share {
    width: 96px
}

li.heateor_sss_facebook_like .fb-like span,
li.heateor_sss_facebook_recommend .fb-like span,
li.heateor_sss_facebook_share .fb-share-button span {
    vertical-align: top!important
}

li.heateor_sss_facebook_like .fb-like span iframe,
li.heateor_sss_facebook_recommend .fb-like span iframe {
    max-width: none!important;
    z-index: 1000
}

.heateor_sss_counter_container li {
    height: 21px
}

.heateorSssYummlyBackground {
    background-color: #e16120
}

.heateorSssBufferBackground {
    background-color: #000
}

.heateorSssDeliciousBackground {
    background-color: #53beee
}

.heateorSssThreemaBackground {
    background-color: #2a2a2a
}

.heateorSssFacebookBackground {
    background-color: #3c589a
}

.heateorSssDiggBackground {
    background-color: #006094
}

.heateorSssEmailBackground {
    background-color: #649a3f
}

.heateorSssFloatitBackground {
    background-color: #53beee
}

.heateorSssLinkedinBackground {
    background-color: #0077b5
}

.heateorSssMoreBackground {
    background-color: #ee8e2d
}

.heateorSssPinterestBackground {
    background-color: #cc2329
}

.heateorSssPrintBackground {
    background-color: #fd6500
}

.heateorSssRedditBackground {
    background-color: #ff5700
}

.heateorSssStockTwitsBackground {
    background-color: #40576f
}

.heateorSssMeWeBackground {
    background-color: #007da1
}

.heateorSssMixBackground {
    background-color: #ff8226
}

.heateorSssTumblrBackground {
    background-color: #29435d
}

.heateorSssTwitterBackground {
    background-color: #55acee
}

.heateorSssParlerBackground {
    background-color: #C63240
}

.heateorSssVkontakteBackground {
    background-color: #5e84ac
}

.heateorSssYahooBackground {
    background-color: #8f03cc
}

.heateorSssXingBackground {
    background-color: #00797d
}

.heateorSssWhatsappBackground {
    background-color: #55eb4c
}

.heateorSssTCBackground,
.heateorSssTCBackground:hover {
    border-width: 0!important;
    background-color: transparent
}

ul.heateor_sss_sharing_ul i.heateorSssTCBackground {
    background-color: transparent;
    font-style: normal;
    word-wrap: normal;
    color: #666;
    line-height: 1;
    visibility: hidden
}

.heateorSssSharingSvg {
    width: 100%;
    height: 100%
}

.heateorSssMeWeSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-3%20-3%2038%2038%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cpath%20d%3D%22M9.636%2010.427a1.22%201.22%200%201%201-2.44%200%201.22%201.22%200%201%201%202.44%200zM15.574%2010.431a1.22%201.22%200%200%201-2.438%200%201.22%201.22%200%201%201%202.438%200zM22.592%2010.431a1.221%201.221%200%201%201-2.443%200%201.221%201.221%200%200%201%202.443%200zM29.605%2010.431a1.221%201.221%200%201%201-2.442%200%201.221%201.221%200%200%201%202.442%200zM3.605%2013.772c0-.471.374-.859.859-.859h.18c.374%200%20.624.194.789.457l2.935%204.597%202.95-4.611c.18-.291.43-.443.774-.443h.18c.485%200%20.859.387.859.859v8.113a.843.843%200%200%201-.859.845.857.857%200%200%201-.845-.845V16.07l-2.366%203.559c-.18.276-.402.443-.72.443-.304%200-.526-.167-.706-.443l-2.354-3.53V21.9c0%20.471-.374.83-.845.83a.815.815%200%200%201-.83-.83v-8.128h-.001zM14.396%2014.055a.9.9%200%200%201-.069-.333c0-.471.402-.83.872-.83.415%200%20.735.263.845.624l2.23%206.66%202.187-6.632c.139-.402.428-.678.859-.678h.124c.428%200%20.735.278.859.678l2.187%206.632%202.23-6.675c.126-.346.415-.609.83-.609.457%200%20.845.361.845.817a.96.96%200%200%201-.083.346l-2.867%208.032c-.152.43-.471.706-.887.706h-.165c-.415%200-.721-.263-.872-.706l-2.161-6.328-2.16%206.328c-.152.443-.47.706-.887.706h-.165c-.415%200-.72-.263-.887-.706l-2.865-8.032z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssFacebookSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-5%20-5%2042%2042%22%3E%3Cpath%20d%3D%22M17.78%2027.5V17.008h3.522l.527-4.09h-4.05v-2.61c0-1.182.33-1.99%202.023-1.99h2.166V4.66c-.375-.05-1.66-.16-3.155-.16-3.123%200-5.26%201.905-5.26%205.405v3.016h-3.53v4.09h3.53V27.5h4.223z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssTwitterSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-4%20-4%2039%2039%22%3E%0A%3Cpath%20d%3D%22M28%208.557a9.913%209.913%200%200%201-2.828.775%204.93%204.93%200%200%200%202.166-2.725%209.738%209.738%200%200%201-3.13%201.194%204.92%204.92%200%200%200-3.593-1.55%204.924%204.924%200%200%200-4.794%206.049c-4.09-.21-7.72-2.17-10.15-5.15a4.942%204.942%200%200%200-.665%202.477c0%201.71.87%203.214%202.19%204.1a4.968%204.968%200%200%201-2.23-.616v.06c0%202.39%201.7%204.38%203.952%204.83-.414.115-.85.174-1.297.174-.318%200-.626-.03-.928-.086a4.935%204.935%200%200%200%204.6%203.42%209.893%209.893%200%200%201-6.114%202.107c-.398%200-.79-.023-1.175-.068a13.953%2013.953%200%200%200%207.55%202.213c9.056%200%2014.01-7.507%2014.01-14.013%200-.213-.005-.426-.015-.637.96-.695%201.795-1.56%202.455-2.55z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssLinkedinSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2039%22%3E%3Cpath%20d%3D%22M6.227%2012.61h4.19v13.48h-4.19V12.61zm2.095-6.7a2.43%202.43%200%200%201%200%204.86c-1.344%200-2.428-1.09-2.428-2.43s1.084-2.43%202.428-2.43m4.72%206.7h4.02v1.84h.058c.56-1.058%201.927-2.176%203.965-2.176%204.238%200%205.02%202.792%205.02%206.42v7.395h-4.183v-6.56c0-1.564-.03-3.574-2.178-3.574-2.18%200-2.514%201.7-2.514%203.46v6.668h-4.187V12.61z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssTumblrSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M20.775%2021.962c-.37.177-1.08.33-1.61.345-1.598.043-1.907-1.122-1.92-1.968v-6.217h4.007V11.1H17.26V6.02h-2.925s-.132.044-.144.15c-.17%201.556-.895%204.287-3.923%205.378v2.578h2.02v6.522c0%202.232%201.647%205.404%205.994%205.33%201.467-.025%203.096-.64%203.456-1.17l-.96-2.846z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssInstagramSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22Layer_1%22%20version%3D%221.1%22%20viewBox%3D%22-10%20-10%20148%20148%22%20xml%3Aspace%3D%22preserve%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M86%2C112H42c-14.336%2C0-26-11.663-26-26V42c0-14.337%2C11.664-26%2C26-26h44c14.337%2C0%2C26%2C11.663%2C26%2C26v44%20%20%20%20C112%2C100.337%2C100.337%2C112%2C86%2C112z%20M42%2C24c-9.925%2C0-18%2C8.074-18%2C18v44c0%2C9.925%2C8.075%2C18%2C18%2C18h44c9.926%2C0%2C18-8.075%2C18-18V42%20%20%20%20c0-9.926-8.074-18-18-18H42z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Cpath%20d%3D%22M64%2C88c-13.234%2C0-24-10.767-24-24c0-13.234%2C10.766-24%2C24-24s24%2C10.766%2C24%2C24C88%2C77.233%2C77.234%2C88%2C64%2C88z%20M64%2C48c-8.822%2C0-16%2C7.178-16%2C16s7.178%2C16%2C16%2C16c8.822%2C0%2C16-7.178%2C16-16S72.822%2C48%2C64%2C48z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3Cg%3E%3Ccircle%20cx%3D%2289.5%22%20cy%3D%2238.5%22%20fill%3D%22%23fff%22%20r%3D%225.5%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssPinterestSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-2%20-2%2035%2035%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16.539%204.5c-6.277%200-9.442%204.5-9.442%208.253%200%202.272.86%204.293%202.705%205.046.303.125.574.005.662-.33.061-.231.205-.816.27-1.06.088-.331.053-.447-.191-.736-.532-.627-.873-1.439-.873-2.591%200-3.338%202.498-6.327%206.505-6.327%203.548%200%205.497%202.168%205.497%205.062%200%203.81-1.686%207.025-4.188%207.025-1.382%200-2.416-1.142-2.085-2.545.397-1.674%201.166-3.48%201.166-4.689%200-1.081-.581-1.983-1.782-1.983-1.413%200-2.548%201.462-2.548%203.419%200%201.247.421%202.091.421%202.091l-1.699%207.199c-.505%202.137-.076%204.755-.039%205.019.021.158.223.196.314.077.13-.17%201.813-2.247%202.384-4.324.162-.587.929-3.631.929-3.631.46.876%201.801%201.646%203.227%201.646%204.247%200%207.128-3.871%207.128-9.053.003-3.918-3.317-7.568-8.361-7.568z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssBehanceSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M3.862%208.136h5.66c1.377%200%203.19%200%204.13.566a3.705%203.705%200%200%201%201.837%203.26c0%201.66-.88%202.905-2.32%203.494v.042c1.924.397%202.97%201.838%202.97%203.76%200%202.297-1.636%204.483-4.743%204.483H3.86V8.14zm2.078%206.71h4.152c2.36%200%203.322-.856%203.322-2.493%200-2.16-1.53-2.468-3.322-2.468H5.94v4.96zm0%207.144h5.2c1.792%200%202.93-1.09%202.93-2.797%200-2.03-1.64-2.598-3.388-2.598H5.94v5.395zm22.017-1.833C27.453%2022.65%2025.663%2024%2023.127%2024c-3.607%200-5.31-2.49-5.422-5.944%200-3.386%202.23-5.878%205.31-5.878%204%200%205.225%203.74%205.116%206.47h-8.455c-.067%201.966%201.05%203.716%203.52%203.716%201.53%200%202.6-.742%202.928-2.206h1.838zm-1.793-3.15c-.088-1.77-1.42-3.19-3.256-3.19-1.946%200-3.106%201.466-3.236%203.19h6.492zM20.614%208h4.935v1.68h-4.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssFlickrSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Ccircle%20cx%3D%2223%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3Ccircle%20cx%3D%229%22%20cy%3D%2216%22%20r%3D%226%22%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssFoursquareSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M21.516%203H7.586C5.66%203%205%204.358%205%205.383v21.995c0%201.097.65%201.407.958%201.53.31.126%201.105.206%201.676-.36l6.72-7.455c.105-.12.49-.284.552-.284h4.184c1.79%200%201.81-1.45%201.997-2.206.157-.63%201.946-9.57%202.58-12.395.523-2.32-.104-3.21-2.15-3.21zM20.2%209.682c-.07.33-.368.66-.75.693h-5.44c-.61-.034-1.108.422-1.108%201.032v.665c0%20.61.5%201.24%201.108%201.24h4.607c.43%200%20.794.276.7.737-.093.46-.573%202.82-.627%203.07-.052.254-.282.764-.716.764h-3.62c-.682%200-1.36-.008-1.816.56-.458.573-4.534%205.293-4.534%205.293V6.403c0-.438.31-.746.715-.74h11.274c.41-.006.915.41.834%201L20.2%209.68z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssGithubSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%203.32c-7.182%200-13%205.82-13%2013%200%205.754%203.72%2010.612%208.89%2012.335.65.114.893-.276.893-.617%200-.31-.016-1.333-.016-2.42-3.266.6-4.11-.797-4.37-1.53-.147-.373-.78-1.527-1.334-1.835-.455-.244-1.105-.845-.016-.86%201.024-.017%201.755.942%202%201.332%201.17%201.966%203.038%201.414%203.785%201.073.114-.845.455-1.414.83-1.74-2.893-.324-5.916-1.445-5.916-6.418%200-1.414.504-2.584%201.333-3.494-.13-.325-.59-1.657.13-3.445%200%200%201.085-.34%203.57%201.337%201.04-.293%202.146-.44%203.25-.44s2.21.147%203.25.44c2.49-1.69%203.58-1.337%203.58-1.337.714%201.79.26%203.12.13%203.446.828.91%201.332%202.064%201.332%203.494%200%204.99-3.04%206.094-5.93%206.42.47.405.876%201.185.876%202.404%200%201.74-.016%203.136-.016%203.575%200%20.34.244.743.894.613C25.28%2026.933%2029%2022.053%2029%2016.32c0-7.182-5.817-13-13-13z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssMediumSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20focusable%3D%22false%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20d%3D%22M7.8%2011a.8.8%200%200%200-.27-.7l-2-2.42v-.41h6.23L16.57%2018l4.24-10.53h5.94v.36L25%209.47a.5.5%200%200%200-.19.48v12.1a.5.5%200%200%200%20.19.48l1.68%201.64v.36h-8.4v-.36L20%2022.49c.18-.17.18-.22.18-.49v-9.77l-4.82%2012.26h-.65L9.09%2012.23v8.22a1.09%201.09%200%200%200%20.31.94l2.25%202.74v.36h-6.4v-.36l2.26-2.74a1.09%201.09%200%200%200%20.29-.94z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssOdnoklassnikiSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M16%2016.16c-3.635%200-6.58-2.945-6.58-6.58C9.42%205.945%2012.364%203%2016%203s6.582%202.945%206.582%206.58c0%203.635-2.946%206.58-6.58%206.58zm0-9.817c-1.788%200-3.236%201.448-3.236%203.237%200%201.79%201.448%203.236%203.237%203.236%201.79%200%203.24-1.447%203.24-3.236%200-1.79-1.45-3.237-3.238-3.237zm7.586%2010.62c.648%201.3-.084%201.93-1.735%202.99-1.397.9-3.315%201.238-4.566%201.368l1.048%201.05%203.877%203.877c.59.59.59%201.544%200%202.134l-.178.18c-.59.59-1.544.59-2.134%200l-3.878-3.88-3.878%203.88c-.59.59-1.543.59-2.135%200l-.176-.18c-.59-.59-.59-1.543%200-2.132l3.878-3.878%201.043-1.046c-1.25-.127-3.19-.465-4.6-1.37-1.65-1.062-2.38-1.69-1.733-2.99.37-.747%201.4-1.367%202.768-.29C13.035%2018.13%2016%2018.13%2016%2018.13s2.968%200%204.818-1.456c1.37-1.077%202.4-.457%202.768.29z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssSnapchatSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.177%2020.978c-2.867-.473-4.157-3.414-4.21-3.54l-.01-.02c-.153-.31-.187-.57-.1-.772.164-.39.774-.583%201.177-.71.113-.037.22-.07.306-.105.715-.28%201.073-.625%201.066-1.03-.006-.312-.252-.593-.642-.732a1.168%201.168%200%200%200-.44-.084.975.975%200%200%200-.405.083c-.34.16-.65.246-.91.258a.789.789%200%200%201-.357-.087l.027-.45.005-.062c.09-1.432.203-3.215-.266-4.264C20.03%206.34%2017.073%206.1%2016.2%206.1h-.052l-.363.003c-.87%200-3.818.243-5.208%203.36-.47%201.05-.357%202.833-.268%204.264l.03.513a.83.83%200%200%201-.41.09c-.276%200-.6-.087-.97-.26a.795.795%200%200%200-.335-.067c-.43%200-.946.282-1.026.704-.06.305.077.748%201.054%201.134.087.036.193.07.305.105.403.128%201.012.322%201.18.71.084.203.05.463-.103.773l-.01.022c-.054.125-1.344%203.068-4.21%203.54a.437.437%200%200%200-.366.455.6.6%200%200%200%20.048.196c.216.504%201.123.87%202.775%201.13.055.075.113.34.148.5.036.16.07.32.12.494.05.17.18.374.514.374.133%200%20.292-.03.475-.067.275-.053.652-.127%201.124-.127.26%200%20.532.022.805.067.532.09.985.41%201.51.78.75.53%201.6%201.132%202.894%201.132.034%200%20.07%200%20.105-.005.04.002.095.004.153.004%201.29%200%202.142-.6%202.892-1.132.526-.37.978-.69%201.51-.78.274-.045.545-.068.807-.068.45%200%20.805.056%201.123.12.2.037.36.057.476.057h.024c.246%200%20.42-.13.488-.365.05-.17.086-.327.12-.49.037-.16.094-.422.15-.496%201.65-.256%202.56-.624%202.773-1.125a.568.568%200%200%200%20.047-.196.433.433%200%200%200-.363-.458z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssTelegramSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-1%20-3%2036%2036%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M25.515%206.896L6.027%2014.41c-1.33.534-1.322%201.276-.243%201.606l5%201.56%201.72%205.66c.226.625.115.873.77.873.506%200%20.73-.235%201.012-.51l2.43-2.363%205.056%203.734c.93.514%201.602.25%201.834-.863l3.32-15.638c.338-1.363-.52-1.98-1.41-1.577z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssVimeoSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-2%20-2%2036%2036%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.926%2010.627c-.103%202.25-1.675%205.332-4.716%209.245C19.066%2023.957%2016.406%2026%2014.23%2026c-1.348%200-2.49-1.244-3.42-3.732l-1.867-6.844C8.25%2012.937%207.51%2011.69%206.715%2011.69c-.173%200-.778.365-1.815%201.09l-1.088-1.4a300.012%20300.012%200%200%200%203.374-3.01c1.522-1.315%202.666-2.007%203.427-2.076%201.8-.173%202.907%201.057%203.322%203.69.45%202.84.76%204.608.935%205.3.52%202.356%201.09%203.534%201.713%203.534.483%200%201.21-.764%202.18-2.294.97-1.528%201.488-2.692%201.558-3.49.14-1.32-.38-1.98-1.553-1.98-.554%200-1.125.126-1.712.378%201.137-3.722%203.308-5.53%206.513-5.426%202.378.068%203.498%201.61%203.36%204.62z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssVkontakteSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-1%20-2%2034%2034%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M15.764%2022.223h1.315s.394-.044.6-.262c.184-.2.18-.574.18-.574s-.03-1.764.79-2.023c.81-.255%201.844%201.705%202.942%202.46.832.57%201.464.445%201.464.445l2.936-.04s1.538-.097.81-1.304c-.06-.1-.426-.894-2.186-2.526-1.843-1.71-1.594-1.434.624-4.39%201.353-1.804%201.893-2.902%201.724-3.374-.16-.45-1.153-.33-1.153-.33l-3.306.02s-.247-.034-.428.074c-.178.108-.293.356-.293.356s-.522%201.394-1.223%202.58c-1.47%202.5-2.06%202.633-2.3%202.476-.563-.36-.42-1.454-.42-2.23%200-2.423.365-3.435-.72-3.696-.357-.085-.623-.143-1.544-.15-1.182-.014-2.18.003-2.743.28-.378.185-.667.595-.49.62.218.027.713.13.975.49.34.46.33%201.496.33%201.496s.193%202.852-.46%203.206c-.442.245-1.056-.252-2.37-2.52-.67-1.163-1.18-2.446-1.18-2.446s-.1-.24-.273-.37c-.212-.155-.506-.204-.506-.204l-3.145.02s-.473.015-.647.22c-.154.183-.01.56-.01.56s2.46%205.757%205.245%208.657c2.553%202.66%205.454%202.485%205.454%202.485z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssRSSSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%22-4%20-4%2040%2040%22%3E%3Cg%20fill%3D%22%23fff%22%3E%3Cellipse%20cx%3D%227.952%22%20cy%3D%2224.056%22%20rx%3D%222.952%22%20ry%3D%222.944%22%3E%3C%2Fellipse%3E%3Cpath%20d%3D%22M5.153%2016.625c2.73%200%205.295%201.064%207.22%202.996a10.2%2010.2%200%200%201%202.996%207.255h4.2c0-7.962-6.47-14.44-14.42-14.44v4.193zm.007-7.432c9.724%200%2017.636%207.932%2017.636%2017.682H27C27%2014.812%2017.203%205%205.16%205v4.193z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssXingSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%22-6%20-6%2042%2042%22%3E%0A%3Cpath%20d%3D%22M%206%209%20h%205%20l%204%204%20l%20-5%207%20h%20-5%20l%205%20-7%20z%20m%2015%20-4%20h%205%20l%20-9%2013%20l%204%208%20h%20-5%20l%20-4%20-8%20z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssYoutubeSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M26.78%2011.6s-.215-1.515-.875-2.183c-.837-.876-1.774-.88-2.204-.932-3.075-.222-7.693-.222-7.693-.222h-.01s-4.618%200-7.697.222c-.43.05-1.368.056-2.205.932-.66.668-.874%202.184-.874%202.184S5%2013.386%205%2015.166v1.67c0%201.78.22%203.56.22%203.56s.215%201.516.874%202.184c.837.875%201.936.85%202.426.94%201.76.17%207.48.22%207.48.22s4.623-.007%207.7-.23c.43-.05%201.37-.056%202.205-.932.66-.668.875-2.184.875-2.184s.22-1.78.22-3.56v-1.67c0-1.78-.22-3.56-.22-3.56zm-13.052%207.254v-6.18l5.944%203.1-5.944%203.08z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center
}

.heateorSssSharing {
    float: left;
    border: none
}

.heateorSssSharingArrow {
    height: 16px;
    width: 16px;
    cursor: pointer;
    margin-top: 10px
}

.heateorSssPushIn {
    background: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%207%206%20q%202%206%2010%206%20v%20-6%20l%206%209%20l%20-6%209%20v%20-6%20q%20-10%202%20-10%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat
}

.heateorSssPullOut {
    background: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20viewBox%3D%220%200%2030%2030%22%3E%0A%3Cpath%20d%3D%22M%2023%206%20q%20-2%206%20-10%206%20v%20-6%20l%20-6%209%20l%206%209%20v%20-6%20q%2010%202%2010%20-12%22%20stroke-width%3D%221%22%20stroke%3D%22%23000%22%20fill%3D%22%23000%22%20stroke-linecap%3D%22round%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E) left no-repeat
}

.heateorSssCommentingTabs li {
    padding-left: 0!important;
    float: left;
    margin: 0 1em 0 0!important;
    list-style: none;
    color: #aaa;
    display: block;
    cursor: pointer;
    font-size: .85em
}

div.heateorSssTotalShareCount {
    word-wrap: normal!important;
    font-weight: bolder;
    font-family: sans-serif;
    padding: 0;
    margin: 0;
    text-align: center
}

div.heateorSssTotalShareText {
    word-wrap: normal!important;
    margin: 0;
    padding: 0;
    text-align: center
}

div.heateor_sss_horizontal_sharing li {
    width: auto
}

.heateorSssAIMBackground {
    background-color: #10ff00
}

.heateorSssAmazonWishListBackground {
    background-color: #ffe000
}

.heateorSssAOLMailBackground {
    background-color: #2a2a2a
}

.heateorSssAppnetBackground {
    background-color: #5d5d5d
}

.heateorSssBaiduBackground {
    background-color: #2319dc
}

.heateorSssBalatarinBackground {
    background-color: #fff
}

.heateorSssBibSonomyBackground {
    background-color: #000
}

.heateorSssBittyBrowserBackground {
    background-color: #efefef
}

.heateorSssBlinklistBackground {
    background-color: #3d3c3b
}

.heateorSssBloggerPostBackground {
    background-color: #fda352
}

.heateorSssBlogMarksBackground {
    background-color: #535353
}

.heateorSssBookmarksfrBackground {
    background-color: #e8ead4
}

.heateorSssBoxnetBackground {
    background-color: #1a74b0
}

.heateorSssBuddyMarksBackground {
    background-color: #ffd400
}

.heateorSssCare2NewsBackground {
    background-color: #6eb43f
}

.heateorSssCommentBackground {
    background-color: #444
}

.heateorSssCopyLinkBackground {
    background-color: #ffc112
}

.heateorSssDiaryRuBackground {
    background-color: #e8d8c6
}

.heateorSssDiasporaBackground {
    background-color: #2e3436
}

.heateorSssDiHITTBackground {
    background-color: #ff6300
}

.heateorSssDiasporaBackground {
    background-color: #0166ff
}

.heateorSssDiigoBackground {
    background-color: #4a8bca
}

.heateorSssDoubanBackground {
    background-color: #497700
}

.heateorSssDraugiemBackground {
    background-color: #ffad66
}

.heateorSssEvernoteBackground {
    background-color: #8be056
}

.heateorSssFacebookMessengerBackground {
    background-color: #0084ff
}

.heateorSssFarkBackground {
    background-color: #555
}

.heateorSssFintelBackground {
    background-color: #087515
}

.heateorSssFlipboardBackground {
    background-color: #c00
}

.heateorSssFolkdBackground {
    background-color: #0f70b2
}

.heateorSssGoogleClassroomBackground {
    background-color: #ffc112
}

.heateorSssGoogleBookmarksBackground {
    background-color: #cb0909
}

.heateorSssGoogleGmailBackground {
    background-color: #e5e5e5
}

.heateorSssHackerNewsBackground {
    background-color: #f60
}

.heateorSssHatenaBackground {
    background-color: #00a6db
}

.heateorSssInstapaperBackground {
    background-color: #ededed
}

.heateorSssJamespotBackground {
    background-color: #ff9e2c
}

.heateorSssKakaoBackground {
    background-color: #fcb700
}

.heateorSssKikBackground {
    background-color: #2a2a2a
}

.heateorSssKindleItBackground {
    background-color: #2a2a2a
}

.heateorSssKnownBackground {
    background-color: #fff101
}

.heateorSssLineBackground {
    background-color: #00c300
}

.heateorSssLiveJournalBackground {
    background-color: #ededed
}

.heateorSssMailRuBackground {
    background-color: #356fac
}

.heateorSssMendeleyBackground {
    background-color: #a70805
}

.heateorSssMeneameBackground {
    background-color: #ff7d12
}

.heateorSssMixiBackground {
    background-color: #ededed
}

.heateorSssMySpaceBackground {
    background-color: #2a2a2a
}

.heateorSssNetlogBackground {
    background-color: #2a2a2a
}

.heateorSssNetvouzBackground {
    background-color: #c0ff00
}

.heateorSssNewsVineBackground {
    background-color: #055d00
}

.heateorSssNUjijBackground {
    background-color: #d40000
}

.heateorSssOdnoklassnikiBackground {
    background-color: #f2720c
}

.heateorSssOknotizieBackground {
    background-color: #fdff88
}

.heateorSssOutlookcomBackground {
    background-color: #0072c6
}

.heateorSssPapalyBackground {
    background-color: #3ac0f6
}

.heateorSssPinboardBackground {
    background-color: #1341de
}

.heateorSssPlurkBackground {
    background-color: #cf682f
}

.heateorSssPocketBackground {
    background-color: #f0f0f0
}

.heateorSssPolyvoreBackground {
    background-color: #2a2a2a
}

.heateorSssPrintFriendlyBackground {
    background-color: #61d1d5
}

.heateorSssProtopageBookmarksBackground {
    background-color: #413fff
}

.heateorSssPushaBackground {
    background-color: #0072b8
}

.heateorSssQzoneBackground {
    background-color: #2b82d9
}

.heateorSssRefindBackground {
    background-color: #1492ef
}

.heateorSssRediffMyPageBackground {
    background-color: #d20000
}

.heateorSssRenrenBackground {
    background-color: #005eac
}

.heateorSssSegnaloBackground {
    background-color: #fdff88
}

.heateorSssSinaWeiboBackground {
    background-color: #ff0
}

.heateorSssSiteJotBackground {
    background-color: #ffc800
}

.heateorSssSkypeBackground {
    background-color: #00aff0
}

.heateorSssSMSBackground {
    background-color: #6ebe45
}

.heateorSssSlashdotBackground {
    background-color: #004242
}

.heateorSssStumpediaBackground {
    background-color: #ededed
}

.heateorSssSvejoBackground {
    background-color: #fa7aa3
}

.heateorSssSymbalooFeedsBackground {
    background-color: #6da8f7
}

.heateorSssTelegramBackground {
    background-color: #3da5f1
}

.heateorSssTrelloBackground {
    background-color: #1189ce
}

.heateorSssTuentiBackground {
    background-color: #0075c9
}

.heateorSssTwiddlaBackground {
    background-color: #ededed
}

.heateorSssTypePadPostBackground {
    background-color: #2a2a2a
}

.heateorSssViadeoBackground {
    background-color: #2a2a2a
}

.heateorSssViberBackground {
    background-color: #8b628f
}

.heateorSssWebnewsBackground {
    background-color: #cc2512
}

.heateorSssWordPressBackground {
    background-color: #464646
}

.heateorSssWykopBackground {
    background-color: #367da9
}

.heateorSssYahooMailBackground {
    background-color: #400090
}

.heateorSssYahooMessengerBackground {
    background-color: #400090
}

.heateorSssYoolinkBackground {
    background-color: #a2c538
}

.heateorSssYouMobBackground {
    background-color: #3b599d
}

.heateorSssBehanceBackground {
    background-color: #053eff
}

.heateorSssFlickrBackground {
    background-color: #ff0084
}

.heateorSssFoursquareBackground {
    background-color: #f94877
}

.heateorSssGithubBackground {
    background-color: #2a2a2a
}

.heateorSssMediumBackground {
    background-color: #2a2a2a
}

.heateorSssSnapchatBackground {
    background-color: #ffe900
}

.heateorSssVimeoBackground {
    background-color: #1ab7ea
}

.heateorSssYoutubeBackground {
    background-color: red
}

.heateorSssRSSBackground {
    background-color: #e3702d
}

.heateorSssGentleReaderBackground {
    background-color: #46aecf
}

i.heateorSssLineBackground a,
i.heateorSssViberBackground a,
i.heateorSssWhatsappBackground a {
    display: inline!important
}

div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_like {
    width: 91px
}

div.heateor_sss_horizontal_sharing li.heateor_sss_facebook_recommend {
    width: 145px
}

div.heateor_sss_horizontal_sharing li.heateor_sss_twitter_tweet {
    width: 95px
}

div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share span {
    vertical-align: text-top!important
}

div.heateor_sss_horizontal_sharing li.heateor_sss_linkedin_share {
    width: 96px
}

div.heateor_sss_horizontal_sharing li.heateor_sss_buffer_share {
    width: 108px
}

div.heateor_sss_horizontal_sharing li.heateor_sss_reddit_badge {
    width: 130px
}

div.heateor_sss_horizontal_sharing li.heateor_sss_yummly {
    width: 106px
}

div.heateor_sss_horizontal_sharing li.heateor_sss_pinterest_pin {
    width: 76px
}

div.heateor_sss_horizontal_sharing li.heateor_sss_xing {
    width: 98px
}

.heateor_sss_sharing_container a {
    padding: 0!important;
    box-shadow: none!important;
    border: none!important
}

.heateorSssClear {
    clear: both
}

div.course_instructor_widget .heateor_sss_vertical_sharing {
    display: none!important
}


/* Ajax load more plugin row colmn case css setion */


/* ajax load more Purpose */

.alm-reveal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%
}

.alm-load-more-btn.done {
    display: none;
}


/* 16.02.21 */

.latest_travel_sec.cb-hp-section .cb-infinite-load {
    -webkit-transition: all .35s;
    -transition: all .35s;
    transition: all .35s;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    width: 50%;
    color: #161616;
    letter-spacing: 2px;
    border: 2px solid #161616;
    font-size: 18px;
    text-transform: uppercase;
    background: transparent;
    float: none;
    margin: 0 auto;
}

.latest_travel_sec.cb-hp-section .cb-infinite-load:hover {
    background: #000;
    color: #fff;
}

.latest_travel_sec .loadsec .load-topgap,
.latest_travel_sec.cb-hp-section .cb-main.cb-module-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.latest_travel_sec .load_morebtn.c-btn {
    display: block;
    text-align: center;
}

.latest_travel_sec .loadsec,
.latest_travel_sec .bottom-fullbtn.full-width-btn {
    width: 100%;
}

.latest_travel_sec.cb-hp-section {
    margin-bottom: 60px;
}

.latest_travel_sec .load-topgap .cb-post-title {
    font-size: 20px;
    line-height: 24px;
}


/* ajax load more Purpose */

@media screen and (max-width:783px) {
    #heateor_sss_sharing_more_providers {
        width: 80%;
        left: 60%;
        margin-left: -50%;
        text-shadow: none!important
    }
    #heateor_sss_sharing_more_providers .filter input.search {
        border: 1px solid #ccc;
        width: 92%
    }
}

@media screen and (max-width:475px) {
    #heateor_sss_sharing_more_content .all-services ul li {
        width: 100%!important
    }
}

.heateorSssParlerSvg {
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20height%3D%27100%25%27%20width%3D%27100%25%27%20viewBox%3D%27-24%20-30%20140%20160%27%3E%3Cg%20fill%3D%27%23fff%27%3E%3Cpath%20d%3D%27M58.34%2083.31h-25v-8.49c0-4.5%203.64-8.14%208.14-8.14h16.87c13.8%200%2025.02-11.19%2025.02-24.94%200-13.75-11.23-24.94-25.03-24.94h-.26l-5.3-.16H0C0%207.45%207.45%200%2016.63%200h36.41l5.44.17C81.39.24%20100%2018.86%20100%2041.74c0%2022.92-18.69%2041.57-41.66%2041.57z%27%3E%3C%2Fpath%3E%3Cpath%20d%3D%27M16.65%20100C7.46%20100%20.02%2092.55.02%2083.37V49.49c0-8.92%207.23-16.16%2016.16-16.16h42.19a8.32%208.32%200%20010%2016.64h-33.5c-4.53%200-8.21%203.67-8.21%208.21V100z%27%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center center
}

div#heateor_sss_sharing_more_content ss.heateorSssParlerSvg {
    width: 92%!important
}

div.heateor_sss_bottom_sharing {
    margin-bottom: 0
}


/*!
* Do not modify this file directly.  It is concatenated from individual module CSS files.
*/

[data-carousel-extra] {
    cursor: pointer
}

.jp-carousel-wrap * {
    line-height: inherit
}

.jp-carousel-overlay {
    background: #000
}

div.jp-carousel-fadeaway {
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
    position: fixed;
    bottom: 0;
    z-index: 2147483647;
    width: 100%;
    height: 15px
}

.jp-carousel-next-button span,
.jp-carousel-previous-button span {
    background: url(../arrows.html) no-repeat center center;
    background-size: 200px 126px
}

.jp-carousel-msg {
    font-family: "Open Sans", sans-serif;
    font-style: normal;
    display: inline-block;
    line-height: 19px;
    padding: 11px 15px;
    font-size: 14px;
    text-align: center;
    margin: 25px 20px 0 2px;
    background-color: #fff;
    border-left: 4px solid #ffba00;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1)
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (-o-min-device-pixel-ratio:3/2),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
    .jp-carousel-next-button span,
    .jp-carousel-previous-button span {
        background-image: url(../arrows-2x.html)
    }
}

.jp-carousel-wrap {
    font-family: "Helvetica Neue", sans-serif!important
}

.jp-carousel-info {
    position: absolute;
    bottom: 0;
    text-align: left!important;
    -webkit-font-smoothing: subpixel-antialiased!important
}

.jp-carousel-info ::selection {
    background: #68c9e8;
    color: #fff
}

.jp-carousel-info ::-moz-selection {
    background: #68c9e8;
    color: #fff
}

.jp-carousel-photo-info {
    position: relative;
    left: 25%;
    width: 50%
}

.jp-carousel-transitions .jp-carousel-photo-info {
    transition: .4s ease-out
}

.jp-carousel-info h2 {
    background: 0 0!important;
    border: none!important;
    color: #999;
    display: block!important;
    font: normal 13px/1.25em "Helvetica Neue", sans-serif!important;
    letter-spacing: 0!important;
    margin: 7px 0 0 0!important;
    padding: 10px 0 0!important;
    overflow: hidden;
    text-align: left;
    text-shadow: none!important;
    text-transform: none!important;
    -webkit-font-smoothing: subpixel-antialiased
}

.jp-carousel-next-button,
.jp-carousel-previous-button {
    text-indent: -9999px;
    overflow: hidden;
    cursor: pointer
}

.jp-carousel-next-button span,
.jp-carousel-previous-button span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 82px;
    zoom: 1;
    opacity: .2
}

.jp-carousel-transitions .jp-carousel-next-button span,
.jp-carousel-transitions .jp-carousel-previous-button span {
    transition: .5s opacity ease-out
}

.jp-carousel-next-button:hover span,
.jp-carousel-previous-button:hover span {
    opacity: .6
}

.jp-carousel-next-button span {
    background-position: -110px center;
    right: 0
}

.jp-carousel-previous-button span {
    background-position: -10px center;
    left: 0
}

.jp-carousel-buttons {
    margin: -18px -20px 15px;
    padding: 8px 10px;
    border-bottom: 1px solid #222;
    background: #222;
    text-align: center
}

div.jp-carousel-buttons a {
    border: none!important;
    color: #999;
    font: normal 11px/1.2em "Helvetica Neue", sans-serif!important;
    letter-spacing: 0!important;
    padding: 5px 2px 5px 0;
    text-decoration: none!important;
    text-shadow: none!important;
    vertical-align: middle;
    -webkit-font-smoothing: subpixel-antialiased
}

div.jp-carousel-buttons a:hover {
    color: #68c9e8;
    border: none!important
}

.jp-carousel-transitions div.jp-carousel-buttons a:hover {
    transition: none!important
}

.jp-carousel-next-button,
.jp-carousel-previous-button,
.jp-carousel-slide,
.jp-carousel-slide img {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.jp-carousel-slide {
    position: fixed;
    width: 0;
    bottom: 0;
    background-color: #000;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px
}

.jp-carousel-transitions .jp-carousel-slide {
    transition: .3s ease-out
}

.jp-carousel-slide.selected {
    position: absolute!important;
    opacity: 1
}

.jp-carousel-slide {
    opacity: .25
}

.jp-carousel-slide img {
    display: block;
    width: 100%!important;
    height: 100%!important;
    max-width: 100%!important;
    max-height: 100%!important;
    background: 0 0!important;
    border: none!important;
    padding: 0!important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    zoom: 1
}

.jp-carousel-transitions .jp-carousel-slide {
    transition: opacity .4s linear
}

.jp-carousel-close-hint {
    color: #999;
    cursor: default;
    letter-spacing: 0!important;
    padding: .35em 0 0;
    position: absolute;
    text-align: right;
    width: 90%
}

.jp-carousel-transitions .jp-carousel-close-hint {
    transition: color .2s linear
}

.jp-carousel-close-hint span {
    cursor: pointer;
    background-color: #000;
    background-color: rgba(0, 0, 0, .8);
    display: inline-block;
    height: 22px;
    font: 400 24px/1 "Helvetica Neue", sans-serif!important;
    line-height: 22px;
    margin: 0 0 0 .4em;
    text-align: center;
    vertical-align: middle;
    width: 22px;
    border-radius: 4px
}

.jp-carousel-transitions .jp-carousel-close-hint span {
    transition: border-color .2s linear
}

.jp-carousel-close-hint:hover {
    cursor: default;
    color: #fff
}

.jp-carousel-close-hint:hover span {
    border-color: #fff
}

a.jp-carousel-image-download,
div.jp-carousel-buttons a.jp-carousel-commentlink,
div.jp-carousel-buttons a.jp-carousel-reblog {
    background: url(../carousel-spritee4da.html) no-repeat;
    background-size: 16px 200px
}

div.jp-carousel-buttons a.jp-carousel-commentlink,
div.jp-carousel-buttons a.jp-carousel-reblog {
    margin: 0 14px 0 0!important
}

div.jp-carousel-buttons a.jp-carousel-reblog.reblogged {
    background-color: #303030;
    padding-right: 8px!important;
    border-radius: 2px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px
}

div.jp-carousel-buttons a.jp-carousel-reblog.reblogged {
    margin: 0 2px 0 -12px!important
}

div.jp-carousel-buttons a.jp-carousel-reblog,
div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover {
    background-position: 6px -36px;
    padding-right: auto!important;
    padding-left: 26px!important;
    color: #999
}

div.jp-carousel-buttons a.jp-carousel-commentlink {
    background-position: 0 -156px;
    padding-left: 19px!important
}

div.jp-carousel-buttons a.jp-carousel-reblog.reblogged:hover {
    cursor: default
}

div.jp-carousel-buttons a.jp-carousel-reblog:hover {
    background-position: 6px -56px;
    color: #68c9e8
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (-o-min-device-pixel-ratio:3/2),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
    a.jp-carousel-image-download,
    div.jp-carousel-buttons a.jp-carousel-commentlink,
    div.jp-carousel-buttons a.jp-carousel-reblog {
        background-image: url(../carousel-sprite-2xe4da.html)
    }
}

div#carousel-reblog-box {
    background: #222;
    background: -moz-linear-gradient(bottom, #222, #333);
    background: -webkit-gradient(linear, left bottom, left top, from(#222), to(#333));
    padding: 3px 0 0;
    display: none;
    margin: 5px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .9);
    height: 74px;
    width: 565px
}

#carousel-reblog-box textarea {
    background: #999;
    font: 13px/1.4 "Helvetica Neue", sans-serif!important;
    color: #444;
    padding: 3px 6px;
    width: 370px;
    height: 48px;
    float: left;
    margin: 6px 9px 0 9px;
    border: 1px solid #666;
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .2);
    border-radius: 2px
}

#carousel-reblog-box textarea:focus {
    background: #ccc;
    color: #222
}

#carousel-reblog-box label {
    color: #aaa;
    font-size: 11px;
    padding-right: 2px;
    padding-left: 2px;
    display: inline;
    font-weight: 400
}

#carousel-reblog-box select {
    width: 110px;
    padding: 0;
    font-size: 12px;
    font-family: "Helvetica Neue", sans-serif!important;
    background: #333;
    color: #eee;
    border: 1px solid #444;
    margin-top: 5px
}

#carousel-reblog-box .submit,
#wrapper #carousel-reblog-box p.response {
    float: left;
    width: 154px;
    padding-top: 0;
    padding-left: 1px;
    overflow: hidden;
    height: 34px;
    margin: 3px 0 0 2px!important
}

#wrapper #carousel-reblog-box p.response {
    font-size: 13px;
    clear: none;
    padding-left: 2px;
    height: 34px;
    color: #aaa
}

#carousel-reblog-box input#carousel-reblog-submit,
#jp-carousel-comment-form-button-submit {
    font: 13px/24px "Helvetica Neue", sans-serif!important;
    margin-top: 8px;
    padding: 0 10px!important;
    border-radius: 1em;
    height: 24px;
    color: #333;
    cursor: pointer;
    font-weight: 400;
    background: #aaa;
    background: -moz-linear-gradient(bottom, #aaa, #ccc);
    background: -webkit-gradient(linear, left bottom, left top, from(#aaa), to(#ccc));
    border: 1px solid #444
}

#carousel-reblog-box input#carousel-reblog-submit:hover,
#jp-carousel-comment-form-button-submit:hover {
    background: #ccc;
    background: -moz-linear-gradient(bottom, #ccc, #eee);
    background: -webkit-gradient(linear, left bottom, left top, from(#ccc), to(#eee))
}

#carousel-reblog-box .canceltext {
    color: #aaa;
    font-size: 11px;
    line-height: 24px
}

#carousel-reblog-box .canceltext a {
    color: #fff
}

.jp-carousel-titleanddesc {
    border-top: 1px solid #222;
    color: #999;
    font-size: 15px;
    padding-top: 24px;
    margin-bottom: 20px;
    font-weight: 400
}

.jp-carousel-titleanddesc-title {
    font: 300 1.5em/1.1 "Helvetica Neue", sans-serif!important;
    text-transform: none!important;
    color: #fff;
    margin: 0 0 15px;
    padding: 0
}

.jp-carousel-titleanddesc-desc p {
    color: #999;
    line-height: 1.4;
    margin-bottom: .75em
}

.jp-carousel-comments p a,
.jp-carousel-info h2 a,
.jp-carousel-titleanddesc p a {
    color: #fff!important;
    border: none!important;
    text-decoration: underline!important;
    font-weight: 400!important;
    font-style: normal!important
}

.jp-carousel-titleanddesc p b,
.jp-carousel-titleanddesc p strong {
    font-weight: 700;
    color: #999
}

.jp-carousel-titleanddesc p em,
.jp-carousel-titleanddesc p i {
    font-style: italic;
    color: #999
}

.jp-carousel-comments p a:hover,
.jp-carousel-info h2 a:hover,
.jp-carousel-titleanddesc p a:hover {
    color: #68c9e8!important
}

.jp-carousel-titleanddesc p:empty {
    display: none
}

.jp-carousel-left-column-wrapper h1:after,
.jp-carousel-left-column-wrapper h1:before,
.jp-carousel-photo-info h1:after,
.jp-carousel-photo-info h1:before {
    content: none!important
}

.jp-carousel-image-meta {
    background: #111;
    border: 1px solid #222;
    color: #fff;
    font-size: 13px;
    font: 12px/1.4 "Helvetica Neue", sans-serif!important;
    overflow: hidden;
    padding: 18px 20px;
    width: 209px!important
}

.jp-carousel-image-meta h5,
.jp-carousel-image-meta li {
    font-family: "Helvetica Neue", sans-serif!important;
    position: inherit!important;
    top: auto!important;
    right: auto!important;
    left: auto!important;
    bottom: auto!important;
    background: 0 0!important;
    border: none!important;
    font-weight: 400!important;
    line-height: 1.3em!important
}

.jp-carousel-image-meta ul {
    margin: 0!important;
    padding: 0!important;
    list-style: none!important
}

.jp-carousel-image-meta li {
    width: 48%!important;
    display: inline-block!important;
    vertical-align: top!important;
    margin: 0 2% 15px 0!important;
    color: #fff!important;
    font-size: 13px!important
}

.jp-carousel-image-meta h5 {
    color: #999!important;
    text-transform: uppercase!important;
    font-size: 10px!important;
    margin: 0 0 2px!important;
    letter-spacing: .1em!important
}

a.jp-carousel-image-download {
    padding-left: 23px;
    display: inline-block;
    clear: both;
    color: #999;
    line-height: 1;
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
    background-position: 0 -82px
}

a.jp-carousel-image-download span.photo-size {
    font-size: 11px;
    border-radius: 1em;
    margin-left: 2px;
    display: inline-block
}

a.jp-carousel-image-download span.photo-size-times {
    padding: 0 1px 0 2px
}

a.jp-carousel-image-download:hover {
    background-position: 0 -122px;
    color: #68c9e8;
    border: none!important
}

.jp-carousel-image-map {
    position: relative;
    margin: -20px -20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
    height: 154px
}

.jp-carousel-image-map img.gmap-main {
    border-top-left-radius: 6px;
    border-right: 1px solid rgba(255, 255, 255, .17)
}

.jp-carousel-image-map div.gmap-topright {
    width: 94px;
    height: 154px;
    position: absolute;
    top: 0;
    right: 0
}

.jp-carousel-image-map div.imgclip {
    overflow: hidden;
    border-top-right-radius: 6px
}

.jp-carousel-image-map div.gmap-topright img {
    margin-left: -40px
}

.jp-carousel-image-map img.gmap-bottomright {
    position: absolute;
    top: 96px;
    right: 0
}

.jp-carousel-comments {
    font: 15px/1.7 "Helvetica Neue", sans-serif!important;
    font-weight: 400;
    background: none transparent
}

.jp-carousel-comments p a:active,
.jp-carousel-comments p a:focus,
.jp-carousel-comments p a:hover {
    color: #68c9e8!important
}

.jp-carousel-comment {
    background: none transparent;
    color: #999;
    margin-bottom: 20px;
    clear: left;
    overflow: auto;
    width: 100%
}

.jp-carousel-comment p {
    color: #999!important
}

.jp-carousel-comment .comment-author {
    font-size: 13px;
    font-weight: 400;
    padding: 0;
    width: auto;
    display: inline;
    float: none;
    border: none;
    margin: 0
}

.jp-carousel-comment .comment-author a {
    color: #fff
}

.jp-carousel-comment .comment-gravatar {
    float: left
}

.jp-carousel-comment .comment-content {
    border: none;
    margin-left: 85px;
    padding: 0
}

.jp-carousel-comment .avatar {
    margin: 0 20px 0 0;
    border-radius: 4px;
    border: none!important;
    padding: 0!important;
    background-color: transparent!important
}

.jp-carousel-comment .comment-date {
    color: #999;
    margin-top: 4px;
    font-size: 11px;
    display: inline;
    float: right
}

#jp-carousel-comment-form {
    margin: 0 0 10px!important;
    float: left;
    width: 100%
}

textarea#jp-carousel-comment-form-comment-field {
    background: rgba(34, 34, 34, .9);
    border: 1px solid #3a3a3a;
    color: #aaa;
    font: 15px/1.4 "Helvetica Neue", sans-serif!important;
    width: 100%;
    padding: 10px 10px 5px;
    margin: 0;
    float: none;
    height: 147px;
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .2);
    border-radius: 3px;
    overflow: hidden;
    box-sizing: border-box
}

textarea#jp-carousel-comment-form-comment-field::-webkit-input-placeholder {
    color: #555
}

textarea#jp-carousel-comment-form-comment-field:focus {
    background: #ccc;
    color: #222
}

textarea#jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder {
    color: #aaa
}

#jp-carousel-comment-form-spinner,
#jp-carousel-comment-form-spinner:after {
    border-radius: 50%;
    width: 20px;
    height: 20px
}

#jp-carousel-comment-form-spinner {
    display: none;
    float: left;
    margin: 22px 0 0 10px;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 4px solid rgba(255, 255, 255, .2);
    border-right: 4px solid rgba(255, 255, 255, .2);
    border-bottom: 4px solid rgba(255, 255, 255, .2);
    border-left: 4px solid #fff;
    transform: translateZ(0);
    animation: load8 1.1s infinite linear
}

@keyframes load8 {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

#jp-carousel-comment-form-submit-and-info-wrapper {
    display: none;
    overflow: hidden;
    width: 100%
}

#jp-carousel-comment-form-commenting-as input {
    background: rgba(34, 34, 34, .9);
    border: 1px solid #3a3a3a;
    color: #aaa;
    font: 13px/1.4 "Helvetica Neue", sans-serif!important;
    padding: 3px 6px;
    float: left;
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .2);
    border-radius: 2px;
    width: 285px
}

#jp-carousel-comment-form-commenting-as input:focus {
    background: #ccc;
    color: #222
}

#jp-carousel-comment-form-commenting-as p {
    font: 400 13px/1.7 "Helvetica Neue", sans-serif!important;
    margin: 22px 0 0;
    float: left
}

#jp-carousel-comment-form-commenting-as fieldset {
    float: left;
    border: none;
    margin: 20px 0 0 0;
    padding: 0
}

#jp-carousel-comment-form-commenting-as fieldset {
    clear: both
}

#jp-carousel-comment-form-commenting-as label {
    font: 400 13px/1.7 "Helvetica Neue", sans-serif!important;
    margin: 0 20px 3px 0;
    float: left;
    width: 100px
}

#jp-carousel-comment-form-button-submit {
    margin-top: 20px;
    float: right
}

#js-carousel-comment-form-container {
    margin-bottom: 15px;
    overflow: auto;
    width: 100%
}

#jp-carousel-comment-form-container {
    margin-bottom: 15px;
    overflow: auto;
    width: 100%
}

#jp-carousel-comment-post-results {
    display: none;
    overflow: auto;
    width: 100%
}

#jp-carousel-comment-post-results span {
    display: block;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    overflow: auto;
    padding: 1em 0;
    box-sizing: border-box;
    background: rgba(0, 0, 0, .7);
    border-radius: 2px;
    font: 13px/1.4 "Helvetica Neue", sans-serif!important;
    border: 1px solid rgba(255, 255, 255, .17);
    box-shadow: inset 0 0 5px 5px #000
}

.jp-carousel-comment-post-error {
    color: #df4926
}

#jp-carousel-comments-closed {
    display: none;
    color: #999
}

#jp-carousel-comments-loading {
    font: 400 15px/1.7 "Helvetica Neue", sans-serif!important;
    display: none;
    color: #999;
    text-align: left;
    margin-bottom: 20px
}

.jp-carousel-light .jp-carousel-overlay {
    background: #fff
}

.jp-carousel-light .jp-carousel-next-button:hover span,
.jp-carousel-light .jp-carousel-previous-button:hover span {
    opacity: .8
}

.jp-carousel-light .jp-carousel-close-hint:hover,
.jp-carousel-light .jp-carousel-titleanddesc div {
    color: #000!important
}

.jp-carousel-light .jp-carousel-comment .comment-author a,
.jp-carousel-light .jp-carousel-comments p a,
.jp-carousel-light .jp-carousel-info h2 a,
.jp-carousel-light .jp-carousel-titleanddesc p a {
    color: #1e8cbe!important
}

.jp-carousel-light .jp-carousel-comment .comment-author a:hover,
.jp-carousel-light .jp-carousel-comments p a:hover,
.jp-carousel-light .jp-carousel-info h2 a:hover,
.jp-carousel-light .jp-carousel-titleanddesc p a:hover {
    color: #f1831e!important
}

.jp-carousel-light .jp-carousel-comment,
.jp-carousel-light .jp-carousel-comment p,
.jp-carousel-light .jp-carousel-info h2,
.jp-carousel-light .jp-carousel-titleanddesc,
.jp-carousel-light .jp-carousel-titleanddesc p,
.jp-carousel-light .jp-carousel-titleanddesc p b,
.jp-carousel-light .jp-carousel-titleanddesc p em,
.jp-carousel-light .jp-carousel-titleanddesc p i,
.jp-carousel-light .jp-carousel-titleanddesc p strong,
.jp-carousel-light div.jp-carousel-buttons a {
    color: #666
}

.jp-carousel-light .jp-carousel-buttons {
    border-bottom-color: #f0f0f0;
    background: #f5f5f5
}

.jp-carousel-light div.jp-carousel-buttons a:hover {
    text-decoration: none;
    color: #f1831e
}

.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog,
.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog:hover {
    background-position: 4px -56px;
    padding-left: 24px!important
}

.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged {
    background-color: #2ea2cc;
    color: #fff
}

.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-commentlink {
    background-position: 0 -176px
}

.jp-carousel-light div.jp-carousel-buttons a.jp-carousel-reblog.reblogged {
    background-position: 5px -36px
}

.jp-carousel-light div#carousel-reblog-box {
    background: #eee;
    background: -moz-linear-gradient(bottom, #ececec, #f7f7f7);
    background: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f7f7f7));
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    border: 1px solid #ddd
}

.jp-carousel-light #carousel-reblog-box textarea {
    border: 1px inset #ccc;
    color: #666;
    border: 1px solid #cfcfcf;
    background: #fff
}

.jp-carousel-light #carousel-reblog-box .canceltext {
    color: #888
}

.jp-carousel-light #carousel-reblog-box .canceltext a {
    color: #666
}

.jp-carousel-light #carousel-reblog-box select {
    background: #eee;
    color: #333;
    border: 1px solid #aaa
}

#jp-carousel-comment-form-button-submit,
.jp-carousel-light #carousel-reblog-box input#carousel-reblog-submit {
    color: #333;
    background: #fff;
    background: -moz-linear-gradient(bottom, #ddd, #fff);
    background: -webkit-gradient(linear, left bottom, left top, from(#ddd), to(#fff));
    border: 1px solid #aaa
}

.jp-carousel-light .jp-carousel-image-meta {
    background: #fafafa;
    border: 1px solid #eee;
    border-top-color: #f5f5f5;
    border-left-color: #f5f5f5;
    color: #333
}

.jp-carousel-light .jp-carousel-image-meta li {
    color: #000!important
}

.jp-carousel-light .jp-carousel-close-hint {
    color: #ccc
}

.jp-carousel-light .jp-carousel-close-hint span {
    background-color: #fff;
    border-color: #ccc
}

.jp-carousel-light #jp-carousel-comment-form-comment-field::-webkit-input-placeholder {
    color: #aaa
}

.jp-carousel-light #jp-carousel-comment-form-comment-field:focus {
    color: #333
}

.jp-carousel-light #jp-carousel-comment-form-comment-field:focus::-webkit-input-placeholder {
    color: #ddd
}

.jp-carousel-light a.jp-carousel-image-download {
    background-position: 0 -122px
}

.jp-carousel-light a.jp-carousel-image-download:hover {
    background-position: 0 -122px;
    color: #f1831e
}

.jp-carousel-light textarea#jp-carousel-comment-form-comment-field {
    background: #fbfbfb;
    color: #333;
    border: 1px solid #dfdfdf;
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .1)
}

.jp-carousel-light #jp-carousel-comment-form-commenting-as input {
    background: #fbfbfb;
    border: 1px solid #dfdfdf;
    color: #333;
    box-shadow: inset 2px 2px 2px rgba(0, 0, 0, .1)
}

.jp-carousel-light #jp-carousel-comment-form-commenting-as input:focus {
    background: #fbfbfb;
    color: #333
}

.jp-carousel-light #jp-carousel-comment-post-results span {
    background: #f7f7f7;
    border: 1px solid #dfdfdf;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, .05)
}

.jp-carousel-light .jp-carousel-slide {
    background-color: #fff
}

.jp-carousel-light .jp-carousel-titleanddesc {
    border-top: 1px solid #eee
}

.jp-carousel-light .jp-carousel-fadeaway {
    background: -moz-linear-gradient(bottom, rgba(255, 255, 255, .75), rgba(255, 255, 255, 0));
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, .75)), to(rgba(255, 255, 255, 0)))
}

@media only screen and (max-width:760px) {
    .jp-carousel-info {
        margin: 0 10px!important
    }
    .jp-carousel-next-button,
    .jp-carousel-previous-button {
        display: none!important
    }
    .jp-carousel-buttons {
        display: none!important
    }
    .jp-carousel-image-meta {
        float: none!important;
        width: 100%!important;
        box-sizing: border-box
    }
    .jp-carousel-close-hint {
        font-weight: 800!important;
        font-size: 26px!important;
        position: fixed!important;
        top: -10px
    }
    .jp-carousel-slide img {
        opacity: 1
    }
    .jp-carousel-wrap {
        background-color: #000
    }
    .jp-carousel-fadeaway {
        display: none
    }
    #jp-carousel-comment-form-container {
        display: none!important
    }
    .jp-carousel-titleanddesc {
        padding-top: 0!important;
        border: none!important
    }
    .jp-carousel-titleanddesc-title {
        font-size: 1em!important
    }
    .jp-carousel-left-column-wrapper {
        padding: 0;
        width: 100%!important
    }
    .jp-carousel-photo-info {
        left: 0!important;
        width: 100%!important
    }
}

.contact-form .clear-form {
    clear: both
}

.contact-form input:-ms-input-placeholder {
    -ms-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.contact-form input::-ms-input-placeholder {
    -ms-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out
}

.contact-form input::placeholder {
    transition: opacity .3s ease-out
}

.contact-form input:hover:-ms-input-placeholder {
    opacity: .5
}

.contact-form input:hover::-ms-input-placeholder {
    opacity: .5
}

.contact-form input:hover::placeholder {
    opacity: .5
}

.contact-form input:focus:-ms-input-placeholder {
    opacity: .3
}

.contact-form input:focus::-ms-input-placeholder {
    opacity: .3
}

.contact-form input:focus::placeholder {
    opacity: .3
}

.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=text],
.contact-form input[type=url] {
    box-sizing: border-box;
    margin-bottom: 1.5em;
    width: 100%
}

.contact-form select {
    margin-bottom: 1.5em
}

.contact-form textarea {
    box-sizing: border-box;
    float: none;
    height: 200px;
    margin-bottom: 1.5em;
    width: 100%
}

.contact-form input[type=checkbox],
.contact-form input[type=radio] {
    float: none;
    margin: 0 .75rem 0 5px
}

.contact-form input[type=checkbox] {
    top: 0;
    margin-left: 0
}

.contact-form label {
    margin-bottom: .25em;
    float: none;
    font-weight: 700;
    display: block
}

.contact-form label.consent-implicit input {
    display: none
}

.contact-form label.checkbox,
.contact-form label.checkbox-multiple,
.contact-form label.radio {
    margin-bottom: .25em;
    float: none;
    font-weight: 400;
    display: inline-flex;
    align-items: center
}

.contact-form .grunion-field-checkbox-multiple-wrap,
.contact-form .grunion-field-checkbox-wrap,
.contact-form .grunion-field-consent-wrap,
.contact-form .grunion-field-radio-wrap {
    margin-bottom: 1em
}

.contact-form label span {
    font-size: 85%;
    margin-left: .25em;
    font-weight: 400
}

.contact-form-submission {
    margin-bottom: 4em;
    padding: 1.5em 1em
}

.contact-form-submission p {
    margin: 0 auto;
    word-wrap: break-word
}

.form-errors .form-error-message {
    color: red
}

.textwidget .contact-form input[type=email],
.textwidget .contact-form input[type=tel],
.textwidget .contact-form input[type=text],
.textwidget .contact-form input[type=url],
.textwidget .contact-form textarea,
.wp-block-column .contact-form input[type=email],
.wp-block-column .contact-form input[type=tel],
.wp-block-column .contact-form input[type=text],
.wp-block-column .contact-form input[type=url],
.wp-block-column .contact-form textarea {
    width: 100%
}

#jetpack-check-feedback-spam {
    margin: 1px 8px 0 0
}

.jetpack-check-feedback-spam-spinner {
    display: inline-block;
    margin-top: 7px
}

.wp-block-jetpack-contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row
}

.wp-block-jetpack-button,
.wp-block-jetpack-contact-form .grunion-field-wrap {
    flex: 0 0 100%
}

.wp-block-jetpack-button.alignright button {
    float: right
}

.wp-block-jetpack-contact-form .grunion-field-wrap {
    border-right: 15px solid transparent
}

.wp-block-jetpack-contact-form .grunion-field-width-25-wrap {
    flex: 0 0 25%
}

.wp-block-jetpack-contact-form .grunion-field-width-50-wrap {
    flex: 0 0 50%
}

.wp-block-jetpack-contact-form .grunion-field-width-75-wrap {
    flex: 0 0 75%
}

.grunion-field-checkbox-wrap,
.grunion-field-consent-wrap {
    align-self: center
}

@media only screen and (min-width:600px) {
    .contact-form input[type=email],
    .contact-form input[type=tel],
    .contact-form input[type=text],
    .contact-form input[type=url] {
        width: 50%
    }
    .wp-block-jetpack-contact-form input[type=email],
    .wp-block-jetpack-contact-form input[type=tel],
    .wp-block-jetpack-contact-form input[type=text],
    .wp-block-jetpack-contact-form input[type=url] {
        width: 100%
    }
}

.jetpack-empty-spam-container {
    display: inline-block
}

.jetpack-empty-spam {
    display: inline-block
}

.jetpack-empty-spam-spinner {
    display: inline-block;
    margin-top: 7px
}

.infinite-loader {
    color: #000;
    display: block;
    height: 28px;
    text-align: center
}

#infinite-handle span {
    background: #333;
    border-radius: 1px;
    color: #eee;
    cursor: pointer;
    font-size: 13px;
    padding: 6px 16px
}

@keyframes spinner-inner {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.infinite-loader .spinner-inner div {
    left: 47px;
    top: 24px;
    position: absolute;
    animation: spinner-inner linear 1s infinite;
    background: #000;
    outline: 1px solid #fff;
    width: 6px;
    height: 12px;
    border-radius: 3px/6px;
    transform-origin: 3px 26px
}

.infinite-loader .spinner-inner div:nth-child(1) {
    transform: rotate(0);
    animation-delay: -.9166666666666666s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -.8333333333333334s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -.75s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -.6666666666666666s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -.5833333333333334s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -.5s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -.4166666666666667s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -.3333333333333333s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -.25s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -.16666666666666666s;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -83.33333333333333ms;
    background: #000
}

.infinite-loader .spinner-inner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
    background: #000
}

.infinite-loader .spinner {
    width: 28px;
    height: 28px;
    display: inline-block;
    overflow: hidden;
    background: 0 0
}

.infinite-loader .spinner-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(.28);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-origin: 0 0
}

.infinite-loader .spinner-inner div {
    box-sizing: content-box
}

#infinite-handle span button,
#infinite-handle span button:focus,
#infinite-handle span button:hover {
    display: inline;
    position: static;
    padding: 0;
    margin: 0;
    border: none;
    line-height: inherit;
    background: 0 0;
    color: inherit;
    cursor: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit
}

#infinite-handle span button::-moz-focus-inner {
    margin: 0;
    padding: 0;
    border: none
}

@media (max-width:800px) {
    #infinite-handle span:before {
        display: none
    }
    #infinite-handle span {
        display: block
    }
}

#infinite-footer {
    position: fixed;
    bottom: -50px;
    left: 0;
    width: 100%
}

#infinite-footer a {
    text-decoration: none
}

#infinite-footer .blog-credits a:hover,
#infinite-footer .blog-info a:hover {
    color: #444;
    text-decoration: underline
}

#infinite-footer .container {
    background: rgba(255, 255, 255, .8);
    border-color: #ccc;
    border-color: rgba(0, 0, 0, .1);
    border-style: solid;
    border-width: 1px 0 0;
    box-sizing: border-box;
    margin: 0 auto;
    overflow: hidden;
    padding: 1px 20px;
    width: 780px
}

#infinite-footer .blog-credits,
#infinite-footer .blog-info {
    box-sizing: border-box;
    line-height: 25px
}

#infinite-footer .blog-info {
    float: left;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 40%
}

#infinite-footer .blog-credits {
    font-weight: 400;
    float: right;
    width: 60%
}

#infinite-footer .blog-info a {
    color: #111;
    font-size: 14px;
    font-weight: 700
}

#infinite-footer .blog-credits {
    color: #888;
    font-size: 12px;
    text-align: right
}

#infinite-footer .blog-credits a {
    color: #666
}

.infinity-end.neverending #infinite-footer {
    display: none
}

@media (max-width:640px) {
    #infinite-footer .container {
        box-sizing: border-box;
        width: 100%
    }
    #infinite-footer .blog-info {
        width: 30%
    }
    #infinite-footer .blog-credits {
        width: 70%
    }
    #infinite-footer .blog-credits,
    #infinite-footer .blog-info a {
        font-size: 10px
    }
}

@media (max-width:640px) {
    #infinite-footer {
        position: static
    }
}

#infinite-aria {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0
}

.infinite-wrap:focus {
    outline: 0!important
}

#jp-post-flair {
    padding-top: .5em
}

#content div.sharedaddy,
#main div.sharedaddy,
div.sharedaddy {
    clear: both
}

div.sharedaddy h3.sd-title {
    margin: 0 0 1em 0;
    display: inline-block;
    line-height: 1.2;
    font-size: 9pt;
    font-weight: 700
}

div.sharedaddy h3.sd-title:before {
    content: "";
    display: block;
    width: 100%;
    min-width: 30px;
    border-top: 1px solid #ddd;
    margin-bottom: 1em
}

#wpadminbar li#wp-admin-bar-admin-bar-likes-widget {
    width: 61px;
    overflow: hidden
}

#wpadminbar iframe.admin-bar-likes-widget {
    width: 61px;
    height: 28px;
    min-height: 28px;
    border-width: 0;
    position: absolute;
    top: 0
}

div.jetpack-likes-widget-wrapper {
    width: 100%;
    min-height: 50px;
    position: relative
}

div.jetpack-likes-widget-wrapper .sd-link-color {
    font-size: 12px
}

div.jetpack-likes-widget-wrapper.slim-likes-widget {
    width: 1px;
    min-height: 0
}

div.jetpack-comment-likes-widget-wrapper {
    width: 100%;
    position: relative;
    min-height: 31px
}

div.jetpack-comment-likes-widget-wrapper iframe {
    margin-bottom: 0
}

#likes-other-gravatars {
    display: none;
    position: absolute;
    padding: 10px 10px 12px 10px;
    background-color: #2e4453;
    border-width: 0;
    box-shadow: 0 0 10px #2e4453;
    box-shadow: 0 0 10px rgba(46, 68, 83, .6);
    min-width: 130px;
    z-index: 1000
}

#likes-other-gravatars * {
    line-height: normal
}

#likes-other-gravatars .likes-text {
    color: #fff;
    font-size: 12px;
    padding-bottom: 8px
}

#likes-other-gravatars li,
#likes-other-gravatars ul {
    margin: 0;
    padding: 0;
    text-indent: 0;
    list-style-type: none
}

#likes-other-gravatars li::before {
    content: ""
}

#likes-other-gravatars ul.wpl-avatars {
    overflow: auto;
    display: block;
    max-height: 190px
}

#likes-other-gravatars ul.wpl-avatars li {
    width: 32px;
    height: 32px;
    float: left;
    margin: 0 5px 5px 0
}

#likes-other-gravatars ul.wpl-avatars li a {
    margin: 0 2px 0 0;
    border-bottom: none!important;
    display: block
}

#likes-other-gravatars ul.wpl-avatars li a img {
    background: 0 0;
    border: none;
    margin: 0!important;
    padding: 0!important;
    position: static
}

div.sd-box {
    border-top: 1px solid #ddd;
    border-top: 1px solid rgba(0, 0, 0, .13)
}

.comment-likes-widget,
.entry-content .post-likes-widget,
.post-likes-widget {
    margin: 0;
    border-width: 0;
    display: block
}

.comment-likes-widget-placeholder,
.post-likes-widget-placeholder {
    margin: 0;
    border-width: 0;
    position: relative
}

.comment-likes-widget-placeholder {
    height: 18px;
    position: absolute;
    display: flex;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif
}

.comment-likes-widget-placeholder::before {
    color: #2ea2cc;
    width: 16px;
    height: 16px;
    content: '';
    display: inline-block;
    position: relative;
    top: 3px;
    padding-right: 5px;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='0' fill='none' width='24' height='24'/%3E%3Cg%3E%3Cpath fill='%232EA2CC' d='M12 2l2.582 6.953L22 9.257l-5.822 4.602L18.18 21 12 16.89 5.82 21l2.002-7.14L2 9.256l7.418-.304'/%3E%3C/g%3E%3C/svg%3E")
}

.post-likes-widget-placeholder .button {
    display: none
}

.comment-likes-widget-placeholder .loading,
.post-likes-widget-placeholder .loading {
    color: #999;
    font-size: 12px
}

.comment-likes-widget-placeholder .loading {
    padding-left: 5px;
    margin-top: 4px;
    align-self: center;
    color: #4e4e4e
}

.slim-likes-widget .post-likes-widget {
    width: auto;
    float: none
}

div.sharedaddy.sd-like-enabled .sd-like h3 {
    display: none
}

div.sharedaddy.sd-like-enabled .sd-like .post-likes-widget {
    width: 100%;
    float: none;
    position: absolute;
    top: 0
}

.comment-likes-widget {
    width: 100%
}

.cs-rating,
.pd-rating {
    display: block!important
}

.sd-gplus .sd-title {
    display: none
}

.jp-related-posts-i2__row {
    display: flex;
    margin-top: 1.5rem
}

.jp-related-posts-i2__row:first-child {
    margin-top: 0
}

.jp-related-posts-i2__post {
    flex-grow: 1;
    flex-basis: 0;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    padding-left: 0
}

.jp-related-posts-i2__row[data-post-count="3"] .jp-related-posts-i2__post {
    max-width: calc(33% - 20px)
}

.jp-related-posts-i2__row[data-post-count="1"] .jp-related-posts-i2__post,
.jp-related-posts-i2__row[data-post-count="2"] .jp-related-posts-i2__post {
    max-width: calc(50% - 20px)
}

.jp-related-posts-i2__post-context,
.jp-related-posts-i2__post-date,
.jp-related-posts-i2__post-heading,
.jp-related-posts-i2__post-img-link {
    flex-direction: row;
    display: block
}

.jp-related-posts-i2__post-heading {
    margin: .5rem 0;
    font-size: 1rem;
    line-height: 1.2em
}

.jp-related-posts-i2__post-link {
    display: block;
    width: 100%;
    line-height: 1.2em
}

.jp-related-posts-i2__post-img-link {
    order: -1
}

.jp-related-posts-i2__post-img-link img {
    width: 100%
}

.jp-relatedposts-i2[data-layout=list] .jp-related-posts-i2__row {
    margin-top: 0;
    display: block
}

.jp-relatedposts-i2[data-layout=list] .jp-related-posts-i2__post {
    max-width: none;
    margin: 0
}

.jp-relatedposts-i2[data-layout=list].jp-related-posts-i2__post-img-link {
    margin-top: 1rem
}

@media only screen and (max-width:640px) {
    .jp-related-posts-i2__row {
        margin-top: 0;
        display: block
    }
    .jp-related-posts-i2__row[data-post-count] .jp-related-posts-i2__post {
        max-width: none;
        margin: 0;
        margin-top: 1rem
    }
    .jp-related-posts-i2__post-img-link {
        margin-top: 1rem
    }
    .jp-related-posts-i2__post-img-link img {
        width: 350px
    }
}

#jp-relatedposts {
    display: none;
    padding-top: 1em;
    margin: 1em 0;
    position: relative;
    clear: both
}

.jp-relatedposts:after {
    content: '';
    display: block;
    clear: both
}

#jp-relatedposts h3.jp-relatedposts-headline {
    margin: 0 0 1em 0;
    display: inline-block;
    float: left;
    font-size: 9pt;
    font-weight: 700;
    font-family: inherit
}

#jp-relatedposts h3.jp-relatedposts-headline em:before {
    content: "";
    display: block;
    width: 100%;
    min-width: 30px;
    border-top: 1px solid #ddd;
    border-top: 1px solid rgba(0, 0, 0, .2);
    margin-bottom: 1em
}

#jp-relatedposts h3.jp-relatedposts-headline em {
    font-style: normal;
    font-weight: 700
}

#jp-relatedposts .jp-relatedposts-items {
    clear: left
}

#jp-relatedposts .jp-relatedposts-items-visual {
    margin-right: -20px
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
    float: left;
    width: 33%;
    margin: 0 0 1em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post {
    padding-right: 20px;
    -moz-opacity: .8;
    opacity: .8
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n+4),
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post:nth-child(3n+4) {
    clear: both
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover .jp-relatedposts-post-title a {
    text-decoration: underline
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:hover {
    -moz-opacity: 1;
    opacity: 1
}

#jp-relatedposts .jp-relatedposts-items p,
#jp-relatedposts .jp-relatedposts-items time,
#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title {
    font-size: 14px;
    line-height: 20px;
    margin: 0
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs {
    position: relative
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs a.jp-relatedposts-post-aoverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    border-bottom: 0
}

#jp-relatedposts .jp-relatedposts-items p,
#jp-relatedposts .jp-relatedposts-items time {
    margin-bottom: 0
}

#jp-relatedposts .jp-relatedposts-items-visual h4.jp-relatedposts-post-title {
    text-transform: none;
    margin: 0;
    font-family: inherit;
    display: block;
    max-width: 100%
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a {
    font-size: inherit;
    font-weight: 400;
    text-decoration: none;
    -moz-opacity: 1;
    opacity: 1
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-title a:hover {
    text-decoration: underline
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post img.jp-relatedposts-post-img,
#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post span {
    display: block;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img,
#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post span {
    max-width: 100%
}

#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-context,
#jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
    opacity: .6
}

.jp-relatedposts-items .jp-relatedposts-post .jp-relatedposts-post-date {
    display: none
}

#jp-relatedposts .jp-relatedposts-items-visual div.jp-relatedposts-post-thumbs p.jp-relatedposts-post-excerpt {
    display: none
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs p.jp-relatedposts-post-excerpt {
    overflow: hidden
}

#jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post-nothumbs span {
    margin-bottom: 1em
}

#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post {
    clear: both;
    width: 100%
}

#jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img {
    float: left;
    overflow: hidden;
    max-width: 33%;
    margin-right: 3%
}

#jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title {
    display: inline-block;
    max-width: 63%
}

#cb-section-lp .alm-listing .alm-reveal {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

#cb-section-lp .cb-article-row {
    width: 100%;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (max-width:640px) {
    #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
        width: 50%
    }
    #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post:nth-child(3n) {
        clear: left
    }
    #jp-relatedposts .jp-relatedposts-items-visual {
        margin-right: 20px
    }
}

@media only screen and (max-width:320px) {
    #jp-relatedposts .jp-relatedposts-items .jp-relatedposts-post {
        width: 100%;
        clear: both;
        margin: 0 0 1em
    }
    #jp-relatedposts .jp-relatedposts-list .jp-relatedposts-post img.jp-relatedposts-post-img,
    #jp-relatedposts .jp-relatedposts-list h4.jp-relatedposts-post-title {
        float: none;
        max-width: 100%;
        margin-right: 0
    }
}

#jp-post-flair {
    padding-top: .5em
}

#content div.sharedaddy,
#main div.sharedaddy,
div.sharedaddy {
    clear: both
}

div.sharedaddy h3.sd-title {
    margin: 0 0 1em 0;
    display: inline-block;
    line-height: 1.2;
    font-size: 9pt;
    font-weight: 700
}

div.sharedaddy h3.sd-title:before {
    content: "";
    display: block;
    width: 100%;
    min-width: 30px;
    border-top: 1px solid #ddd;
    margin-bottom: 1em
}

body.highlander-light h3.sd-title:before {
    border-top: 1px solid rgba(0, 0, 0, .2)
}

body.highlander-dark h3.sd-title:before {
    border-top: 1px solid rgba(255, 255, 255, .4)
}

.sd-sharing {
    margin-bottom: 1em
}

.sd-content ul {
    padding: 0!important;
    margin: 0!important;
    list-style: none!important
}

.sd-content ul li {
    display: inline-block
}

.sd-content ul li.share-deprecated {
    opacity: .5
}

.sd-content ul li.share-deprecated a span {
    text-decoration: line-through
}

.sd-block.sd-gplus {
    margin: 0 0 .5em 0
}

.sd-gplus .sd-content {
    font-size: 12px
}

#sharing_email .sharing_send,
.sd-content ul li .option a.share-ustom,
.sd-content ul li a.sd-button,
.sd-content ul li.advanced a.share-more,
.sd-content ul li.preview-item div.option.option-smart-off a,
.sd-social-icon .sd-content ul li a.sd-button,
.sd-social-icon-text .sd-content ul li a.sd-button,
.sd-social-official .sd-content>ul>li .digg_button>a,
.sd-social-official .sd-content>ul>li>a.sd-button,
.sd-social-text .sd-content ul li a.sd-button {
    text-decoration: none!important;
    display: inline-block;
    font-size: 12px;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    border-radius: 3px;
    color: #656565!important;
    background: #f8f8f8;
    border: 1px solid #ccc;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
    text-shadow: none;
    line-height: 23px;
    padding: 1px 8px 0 5px
}

.sd-content ul li .option a.share-ustom span,
.sd-content ul li a.sd-button>span,
.sd-content ul li.advanced a.share-more span,
.sd-content ul li.preview-item div.option.option-smart-off a span,
.sd-social-icon-text .sd-content ul li a.sd-button>span,
.sd-social-official .sd-content>ul>li .digg_button>a span,
.sd-social-official .sd-content>ul>li>a.sd-button span,
.sd-social-text .sd-content ul li a.sd-button span {
    line-height: 23px
}

.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a,
.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button,
.sd-social-official .sd-content>ul>li .digg_button>a,
.sd-social-official .sd-content>ul>li>a.sd-button {
    line-height: 17px;
    box-shadow: none;
    vertical-align: top
}

.sd-social-official .sd-content ul li a.sd-button>span {
    line-height: 17px
}

.sd-social-official .sd-content .sharing-hidden .inner>ul>li .digg_button>a:before,
.sd-social-official .sd-content .sharing-hidden .inner>ul>li>a.sd-button:before,
.sd-social-official .sd-content>ul>li .digg_button>a:before,
.sd-social-official .sd-content>ul>li>a.sd-button:before {
    margin-bottom: -1px
}

.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-icon .sd-content ul li a.sd-button:hover,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:hover,
.sd-social-official .sd-content>ul>li .digg_button>a:active,
.sd-social-official .sd-content>ul>li .digg_button>a:hover,
.sd-social-official .sd-content>ul>li>a.sd-button:active,
.sd-social-official .sd-content>ul>li>a.sd-button:hover,
.sd-social-text .sd-content ul li a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:hover {
    color: #555;
    background: #fafafa;
    border: 1px solid #999
}

.sd-social-icon .sd-content ul li a.sd-button:active,
.sd-social-icon-text .sd-content ul li a.sd-button:active,
.sd-social-official .sd-content>ul>li .digg_button>a:active,
.sd-social-official .sd-content>ul>li>a.sd-button:active,
.sd-social-text .sd-content ul li a.sd-button:active {
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .16)
}

.sd-content ul li a.sd-button:before {
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font: normal 18px/1 social-logos;
    vertical-align: top;
    text-align: center
}

.sd-social-icon-text ul li a.sd-button:before {
    position: relative;
    top: 2px
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .sd-content ul li a.sd-button:before {
        position: relative;
        top: 2px
    }
}

.sd-social-official ul li a.sd-button:before {
    position: relative;
    top: -2px
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .sd-social-official ul li a.sd-button:before {
        top: 0
    }
}

.sd-content ul li {
    margin: 0 5px 5px 0;
    padding: 0
}

.jp-sharing-input-touch .sd-content ul li {
    padding-left: 10px
}

.sd-content ul li.preview-item a.sd-button span,
.sd-social-icon-text .sd-content ul li a span,
.sd-social-official .sd-content ul li a.sd-button span {
    margin-left: 3px
}

.sd-content ul li.preview-item.no-icon a.sd-button span {
    margin-left: 0
}

.sd-content ul li.no-icon a:before,
.sd-social-text .sd-content ul li a:before {
    display: none
}

body .sd-content ul li.share-custom.no-icon a span,
body .sd-social-text .sd-content ul li.share-custom a span {
    background-image: none;
    background-position: -500px -500px!important;
    background-repeat: no-repeat!important;
    padding-left: 0;
    height: 0;
    line-height: inherit
}

.sd-social-icon .sd-content ul li a.share-more {
    position: relative;
    top: -4px
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .sd-social-icon .sd-content ul li a.share-more {
        top: 2px
    }
}

@-moz-document url-prefix() {
    .sd-social-icon .sd-content ul li a.share-more {
        top: 2px
    }
}

.sd-social-icon .sd-content ul li a.share-more span {
    margin-left: 3px
}

.sd-content ul li.share-print div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-print a:before,
.sd-social-icon-text .sd-content li.share-print a:before,
.sd-social-official .sd-content li.share-print a:before,
.sd-social-text .sd-content ul li.share-print a:before {
    content: '\f469'
}

.sd-content ul li.share-email div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-email a:before,
.sd-social-icon-text .sd-content li.share-email a:before,
.sd-social-official .sd-content li.share-email a:before,
.sd-social-text .sd-content ul li.share-email a:before {
    content: '\f410'
}

.sd-content ul li.share-linkedin div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-linkedin a:before,
.sd-social-icon-text .sd-content li.share-linkedin a:before,
.sd-social-text .sd-content ul li.share-linkedin a:before {
    content: '\f207'
}

.sd-content ul li.share-twitter div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-twitter a:before,
.sd-social-icon-text .sd-content li.share-twitter a:before,
.sd-social-text .sd-content ul li.share-twitter a:before {
    content: '\f202'
}

.sd-content ul li.share-reddit div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-reddit a:before,
.sd-social-icon-text .sd-content li.share-reddit a:before,
.sd-social-text .sd-content ul li.share-reddit a:before {
    content: '\f222'
}

.sd-content ul li.share-tumblr div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-tumblr a:before,
.sd-social-icon-text .sd-content li.share-tumblr a:before,
.sd-social-text .sd-content ul li.share-tumblr a:before {
    content: '\f607'
}

.sd-content ul li.share-pocket div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-pocket a:before,
.sd-social-icon-text .sd-content li.share-pocket a:before,
.sd-social-text .sd-content ul li.share-pocket a:before {
    content: '\f224'
}

.sd-content ul li.share-pinterest div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-pinterest a:before,
.sd-social-icon-text .sd-content li.share-pinterest a:before,
.sd-social-text .sd-content ul li.share-pinterest a:before {
    content: '\f210'
}

.sd-content ul li.share-facebook div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-facebook a:before,
.sd-social-icon-text .sd-content li.share-facebook a:before,
.sd-social-text .sd-content ul li.share-facebook a:before {
    content: '\f203'
}

.sd-content ul li.share-press-this div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-press-this a:before,
.sd-social-icon-text .sd-content li.share-press-this a:before,
.sd-social-official .sd-content li.share-press-this a:before,
.sd-social-text .sd-content ul li.share-press-this a:before {
    content: '\f205'
}

.sd-social-official .sd-content li.share-press-this a:before {
    color: #2ba1cb
}

.sd-content ul li.share-telegram div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-telegram a:before,
.sd-social-icon-text .sd-content li.share-telegram a:before,
.sd-social-official .sd-content li.share-telegram a:before,
.sd-social-text .sd-content ul li.share-telegram a:before {
    content: '\f606'
}

.sd-social-official .sd-content li.share-telegram a:before {
    color: #08c
}

.sd-content ul li.share-skype div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-skype a:before,
.sd-social-icon-text .sd-content li.share-skype a:before,
.sd-social-text .sd-content ul li.share-skype a:before {
    content: '\f220'
}

.sd-content ul li.advanced a.share-more:before,
.sd-social-icon .sd-content ul a.share-more:before,
.sd-social-icon-text .sd-content a.share-more:before,
.sd-social-official .sd-content a.share-more:before,
.sd-social-text .sd-content ul a.share-more:before {
    content: '\f415'
}

.sd-social-official .sd-content a.share-more:before {
    color: #2ba1cb
}

.sd-content ul li.share-jetpack-whatsapp div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-jetpack-whatsapp a:before,
.sd-social-icon-text .sd-content li.share-jetpack-whatsapp a:before,
.sd-social-official .sd-content li.share-jetpack-whatsapp a:before,
.sd-social-text .sd-content ul li.share-jetpack-whatsapp a:before {
    content: '\f608'
}

.sd-social-official .sd-content li.share-jetpack-whatsapp a:before {
    color: #43d854
}

.sd-social-icon .sd-content ul li[class*=share-].share-jetpack-whatsapp a.sd-button {
    background: #43d854;
    color: #fff!important
}

.sd-content ul li.share-deprecated div.option.option-smart-off a:before,
.sd-social-icon .sd-content ul li.share-deprecated a:before,
.sd-social-icon-text .sd-content li.share-deprecated a:before,
.sd-social-official .sd-content li.share-deprecated a:before {
    width: 1em;
    height: 1em;
    content: "\1F6AB"
}

.sd-social .sd-button .share-count {
    background: #2ea2cc;
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    font-size: 10px;
    padding: 1px 3px;
    line-height: 1
}

.sd-social-official .sd-content ul,
.sd-social-official .sd-content ul li {
    line-height: 25px!important
}

.sd-social-official .sd-content>ul>li>a.sd-button span {
    line-height: 1
}

.sd-social-official .sd-content ul:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.sd-social-official .sd-content li.share-press-this a {
    margin: 0 0 5px 0
}

.sd-social-official .sd-content ul>li {
    display: block;
    float: left;
    margin: 0 10px 5px 0!important;
    height: 25px
}

.sd-social-official .fb-share-button>span {
    vertical-align: top!important
}

.sd-social-official .sd-content .pocket_button iframe {
    width: 98px
}

.reddit_button iframe {
    margin-top: 1px
}

.linkedin_button>span,
.pinterest_button,
.pocket_button iframe,
.twitter_button {
    margin: 0!important
}

.linkedin_button>span,
.pinterest_button a {
    display: block!important
}

.sd-social-official .sd-content .share-skype {
    width: 55px
}

body .sd-social-official li a.share-more,
body .sd-social-official li.share-custom a,
body .sd-social-official li.share-digg a,
body .sd-social-official li.share-email a,
body .sd-social-official li.share-press-this a,
body .sd-social-official li.share-print {
    position: relative;
    top: 0
}

body .sd-social-icon .sd-content li.share-custom>a {
    padding: 2px 3px 0 3px;
    position: relative;
    top: 4px
}

body .sd-content ul li.share-custom a.share-icon span,
body .sd-social-icon .sd-content li.share-custom a span,
body .sd-social-icon-text .sd-content li.share-custom a span,
body .sd-social-official .sd-content li.share-custom a span,
body .sd-social-text .sd-content li.share-custom a span {
    background-size: 16px 16px;
    background-repeat: no-repeat;
    margin-left: 0;
    padding: 0 0 0 19px;
    display: inline-block;
    height: 21px;
    line-height: 16px
}

body .sd-social-icon .sd-content li.share-custom a span {
    width: 0
}

body .sd-social-icon .sd-content li.share-custom a span {
    padding-left: 16px!important
}

.sharing-hidden .inner {
    position: absolute;
    z-index: 2;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    border-radius: 2px;
    margin-top: 5px;
    max-width: 400px
}

.sharing-hidden .inner ul {
    margin: 0!important
}

.sd-social-official .sd-content .sharing-hidden ul>li.share-end {
    clear: both;
    margin: 0!important;
    height: 0!important
}

.sharing-hidden .inner:after,
.sharing-hidden .inner:before {
    position: absolute;
    z-index: 1;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #ccc;
    content: "";
    display: block
}

.sharing-hidden .inner:after {
    z-index: 2;
    top: -7px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #fff
}

.sharing-hidden ul {
    margin: 0
}

.sd-social-icon .sd-content ul li[class*=share-] a,
.sd-social-icon .sd-content ul li[class*=share-] a:hover,
.sd-social-icon .sd-content ul li[class*=share-] div.option a {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 0;
    box-shadow: none;
    padding: 7px;
    position: relative;
    top: -2px;
    line-height: 1;
    width: auto;
    height: auto;
    margin-bottom: 0
}

.sd-social-icon .sd-content ul li[class*=share-] a.sd-button>span,
.sd-social-icon .sd-content ul li[class*=share-] div.option a span {
    line-height: 1
}

.sd-social-icon .sd-content ul li[class*=share-] a:hover,
.sd-social-icon .sd-content ul li[class*=share-] div.option a:hover {
    border: none;
    opacity: .6
}

.sd-social-icon .sd-content ul li[class*=share-] a.sd-button:before {
    top: 1px
}

.sd-social-icon .sd-content ul li[class*=share-] a.sd-button.share-custom {
    padding: 8px 8px 6px 8px;
    top: 5px
}

.sd-social-icon .sd-content ul li a.sd-button.share-more {
    margin-left: 10px
}

.sd-social-icon .sd-content ul li:first-child a.sd-button.share-more {
    margin-left: 0
}

.sd-social-icon .sd-button span.share-count {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 0;
    background: #555;
    font-size: 9px
}

.sd-social-icon .sd-content ul li[class*=share-] a.sd-button {
    background: #e9e9e9;
    margin-top: 2px;
    text-indent: 0
}

.sd-social-icon .sd-content ul li[class*=share-].share-tumblr a.sd-button {
    background: #2c4762;
    color: #fff!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-facebook a.sd-button {
    background: #1877f2;
    color: #fff!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-twitter a.sd-button {
    background: #00acee;
    color: #fff!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-pinterest a.sd-button {
    background: #ca1f27;
    color: #fff!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-digg a.sd-button {
    color: #555!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-press-this a.sd-button {
    background: #1e8cbe;
    color: #fff!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-telegram a.sd-button {
    background: #08c;
    color: #fff!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-linkedin a.sd-button {
    background: #0077b5;
    color: #fff!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-pocket a.sd-button {
    background: #ee4056;
    color: #fff!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-reddit a.sd-button {
    background: #cee3f8;
    color: #555!important
}

.sd-social-icon .sd-content ul li[class*=share-].share-skype a.sd-button {
    background: #00aff0;
    color: #fff!important
}

.sharing-screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute!important;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.sharing-screen-reader-text:active,
.sharing-screen-reader-text:focus,
.sharing-screen-reader-text:hover {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
    clip: auto!important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

#sharing_email {
    width: 342px;
    position: absolute;
    z-index: 1001;
    border: 1px solid #ccc;
    padding: 15px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    text-align: left
}

div.sharedaddy.sharedaddy-dark #sharing_email {
    border-color: #fff
}

#sharing_email .errors {
    color: #fff;
    background-color: #771a09;
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1;
    margin: 10px 0 0 0
}

#sharing_email label {
    font-size: 12px;
    color: #333;
    font-weight: 700;
    display: block;
    padding: 0 0 4px 0;
    text-align: left;
    text-shadow: none
}

#sharing_email form {
    margin: 0
}

#sharing_email input[type=email],
#sharing_email input[type=text] {
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #ccc;
    margin-bottom: 1em;
    background: #fff;
    font-size: 12px;
    color: #333;
    max-width: none;
    padding: 1px 3px
}

#jetpack-source_f_name {
    display: none!important;
    position: absolute!important;
    left: -9000px
}

#sharing_email .sharing_cancel {
    padding: 0 0 0 1em;
    font-size: 12px;
    text-shadow: none
}

#sharing_email .recaptcha {
    width: 312px;
    height: 123px;
    margin: 0 0 1em 0
}

.sd-content .share-customize-link {
    margin-top: 0;
    line-height: 11px
}

.sd-content .share-customize-link a {
    font-size: 11px;
    font-family: "Open Sans", sans-serif
}

.slideshow-window {
    background-color: #222;
    border: 20px solid #222;
    border-radius: 10px;
    height: 0;
    margin-bottom: 20px;
    overflow: hidden;
    padding-top: 30px!important;
    padding-bottom: 56.25%!important;
    position: relative;
    z-index: 1
}

.slideshow-window.slideshow-white {
    background-color: #fff;
    border-color: #fff
}

.slideshow-window,
.slideshow-window * {
    box-sizing: content-box
}

.slideshow-loading {
    height: 100%;
    text-align: center;
    margin: auto
}

body div.slideshow-window * img {
    background-color: transparent!important;
    background-image: none!important;
    border-width: 0!important;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    padding: 0!important;
    position: relative;
    transform: translateY(-50%);
    top: 50%
}

.slideshow-loading img {
    vertical-align: middle
}

.slideshow-slide {
    display: none;
    height: 100%!important;
    left: 0;
    margin: auto;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%!important
}

.slideshow-slide img {
    vertical-align: middle
}

.slideshow-line-height-hack {
    overflow: hidden;
    width: 0;
    font-size: 0
}

.slideshow-slide-caption {
    font-size: 13px;
    font-family: "Helvetica Neue", sans-serif;
    color: #f7f7f7;
    text-shadow: #222 1px 1px 2px;
    line-height: 25px;
    height: 25px;
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: 100;
    width: 100%;
    text-align: center
}

.slideshow-controls {
    z-index: 1000;
    position: absolute;
    bottom: 30px;
    margin: auto;
    text-align: center;
    width: 100%;
    opacity: .5;
    direction: ltr;
    transition: .3s opacity ease-out
}

.slideshow-window:hover .slideshow-controls {
    opacity: 1
}

h1,
h2,
h3,
h4,
h5,
h6,
.cb-font-header,
#bbp-user-navigation,
.cb-byline {
    font-family: 'Montserrat', sans-serif;
}

body div div.slideshow-controls a,
body div div.slideshow-controls a:hover {
    border: 2px solid rgba(255, 255, 255, .1)!important;
    background-color: #000!important;
    background-color: rgba(0, 0, 0, .6)!important;
    background-image: url(../slideshow-controls.html)!important;
    background-repeat: no-repeat;
    background-size: 142px 16px!important;
    background-position: -34px 8px!important;
    color: #222!important;
    margin: 0 5px!important;
    padding: 0!important;
    display: inline-block!important;
    zoom: 1;
    height: 32px!important;
    width: 32px!important;
    line-height: 32px!important;
    text-align: center!important;
    border-radius: 10em!important;
    transition: .3s border-color ease-out
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5) {
    body div div.slideshow-controls a,
    body div div.slideshow-controls a:hover {
        background-image: url(../slideshow-controls-2x.html)!important
    }
}

body div div.slideshow-controls a:hover {
    border-color: #fff!important
}

body div div.slideshow-controls a:first-child {
    background-position: -76px 8px!important
}

body div div.slideshow-controls a:last-child {
    background-position: -117px 8px!important
}

body div div.slideshow-controls a:nth-child(2) {
    background-position: -34px 8px!important
}

body div div.slideshow-controls a.running {
    background-position: -34px 8px!important
}

body div div.slideshow-controls a.paused {
    background-position: 9px 8px!important
}

.slideshow-controls a img {
    border: 50px dotted #f0f
}

body.presentation-wrapper-fullscreen-parent,
html.presentation-wrapper-fullscreen-parent {
    overflow: hidden!important
}

.presentation-wrapper-fullscreen-parent #wpadminbar {
    display: none
}

.presentation-wrapper-fullscreen,
.presentation-wrapper-fullscreen-parent {
    min-width: 100%!important;
    min-height: 100%!important;
    position: absolute!important;
    top: 0!important;
    right: 0!important;
    bottom: 0!important;
    left: 0!important;
    margin: 0!important;
    padding: 0!important;
    z-index: 10000!important
}

.presentation-wrapper-fullscreen {
    background-color: grey;
    border: none!important
}

.presentation-wrapper-fullscreen .nav-arrow-left,
.presentation-wrapper-fullscreen .nav-arrow-right {
    z-index: 20001
}

.presentation-wrapper-fullscreen .nav-fullscreen-button {
    z-index: 20002
}

.presentation-wrapper {
    margin: 20px auto;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    line-height: normal
}

.presentation {
    position: relative;
    margin: 0;
    overflow: hidden;
    outline: 0
}

.presentation,
.presentation .step {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%
}

.presentation .step.fade:not(.active) {
    opacity: 0
}

.presentation .slide-content {
    padding: 30px
}

.presentation .nav-arrow-left,
.presentation .nav-arrow-right,
.presentation .nav-fullscreen-button {
    position: absolute;
    width: 34px;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 0;
    transition: opacity .25s
}

.presentation .nav-arrow-left,
.presentation .nav-arrow-right {
    height: 100%;
    background-image: url(../slide-nav.html);
    background-size: 450% 61px
}

.presentation .nav-arrow-left {
    left: 0;
    background-position: 4px 50%
}

.presentation .nav-arrow-right {
    right: 0;
    background-position: -120px 50%
}

.presentation .nav-fullscreen-button {
    width: 32px;
    height: 32px;
    margin: 4px;
    bottom: 0;
    right: 0;
    z-index: 3;
    background-image: url(../expand.html);
    background-size: 100% 100%
}

.presentation:hover .nav-arrow-left,
.presentation:hover .nav-arrow-right {
    opacity: 1
}

.presentation:hover .nav-fullscreen-button {
    opacity: .8
}

.presentation-wrapper-fullscreen .nav-fullscreen-button {
    background-image: url(../collapse.html)
}

.presentation .autoplay-overlay {
    height: 15%;
    width: 80%;
    margin: 30% 10%;
    position: relative;
    z-index: 100;
    display: table;
    border-radius: 50px;
    background-color: #e5e5e5;
    background-color: rgba(0, 0, 0, .75);
    transition: opacity .5s
}

.presentation .autoplay-overlay .overlay-msg {
    position: relative;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    color: #fff
}

.presentation .will-fade {
    opacity: 0
}

.presentation .do-fade {
    opacity: 1;
    transition: opacity .5s
}

div.jetpack-quiz {
    border: 1px solid #deede3;
    background-color: #f3f3f3;
    padding: 1em;
    line-height: 1.3em;
    margin-bottom: 2em;
    border-radius: .2em
}

div.jetpack-quiz div.jetpack-quiz-question {
    margin-bottom: .5em;
    font-weight: 700
}

div.jetpack-quiz div.jetpack-quiz-answer {
    cursor: pointer;
    margin-bottom: .5em;
    padding: 1em 0 1em 1em;
    border-bottom: 1px dotted #999
}

div.jetpack-quiz div.jetpack-quiz-answer.last {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0
}

div.jetpack-quiz div.jetpack-quiz-answer.correct {
    color: green
}

div.jetpack-quiz div.jetpack-quiz-answer.wrong {
    color: red
}

div.jetpack-quiz div.jetpack-quiz-answer div.jetpack-quiz-explanation {
    display: none
}

div.jetpack-quiz div.jetpack-quiz-answer.correct div.jetpack-quiz-explanation,
div.jetpack-quiz div.jetpack-quiz-answer.wrong div.jetpack-quiz-explanation {
    display: block;
    color: #000;
    font-size: 90%;
    margin-top: 1em
}

div.jetpack-quiz div.jetpack-quiz-answer.correct div.jetpack-quiz-explanation tt,
div.jetpack-quiz div.jetpack-quiz-answer.wrong div.jetpack-quiz-explanation tt {
    font-size: 85%
}

div.jetpack-quiz pre {
    font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    background: 0 0;
    margin: 0;
    padding: 0
}

#subscribe-email input {
    width: 95%
}

.comment-subscription-form {
    margin-bottom: 1em
}

.comment-subscription-form .subscribe-label {
    display: inline!important
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important
}

.jetpack-video-wrapper {
    margin-bottom: 1.6em
}

.jetpack-video-wrapper>.wp-video,
.jetpack-video-wrapper>embed,
.jetpack-video-wrapper>iframe,
.jetpack-video-wrapper>object {
    margin-bottom: 0
}

.jetpack-social-navigation ul {
    display: block;
    margin: 0 0 1.5em;
    padding: 0
}

.jetpack-social-navigation li {
    display: inline-block;
    margin: 0;
    line-height: 1
}

.jetpack-social-navigation a {
    border: 0;
    height: 1em;
    text-decoration: none;
    width: 1em
}

.jetpack-social-navigation-svg .icon {
    color: inherit;
    fill: currentColor;
    height: 1em;
    vertical-align: middle;
    width: 1em
}

.jetpack-social-navigation-genericons a:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-family: Genericons;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    height: 1em;
    line-height: 1;
    speak: none;
    text-decoration: inherit;
    vertical-align: top;
    width: 1em
}

.jetpack-social-navigation-genericons a:before {
    content: "\f415"
}

.jetpack-social-navigation-genericons a[href*="codepen.io"]:before {
    content: "\f216"
}

.jetpack-social-navigation-genericons a[href*="digg.com"]:before {
    content: "\f221"
}

.jetpack-social-navigation-genericons a[href*="dribbble.com"]:before {
    content: "\f201"
}

.jetpack-social-navigation-genericons a[href*="dropbox.com"]:before {
    content: "\f225"
}

.jetpack-social-navigation-genericons a[href*="mailto:"]:before {
    content: "\f410"
}

.jetpack-social-navigation-genericons a[href*="facebook.com"]:before {
    content: "\f203"
}

.jetpack-social-navigation-genericons a[href*="flickr.com"]:before {
    content: "\f211"
}

.jetpack-social-navigation-genericons a[href*="foursquare.com"]:before {
    content: "\f226"
}

.jetpack-social-navigation-genericons a[href*="github.com"]:before {
    content: "\f200"
}

.jetpack-social-navigation-genericons a[href*="plus.google.com"]:before {
    content: "\f206"
}

.jetpack-social-navigation-genericons a[href*="instagram.com"]:before {
    content: "\f215"
}

.jetpack-social-navigation-genericons a[href*="linkedin.com"]:before {
    content: "\f208"
}

.jetpack-social-navigation-genericons a[href*="path.com"]:before {
    content: "\f219"
}

.jetpack-social-navigation-genericons a[href*="pinterest."]:before {
    content: "\f210"
}

.jetpack-social-navigation-genericons a[href*="getpocket.com"]:before {
    content: "\f224"
}

.jetpack-social-navigation-genericons a[href*="polldaddy.com"]:before {
    content: "\f217"
}

.jetpack-social-navigation-genericons a[href*="reddit.com"]:before {
    content: "\f222"
}

.jetpack-social-navigation-genericons a[href$="/feed/"]:before {
    content: "\f413"
}

.jetpack-social-navigation-genericons a[href*="skype:"]:before {
    content: "\f220"
}

.jetpack-social-navigation-genericons a[href*="spotify.com"]:before {
    content: "\f515"
}

.jetpack-social-navigation-genericons a[href*="stumbleupon.com"]:before {
    content: "\f223"
}

.jetpack-social-navigation-genericons a[href*="tumblr.com"]:before {
    content: "\f214"
}

.jetpack-social-navigation-genericons a[href*="twitch.tv"]:before {
    content: "\f516"
}

.jetpack-social-navigation-genericons a[href*="twitter.com"]:before {
    content: "\f202"
}

.jetpack-social-navigation-genericons a[href*="vimeo.com"]:before {
    content: "\f212"
}

.jetpack-social-navigation-genericons a[href*="vine.co"]:before {
    content: "\f517"
}

.jetpack-social-navigation-genericons a[href*="wordpress.com"]:before,
.jetpack-social-navigation-genericons a[href*="wordpress.org"]:before {
    content: "\f205"
}

.jetpack-social-navigation-genericons a[href*="youtube.com"]:before {
    content: "\f213"
}

.tiled-gallery {
    clear: both;
    margin: 0 0 20px;
    overflow: hidden
}

.tiled-gallery img {
    margin: 2px!important
}

.tiled-gallery .gallery-group {
    float: left;
    position: relative
}

.tiled-gallery .tiled-gallery-item {
    float: left;
    margin: 0;
    position: relative;
    width: inherit
}

.tiled-gallery .gallery-row {
    overflow: hidden
}

.tiled-gallery .tiled-gallery-item a {
    background: 0 0;
    border: none;
    color: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    width: auto
}

.tiled-gallery .tiled-gallery-item img,
.tiled-gallery .tiled-gallery-item img:hover {
    background: 0 0;
    border: none;
    box-shadow: none;
    max-width: 100%;
    padding: 0;
    vertical-align: middle
}

.tiled-gallery-caption {
    background: #eee;
    background: rgba(255, 255, 255, .8);
    color: #333;
    font-size: 13px;
    font-weight: 400;
    overflow: hidden;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    text-indent: 10px;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap
}

.tiled-gallery .tiled-gallery-item-small .tiled-gallery-caption {
    font-size: 11px
}

.widget-gallery .tiled-gallery-unresized {
    visibility: hidden;
    height: 0;
    overflow: hidden
}

.tiled-gallery .tiled-gallery-item img.grayscale {
    position: absolute;
    left: 0;
    top: 0
}

.tiled-gallery .tiled-gallery-item img.grayscale:hover {
    opacity: 0
}

.tiled-gallery.type-circle .tiled-gallery-item img {
    border-radius: 50%!important;
    object-fit: cover
}

.tiled-gallery.type-circle .tiled-gallery-caption {
    display: none;
    opacity: 0
}

.tiled-gallery.type-square .tiled-gallery-item img {
    object-fit: cover
}

.jetpack-display-remote-posts {
    margin: 5px 0 20px 0
}

.jetpack-display-remote-posts h4 {
    margin: 5px 0;
    padding: 0
}

.jetpack-display-remote-posts p {
    margin: 0;
    padding: 0
}

.jetpack-display-remote-posts img {
    max-width: 100%
}

.widget-grofile h4 {
    margin: 1em 0 .5em
}

.widget-grofile ul.grofile-urls {
    margin-left: 0;
    overflow: hidden
}

.widget-grofile ul.grofile-accounts li {
    list-style: none;
    display: inline
}

.widget-grofile ul.grofile-accounts li::before {
    content: ""!important
}

.widget-grofile .grofile-accounts-logo {
    background-image: url(../png/grav-share-sprite.png);
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    float: left;
    margin-right: 8px;
    margin-bottom: 8px
}

.rtl .widget-grofile .grofile-accounts-logo {
    margin-left: 8px;
    margin-right: 0
}

.grofile-thumbnail {
    width: 500px;
    max-width: 100%
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (-o-min-device-pixel-ratio:3/2),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
    .widget-grofile .grofile-accounts-logo {
        background-image: url(../png/grav-share-sprite-2x.png);
        background-size: 16px 784px
    }
}

div[class^=gr_custom_container] {
    border: 1px solid gray;
    border-radius: 10px;
    padding: 10px 5px 10px 5px;
    background-color: #fff;
    color: #000
}

div[class^=gr_custom_container] a {
    color: #000
}

h2[class^=gr_custom_header] {
    display: none
}

div[class^=gr_custom_each_container] {
    width: 100%;
    clear: both;
    margin-bottom: 10px;
    overflow: auto;
    padding-bottom: 4px;
    border-bottom: 1px solid #aaa
}

div[class^=gr_custom_book_container] {
    float: right;
    overflow: hidden;
    height: 60px;
    margin-left: 4px;
    width: 39px
}

div[class^=gr_custom_author] {
    font-size: 10px
}

div[class^=gr_custom_tags] {
    font-size: 10px;
    color: gray
}

div[class^=gr_custom_rating] {
    display: none
}

.widget_wpcom_social_media_icons_widget ul {
    list-style-type: none;
    margin-left: 0
}

.widget_wpcom_social_media_icons_widget ul li {
    border: 0 none;
    display: inline;
    margin-right: .5em
}

.widget_wpcom_social_media_icons_widget li a {
    border: 0 none;
    text-decoration: none
}

.widget_wpcom_social_media_icons_widget .genericon {
    font-family: Genericons
}

.widget_wpcom_social_media_icons_widget .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute!important;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.widget_wpcom_social_media_icons_widget .screen-reader-text:active,
.widget_wpcom_social_media_icons_widget .screen-reader-text:focus,
.widget_wpcom_social_media_icons_widget .screen-reader-text:hover {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
    clip: auto!important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: .875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000
}

.widgets-grid-layout {
    width: 100%
}

.widgets-grid-layout:after,
.widgets-grid-layout:before {
    content: " ";
    display: table
}

.widgets-grid-layout:after {
    clear: both
}

.widget-grid-view-image {
    float: left;
    max-width: 50%
}

.widget-grid-view-image a {
    display: block;
    margin: 0 2px 4px 0
}

.widget-grid-view-image:nth-child(even) {
    float: right
}

.widget-grid-view-image:nth-child(even) a {
    margin: 0 0 4px 2px
}

.widgets-grid-layout .widget-grid-view-image img {
    max-width: 100%;
    height: auto
}

.widgets-multi-column-grid ul {
    overflow: hidden;
    padding: 0;
    margin: 0;
    list-style-type: none
}

.widgets-multi-column-grid ul li {
    background: 0 0;
    clear: none;
    float: left;
    margin: 0 -5px -3px 0;
    padding: 0 8px 6px 0;
    border: none;
    list-style-type: none!important
}

.widgets-multi-column-grid ul li a {
    background: 0 0;
    margin: 0;
    padding: 0;
    border: 0
}

.widgets-multi-column-grid .avatar {
    vertical-align: middle
}

.widgets-list-layout {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.widgets-list-layout li:after,
.widgets-list-layout li:before {
    content: "";
    display: table
}

.widgets-list-layout li:after {
    clear: both
}

.widgets-list-layout li {
    zoom: 1;
    margin-bottom: 1em;
    list-style-type: none!important
}

.widgets-list-layout .widgets-list-layout-blavatar {
    float: left;
    width: 21.276596%;
    max-width: 40px;
    height: auto
}

.widgets-list-layout-links {
    float: right;
    width: 73.404255%
}

.widgets-list-layout span {
    opacity: .5
}

.widgets-list-layout span:hover {
    opacity: .8
}

.jetpack-image-container:after {
    clear: both
}

.jetpack-image-container:after,
.jetpack-image-container:before {
    display: table;
    content: ""
}

.widgets-multi-column-grid ul {
    overflow: hidden;
    padding: 0;
    margin: 0;
    list-style-type: none
}

.widgets-multi-column-grid ul li {
    background: 0 0;
    clear: none;
    float: left;
    margin: 0 -5px -3px 0;
    padding: 0 8px 6px 0;
    border: none;
    list-style-type: none!important
}

.widgets-multi-column-grid ul li a {
    background: 0 0;
    margin: 0;
    padding: 0;
    border: 0
}

.widgets-multi-column-grid .avatar {
    vertical-align: middle
}

.widget_jetpack_my_community .avatar-240,
.widget_jetpack_my_community .avatar-48 {
    max-width: 48px;
    max-height: 48px
}

.widget.widget_authors li>ul,
.widget_authors>ul {
    margin-left: inherit;
    padding-left: 0
}

.widget_authors ul li li {
    padding-left: 0
}

.widget_authors>ul>li {
    margin-bottom: 1em;
    list-style: none
}

.widget_authors>ul>li+li {
    border-top: 0
}

.widget.widget_authors img {
    margin-right: 5px;
    margin-bottom: 5px;
    vertical-align: middle;
    box-shadow: none
}

.wpcnt {
    text-align: center;
    line-height: 2
}

.wpa {
    position: relative;
    overflow: hidden;
    display: inline-block;
    max-width: 100%
}

.wpa-about {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    display: block;
    margin-top: 0;
    color: #888;
    font: 10px/1 "Open Sans", Arial, sans-serif!important;
    text-align: left!important;
    text-decoration: none!important;
    opacity: .85;
    border-bottom: none!important;
    box-shadow: none!important
}

.wpa .u>div {
    display: block;
    margin-top: 5px;
    margin-bottom: 1em
}

div.wpa>div {
    margin-top: 20px
}

.wpa .u .adsbygoogle {
    display: block;
    margin-top: 17px;
    margin-bottom: 1em;
    background-color: transparent
}

.widget_eu_cookie_law_widget {
    animation: fadeIn .8s;
    border: none;
    bottom: 1em;
    left: 1em;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 1em;
    width: auto;
    z-index: 50001
}

@keyframes fadeIn {
    from {
        opacity: 0;
        visibility: hidden
    }
    to {
        opacity: 1;
        visibility: visible
    }
}

.widget_eu_cookie_law_widget.widget.top {
    bottom: auto;
    top: 1em
}

.admin-bar .widget_eu_cookie_law_widget.widget.top {
    top: 3em
}

amp-consent.widget_eu_cookie_law_widget.widget.top {
    top: 1em;
    margin: 0
}

.admin-bar amp-consent.widget_eu_cookie_law_widget.widget.top {
    top: 0;
    margin-top: 3em
}

#eu-cookie-law {
    background-color: #fff;
    border: 1px solid #dedede;
    color: #2e4467;
    font-size: 12px;
    line-height: 1.5;
    overflow: hidden;
    padding: 6px 6px 6px 15px;
    position: relative
}

#eu-cookie-law a,
#eu-cookie-law a:active,
#eu-cookie-law a:visited {
    color: inherit;
    cursor: inherit;
    text-decoration: underline
}

#eu-cookie-law a:hover {
    cursor: pointer;
    text-decoration: none
}

#eu-cookie-law.negative {
    background-color: #000;
    border: none;
    color: #fff
}

#eu-cookie-law.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s, visibility .4s
}

#eu-cookie-law form {
    margin-bottom: 0;
    position: static
}

#eu-cookie-law input,
#eu-cookie-law input:focus,
#eu-cookie-law input:hover {
    background: #f3f3f3;
    border: 1px solid #dedede;
    border-radius: 4px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #2e4453;
    cursor: pointer;
    display: inline;
    float: right;
    font-family: inherit;
    font-size: 14px;
    font-weight: inherit;
    line-height: inherit;
    margin: 0 0 0 5%;
    padding: 8px 12px;
    position: static;
    text-transform: none
}

#eu-cookie-law.negative input,
#eu-cookie-law.negative input:focus,
#eu-cookie-law.negative input:hover {
    background: #282828;
    border-color: #535353;
    color: #fff
}

@media (max-width:600px) {
    #eu-cookie-law {
        padding-bottom: 55px
    }
    #eu-cookie-law input.accept {
        bottom: 8px;
        position: absolute;
        right: 8px
    }
}

.widget_eu_cookie_law_widget .customize-partial-edit-shortcut>button {
    left: 0
}

.flickr-images {
    text-align: center
}

.flickr-size-thumbnail .flickr-images {
    align-content: space-between;
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: center
}

.flickr-images img {
    max-width: 100%;
    margin: 5px
}

.wpcom-instagram-images {
    display: grid;
    grid-gap: .5rem;
    grid-auto-columns: 1fr
}

.wpcom-instagram-images:after,
.wpcom-instagram-images:before {
    content: none
}

.wpcom-instagram-images a {
    display: block;
    margin: 4px 2px
}

.wpcom-instagram-columns-2 a,
.wpcom-instagram-columns-3 a {
    display: inline-block;
    vertical-align: top
}

.wpcom-instagram-columns-2 a {
    width: calc(50% - 8px)
}

.wpcom-instagram-columns-3 a {
    width: calc(33.3333% - 8px)
}

.wpcom-instagram-images .sq-bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%
}

.wpcom-instagram-columns-2 {
    grid-template-columns: repeat(2, 1fr)
}

.wpcom-instagram-columns-3 {
    grid-template-columns: repeat(3, 1fr)
}

@supports (display:grid) {
    .wpcom-instagram-images a {
        display: block;
        margin: 0
    }
    .wpcom-instagram-columns-2 a,
    .wpcom-instagram-columns-3 a {
        width: auto
    }
}

.jetpack-search-filters-widget__sub-heading {
    font-size: inherit;
    font-weight: 700;
    margin: 0 0 .5em;
    padding: 0
}

.jetpack-search-form+.jetpack-search-filters-widget__sub-heading {
    margin-top: 1.5em;
    margin-bottom: .5em!important
}

.jetpack-search-filters-widget__clear {
    margin-top: .5em;
    margin-bottom: .5em
}

.jetpack-search-sort-wrapper {
    margin-top: 1em;
    margin-bottom: 1.5em
}

.jetpack-search-sort-wrapper label {
    display: inherit
}

.widget_search .jetpack-search-filters-widget__filter-list input[type=checkbox] {
    width: auto;
    height: auto
}

ul.jetpack-search-filters-widget__filter-list li {
    border: none;
    padding: 0;
    list-style: none
}

ul.jetpack-search-filters-widget__filter-list li a {
    text-decoration: none
}

ul.jetpack-search-filters-widget__filter-list li a:hover {
    box-shadow: none
}

ul.jetpack-search-filters-widget__filter-list li label {
    font-weight: inherit;
    display: inherit
}

.jetpack-search-filters-widget__filter-list {
    list-style: none
}

ul.jetpack-search-filters-widget__filter-list {
    margin-bottom: 1.5em
}

body.search .jetpack-search-form input[name="s"]:-ms-input-placeholder {
    color: transparent
}

body.search .jetpack-search-form input[name="s"]::-ms-input-placeholder {
    color: transparent
}

body.search .jetpack-search-form input[name="s"]::placeholder {
    color: transparent
}

body.search .jetpack-search-form input[name="s"].show-placeholder:-ms-input-placeholder {
    color: inherit
}

body.search .jetpack-search-form input[name="s"].show-placeholder::-ms-input-placeholder {
    color: inherit
}

body.search .jetpack-search-form input[name="s"].show-placeholder::placeholder {
    color: inherit
}


/* 13-2-2020-work */

.cb-post-title a {
    color: #000;
}

.cb-category.cb-element a {
    background: #e9e9e9;
}

.cb-category.cb-element a:hover {
    background: #000;
    color: #fff;
}

h1.article-heading {
    display: none;
}

.cb-module-title {
    color: #000;
}

.latest_travel_sec .load-topgap .cb-img-above-meta,
.cb-module-block .cb-article-row {
    border-bottom: 1px dotted #ddd;
}


/* .cb-module-block .cb-article-row:last-child {
	border-bottom: 0;
} */

.cb-module-block .cb-article-small.cb-separated {
    padding-bottom: 20px;
}

.cb-sidebar-widget-title.cb-widget-title {
    border-bottom: 3px solid #161616;
    display: block;
    color: #000;
}

.widgets-list-layout-links a {
    color: #000;
}

.widgets-list-layout.no-grav li {
    margin-left: 0;
}

.tnp-field.tnp-field-button input {
    margin-top: 15px;
    width: auto;
    padding: 5px 20px;
}

.cb-article-small.cb-separated {
    border-bottom: 1px dotted #ddd;
}

.popular_style.cb-module-block .cb-article-row {
    border-bottom: 0px dotted #ddd;
}

.popular_style .cb-article-small.cb-separated:last-child {
    border-bottom: 0px !important;
}

.widgets-list-layout .widgets-list-layout-blavatar {
    height: 40px;
    object-fit: cover;
}

button.alm-load-more-btn.more {
    transition: all .35s !important;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    width: 50%;
    color: #161616 !important;
    letter-spacing: 2px;
    border: 2px solid #161616 !important;
    font-size: 18px;
    text-transform: uppercase;
    background: transparent;
    background-color: #fff !important;
    font-weight: 700;
}

button.alm-load-more-btn.more:hover {
    background-color: #161616 !important;
    color: #fff !important;
}


/* .cb-article-meta {
	display: none;
} */

@media screen and (min-width:400px) {
    .widget.jetpack-simple-payments .jetpack-simple-payments-product {
        flex-direction: column
    }
    .widget.jetpack-simple-payments .jetpack-simple-payments-details {
        padding-left: 0
    }
}

.jetpack_widget_social_icons li,
.jetpack_widget_social_icons ul {
    list-style: none
}

.jetpack_widget_social_icons ul {
    display: block;
    margin: 0 0 1.5em;
    padding: 0
}

.jetpack_widget_social_icons ul li {
    border: 0;
    display: inline-block;
    line-height: 1;
    margin: 0;
    padding: 0
}

.jetpack_widget_social_icons ul li:after,
.jetpack_widget_social_icons ul li:before {
    display: none
}

.jetpack_widget_social_icons a {
    border: 0;
    box-shadow: none;
    display: block;
    height: 24px;
    text-decoration: none;
    width: 24px
}

.jetpack_widget_social_icons svg {
    color: inherit;
    fill: currentColor;
    height: inherit;
    vertical-align: middle;
    width: inherit
}

.jetpack_widget_social_icons ul.size-small a {
    height: 24px;
    width: 24px
}

.jetpack_widget_social_icons ul.size-medium a {
    height: 32px;
    width: 32px
}

.jetpack_widget_social_icons ul.size-large a {
    height: 48px;
    width: 48px
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important
}

#cb-section-b .cb-main {
    float: left;
}

#cb-section-b .cb-sidebar {
    margin-left: 30px;
}

.cb-module-header .cb-module-title:after {
    background: #161616;
}

.cb-body-light .cb-post-meta .cb-element a,
.cb-body-light .cb-post-meta .cb-element>span {
    color: #868686;
    background: #e9e9e9;
}

body,
#respond,
.cb-font-body {
    font-family: 'Open Sans', sans-serif;
}

body {
    font-size: 19px;
}

.cb-excerpt {
    margin-top: 10px;
    font-size: .9em;
}

input[type=submit]:focus-within {
    background: #000 !important;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min--moz-device-pixel-ratio:1.5),
only screen and (min-device-pixel-ratio:1.5) {
    .cb-social-media-icons.cb-colors .cb-twitter,
    .cb-social-media-icons.cb-colors .cb-instagram,
    .cb-social-media-icons.cb-colors .cb-facebook,
    .cb-social-media-icons.cb-colors .cb-youtube {
        background-image: url(../cb-widget-social-media-colors%402x.html);
        background-size: 241px 50px
    }
    .cb-social-media-icons.cb-white .cb-twitter,
    .cb-social-media-icons.cb-white .cb-instagram,
    .cb-social-media-icons.cb-white .cb-facebook,
    .cb-social-media-icons.cb-white .cb-youtube {
        background-image: url(../cb-widget-social-media-light%402x.html);
        background-size: 258px 50px
    }
}

@media all and (orientation:portrait) {
    .cb-gallery-post-wrap {
        height: 500px !important;
        position: relative !important
    }
}

@media only screen and (min-width:481px) {
    .wrap,
    .cb-wrap-off #cb-content {
        max-width: 720px
    }
    #logo img,
    #mob-logo img {
        max-height: 100px
    }
    .cb-col-1 {
        width: 100%
    }
    .cb-col-2 {
        width: 100%
    }
    .cb-col-3 {
        width: 100%
    }
    .cb-col-4 {
        width: 33.33333333%
    }
    .cb-col-5 {
        width: 100%
    }
    .cb-col-6 {
        width: 50%
    }
    .cb-col-7 {
        width: 100%
    }
    .cb-col-8 {
        width: 66.66666666%
    }
    .cb-col-9 {
        width: 100%
    }
    .cb-col-10 {
        width: 100%
    }
    .cb-col-11 {
        width: 100%
    }
    .cb-col-12 {
        width: 100%
    }
    .cb-col-1,
    .cb-col-2,
    .cb-col-3,
    .cb-col-4,
    .cb-col-5,
    .cb-col-6,
    .cb-col-7,
    .cb-col-8,
    .cb-col-9,
    .cb-col-10,
    .cb-col-11,
    .cb-col-12 {
        float: left
    }
    .cb-col:nth-of-type(1) {
        padding-right: 20px
    }
    .cb-col:nth-of-type(2) {
        padding-left: 20px
    }
    .cb-grid-x .cb-s {
        width: 50%
    }
    .cb-grid-x .cb-s,
    .cb-grid-x .cb-m {
        height: 190px
    }
    .cb-grid-x .cb-m .cb-byline {
        display: block
    }
    .cb-grid-x .cb-l {
        height: 300px
    }
    .cb-grid-3-sq .cb-s {
        width: 33.1%;
        float: left;
        border-bottom: 0
    }
    .cb-grid-3-sq .cb-feature-2 {
        border-right: 3px solid transparent;
        border-left: 3px solid transparent;
        width: 33.8%
    }
    .cb-grid-3 .cb-feature-2 {
        border-right: 3px solid transparent
    }
    .cb-grid-4 .cb-feature-2 {
        border-right: 3px solid transparent
    }
    .cb-grid-5 .cb-feature-2 {
        border-right: 3px solid transparent
    }
    .cb-grid-5 .cb-feature-4 {
        border-right: 3px solid transparent
    }
    .cb-grid-6 .cb-feature-1,
    .cb-grid-6 .cb-feature-3,
    .cb-grid-6 .cb-feature-5 {
        border-right: 3px solid transparent
    }
    .cb-grid-3-static .cb-feature-2 {
        border-bottom: 0;
        border-top: 0
    }
    .cb-grid-3-static .cb-feature-3 {
        border-bottom: 0;
        border-top: 0
    }
    .cb-module-block .cb-no-1 {
        clear: both
    }
    .cb-module-block .slides .cb-no-1 {
        clear: none
    }
    .cb-module-block .cb-article-row-2 {
        width: 48%;
        margin-left: 4%
    }
    .cb-module-block .cb-article-row-3 {
        width: 32%;
        margin-left: 2%
    }
    .cb-section-fs .cb-grid-3 .cb-m {
        height: 300px
    }
    .cb-section-fs .cb-grid-3 .cb-feature-2 {
        border-bottom-style: solid;
        border-bottom-width: 3px;
        border-right: 0
    }
    .cb-module-header h2 {
        font-size: 26px
    }
    .cb-module-half {
        width: 48%;
        margin-right: 4%;
        float: left
    }
    .cb-module-half:nth-child(even) {
        margin-right: 0 !important
    }
    .cb-module-e .cb-mask {
        width: 34.6666%;
        float: left
    }
    .cb-module-e .cb-meta {
        padding-left: 4%;
        width: 65.3334%;
        float: left
    }
    .cb-module-e .cb-meta .cb-post-title {
        margin-top: 0
    }
    #cb-section-b .cb-module-block.cb-module-fr .cb-article-row {
        width: 48%
    }
    #cb-section-b .cb-module-block.cb-module-fr .cb-article-row.cb-no-2 {
        margin-left: 4%
    }
    .comment-author time {
        float: right
    }
}

@media only screen and (min-width:768px) {
    .onecol {
        width: 5.801104972%
    }
    .twocol {
        width: 14.364640883%
    }
    .threecol {
        width: 22.928176794%
    }
    .fourcol {
        width: 31.491712705%
    }
    .fivecol {
        width: 40.055248616%
    }
    .sixcol {
        width: 48.618784527%
    }
    .sevencol {
        width: 57.182320438000005%
    }
    .eightcol {
        width: 65.74585634900001%
    }
    .ninecol {
        width: 74.30939226%
    }
    .tencol {
        width: 82.87292817100001%
    }
    .elevencol {
        width: 91.436464082%
    }
    .twelvecol {
        width: 99.999999993%
    }
    .onecol,
    .twocol,
    .threecol,
    .fourcol,
    .fivecol,
    .sixcol,
    .sevencol,
    .eightcol,
    .ninecol,
    .tencol,
    .elevencol,
    .twelvecol {
        position: relative;
        float: left;
        margin-left: 2.762430939%
    }
    .first {
        margin-left: 0
    }
    .last {
        float: right
    }
    .cb-entry-content .cb-button a {
        -webkit-transition: all .35s;
        -transition: all .35s;
        transition: all .35s
    }
    .cb-entry-content .cb-button a:hover,
    .cb-entry-content .cb-button a:focus {
        text-decoration: none !important;
        background: #161616 !important
    }
    .cb-entry-content .cb-button.cb-white a:hover,
    .cb-entry-content .cb-button.cb-white a:focus {
        background: #f2f2f2 !important
    }
    .cb-entry-content a:hover {
        text-decoration: underline
    }
    .wrap,
    .cb-wrap-off #cb-content {
        max-width: none;
        width: 750px
    }
    .cb-main {
        width: 460px
    }
    .cb-sidebar {
        margin-top: 20px;
        margin-bottom: 20px
    }
    .cb-main {
        margin-top: 20px
    }
    .cb-fw-bs .cb-main {
        width: 100%
    }
    .cb-sidebar-left .cb-main {
        float: right
    }
    .cb-sidebar-left .cb-sidebar {
        margin-right: 20px
    }
    .cb-sidebar-right .cb-main {
        float: left
    }
    .cb-sidebar-right .cb-sidebar {
        margin-left: 20px
    }
    .cb-sidebar-none .cb-main {
        margin-left: auto;
        margin-right: auto
    }
    .cb-wrap-pad {
        padding-right: 20px;
        padding-left: 20px
    }
    .cb-site-padding {
        padding: 0 20px
    }
    .cb-fis-title-bg {
        padding: 20px
    }
    .cb-fis-title-bg.cb-sidebar-none-narrow {
        text-align: center
    }
    .cb-fis-tl-me-below.cb-sidebar-right .cb-fis-title-bg,
    .cb-fis-tl-below.cb-sidebar-right .cb-fis-title-bg {
        padding-bottom: 0
    }
    .cb-fis-tl-me-below.cb-sidebar-right .cb-fis-title-bg .cb-meta,
    .cb-fis-tl-below.cb-sidebar-right .cb-fis-title-bg .cb-meta {
        margin: 0
    }
    .cb-fis-tl-below.cb-fis-b-parallax #cb-par-wrap img {
        opacity: 1
    }
    .cb-fis-tl-below.cb-fis-b-parallax .cb-fis-title-bg .cb-meta {
        width: 100% !important
    }
    .cb-sidebar {
        width: 230px;
        background: #f2f2f2
    }
    .cb-sticky-sidebar {
        position: relative;
        float: left
    }
    .cb-sticky-sidebar .cb-is-stuck {
        position: fixed;
        bottom: 0
    }
    .cb-sticky-sidebar .cb-is-stuck-perm {
        position: absolute;
        bottom: 0
    }
    .cb-sticky-sidebar .cb-is-stuck-t {
        position: fixed;
        top: 0
    }
    .cb-sticky-sidebar .cb-is-stuck-frozen {
        position: absolute;
        bottom: auto;
        top: auto
    }
    .admin-bar .cb-sticky-sidebar .cb-is-stuck-t {
        top: 32px
    }
    .cb-with-large {
        width: 100%;
        text-align: center
    }
    .cb-large {
        height: 90px;
        padding: 0;
        margin-top: 15px
    }
    .cb-medium {
        width: 468px;
        height: 60px
    }
    #logo img,
    #mob-logo img {
        max-height: none
    }
    .cb-mob-menu {
        display: none
    }
    .cb-stuck #cb-nav-logo,
    #cb-nav-logo img {
        max-width: 80px
    }
    #cb-nav-bar .cb-main-nav #cb-nav-logo {
        max-width: 80px
    }
    .admin-bar.cb-stuck #cb-nav-bar .cb-nav-bar-wrap {
        top: 32px
    }
    .cb-wrap-off #cb-nav-bar .cb-nav-bar-wrap {
        right: 0;
        left: 0;
        margin-right: auto;
        margin-left: auto
    }
    .cb-only-mob-menu {
        display: none
    }
    .cb-menu-al-center .cb-main-nav {
        text-align: center
    }
    #cb-nav-bar {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0;
        font-weight: 700;
        display: block;
        z-index: 25
    }
    #cb-nav-bar .cb-nav-bar-wrap {
        top: 0;
        z-index: 100;
        position: relative
    }
    #cb-nav-bar .cb-nav-bar-wrap.cb-menu-fw {
        left: 0
    }
    #cb-nav-bar .cb-main-nav {
        position: relative;
        z-index: 900;
        display: block;
        margin: 0 auto;
        width: 710px
    }
    #cb-nav-bar .cb-main-nav>li {
        -webkit-transition: .15s background;
        -transition: .15s background;
        transition: .15s background
    }
    #cb-nav-bar .cb-main-nav>li>a {
        -webkit-transition: .15s color;
        -transition: .15s color;
        transition: .15s color;
        padding: 6px
    }
    #cb-nav-bar ul {
        width: 100%
    }
    #cb-nav-bar ul li {
        display: inline-block
    }
    #cb-nav-bar ul li a {
        display: block
    }
    #cb-nav-bar ul .cb-menu-icons-extra {
        float: right
    }
    #cb-nav-bar ul .cb-icon-login {
        vertical-align: middle
    }
    #cb-nav-bar ul .cb-icon-login img {
        height: 18px;
        width: 18px;
        vertical-align: middle;
        top: -2px;
        position: relative;
        border-radius: 50%
    }
    #cb-nav-bar ul .cb-icon-logged-in a {
        padding-top: 0;
        padding-bottom: 0
    }
    #cb-nav-bar ul .cb-trending {
        float: right
    }
    #cb-nav-bar ul .cb-trending .cb-see-all .cb-trending-op {
        float: left;
        margin-left: 30px;
        padding-bottom: 5px
    }
    #cb-nav-bar ul .cb-trending .cb-see-all .cb-selected {
        border-bottom: 3px solid transparent
    }
    #cb-nav-bar ul .cb-trending .cb-countdown {
        padding: 5px 15px;
        font-size: 18px;
        position: absolute;
        top: 0;
        left: 0
    }
    #cb-nav-bar #cb-trending-block {
        min-height: 250px
    }
    #cb-nav-bar #cb-trend-data {
        float: left
    }
    #cb-nav-bar .cb-mega-menu {
        position: absolute;
        left: -10px;
        width: 730px;
        overflow: hidden;
        opacity: 0;
        -webkit-transition: .15s opacity, 0.15s visibility;
        -transition: .15s opacity, 0.15s visibility;
        transition: .15s opacity, 0.15s visibility;
        visibility: hidden
    }
    #cb-nav-bar .cb-mega-menu .cb-sub-menu {
        margin: 0
    }
    #cb-nav-bar .cb-mega-menu-columns {
        text-align: center;
        padding: 25px 0
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu>li {
        padding: 0 7px 1000px 7px;
        margin-bottom: -1000px;
        float: left
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu>li>a {
        font-size: 11px
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu li {
        width: 25%
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu li a {
        display: inline-block;
        font-weight: 700;
        padding: 0;
        margin: 0 0 10px 0
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu li .cb-grandchild-menu {
        margin: 0;
        width: 100%;
        z-index: 15
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu li .cb-grandchild-menu li {
        width: 100%;
        margin: 0;
        padding: 5px 0
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu li .cb-grandchild-menu li a {
        font-size: 12px;
        margin: 0
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-bg {
        background: transparent !important
    }
    #cb-nav-bar .cb-big-menu {
        border-top: 5px solid transparent
    }
    #cb-nav-bar .cb-big-menu .cb-articles {
        width: 100%;
        padding: 10px
    }
    #cb-nav-bar .cb-big-menu .cb-articles .cb-mega-title {
        padding: 10px;
        font-size: 11px;
        letter-spacing: 4px;
        text-transform: uppercase;
        position: absolute;
        z-index: 2;
        left: 20px;
        top: 20px;
        color: #fff
    }
    #cb-nav-bar .cb-big-menu .cb-articles .cb-articles-section {
        float: left;
        width: 50%;
        position: relative
    }
    #cb-nav-bar .cb-big-menu .cb-articles .cb-articles-section li {
        position: relative;
        border: 10px solid transparent
    }
    #cb-nav-bar .cb-big-menu .cb-articles .cb-recent ul li {
        width: 50%;
        float: left
    }
    #cb-nav-bar .cb-big-menu .cb-articles .cb-recent ul li:last-child {
        margin: 0
    }
    #cb-nav-bar .cb-big-menu .cb-sub-menu {
        width: 25%;
        margin: 0 0 -500px 0;
        padding-bottom: 500px;
        float: left;
        text-align: center;
        padding-top: 30px;
        font-size: 11px
    }
    #cb-nav-bar .cb-big-menu .cb-sub-menu li {
        position: relative;
        width: 100%;
        padding: 5px
    }
    #cb-nav-bar .cb-big-menu .cb-sub-menu li a {
        display: inline-block
    }
    #cb-nav-bar .cb-big-menu .cb-grandchild-menu {
        z-index: 15;
        display: none;
        position: absolute;
        top: 0;
        right: -200px;
        width: 200px;
        margin: 0;
        border-left: 3px solid transparent
    }
    #cb-nav-bar .cb-post-title {
        margin: 0
    }
    #cb-nav-bar .cb-upper-title {
        width: 100%;
        float: left;
        margin-bottom: 30px;
        position: relative
    }
    #cb-nav-bar .cb-upper-title h2 {
        float: left;
        margin: 0;
        letter-spacing: 5px;
        font-weight: 400;
        font-size: 20px
    }
    #cb-nav-bar .cb-upper-title .cb-see-all {
        position: absolute;
        bottom: 0;
        right: 0;
        font-weight: 400
    }
    #cb-nav-bar .cb-mega-three {
        width: 100%
    }
    #cb-nav-bar .cb-mega-three li {
        width: 32%;
        margin-right: 2%
    }
    #cb-nav-bar .cb-sub-mega-three {
        width: 75%;
        float: right
    }
    #cb-nav-bar .cb-sub-mega-three li {
        width: 32%;
        margin-right: 2%
    }
    #cb-nav-bar .cb-mega-posts {
        padding: 20px;
        position: relative
    }
    #cb-nav-bar .cb-mega-posts li {
        float: left
    }
    #cb-nav-bar .cb-mega-posts .cb-article-3 {
        margin-right: 0
    }
    #cb-nav-bar .cb-mega-posts .cb-mask {
        margin-bottom: 20px
    }
    #cb-nav-bar .cb-mega-posts .cb-meta {
        padding: 0 10px 10px
    }
    #cb-nav-bar .cb-mega-posts .cb-title {
        font-size: 14px;
        letter-spacing: 3px;
        font-weight: 700
    }
    #cb-nav-bar .cb-mega-posts {
        text-align: center
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul {
        text-align: center
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li {
        position: relative;
        width: 32%;
        margin-right: 2%
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li .cb-meta {
        position: absolute;
        z-index: 12;
        width: 100%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        text-align: center;
        padding: 0 5%
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li .cb-meta .cb-post-title a {
        font-size: 12px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li .cb-meta .cb-post-views {
        font-size: 20px;
        margin-bottom: 3px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li .cb-mask {
        margin-bottom: 0
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li img {
        opacity: .3;
        -webkit-transition: .35s opacity;
        -transition: .35s opacity;
        transition: .35s opacity
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li:hover img {
        opacity: .65
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul .cb-article-3 {
        margin-right: 0
    }
    #cb-nav-bar .cb-links-menu {
        position: relative;
        z-index: 900;
        font-size: 11px;
        opacity: 0;
        -webkit-transition: .15s all;
        -transition: .15s all;
        transition: .15s all;
        visibility: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }
    #cb-nav-bar .cb-links-menu .cb-sub-menu {
        min-height: 40px;
        position: absolute;
        left: 0;
        margin: 0;
        width: 180px
    }
    #cb-nav-bar .cb-links-menu .cb-sub-menu li {
        position: relative;
        width: 100%
    }
    #cb-nav-bar .cb-links-menu .cb-sub-menu li a {
        padding: 10px 20px;
        width: 100%
    }
    #cb-nav-bar .cb-links-menu .cb-sub-menu li .cb-grandchild-menu {
        z-index: 15;
        opacity: 0;
        -webkit-transition: .15s all;
        -transition: .15s all;
        transition: .15s all;
        visibility: hidden;
        position: absolute;
        top: 0;
        right: -180px;
        width: 180px;
        margin: 0
    }
    #cb-nav-bar .cb-links-menu .cb-sub-menu li:hover .cb-grandchild-menu {
        opacity: 1;
        visibility: visible
    }
    #cb-nav-bar .cb-links-menu .cb-sub-menu li:hover .cb-grandchild-menu .cb-great-grandchild-menu {
        opacity: 0;
        visibility: hidden
    }
    #cb-nav-bar .cb-links-menu .cb-sub-menu>li>.cb-grandchild-menu>li:hover>.cb-grandchild-menu {
        opacity: 1;
        visibility: visible
    }
    #cb-nav-bar .cb-links-menu .cb-has-children>a:after {
        content: '+';
        float: right
    }
    #cb-nav-bar .cb-byline-short {
        margin-bottom: 0
    }
    #cb-top-menu .cb-social-icons-extra {
        display: inline-block
    }
    #cb-top-menu .cb-top-nav.cb-left-side {
        display: block
    }
    #cb-top-menu .cb-right-side a span {
        display: inline-block
    }
    .cb-mob {
        display: none
    }
    .cb-mob-only #cb-top-menu {
        display: none
    }
    #cb-top-menu.cb-tm-only-mob {
        display: none
    }
    .cb-mm-light #cb-nav-bar .cb-grandchild-menu {
        border-left-color: #161616
    }
    .cb-mm-light #cb-nav-bar .cb-bg {
        background: #f2f2f2
    }
    .cb-mm-light #cb-nav-bar .cb-sub-bg {
        background: #e7e7e7
    }
    .cb-mm-light #cb-nav-bar .cb-see-all,
    .cb-mm-light #cb-nav-bar .cb-top-left {
        color: #272727
    }
    .cb-mm-light #cb-nav-bar .cb-menu-drop h2,
    .cb-mm-light #cb-nav-bar .cb-menu-drop a {
        color: #161616
    }
    .cb-mm-light #cb-nav-bar .cb-menu-drop a:hover {
        color: #aaa
    }
    .cb-mm-light #cb-nav-bar .cb-excerpt {
        color: #686868
    }
    .cb-mm-light #cb-nav-bar .cb-pre-load:before {
        color: #161616
    }
    .cb-mm-light #cb-nav-bar .cb-mega-trending ul li {
        color: #161616
    }
    .cb-mm-light #cb-nav-bar .cb-mega-trending ul li .cb-meta .cb-post-title a {
        color: #161616
    }
    .cb-mm-light #cb-nav-bar .cb-mega-trending .cb-see-all .cb-selected {
        border-bottom-color: #161616
    }
    .cb-mm-light #cb-nav-bar .cb-mega-trending .cb-countdown {
        background: #f2f2f2
    }
    .cb-mm-light.cb-menu-light .cb-bg {
        background: #f4f4f4;
        border-top: 3px solid #ddd
    }
    .cb-mm-dark #cb-nav-bar .cb-grandchild-menu {
        border-left-color: #fff
    }
    .cb-mm-dark #cb-nav-bar .cb-bg {
        background: #161616
    }
    .cb-mm-dark #cb-nav-bar .cb-sub-bg {
        background: #1c1c1c
    }
    .cb-mm-dark #cb-nav-bar .cb-menu-drop h2,
    .cb-mm-dark #cb-nav-bar .cb-menu-drop a {
        color: #fff
    }
    .cb-mm-dark #cb-nav-bar .cb-menu-drop a:hover {
        color: #aaa
    }
    .cb-mm-dark #cb-nav-bar .cb-mega-trending ul li {
        color: #fff
    }
    .cb-mm-dark #cb-nav-bar .cb-mega-trending ul li .cb-meta .cb-post-title a {
        color: #fff
    }
    .cb-mm-dark #cb-nav-bar .cb-mega-trending .cb-see-all .cb-selected {
        border-bottom-color: #fff
    }
    .cb-mm-dark #cb-nav-bar .cb-mega-trending .cb-countdown {
        background: #171717
    }
    .cb-mm-dark #cb-nav-bar .cb-see-all,
    .cb-mm-dark #cb-nav-bar .cb-top-left {
        color: #d9d9d9
    }
    .cb-mm-dark #cb-nav-bar .cb-excerpt {
        color: #9d9d9d
    }
    .cb-mm-dark #cb-nav-bar .cb-pre-load:before {
        color: #fff
    }
    .cb-mm-on #cb-nav-bar .cb-main-nav>li:hover .cb-mega-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transition: .15s opacity ease, 0.15s visibility ease;
        -transition: .15s opacity ease, 0.15s visibility ease;
        transition: .15s opacity ease, 0.15s visibility ease
    }
    .cb-mm-on #cb-nav-bar .cb-main-nav>li:hover .cb-links-menu {
        opacity: 1;
        visibility: visible;
        -webkit-transition: .15s opacity ease, 0.15s visibility ease;
        -transition: .15s opacity ease, 0.15s visibility ease;
        transition: .15s opacity ease, 0.15s visibility ease
    }
    .cb-mm-on #cb-nav-bar .cb-main-nav>li:hover>a {
        color: #fff
    }
    .cb-mm-on.cb-menu-dark #cb-nav-bar .cb-main-nav>li:hover {
        background: #5e5e5e
    }
    .cb-mm-on.cb-menu-dark #cb-nav-bar .cb-main-nav>li:hover>a {
        color: #fff
    }
    .cb-mm-on.cb-menu-dark #cb-nav-bar .cb-main-nav #cb-nav-logo:hover {
        background: transparent
    }
    .cb-grid-x {
        height: 370px
    }
    .cb-grid-x img {
        -webkit-transition: .35s ease opacity;
        -transition: .35s ease opacity;
        transition: .35s ease opacity
    }
    .cb-grid-x .cb-grid-feature:hover img {
        opacity: .25
    }
    .cb-grid-x .cb-s {
        height: 50%;
        width: 33.333333%
    }
    .cb-grid-x .cb-m {
        height: 50%;
        width: 66.666666%
    }
    .cb-grid-x .cb-l {
        height: 100%;
        width: 66.666666%
    }
    .cb-cl-block img {
        -webkit-transition: .35s ease opacity;
        -transition: .35s ease opacity;
        transition: .35s ease opacity
    }
    .cb-grid-3 .cb-l {
        border-right: 3px solid transparent
    }
    .cb-grid-3 .cb-feature-2 {
        border-right: 0
    }
    .cb-grid-3 .cb-feature-2 {
        border-top: 0
    }
    .cb-grid-3-static .cb-m {
        border-bottom: 3px solid transparent;
        border-right: 0
    }
    .cb-grid-3-static .cb-feature-2 {
        border-right: 3px solid transparent
    }
    .cb-grid-3-static .cb-s {
        height: 50%;
        width: 50%;
        border-bottom: 3px solid transparent
    }
    .cb-grid-3-static .cb-m {
        width: 100%;
        height: 50%
    }
    .cb-grid-5 .cb-feature-1,
    .cb-grid-4 .cb-feature-1 {
        border-right: 3px solid transparent
    }
    .cb-grid-5 .cb-feature-2,
    .cb-grid-4 .cb-feature-2 {
        border-right: 0
    }
    .cb-grid-5 .cb-feature-4,
    .cb-grid-4 .cb-feature-4 {
        border-left: 3px solid transparent
    }
    .cb-grid-6 .cb-feature-2,
    .cb-grid-6 .cb-feature-5 {
        border-right: 3px solid transparent;
        border-left: 3px solid transparent
    }
    .cb-grid-6 .cb-feature-1,
    .cb-grid-6 .cb-feature-3,
    .cb-grid-6 .cb-feature-4,
    .cb-grid-6 .cb-feature-6 {
        border-right: 0
    }
    .cb-slider img {
        -webkit-transition: .35s ease opacity;
        -transition: .35s ease opacity;
        transition: .35s ease opacity
    }
    .cb-slider-2 .slides li {
        width: 48%
    }
    .cb-slider-2 .slides li .cb-meta .cb-post-title {
        padding: 10px 0
    }
    .cb-slider-2 .slides li .cb-meta .cb-post-title a {
        line-height: 1.2;
        letter-spacing: 1px
    }
    .cb-slider-2 .slides li .cb-mask img {
        -webkit-transition: all .35s;
        -transition: all .35s;
        transition: all .35s
    }
    .cb-slider-2.cb-meta-below .slides li .cb-meta .cb-post-title {
        font-size: 18px
    }
    .cb-slider-2.cb-meta-center .slides li .cb-meta .cb-post-title {
        font-size: 22px
    }
    .cb-slider-grid-3 .flex-direction-nav {
        opacity: 0;
        -webkit-transition: .5s ease all;
        -transition: .5s ease all;
        transition: .5s ease all
    }
    .cb-slider-grid-3:hover .flex-direction-nav {
        opacity: 1
    }
    .cb-slider-1 .slides li .cb-meta .cb-post-title {
        font-size: 26px;
        letter-spacing: 4px
    }
    .cb-img-fw a:hover img {
        opacity: .4
    }
    .cb-body-light .widget_tag_cloud a:hover,
    .cb-body-light .tags-title:hover,
    .cb-body-light .cb-tags a:hover,
    .cb-body-light .bbp-topic-tags a:hover {
        background: #161616;
        color: #fff
    }
    .cb-body-dark .widget_tag_cloud a:hover,
    .cb-body-dark .tags-title:hover,
    .cb-body-dark .cb-tags a:hover,
    .cb-body-dark .bbp-topic-tags a:hover {
        color: #fff;
        border-color: #fff
    }
    .widget_tag_cloud a,
    .tags-title,
    .cb-tags a,
    .bbp-topic-tags a {
        -webkit-transition: .25s ease all;
        -transition: .25s ease all;
        transition: .25s ease all
    }
    .instagram-pics img {
        -webkit-transition: .35s ease-in-out opacity;
        -transition: .35s ease-in-out opacity;
        transition: .35s ease-in-out opacity;
        -webkit-backface-visibility: hidden
    }
    .instagram-pics li:hover a:after {
        opacity: 1
    }
    .instagram-pics li:hover img {
        opacity: .75
    }
    .instagram-pics a:after {
        -webkit-transition: .35s ease-in-out opacity;
        -transition: .35s ease-in-out opacity;
        transition: .35s ease-in-out opacity;
        opacity: 0;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-family: 'FontAwesome';
        content: '\f16d';
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 70px
    }
    .cb-social-media-icons a {
        margin: 0 15px 15px
    }
    .cb-sidebar .cb-social-media-icons {
        text-align: center
    }
    .cb-widget-title {
        font-size: 16px
    }
    #cb-footer .cb-arrows-tr .flex-direction-nav li:hover a {
        color: #fff
    }
    #cb-footer #cb-widgets {
        padding: 60px 0
    }
    #cb-footer #cb-widgets>div {
        padding-top: 20px
    }
    #cb-footer .cb-footer-a .cb-one {
        width: 33%
    }
    #cb-footer .cb-footer-a .cb-two {
        width: 34%
    }
    #cb-footer .cb-footer-a .cb-three {
        width: 33%
    }
    #cb-footer .cb-footer-b .cb-one {
        width: 25%
    }
    #cb-footer .cb-footer-b .cb-two {
        width: 25%
    }
    #cb-footer .cb-footer-b .cb-three {
        width: 25%
    }
    #cb-footer .cb-footer-b .cb-four {
        width: 25%
    }
    #cb-footer .cb-footer-c .cb-one {
        width: 44%
    }
    #cb-footer .cb-footer-c .cb-two {
        width: 28%
    }
    #cb-footer .cb-footer-c .cb-three {
        width: 28%
    }
    #cb-footer .cb-footer-d .cb-one {
        width: 28%
    }
    #cb-footer .cb-footer-d .cb-two {
        width: 28%
    }
    #cb-footer .cb-footer-d .cb-three {
        width: 44%
    }
    #cb-footer .cb-footer-f .cb-one {
        width: 50%
    }
    #cb-footer .cb-footer-f .cb-two {
        width: 50%
    }
    #cb-footer .cb-footer-x .cb-footer-widget {
        margin: 0 20px;
        padding-bottom: 80px
    }
    #cb-footer .cb-footer-x .cb-column .cb-footer-widget:last-child {
        padding-bottom: 0
    }
    #cb-footer .cb-footer-lower {
        padding: 100px 0 50px;
        font-size: 12px;
        letter-spacing: 4px
    }
    .cb-post-meta .cb-element,
    .cb-post-meta .cb-element a {
        -webkit-transition: .35s all ease;
        -transition: .35s all ease;
        transition: .35s all ease
    }
    .cb-body-light .cb-post-meta .cb-element a,
    .cb-body-light .cb-post-meta .cb-element>span {
        color: #868686;
        background: #e9e9e9;
    }
    .cb-next-previous {
        text-align: left;
        padding: 30px 20px
    }
    .cb-next-previous .cb-next-previous-block {
        width: 50%;
        float: left
    }
    .cb-next-previous .cb-next-post {
        text-align: right;
        padding-top: 0;
        padding-left: 10px
    }
    .cb-next-previous .cb-next-post img {
        float: right;
        margin: 0 0 0 30px
    }
    .cb-next-previous .cb-previous-post {
        padding-right: 10px
    }
    .cb-next-previous .cb-previous-post img {
        float: left;
        margin: 0 30px 0 0
    }
    .cb-article-footer .cb-title-header {
        font-size: 24px;
        margin: 0 0 40px
    }
    .cb-color-buttons a {
        -webkit-transition: .25s ease transform;
        -transition: .25s ease transform;
        transition: .25s ease transform
    }
    .cb-color-buttons a:hover {
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px)
    }
    .commentlist .comment .comment_content,
    .commentlist .comment .alert p {
        padding-left: 90px
    }
    .cb-module-block .cb-article {
        margin-bottom: 60px
    }
    .cb-module-block.cb-small-margin .cb-article.cb-article-big {
        margin-bottom: 20px
    }
    .cb-separated,
    .cb-module-block .cb-separated {
        padding-bottom: 30px;
        margin-bottom: 30px
    }
    .cb-fi-cover {
        -webkit-transition: .35s ease opacity;
        -transition: .35s ease opacity;
        transition: .35s ease opacity
    }
    .cb-module-block .cb-meta-style-2 img {
        -webkit-transition: .35s ease opacity;
        -transition: .35s ease opacity;
        transition: .35s ease opacity
    }
    .cb-module-block .cb-meta-style-2:hover img {
        opacity: .3
    }
    .cb-meta-style-2 .cb-article-meta h2 {
        letter-spacing: 3px;
        font-size: 30px
    }
    .cb-slider-2 .cb-meta-style-2 .cb-article-meta h2 {
        letter-spacing: 1px;
        font-size: 18px
    }
    .cb-slider-2 .cb-meta-style-2 .cb-article-meta .cb-byline {
        display: none
    }
    .cb-slider-2-fw.cb-slider-2 .cb-meta-style-2 .cb-article-meta .cb-byline {
        display: block
    }
    .cb-meta-style-4 .cb-article-meta {
        width: 85%;
        padding: 20px
    }
    .cb-meta-style-4.cb-m .cb-article-meta h2 {
        letter-spacing: 1px;
        font-size: 20px
    }
    .cb-meta-style-4.cb-l .cb-article-meta h2 {
        font-size: 26px
    }
    .cb-s .cb-article-meta h2 {
        letter-spacing: 1px;
        font-size: 16px
    }
    #cb-section-f .cb-slider .cb-byline,
    #cb-section-g .cb-slider .cb-byline {
        font-size: 12px;
        letter-spacing: 2px
    }
    #cb-section-f .cb-slider .cb-module-header,
    #cb-section-g .cb-slider .cb-module-header {
        padding: 20px
    }
    #cb-section-f .cb-module-custom,
    #cb-section-g .cb-module-custom {
        padding: 20px 40px
    }
    .cb-section-fs .cb-grid-2 {
        height: auto
    }
    .cb-section-fs .cb-grid-2 .cb-feature-1 {
        border-right-style: solid;
        border-right-width: 3px
    }
    .cb-section-fs .cb-grid-2 .cb-l {
        width: 50%;
        padding-bottom: 33.33333%
    }
    .cb-section-fs .cb-grid-5 .cb-l {
        height: 100%;
        width: 50%
    }
    .cb-section-fs .cb-grid-5 .cb-s {
        width: 25%
    }
    .cb-section-fs .cb-grid-5 .cb-feature-2 {
        border-right-width: 3px;
        border-right-style: solid
    }
    .cb-section-fs .cb-grid-5 .cb-feature-4 {
        border-left: 0
    }
    .cb-section-fs .cb-grid-3 .cb-l {
        width: 50%
    }
    .cb-section-fs .cb-grid-3 .cb-m {
        height: 50%;
        width: 50%
    }
    .cb-module-block .cb-big-thumb.format-video .cb-mask a:after,
    .cb-module-block .cb-big-thumb.format-audio .cb-mask a:after,
    .cb-module-block .cb-big-thumb.format-gallery .cb-mask a:after {
        line-height: 100px;
        margin-left: -50px;
        margin-top: -50px;
        height: 100px;
        width: 100px;
        font-size: 2em
    }
    .cb-module-block .cb-article-row {
        width: 220px;
        margin-left: 0px;
        margin-bottom: 20px
    }
    .cb-gallery-post-wrap .cb-caption {
        bottom: 0;
        font-size: 14px;
        right: 0;
        padding: 10px 30px;
        position: absolute;
        background: rgba(255, 255, 255, 0.8);
        max-width: 80%;
        color: #000
    }
    .cb-gallery-post-wrap .cb-slider-arrow {
        color: #fff;
        z-index: 10;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        border: 3px solid #fff;
        font-size: 40px;
        padding: 7px 0;
        width: 60px;
        text-align: center
    }
    .cb-gallery-post-wrap .cb-slider-arrow:hover {
        cursor: pointer;
        box-shadow: 3px 3px 0 #161616;
        background: rgba(255, 255, 255, 0.25)
    }
    .cb-gallery-post-wrap .cb-slider-arrow-p {
        left: 40px;
        margin-right: 20px
    }
    .cb-gallery-post-wrap .cb-slider-arrow-n {
        right: 40px;
        margin-left: 20px
    }
    .cb-s-modal .cb-style-1 .cb-mask img {
        -webkit-transition: .35s opacity;
        -transition: .35s opacity;
        transition: .35s opacity
    }
    .cb-s-modal .cb-style-1 .cb-mask img:hover {
        opacity: .7
    }
    .cb-modal.cb-m-modal {
        max-width: 750px
    }
    .cb-modal.cb-m-modal iframe[src*="youtube.com"],
    .cb-modal.cb-m-modal iframe[src*="vimeo"] {
        width: 750px;
        height: 422px
    }
    #cb-author-box .cb-mask {
        display: block
    }
    #cb-author-box .cb-mask img {
        -webkit-transition: all .35s;
        -transition: all .35s;
        transition: all .35s
    }
    #cb-author-box .cb-mask:hover img {
        opacity: .9
    }
    #cb-author-box .cb-meta {
        padding-left: 20px
    }
    #cb-author-box .cb-meta .fn:hover {
        text-decoration: underline
    }
    #cb-related-posts-block .slides li {
        width: 48%
    }
    #cb-related-posts-block .slides .cb-no-1 {
        margin-right: 2%
    }
    #cb-related-posts-block .slides .cb-no-2 {
        margin-left: 2%
    }
    #cb-related-posts-block .cb-post-title {
        font-size: 18px;
        padding: 10px 0
    }
    #cb-related-posts-block #cb-related-posts .cb-no-2 {
        margin-left: 0
    }
    .cb-style-1 .cb-mask img {
        -webkit-transition: all .35s;
        -transition: all .35s;
        transition: all .35s
    }
    .cb-style-1 .cb-mask img:hover {
        opacity: .6
    }
    .cb-arrows-tr .flex-direction-nav li,
    .cb-arrows-tr .flex-direction-nav a {
        -webkit-transition: .35s all;
        -transition: .35s all;
        transition: .35s all
    }
    .cb-arrows-tr .flex-direction-nav li:hover a {
        color: #fff;
        background: #161616;
        background: rgba(23, 23, 23, 0.9)
    }
    .cb-arrows-tr .flex-direction-nav .flex-disabled:hover {
        cursor: default;
        color: #161616;
        background: #fff;
        background: rgba(255, 255, 255, 0.8)
    }
    .cb-fis-block-site-width {
        height: 400px
    }
    .cb-fis h1 {
        font-size: 20px
    }
    .cb-fis .cb-byline {
        font-size: 10px;
        letter-spacing: 3px
    }
    .cb-fis-big .cb-meta h1 {
        font-size: 30px
    }
    .cb-fis-block-standard .cb-byline {
        letter-spacing: 1px
    }
    .cb-fis-block-video .cb-meta {
        padding: 20px 0
    }
    .cb-fis-b-standard .cb-fis-block-video .cb-meta {
        padding: 20px 0
    }
    .cb-review-box .cb-review-area {
        padding: 20px
    }
    .cb-review-box .cb-bar .cb-user-rating-wrap .cb-overlay:hover,
    .cb-review-box .cb-bar .cb-user-rating-wrap .cb-overlay-stars:hover {
        cursor: pointer
    }
    .cb-review-box .cb-bar .cb-voted .cb-overlay:hover,
    .cb-review-box .cb-bar .cb-voted .cb-overlay-stars:hover {
        cursor: auto !important
    }
    .fa.cb-times {
        font-size: 28px
    }
    .fa.cb-times:hover {
        cursor: pointer
    }
    .fa.cb-times:after {
        left: -5px
    }
    .cb-underline-h .cb-meta a:hover {
        border-bottom: 1px solid #999
    }
    .cb-entry-content .alignleft {
        margin: 0 30px 30px 0;
        max-width: 50%
    }
    .cb-entry-content .alignright {
        margin: 0 0 30px 30px;
        max-width: 50%
    }
    .cb-sidebar-none-narrow.cb-embed-out .aligncenter {
        max-width: none;
        width: 750px !important;
        margin-left: -145px;
        margin-right: -145px
    }
    .cb-modal {
        max-width: 450px
    }
    .cb-modal a:hover {
        text-decoration: underline
    }
    .cb-modal .cb-trigger-log:hover,
    .cb-modal .cb-trigger-reg:hover {
        text-decoration: none
    }
    .cb-modal .cb-close-lwa {
        padding-bottom: 10px
    }
    .cb-modal input,
    .cb-modal .cb-subm {
        font-size: 16px;
        height: 50px;
        letter-spacing: 2px;
        line-height: 50px
    }
    .cb-modal .cb-modal-title {
        margin-bottom: 30px;
        font-size: 18px;
        letter-spacing: 3px
    }
    .cb-modal .cb-modal-title a {
        color: #5a5a5a;
        margin: 0 20px
    }
    .cb-modal .cb-modal-title .cb-active {
        padding-bottom: 6px
    }
    .cb-modal .cb-modal-inner {
        padding: 40px
    }
    .cb-s-modal .cb-results-title {
        letter-spacing: 3px;
        font-size: 20px;
        margin: 30px 0
    }
    .cb-s-modal .cb-sub-posts {
        margin: 30px 0
    }
    .cb-s-modal .cb-sub-posts li .cb-meta {
        padding: 0 10px 20px
    }
    .cb-s-modal .cb-search-field {
        height: 80px;
        line-height: 80px;
        letter-spacing: 3px
    }
    .cb-s-modal .cb-byline-short {
        margin-top: 5px
    }
    .cb-lwa-modal .cb-submit {
        margin-top: 30px
    }
    .cb-lwa-modal .cb-lwa-logo img {
        max-height: 75px
    }
}

@media only screen and (min-width:1020px) {
    .wrap,
    .cb-wrap-off #cb-content {
        width: 990px
    }
    .cb-sidebar {
        width: 300px
    }
    .cb-main {
        width: 625px
    }
    .cb-sidebar-left .cb-sidebar {
        margin-right: 25px
    }
    .cb-sidebar-right .cb-sidebar {
        margin-left: 25px
    }
    .cb-sidebar-none .cb-main {
        width: 625px
    }
    .cb-sidebar-none.cb-sidebar-none-fw .cb-main {
        width: 100%;
        max-width: 980px
    }
    blockquote {
        margin: 40px;
        font-size: 26px
    }
    .cb-sidebar-none.cb-sidebar-none-fw .cb-fis-title-bg .cb-meta {
        width: 100%
    }
    .cb-byline .price {
        font-size: 18px
    }
    #cb-logo-box {
        padding: 20px
    }
    #logo,
    #mob-logo {
        width: auto;
        text-align: left;
        float: none
    }
    .cb-large {
        width: 728px;
        float: right
    }
    .cb-with-block #logo img,
    .cb-with-block #mob-logo img {
        max-width: 210px
    }
    .cb-block {
        margin-top: 0
    }
    .cb-entry-content {
        margin: 0 0 30px
    }
    .cb-entry-content .alignleft .wp-caption-text,
    .cb-entry-content .alignright .wp-caption-text {
        padding: 20px 30px
    }
    .cb-entry-content .alignnone.cb-fs-embed .wp-caption-text {
        top: 40px;
        right: 20px;
        padding: 20px 30px;
        position: absolute;
        background: #fff;
        background: rgba(255, 255, 255, 0.8);
        max-width: 80%
    }
    #cb-nav-bar {
        font-size: 14px;
        letter-spacing: 1px
    }
    #cb-nav-bar .cb-mega-menu {
        width: 990px;
        left: -20px
    }
    #cb-nav-bar .cb-main-nav {
        width: 950px
    }
    #cb-nav-bar .cb-links-menu {
        font-size: 12px
    }
    #cb-nav-bar .cb-links-menu .cb-sub-menu {
        width: 230px
    }
    #cb-nav-bar #cb-trending-block {
        min-height: 307px
    }
    #cb-nav-bar .cb-big-menu .cb-sub-menu {
        font-size: 14px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li .cb-meta .cb-post-title a {
        font-size: 16px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li .cb-meta .cb-post-views {
        font-size: 24px
    }
    #cb-nav-bar ul .cb-trending .cb-countdown {
        padding: 7px 20px;
        font-size: 22px
    }
    #cb-nav-bar .cb-mega-menu-columns {
        padding: 50px 0
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu>li>a {
        font-size: 18px
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu li a {
        margin: 0 0 20px 0
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu li .cb-grandchild-menu li {
        padding: 7px
    }
    .cb-post-list-a {
        margin: 0 0 30px 0;
        width: auto
    }
    .cb-post-list-a .cb-mask {
        width: 40%;
        margin: 0 3% 0 0
    }
    .cb-post-list-a .cb-meta {
        width: 57%;
        padding: 10px 20px 10px 10px
    }
    .cb-post-list-a .cb-meta h2 {
        margin: 0 0 10px 0;
        font-size: 20px
    }
    .cb-post-list-a .cb-meta .cb-excerpt {
        font-size: 14px
    }
    .cb-video-overlay-icon {
        height: 80px;
        width: 80px;
        line-height: 80px;
        font-size: 2em
    }
    .cb-fis-big .cb-no-mt .cb-media-icon {
        margin-top: -40px
    }
    #cb-section-f .cb-slider .cb-byline,
    #cb-section-g .cb-slider .cb-byline {
        font-size: 16px;
        letter-spacing: 5px;
        margin-top: 10px
    }
    #cb-section-f .cb-slider .cb-arrows-sides .flex-direction-nav li a,
    #cb-section-g .cb-slider .cb-arrows-sides .flex-direction-nav li a {
        margin: 0 40px
    }
    #cb-section-f .cb-slider .cb-module-header,
    #cb-section-g .cb-slider .cb-module-header {
        padding: 40px
    }
    #cb-section-f .cb-slider .cb-module-header .cb-module-title,
    #cb-section-g .cb-slider .cb-module-header .cb-module-title {
        font-size: 24px
    }
    .cb-gallery-post-wrap .cb-arrows-sides .flex-direction-nav li a {
        margin: 0 30px
    }
    .cb-grid-x {
        height: 498px
    }
    .cb-meta-style-2.cb-s .cb-article-meta {
        padding: 0 30px
    }
    .cb-slider-2 .cb-meta-style-2 .cb-article-meta .cb-byline {
        display: block
    }
    .cb-module-block .cb-article-row {
        width: 300px;
        margin-left: 25px;
        margin-bottom: 25px
    }
    .cb-blog-style-roll #cb-blog-infinite-load,
    .cb-blog-style-roll .cb-no-more-posts span {
        margin-top: 40px
    }
    .instagram-pics li {
        width: 16.666667%
    }
    .cb-fis h1 {
        font-size: 30px
    }
    .cb-fis-block-video .cb-meta h1 {
        font-size: 36px;
        letter-spacing: 4px
    }
    .cb-fis-block-site-width {
        height: 500px
    }
    .commentlist .comment .cb-comment-body .cb-gravatar-image {
        margin-right: 40px
    }
    .commentlist .comment .cb-comment-body .comment-author {
        min-height: 70px
    }
    .commentlist .comment .cb-comment-body .comment_content,
    .commentlist .comment .cb-comment-body .alert p {
        padding-left: 110px
    }
    .commentlist .comment #respond {
        padding-left: 40px
    }
    .commentlist .comment .children {
        padding-left: 80px
    }
    #cb-author-box .cb-meta {
        padding-left: 40px
    }
    .cb-next-previous {
        padding: 40px
    }
    .cb-next-previous .cb-next-post {
        padding-left: 10px
    }
    .cb-next-previous .cb-next-post i {
        padding-left: 40px
    }
    .cb-next-previous .cb-next-post .cb-next-title {
        display: block;
        padding-right: 54px
    }
    .cb-next-previous .cb-previous-post {
        padding-right: 30px
    }
    .cb-next-previous .cb-previous-post i {
        padding-right: 40px
    }
    .cb-next-previous .cb-previous-post .cb-previous-title {
        display: block;
        padding-left: 54px
    }
    .cb-review-box.cb-half.cb-points-container,
    .cb-review-box.cb-half.cb-percentage-container {
        margin: 0 20px 20px 0;
        float: left;
        width: 50%
    }
    .cb-review-box.cb-half.cb-points-container .cb-pros-cons-wrap,
    .cb-review-box.cb-half.cb-percentage-container .cb-pros-cons-wrap {
        width: 100%;
        text-align: center
    }
    .cb-review-box.cb-half.cb-points-container .cb-pros-cons-wrap:before,
    .cb-review-box.cb-half.cb-points-container .cb-pros-cons-wrap:after,
    .cb-review-box.cb-half.cb-percentage-container .cb-pros-cons-wrap:before,
    .cb-review-box.cb-half.cb-percentage-container .cb-pros-cons-wrap:after {
        content: "";
        display: table
    }
    .cb-review-box.cb-half.cb-points-container .cb-pros-cons-wrap:after,
    .cb-review-box.cb-half.cb-percentage-container .cb-pros-cons-wrap:after {
        clear: both
    }
    .cb-review-box.cb-half.cb-points-container .cb-review-title,
    .cb-review-box.cb-half.cb-percentage-container .cb-review-title {
        text-align: center
    }
    .cb-review-box.cb-half.cb-points-container .cb-score-box,
    .cb-review-box.cb-half.cb-percentage-container .cb-score-box {
        margin-top: 10px;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        float: none;
        display: inline-block;
        left: 50%
    }
    .cb-review-box .cb-review-title {
        font-size: 24px
    }
    .cb-review-box .cb-review-area {
        padding: 20px 30px 30px
    }
    .cb-review-ext-box {
        width: 85px;
        height: 85px
    }
    .cb-review-ext-box .cb-percent-sign {
        font-size: 16px
    }
    .cb-review-ext-box .cb-score {
        font-size: 26px
    }
    .cb-review-ext-box.cb-small-box {
        width: 40px;
        height: 40px
    }
    .cb-author-details.cb-sidebar h3 a {
        font-size: 22px
    }
    .cb-modal.cb-s-modal {
        max-width: 920px
    }
    .cb-modal.cb-m-modal {
        max-width: 1020px
    }
    .cb-modal.cb-m-modal iframe[src*="youtube.com"],
    .cb-modal.cb-m-modal iframe[src*="vimeo"] {
        width: 1020px;
        height: 575px
    }
    .cb-s-modal .cb-sub-posts li {
        width: 260px;
        margin-right: 30px;
        float: left
    }
    .cb-s-modal .cb-sub-posts li .cb-mask {
        display: block
    }
    .cb-s-modal .cb-sub-posts .cb-article-3 {
        margin-right: 0
    }
    .cb-sidebar-none-narrow.cb-embed-out .aligncenter {
        width: 990px !important;
        margin-left: -182px
    }
    .cb-embed-out .alignleft:not(.size-thumbnail) {
        margin: 0 30px 30px -100px
    }
    #cb-top-menu .cb-left-side a,
    #cb-top-menu .cb-right-side a {
        margin: 0 10px
    }
    .woocommerce.cb-sidebar-none ul.products li.product,
    .woocommerce-page.cb-sidebar-none ul.products li.product {
        margin: 0 2% 2em 0;
        width: 23.5%
    }
    .woocommerce.cb-sidebar-none ul.products li.first,
    .woocommerce-page.cb-sidebar-none ul.products li.first {
        clear: both
    }
    .woocommerce.cb-sidebar-none ul.products li.last,
    .woocommerce-page.cb-sidebar-none ul.products li.last {
        margin-right: 0
    }
    .woocommerce.cb-sidebar-none .cb-main,
    .woocommerce-page.cb-sidebar-none .cb-main {
        width: 100%
    }
    .woocommerce.cb-sidebar-none .related ul.products li.product,
    .woocommerce.cb-sidebar-none .related ul li.product,
    .woocommerce.cb-sidebar-none .cart-collaterals ul.products li.product,
    .woocommerce.cb-sidebar-none .cart-collaterals ul li.product,
    .woocommerce-page.cb-sidebar-none .related ul.products li.product,
    .woocommerce-page.cb-sidebar-none .related ul li.product,
    .woocommerce-page.cb-sidebar-none .cart-collaterals ul.products li.product,
    .woocommerce-page.cb-sidebar-none .cart-collaterals ul li.product {
        width: 48%
    }
}

@media only screen and (min-width:1200px) {
    .wrap,
    .cb-wrap-off #cb-content {
        width: 1200px
    }
    .cb-site-padding {
        padding: 0 30px
    }
    .cb-wrap-pad {
        padding-right: 30px;
        padding-left: 30px
    }
    .cb-sidebar {
        margin-top: 30px;
        margin-bottom: 30px
    }
    .cb-main {
        margin-top: 30px
    }
    .cb-fis-title-bg {
        padding: 20px 30px
    }
    .cb-sidebar {
        width: 360px;
        padding: 30px
    }
    .cb-main {
        width: 750px
    }
    .cb-sidebar-left .cb-sidebar {
        margin-right: 30px
    }
    .cb-sidebar-right .cb-sidebar {
        margin-left: 30px
    }
    .cb-sidebar-none .cb-main {
        width: 800px
    }
    .cb-sidebar-none.cb-sidebar-none-fw .cb-main {
        width: 100%;
        max-width: 1140px
    }
    .cb-fis-tl-me-below .cb-fis-title-bg,
    .cb-fis-tl-below .cb-fis-title-bg {
        padding-top: 30px
    }
    .cb-sidebar-none.cb-sidebar-none-fw .cb-fis-title-bg .cb-meta {
        width: 100%
    }
    #cb-logo-box {
        padding: 20px 30px
    }
    .cb-with-block #logo img,
    .cb-with-block #mob-logo img {
        max-width: none
    }
    .cb-stuck #cb-nav-logo,
    #cb-nav-logo img {
        max-width: none
    }
    #cb-nav-bar {
        font-size: 16px;
        letter-spacing: 2px
    }
    #cb-nav-bar .cb-main-nav {
        width: 1140px
    }
    #cb-nav-bar .cb-main-nav #cb-nav-logo,
    #cb-nav-bar .cb-main-nav #cb-nav-logo img {
        max-width: none
    }
    #cb-nav-bar .cb-main-nav>li>a {
        padding: 8px 12px
    }
    #cb-nav-bar ul .cb-trending .cb-countdown {
        font-size: 26px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li .cb-meta .cb-post-views {
        font-size: 30px
    }
    #cb-nav-bar #cb-trending-block {
        min-height: 378px
    }
    #cb-nav-bar .cb-big-menu .cb-sub-mega-three {
        width: 900px;
        min-height: 370px
    }
    #cb-nav-bar .cb-big-menu .cb-sub-mega-three li {
        width: 260px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-three li {
        width: 360px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-posts {
        padding: 30px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-posts li {
        margin-right: 30px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-posts .cb-article-3 {
        margin-right: 0
    }
    #cb-nav-bar .cb-big-menu .cb-mega-posts .cb-mask {
        margin-bottom: 30px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending {
        padding: 30px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending .cb-trending-1 .cb-meta {
        padding: 0 40px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending .cb-trending-1 .cb-mask {
        margin-right: 30px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul li {
        width: 360px;
        margin-right: 30px
    }
    #cb-nav-bar .cb-big-menu .cb-mega-trending ul .cb-article-3 {
        margin-right: 0
    }
    #cb-nav-bar .cb-big-menu .cb-sub-menu {
        width: 300px
    }
    #cb-nav-bar .cb-big-menu .cb-sub-menu li {
        padding: 10px
    }
    #cb-nav-bar .cb-big-menu .cb-upper-title h2 {
        font-size: 30px
    }
    #cb-nav-bar .cb-mega-menu {
        width: 1200px;
        left: -30px
    }
    #cb-nav-bar .cb-mega-menu-columns .cb-sub-menu>li {
        padding: 0 20px 1000px 20px
    }
    #cb-top-menu ul li ul li a {
        line-height: 25px
    }
    .cb-grid-x {
        height: 600px
    }
    .cb-grid-x .cb-s {
        width: 378px
    }
    .cb-grid-x .cb-m {
        width: 762px
    }
    .cb-grid-x .cb-l {
        width: 762px
    }
    .cb-section-fs .cb-grid-2 {
        height: auto
    }
    .cb-grid-3-static {
        height: 582px
    }
    .cb-grid-3-static .cb-s {
        width: 375px;
        height: 290px
    }
    .cb-grid-3-static .cb-m {
        width: 750px;
        height: 295px
    }
    .cb-grid-3-sq .cb-s {
        width: 378px
    }
    .cb-grid-3-sq .cb-feature-2 {
        width: 384px
    }
    .cb-grid-5 .cb-feature-4 {
        width: 384px
    }
    .cb-grid-6 .cb-feature-2,
    .cb-grid-6 .cb-feature-5 {
        width: 384px
    }
    .cb-module-block .cb-article-row {
        width: 360px;
        margin-left: 30px;
        margin-bottom: 30px
    }
    #cb-section-lp .cb-module-block .cb-article-row {
        margin-left: 0px;
    }
    .cb-module-half {
        margin-right: 30px;
        width: 360px
    }
    .cb-module-e .cb-meta {
        padding-left: 30px
    }
    .cb-separated {
        padding-bottom: 40px;
        margin-bottom: 40px
    }
    .cb-b-video .cb-fis .cb-vertical-down,
    .cb-b-audio .cb-fis .cb-vertical-down {
        display: block
    }
    .cb-meta-style-2 .cb-article-meta {
        padding: 0 80px
    }
    .cb-meta-style-2 .cb-article-meta h2 {
        margin: 0 0 10px;
        letter-spacing: 4px;
        font-size: 40px
    }
    .cb-meta-style-2.cb-l .cb-article-meta .cb-byline {
        font-size: 12px;
        letter-spacing: 3px
    }
    .cb-meta-style-2.cb-m .cb-article-meta h2 {
        letter-spacing: 5px;
        font-size: 30px
    }
    .cb-meta-style-1 .cb-article-meta h2,
    .cb-meta-style-5 .cb-article-meta h2 {
        letter-spacing: 3px;
        font-size: 30px
    }
    #cb-section-a .cb-slider-2 .cb-meta-style-2.cb-s .cb-article-meta h2,
    #cb-section-c .cb-slider-2 .cb-meta-style-2.cb-s .cb-article-meta h2 {
        font-size: 24px
    }
    .cb-module-block .cb-post-title {
        font-size: 20px
    }
    .cb-module-header h2 {
        font-size: 38px
    }
    .cb-module-header h1 {
        font-size: 38px
    }
    .cb-module-header p {
        font-size: 14px;
        letter-spacing: 2px
    }
    .cb-style-1 .cb-meta .cb-post-title {
        font-size: 14px;
        letter-spacing: 3px
    }
    .cb-meta-style-4 .cb-article-meta {
        padding: 40px
    }
    .cb-meta-style-4 .cb-article-meta h2 {
        margin: 0 0 10px;
        letter-spacing: 5px;
        font-size: 40px
    }
    .cb-s .cb-article-meta h2 {
        letter-spacing: 2px;
        font-size: 20px
    }
    .cb-meta-style-2.cb-s .cb-article-meta,
    .cb-meta-style-4.cb-s .cb-article-meta {
        padding: 20px
    }
    .cb-meta-style-4.cb-m .cb-article-meta {
        padding: 20px
    }
    .cb-meta-style-4.cb-m .cb-article-meta h2 {
        letter-spacing: 5px;
        font-size: 30px
    }
    .cb-meta-style-4.cb-l .cb-article-meta h2 {
        font-size: 40px
    }
    .cb-meta-style-4.cb-l .cb-article-meta .cb-byline {
        font-size: 12px;
        letter-spacing: 3px
    }
    .cb-module-half .cb-module-header h2 {
        font-size: 30px
    }
    .cb-slider-1 .slides li .cb-meta .cb-post-title {
        font-size: 40px
    }
    .cb-social-media-icons a {
        margin: 0 20px 20px
    }
    .cb-sidebar .cb-social-media-icons {
        text-align: left
    }
    #cb-author-box {
        padding: 60px 30px
    }
    .cb-fis-big .cb-meta h1 {
        font-size: 55px;
        letter-spacing: 5px
    }
    .cb-fis-big.cb-fis-block-site-width .cb-meta h1 {
        font-size: 42px;
        letter-spacing: 4px
    }
    .cb-fis .cb-byline {
        font-size: 13px;
        letter-spacing: 5px
    }
    .cb-fis-block-site-width {
        height: 600px
    }
    .cb-fis-block-video .cb-meta {
        padding: 30px 0
    }
    .cb-fis-b-standard .cb-fis-block-video .cb-meta {
        padding: 30px 0
    }
    .fa.cb-times {
        font-size: 50px
    }
    .cb-fis-block-standard .cb-byline {
        letter-spacing: 2px
    }
    .cb-embed-out .alignleft:not(.size-thumbnail) {
        margin: 0 30px 30px -150px
    }
    .cb-embed-out .alignright:not(.size-thumbnail) {
        margin: 0 -150px 30px 30px
    }
    .cb-sidebar-none-narrow.cb-embed-out .aligncenter {
        width: 1200px !important;
        margin-left: -200px;
        margin-right: -200px
    }
    .cb-social-sharing.cb-text-buttons {
        letter-spacing: 2px;
        text-align: left
    }
    .cb-social-sharing.cb-text-buttons a {
        margin: 0 20px
    }
    .cb-social-sharing.cb-text-buttons .cb-sharing-buttons {
        float: right
    }
    .cb-social-sharing.cb-text-buttons .cb-title {
        float: left
    }
    .cb-modal.cb-m-modal {
        max-width: 1200px
    }
    .cb-modal.cb-m-modal iframe[src*="youtube.com"],
    .cb-modal.cb-m-modal iframe[src*="vimeo"] {
        width: 1200px;
        height: 675px
    }
    .cb-widget-title {
        font-size: 20px
    }
    .cb-review-box.cb-half.cb-stars-container {
        margin: 0 20px 20px 0;
        float: left;
        width: 50%
    }
    .cb-review-box.cb-half.cb-stars-container .cb-pros-cons-wrap {
        width: 100%;
        text-align: center
    }
    .cb-review-box.cb-half.cb-stars-container .cb-pros-cons-wrap:before,
    .cb-review-box.cb-half.cb-stars-container .cb-pros-cons-wrap:after {
        content: "";
        display: table
    }
    .cb-review-box.cb-half.cb-stars-container .cb-pros-cons-wrap:after {
        clear: both
    }
    .cb-review-box.cb-half.cb-stars-container .cb-review-title {
        text-align: center
    }
    .cb-review-box.cb-half.cb-stars-container .cb-score-box {
        margin-top: 10px;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        float: none;
        display: inline-block;
        left: 50%
    }
}

@media only screen and (min-width:1600px) {
    .cb-section-fs .cb-grid-x {
        height: 700px
    }
}

@media only screen and (max-width:1130px) {
    #cb-top-menu {
        width: auto;
        max-width: none
    }
    #cb-top-menu .cb-top-menu-wrap {
        max-width: none
    }
    #cb-header {
        width: auto;
        padding: 0;
        max-width: none
    }
    #cb-footer {
        width: auto
    }
    .cb-fis-big-border.cb-menu-light #cb-nav-bar .cb-main-nav {
        border-bottom: 0
    }
    .cb-fis-big-border.cb-menu-light #cb-nav-bar .cb-nav-bar-wrap {
        background: #fff;
        background: rgba(255, 255, 255, 0.9);
        border-bottom: 3px solid #161616
    }
    .cb-fis-big-border #cb-nav-bar {
        width: auto
    }
    .cb-fis-big-border #cb-nav-bar .cb-nav-bar-wrap {
        width: 100%
    }
    .cb-fis-big-border .cb-menu-fw {
        width: 100%
    }
    .cb-stuck #cb-nav-bar {
        width: auto
    }
    .cb-stuck #cb-nav-bar .cb-nav-bar-wrap {
        width: 100%
    }
    .cb-stuck .cb-menu-fw {
        width: 100%
    }
}

@media only screen and (max-width:1019px) {
    .cb-module-block .cb-article-small .cb-mask {
        display: none
    }
    .cb-social-sharing .cb-title {
        float: none;
        font-size: 16px;
        text-align: center
    }
    .cb-social-sharing .cb-sharing-button {
        margin-left: 15px;
        margin-top: 10px
    }
    .cb-social-sharing .cb-twitter {
        margin-left: 0
    }
    .cb-social-sharing .cb-sharing-buttons {
        float: none;
        display: block;
        text-align: center
    }
    #cb-nav-bar .cb-main-nav #cb-nav-logo {
        margin: 0 10px 0 0 !important
    }
    .cb-grid-x .cb-m h2 {
        font-size: 14px !important
    }
    .cb-social-sharing.cb-color-buttons a {
        width: 48%;
        margin-right: 4%
    }
    .cb-social-sharing.cb-color-buttons a:nth-child(2n+2) {
        margin-right: 0
    }
}

@media only screen and (max-width:767px) {
    body {
        line-height: 1.5
    }
    .cb-byline {
        font-size: 9px;
        letter-spacing: 1px
    }
    #cb-top-menu {
        width: 100%;
        margin: 0;
        font-size: 18px;
        height: 50px;
        line-height: 50px
    }
    #cb-top-menu .cb-left-side {
        height: inherit
    }
    #cb-top-menu .cb-right-side {
        padding-right: 10px
    }
    #cb-top-menu .cb-right-side a {
        margin: 0 0 0 15px
    }
    .cb-fis-b-off .cb-entry-header,
    .cb-fis-tl-st-above .cb-entry-header {
        padding: 10px
    }
    .cb-h-logo-off #cb-logo-box {
        padding: 0
    }
    .cb-h-logo-off #cb-logo-box #logo {
        display: none
    }
    .cb-h-logo-off #cb-logo-box .cb-block {
        margin: 20px 0 10px
    }
    .cb-sidebar {
        margin-bottom: 20px
    }
    .cb-m-sticky #cb-top-menu .cb-top-menu-wrap {
        position: fixed;
        top: 0;
        width: 100%
    }
    .admin-bar.cb-m-sticky #cb-top-menu .cb-top-menu-wrap {
        top: 46px
    }
    .admin-bar #cb-mob-menu {
        padding-top: 46px
    }
    .admin-bar.cb-tm-stuck #cb-mob-menu {
        padding-top: 0
    }
    .cb-modal input[type='text'],
    .cb-modal input[type='password'],
    .cb-modal textarea {
        font-size: 16px
    }
    .flex-direction-nav {
        display: none
    }
    .cb-module-a .cb-meta,
    .cb-module-b .cb-meta,
    .cb-module-c .cb-meta,
    .cb-module-d .cb-meta,
    .cb-module-fr .cb-meta,
    .cb-module-e .cb-meta,
    .cb-blog-style-b .cb-meta,
    .cb-blog-style-d .cb-meta {
        padding: 0 10px
    }
    .cb-entry-content {
        padding: 0 10px
    }
    .cb-fis-block-standard .cb-meta {
        padding: 0 10px
    }
    .cb-post-footer-block {
        padding: 20px 10px
    }
    .cb-next-previous .cb-title {
        letter-spacing: 1px
    }
    .cb-next-previous .cb-next-previous-block .cb-arrow {
        display: none
    }
    .cb-next-previous .cb-previous-post {
        margin-bottom: 10px
    }
    .cb-post-footer-block {
        margin: 0 0 20px
    }
    .cb-fis-block-standard .cb-meta {
        margin: 0 0 10px
    }
    .cb-post-meta {
        margin: 5px 0 0 0
    }
    #cb-author-box .cb-mask img {
        height: 60px;
        width: 60px
    }
    .cb-module-header,
    .cb-contents,
    .cb-a-large {
        padding: 0 10px
    }
    #cb-section-f .cb-slider .cb-byline {
        display: none
    }
    #cb-top-menu .cb-left-side {
        width: 67%
    }
    #cb-top-menu .cb-right-side {
        width: 33%
    }
    .cb-breadcrumbs {
        padding-left: 10px
    }
    .cb-s .cb-article-meta h2 {
        font-size: 12px
    }
    .cb-gallery-post-wrap .cb-slider-arrow {
        position: absolute;
        top: 0;
        color: #fff;
        z-index: 10;
        font-size: 20px;
        height: 100%;
        width: 30px;
        text-align: center;
        background: rgba(255, 255, 255, 0.4);
        -webkit-transition: background .35s ease-in-out;
        transition: background .35s ease-in-out
    }
    .cb-gallery-post-wrap .cb-slider-arrow-p {
        left: 0
    }
    .cb-gallery-post-wrap .cb-slider-arrow-n {
        right: 0
    }
    .cb-gallery-post-wrap .cb-slider-arrow:before {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%)
    }
    .comment_content {
        margin-top: 20px
    }
    .cb-module-block .cb-excerpt {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media only screen and (max-width:480px) {
    .cb-gallery-post-wrap {
        height: 250px !important;
        position: relative !important
    }
    #cb-par-wrap img {
        left: -42%
    }
}

@media only screen and (max-width:400px) {
    .cb-pros-cons-wrap {
        width: 100%;
        text-align: center
    }
    .cb-pros-cons-wrap:before,
    .cb-pros-cons-wrap:after {
        content: "";
        display: table
    }
    .cb-pros-cons-wrap:after {
        clear: both
    }
    .cb-review-title {
        text-align: center
    }
    .cb-review-box .cb-score-box {
        margin-top: 5px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        float: none;
        display: inline-block;
        left: 50%
    }
    .cb-review-box .cb-bar.cb-stars {
        text-align: center
    }
    .cb-review-box .cb-bar.cb-stars .cb-criteria,
    .cb-review-box .cb-bar.cb-stars .cb-overlay-stars {
        display: block
    }
    .cb-review-box .cb-bar.cb-stars .cb-criteria {
        margin-bottom: 5px
    }
    .cb-review-box .cb-user-rating .cb-stars .cb-criteria {
        text-align: center;
        width: 100%
    }
    .cb-review-box .cb-user-rating .cb-stars .cb-overlay-stars {
        float: none;
        display: inline-block
    }
}

@media only screen and (max-height:481px) {
    .cb-lwa-modal .lwa-status {
        margin: 5px 0 8px;
        letter-spacing: 0
    }
    .cb-lwa-modal .lwa-status-live {
        padding: 3px
    }
    .cb-lwa-modal .cb-lwa-logo {
        margin: 10px 0 10px
    }
    .cb-lwa-modal .cb-lwa-logo img {
        max-height: 30px
    }
    .cb-modal .cb-submit-form {
        padding: 0 15px
    }
    .cb-modal .cb-modal-inner {
        padding: 15px 20px
    }
    .cb-modal .cb-close-lwa {
        padding-bottom: 5px
    }
    .cb-modal input,
    .cb-modal .cb-subm {
        font-size: 14px;
        height: 35px;
        line-height: 35px;
        letter-spacing: 1px
    }
    .cb-modal .cb-info {
        margin: 15px
    }
    .cb-modal.cb-m-modal iframe {
        max-height: 250px
    }
}

@media print {
    * {
        background: transparent !important;
        color: black !important;
        text-shadow: none !important;
        -webkit-filter: none !important;
        filter: none !important;
        -ms-filter: none !important
    }
    a,
    a:visited {
        color: #444 !important;
        text-decoration: underline
    }
    a:after,
    a:visited:after {
        content: " (" attr(href) ")"
    }
    a abbr[title]:after,
    a:visited abbr[title]:after {
        content: " (" attr(title) ")"
    }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: ""
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }
    thead {
        display: table-header-group
    }
    tr,
    img {
        page-break-inside: avoid
    }
    img {
        max-width: 100% !important
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3
    }
    h2,
    h3 {
        page-break-after: avoid
    }
    .sidebar,
    .page-navigation,
    .wp-prev-next,
    .respond-form,
    nav {
        display: none
    }
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-webkit-keyframes cb-slide-reset {
    100% {
        -webkit-transform: translate(0, 0)
    }
}

@keyframes cb-slide-reset {
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
}

@-webkit-keyframes cb-slide-up-opa {
    100% {
        -webkit-transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes cb-slide-up-opa {
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1
    }
}

@-webkit-keyframes cb-spinner {
    from {
        -webkit-transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes cb-spinner {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes cb-ani-fade-in {
    to {
        opacity: 1
    }
}

@-webkit-keyframes cb-ani-fade-in {
    to {
        opacity: 1
    }
}

@keyframes cb-ani-fade-out {
    to {
        opacity: 0
    }
}

@-webkit-keyframes cb-ani-fade-out {
    to {
        opacity: 0
    }
}

@-webkit-keyframes cb-ani-fade-to-03 {
    to {
        opacity: .3
    }
}

@keyframes cb-ani-fade-to-03 {
    to {
        opacity: .3
    }
}

@-webkit-keyframes cb-ani-fly-top {
    from {
        -webkit-transform: translateY(100%)
    }
}

@keyframes cb-ani-fly-top {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@-webkit-keyframes cb-ani-fly-bot {
    from {
        -webkit-transform: translateY(-100%)
    }
}

@keyframes cb-ani-fly-bot {
    from {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@-webkit-keyframes boxer-loading-spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes boxer-loading-spin {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@media(min-width:1025px) {
    /* navbar*/
    .clickD {
        display: none;
    }
    .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        display: block;
    }
}

@media (max-width: 1199px) {
    /* .cb-main {
        width: 100%;
    }
    .cb-sidebar {
        margin: 0px 0px 25px !important;
        width: 100%;
    } */
    #cb-section-b .cb-sidebar {
        /* width: 300px; */
        margin-left: 20px !important;
    }
    /* #cb-section-b .cb-main {
        width: 625px;
    } */
    .latest_travel_sec .cb-article-row {
        margin-left: 0 !important;
    }
}

@media(max-width:1024px) {
    /* navbar*/
    .navbar-nav .clickD {
        position: absolute;
        right: 0;
        top: 0;
        width: 20px;
        height: 20px;
        background: url(../sort-down.html) center center no-repeat;
        cursor: pointer;
        display: block;
        background-size: 10px;
    }
    .navbar-nav>li.menu-item-has-children {
        padding-right: 20px;
    }
    .sub-menu.show {
        display: block;
    }
    .cb-infinite-load {
        width: 100%;
    }
}

@media (max-width: 991px) {
    /* navbar*/
    .navbar-nav .clickD {
        top: 6px;
        right: 10px;
    }
    .sub-menu,
    .navbar-nav>li>.sub-menu .sub-menu {
        position: relative;
        width: 100%;
        left: inherit;
        top: inherit;
        border: none;
    }
    .navbar-nav>li.menu-item-has-children {
        padding-right: 0;
    }
    .navbar-nav>li {
        margin: 0;
        padding: 0;
    }
    .navbar-nav>li>a {
        padding: 6px 10px;
        display: inline-block;
        width: 100%;
    }
    .sub-menu>li>a {
        padding-left: 20px;
    }
    .sub-menu .sub-menu>li>a {
        padding-left: 40px;
    }
    .sub-menu .sub-menu .sub-menu>li>a {
        padding-left: 60px;
    }
    .navbar-toggler {
        padding: 0px;
        width: 25px;
        outline: none;
        border: 0px;
    }
    .navbar-toggler:focus {
        outline: 0px;
    }
    #cb-section-b .cb-sidebar {
        margin-left: 20px;
    }
    body {
        font-size: 16px;
    }
    .bottom-fullbtn .load_morebtn.c-btn {
        display: block;
        padding: 0 30px;
    }
    .cb-img-fw a img,
    .cb-module-block .cb-article-row img {
        min-height: 130px;
    }
    #cb-section-b .cb-main {
        width: 100%;
    }
    #cb-section-b .cb-sidebar {
        width: 100%;
        margin-left: 0 !important;
    }
    .cb-sidebar ul.widgets-list-layout li>a.bump-view {
        display: inline-block;
        width: 23%;
    }
    .cb-sidebar ul.widgets-list-layout li>a.bump-view img {
        width: 100%;
        max-width: 200px;
    }
    .widgets-list-layout .widgets-list-layout-blavatar {
        height: 70px;
    }
    .cb-module-block .cb-article-row {
        width: 48%;
        margin-left: 13px;
    }
}

@media (max-width: 767px) {
    /* images alignment for wordpress content pages */
    .alignright,
    .alignleft,
    .aligncenter {
        float: none;
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        clear: both;
        margin-bottom: 24px;
    }
    #cb-section-b .cb-sidebar {
        margin-left: 0;
    }
    .cb-module-block .cb-article-row-3 {
        width: 100%;
        margin-left: 0;
    }
    #cb-section-lp .cb-article-row {
        width: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    section#cb-section-lp {
        overflow-x: hidden;
    }
    .cb-module-block .cb-article-row {
        width: 100%;
        margin-left: 0;
    }
    .latest_travel_sec .cb-img-fw a img,
    .latest_travel_sec .cb-module-block .cb-article-row img {
        min-height: auto;
    }
.cb-img-fw a img, .cb-module-block .cb-article-row img {
    min-height: auto;
    width: 100%;
}

}

@media (max-width: 479px) {
    button.alm-load-more-btn.more {
        font-size: 15px;
        letter-spacing: 0px;
    }
    .latest_travel_sec.cb-hp-section .cb-infinite-load {
        width: auto;
        padding: 0 20px;
    }
    .latest_travel_sec.cb-hp-section .cb-infinite-load {
        width: auto;
    }
    .latest_travel_sec .cb-img-fw a img,
    .latest_travel_sec .cb-module-block .cb-article-row img {
        min-height: auto;
    }
}