/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
    z-index: 0;
}
.owl-carousel .owl-animated-out {
    z-index: 1;
}
.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}
.owl-carousel.owl-hidden {
    opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
    display: none;
}
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.owl-carousel.owl-rtl {
    direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
    transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(//smartbusinesscanvas.com/wp-content/plugins/smart-logo-showcase-lite/css/owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.owl-item .active {
    display: none;
}
.owl-theme .owl-controls{
    margin-top:10px;
    text-align:center;
    -webkit-tap-highlight-color:transparent
}

.owl-theme .owl-controls .owl-nav [class*=owl-]{
    color:#fff;
    font-size:14px;
    margin:5px;
    padding:4px 7px;
    background:#d6d6d6;
    display:inline-block;
    cursor:pointer;
    -webkit-border-radius:3px;
    -moz-border-radius:3px;
    border-radius:3px
}

.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{
    background:#869791;
    color:#fff;
    text-decoration:none
}

.owl-theme .owl-controls .owl-nav .disabled{
    opacity:.5;
    cursor:default
}

.owl-theme .owl-dots .owl-dot{
    display:inline-block;
    zoom:1;
    *display:inline
}

.owl-theme .owl-dots .owl-dot span{
    width:10px;
    height:10px;
    margin:5px 7px;
    background:#d6d6d6;
    display:block;
    -webkit-backface-visibility:visible;
    -webkit-transition:opacity 200ms ease;
    -moz-transition:opacity 200ms ease;
    -ms-transition:opacity 200ms ease;
    -o-transition:opacity 200ms ease;
    transition:opacity 200ms ease;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    border-radius:30px
}

smls-vertical-main-container .bx-wrapper .bx-pager.bx-default-pager a {
    display: inline;
}
.owl-item img {
    width: 100%;
    margin: 0 auto;
}
/* This is the core CSS of Tooltipster */

/* GENERAL STRUCTURE RULES (do not edit this section) */

.tooltipster-base {
    /* this ensures that a constrained height set by functionPosition,
    if greater that the natural height of the tooltip, will be enforced
    in browsers that support display:flex */
    display: flex;
    pointer-events: none;
    /* this may be overriden in JS for fixed position origins */
    position: absolute;
}

.tooltipster-box {
    /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
    and flex-basis auto for IE11- (at least) */
    flex: 1 1 auto;
}

.tooltipster-content {
    /* prevents an overflow if the user adds padding to the div */
    box-sizing: border-box;
    /* these make sure we'll be able to detect any overflow */
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
}

.tooltipster-ruler {
    /* these let us test the size of the tooltip without overflowing the window */
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
}

/* ANIMATIONS */

/* Open/close animations */

/* fade */

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
    opacity: 1;
}

/* grow */

.tooltipster-grow {
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -o-transform: scale(0,0);
    -ms-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

/* swing */

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}
.tooltipster-swing.tooltipster-show {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

/* fall */

.tooltipster-fall {
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall.tooltipster-initial {
    top: 0 !important;
}
.tooltipster-fall.tooltipster-show {
}
.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0 !important;
    opacity: 0;
}

/* slide */

.tooltipster-slide {
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-initial {
    left: -40px !important;
}
.tooltipster-slide.tooltipster-show {
}
.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0 !important;
    opacity: 0;
}

/* Update animations */

/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */

/* fade */

@keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.tooltipster-update-fade {
    animation: tooltipster-fading 400ms;
}

/* rotate */

@keyframes tooltipster-rotating {
    25% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(0);
    }
}

.tooltipster-update-rotate {
    animation: tooltipster-rotating 600ms;
}

/* scale */

@keyframes tooltipster-scaling {
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.tooltipster-update-scale {
    animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 *
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */

/* .tooltipster-box */

/*.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid black;
    border-radius: 4px;
}*/

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px;
}

/* .tooltipster-content */

/*.tooltipster-sidetip .tooltipster-content {
    color: white;
    line-height: 18px;
    padding: 6px 14px;
}*/

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */

.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 10px;
    /* half the width, for centering */
    margin-left: -10px;
    top: 0;
    width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    right: 0;
    /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
    been positioned yet */
    top: 0;
    width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    left: 0;
    /* same as .tooltipster-left .tooltipster-arrow */
    top: 0;
    width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: 0;
    height: 10px;
    margin-left: -10px;
    width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0;
}

/* .tooltipster-arrow-background */

.tooltipster-sidetip .tooltipster-arrow-background {
    border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #565656;
    left: 0px;
    top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #565656;
    left: -3px;
    top: 0px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #565656;
    left: 3px;
    top: 0px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #565656;
    left: 0px;
    top: -3px;
}

/* .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-border {
    border: 10px solid transparent;
    left: 0;
    top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: black;
}

/* tooltipster-arrow-uncropped */

.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -10px;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-1 .tooltipster-box {
    background-color:#333333;
    display: inline-block;
    border-radius: 5px;
    word-wrap:break-word;
    padding: 6px 14px;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-1 .tooltipster-content {
    font-size: 10px;
    color:#f2f2f2;
    text-transform: uppercase;
    font-family: 'Raleway',Sans-serif;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-1.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #333333;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-1.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #333333;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-1.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #333333;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-1.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #333333;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-1 .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-2 .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-3 .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-4 .tooltipster-arrow-border  {
    border:none;
}
/*template-2*/
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-2 .tooltipster-box {
    background-color:#75bd07;
    width:100%;
    display: inline-block;
    padding: 4px 14px;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-2 .tooltipster-content {
    font-size: 14px;
    color:#ffffff;
    text-transform: uppercase;
    font-family: 'Open Sans',Sans-serif;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-2.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #75bd07;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-2.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #75bd07;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-2.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #75bd07;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-2.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #75bd07;
}
/*template-3*/
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-3 .tooltipster-box {
    background-color:#fc562e;
    display: inline-block;
    border-radius: 20px;
    padding: 7px 16px;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-3 .tooltipster-content {
    font-size: 11px;
    color:#ffffff;
    text-transform: capitalize;
    font-family: 'Open Sans',Sans-serif;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-3.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-3.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-3.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-3.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #fc562e;
}
/*template-4*/
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-4 .tooltipster-box {
    background-color:#f2f2f2;
    display: inline-block;
    border-radius: 20px;
    padding: 7px 16px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-4 .tooltipster-content {
    font-size: 12px;
    color:#333333;
    text-transform: capitalize;
    font-family: 'Raleway',Sans-serif;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-4.tooltipster-bottom .tooltipster-arrow-background{
    border-bottom-color: #f2f2f2;
    left: 0px;
    top:1px;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-4.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #f2f2f2;
    left: -1px;
    top: 0px;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-4.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #f2f2f2;
    left: 1px;
    top: 0px;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-4.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #f2f2f2;
    left: 0px;
    top: -1px;
}
/*template-5*/
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5 .tooltipster-box {
    background-color:#333333;
    display: inline-block;
    border-radius: 3px;
    padding: 7px 16px;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5 .tooltipster-content {
    font-size: 11px;
    color:#ffffff;
    text-transform: capitalize;
    font-family: 'Open Sans',Sans-serif;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-top .tooltipster-box {
    border-bottom:3px solid #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-right .tooltipster-box {
    border-left:3px solid #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-left .tooltipster-box {
    border-right:3px solid #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-bottom .tooltipster-box {
    border-top:3px solid #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5 .tooltipster-arrow-border {
    border: 10px solid transparent;
    left: 0;
    top: 0;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-bottom .tooltipster-arrow-background,
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-left .tooltipster-arrow-background,
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-right .tooltipster-arrow-background,
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #fc562e;
}
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-top .tooltipster-arrow-background,
.tooltipster-sidetip.tooltipster-noir.smls-tooltip-template-5.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #fc562e;
}
/*========grid-responsive=======*/

@media all and (min-width: 768px) and (max-width: 1024px){
    .smls-main-logo-wrapper .smls-tablet-column-2 .smls-grid-each-item:nth-of-type(2n+1),
    .smls-main-logo-wrapper .smls-tablet-column-2 .smls-grid-image-wrap:nth-of-type(2n+1),
    .smls-main-logo-wrapper .smls-tablet-column-3 .smls-popup-wrap:nth-of-type(3n+1),
    .smls-main-logo-wrapper .smls-tablet-column-3 .smls-grid-each-item:nth-of-type(3n+1),
    .smls-main-logo-wrapper .smls-tablet-column-3 .smls-grid-image-wrap:nth-of-type(3n+1),
    .smls-main-logo-wrapper .smls-tablet-column-4 .smls-popup-wrap:nth-of-type(4n+1),
    .smls-main-logo-wrapper .smls-tablet-column-4 .smls-grid-each-item:nth-of-type(4n+1),
    .smls-main-logo-wrapper .smls-tablet-column-4 .smls-grid-image-wrap:nth-of-type(4n+1) {
        clear: left;
    }
    .ap-template-wise-design .ap-container-5 .ap-container.smls-temp-4-wrap {
        max-width: 100%;
    }
    .smls-tablet-column-2 .smls-popup-wrap,
    .smls-tablet-column-2 .smls-grid-each-item,
    .smls-tablet-column-2 .smls-grid-image-wrap
    {
        width:50%;
    }
    .smls-tablet-column-3 .smls-popup-wrap,
    .smls-tablet-column-3 .smls-grid-each-item,
    .smls-tablet-column-3 .smls-grid-image-wrap
    {
        width:33.33%;
    }
    .smls-tablet-column-4 .smls-grid-each-item,
    .smls-tablet-column-4 .smls-grid-image-wrap {
        width:25%;
    }
    .smls-logo-inline-wrap {
        padding: 20px;
    }
    .smls-inline-gallery-detail-wrap-template-1 a {
        width: 23%;
        margin: 0;
        border:4px solid #eeeeee;
    }
    .smls-contact-block-template-1 .smls-social-icon-wrap {
        margin:10px 0;
    }


    /*tooltip*/
    .smls-main-logo-wrapper .smls-tooltip-title-template-1 {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .smls-main-logo-wrapper .smls-mobile-column-2 .smls-popup-wrap:nth-of-type(2n+1),
    .smls-main-logo-wrapper .smls-mobile-column-2 .smls-grid-each-item:nth-of-type(2n+1),
    .smls-main-logo-wrapper .smls-mobile-column-2 .smls-grid-image-wrap:nth-of-type(2n+1),
    .smls-main-logo-wrapper .smls-mobile-column-3 .smls-popup-wrap:nth-of-type(3n+1),
    .smls-main-logo-wrapper .smls-mobile-column-3 .smls-grid-each-item:nth-of-type(3n+1),
    .smls-main-logo-wrapper .smls-mobile-column-3 .smls-grid-image-wrap:nth-of-type(3n+1) {
        clear:left;
    }
    .smls-mobile-column-1 .smls-popup-wrap,
    .smls-mobile-column-1 .smls-grid-each-item,
    .smls-mobile-column-1 .smls-grid-image-wrap {
        width:100%;
        max-width: 320px;
        margin:0 auto;
        float: none;
    }
    .smls-resposive-wrap .smls-grid-container-template-1.smls-mobile-column-1 .smls-popup-wrap:before,
    .smls-resposive-wrap .smls-grid-container-template-1.smls-mobile-column-1 .smls-grid-each-item:before,
    .smls-resposive-wrap .smls-grid-container-template-1.smls-mobile-column-1 .smls-grid-image-wrap:before{
        border-left: 0;
    }
    .smls-grid-container-template-2.smls-mobile-column-1 {
        max-width:320px;
        width:100%;
        margin:0 auto;
    }
    .smls-mobile-column-2 .smls-popup-wrap,
    .smls-mobile-column-2 .smls-grid-each-item,
    .smls-mobile-column-2 .smls-grid-image-wrap {
        width:50%;
    }

    .smls-overlay-effect .smls-link-style span,
    .smls-overlay-effect .smls-popup-icon span,
    .smls-overlay-effect .smls-inline-icon span {
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
    }

}
@media (max-width: 640px) {

    .smls-carousel-logo.smls-text-arrow {
        padding-top: 70px;
    }

}

@media (max-width: 480px){
    .smls-grid-container-template-1 .smls-popup-wrap,
    .smls-grid-container-template-1 .smls-grid-each-item,
    .smls-grid-container-template-1 .smls-grid-image-wrap,
    .smls-grid-container-template-2 .smls-popup-wrap,
    .smls-grid-container-template-2 .smls-grid-each-item,
    .smls-grid-container-template-2 .smls-grid-image-wrap
    {
        padding: 10px;
    }

}
@media (max-width: 400px){
    .smls-mobile-column-2 .smls-popup-wrap,
    .smls-mobile-column-2 .smls-grid-each-item,
    .smls-mobile-column-2 .smls-grid-image-wrap {
        width:100%;
        margin: 0;
    }

    .smls-main-logo-wrapper .smls-gallery-wrap-template-2 a,
    .smls-main-logo-wrapper .smls-inline-3-gallery-wrap a {
        width: 21%;
        margin:2px;
    }

    .smls-main-logo-wrapper .smls-inline-gallery-detail-wrap-template-1 a{
        width: 29%;
    }
}
.smls-overlay-contact-info {
  /*Hides pop-up when there is no "active" class*/
  visibility: hidden;
  position: absolute;
  background: #ffffff;
  border: 3px solid #666666;
  width: 50%;
  height: 50%;
  left: 25%;
}


.smls-popup-open.inactive{
  visibility: hidden !important;
}

.smls-overlay-contact-info.active {
  /*displays pop-up when "active" class is present*/
  visibility: visible;
  text-align: center;
}

.popup-content {
  /*Hides pop-up content when there is no "active" class */
  visibility: hidden;
}

.popup-content.active {
  /*Shows pop-up content when "active" class is present */
  visibility: visible;
}
/*!
 * Font Awesome Free 5.0.8 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{-webkit-animation:a 2s infinite linear;animation:a 2s infinite linear}.fa-pulse{-webkit-animation:a 1s infinite steps(8);animation:a 1s infinite steps(8)}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-webkit-transform:scaleY(-1);transform:scaleY(-1)}.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-horizontal.fa-flip-vertical{-webkit-transform:scale(-1);transform:scale(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-aws:before{content:"\f375"}.fa-backward:before{content:"\f04a"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blind:before{content:"\f29d"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-briefcase:before{content:"\f0b1"}.fa-btc:before{content:"\f15a"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-car:before{content:"\f1b9"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-certificate:before{content:"\f0a3"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-square:before{content:"\f14a"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comments:before{content:"\f086"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-credit-card:before{content:"\f09d"}.fa-crop:before{content:"\f125"}.fa-crosshairs:before{content:"\f05b"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-deviantart:before{content:"\f1bd"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-dot-circle:before{content:"\f192"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drupal:before{content:"\f1a9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-excel:before{content:"\f1c3"}.fa-file-image:before{content:"\f1c5"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fire:before{content:"\f06d"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-firstdraft:before{content:"\f3a1"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frown:before{content:"\f119"}.fa-futbol:before{content:"\f1e3"}.fa-gamepad:before{content:"\f11b"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-gift:before{content:"\f06b"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-martini:before{content:"\f000"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-handshake:before{content:"\f2b5"}.fa-hashtag:before{content:"\f292"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-heart:before{content:"\f004"}.fa-heartbeat:before{content:"\f21e"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-houzz:before{content:"\f27c"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-internet-explorer:before{content:"\f26b"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-jenkins:before{content:"\f3b6"}.fa-joget:before{content:"\f3b7"}.fa-joomla:before{content:"\f1aa"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-key:before{content:"\f084"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-korvue:before{content:"\f42f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-male:before{content:"\f183"}.fa-map:before{content:"\f279"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-maxcdn:before{content:"\f136"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-meh:before{content:"\f11a"}.fa-mercury:before{content:"\f223"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-moon:before{content:"\f186"}.fa-motorcycle:before{content:"\f21c"}.fa-mouse-pointer:before{content:"\f245"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-paragraph:before{content:"\f1dd"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-percent:before{content:"\f295"}.fa-periscope:before{content:"\f3da"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phone:before{content:"\f095"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-plane:before{content:"\f072"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-print:before{content:"\f02f"}.fa-product-hunt:before{content:"\f288"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-random:before{content:"\f074"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-rebel:before{content:"\f1d0"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-rendact:before{content:"\f3e4"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-resolving:before{content:"\f3e7"}.fa-retweet:before{content:"\f079"}.fa-road:before{content:"\f018"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-rupee-sign:before{content:"\f156"}.fa-safari:before{content:"\f267"}.fa-sass:before{content:"\f41e"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-scribd:before{content:"\f28a"}.fa-search:before{content:"\f002"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shower:before{content:"\f2cc"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowflake:before{content:"\f2dc"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-spinner:before{content:"\f110"}.fa-spotify:before{content:"\f1bc"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-star:before{content:"\f005"}.fa-star-half:before{content:"\f089"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-strava:before{content:"\f428"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-trademark:before{content:"\f25c"}.fa-train:before{content:"\f238"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-circle:before{content:"\f2bd"}.fa-user-md:before{content:"\f0f0"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vuejs:before{content:"\f41f"}.fa-warehouse:before{content:"\f494"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wrench:before{content:"\f0ad"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:Font Awesome\ 5 Brands;font-style:normal;font-weight:400;src:url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-brands-400.eot);src:url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-brands-400.woff2) format("woff2"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-brands-400.woff) format("woff"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-brands-400.ttf) format("truetype"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:Font Awesome\ 5 Brands}@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:400;src:url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-regular-400.eot);src:url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-regular-400.woff2) format("woff2"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-regular-400.woff) format("woff"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-regular-400.ttf) format("truetype"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:Font Awesome\ 5 Free;font-style:normal;font-weight:900;src:url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-solid-900.eot);src:url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-solid-900.woff2) format("woff2"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-solid-900.woff) format("woff"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-solid-900.ttf) format("truetype"),url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/fonts/font-awesome/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:Font Awesome\ 5 Free}.fa,.fas{font-weight:900}/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 .wtl_post_aside{
	width: 40%; float: left; margin-right: 15px;
 }
 /* This file will be included in all templates */
.wtl_wrapper,
.wtl_wrapper * {
	box-sizing: border-box;
}
.wtl_wrapper {
	clear: left;
	display: inline-block;
	width: 100%;
}
.wp_timeline_post_list .wp-block-embed iframe {position: relative;min-width: 100%}
.wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before{
	content: none !important;
}
.wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
	padding-top: 0 !important;
}

a:focus {
	outline: medium none !important;
}
.wtl_blog_template ol,
.wtl_blog_template ul {
	display: inline-block;
}
.wtl_edd_download_buy_button .edd_purchase_submit_wrapper .edd_go_to_checkout,
.wtl_edd_download_buy_button .wtl_edd_view_button {
	display: inline-flex;
}
/** Paggination Style **/
/* Start Defaule Template 1 */
.wtl_wrapper .wl_pagination_box {
	text-align: center;
}
#secondary .wtl_wrapper .wl_pagination_box .paging-navigation ul.page-numbers li {
	display: inline-block;
}
.wtl_wrapper .wl_pagination_box.template-1 .paging-navigation ul.page-numbers li {
	list-style: none;
	display: inline-block;
	margin-bottom: 10px;
	vertical-align: top; margin: 0 !important
}
.wtl_wrapper .wl_pagination_box.template-1 .wl_pagination span,
.wtl_wrapper .wl_pagination_box.template-1 .wl_pagination a {
	margin-bottom: 10px;
}
.wtl_wrapper .wl_pagination_box.template-1 .paging-navigation ul.page-numbers li a.page-numbers {
	padding: 5px 10px;
	text-decoration: none !important;
}
.wtl_wrapper .wl_pagination_box.template-1 .paging-navigation ul.page-numbers {
	margin: 0;
	padding: 0;
}
.wtl_wrapper .wl_pagination_box.template-1 .paging-navigation ul.page-numbers li > span.current {
	padding: 5px 10px;
}
/* End Defaule Template 1 */

/* Start Defaule Template 2 */
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers li {list-style: none;display: inline-block;margin-bottom: 10px}
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers li a {padding: 6px 11px;border-radius: 50%}
.wtl_wrapper .wl_pagination_box.template-2 .wl_pagination span,.wtl_wrapper .wl_pagination_box.template-2 .wl_pagination a {margin-bottom: 10px}
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers li a.prev,
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers li a.next{width: auto;font-size:16px;border-radius: 0}
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers li a.prev,
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers li a.next{visibility: visible;border: none}
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers {margin: 0;font-size: 16px}
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers li > span.current {padding: 6px 11px;border-radius: 50%;}
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers li a.prev,
.wtl_wrapper .wl_pagination_box.template-2 .paging-navigation ul.page-numbers li a.next {visibility:hidden}

/* End Defaule Template 2 */

/* Start Defaule Template 3 */
.wtl_wrapper .wl_pagination_box.template-3 .paging-navigation ul.page-numbers li {list-style: none;display: inline-block;margin-bottom: 10px; margin:0;}
.wtl_wrapper .wl_pagination_box.template-3 .wl_pagination span,.wtl_wrapper .wl_pagination_box.template-3 .wl_pagination a {margin-bottom: 10px}
.wtl_wrapper .wl_pagination_box.template-3 .paging-navigation ul.page-numbers li a.prev,
.wtl_wrapper .wl_pagination_box.template-3 .paging-navigation ul.page-numbers li a.next{visibility: hidden}
.wtl_wrapper .wl_pagination_box.template-3 .paging-navigation ul.page-numbers li a.page-numbers {padding: 7px 10px;text-decoration: none !important;font-size: 18px;line-height: 1.5}
.wtl_wrapper .wl_pagination_box.template-3 .paging-navigation ul.page-numbers {margin: 0;text-align: center;width: 100%;display: inline-block;padding: 0;font-size: 16px}
.wtl_wrapper .wl_pagination_box.template-3 .paging-navigation ul.page-numbers li > span.current {padding: 7px 10px;font-size: 18px;line-height: 1.5;}

/* End Defaule Template 3 */

/* Start Defaule Template 4 */
.wtl_wrapper .wl_pagination_box.template-4 .paging-navigation ul.page-numbers li {
	list-style: none;
	display: inline-block;
	margin-bottom: 10px;
}
.wtl_wrapper .wl_pagination_box.template-4 .wl_pagination span,
.wtl_wrapper .wl_pagination_box.template-4 .wl_pagination a {
	margin-bottom: 10px;
}
.wtl_wrapper .wl_pagination_box.template-4 .paging-navigation ul.page-numbers li a.page-numbers {
	padding: 5px 10px;
	text-decoration: none !important;
	font-size: 18px;
	line-height: 1.5;
}
.wtl_wrapper .wl_pagination_box.template-4 .paging-navigation ul.page-numbers {
	margin: 0;
}
.wtl_wrapper .wl_pagination_box.template-4 .paging-navigation ul.page-numbers li > span.current {
	padding: 5px 10px;
	position: relative;
	font-size: 18px;
	line-height: 1.5;
}
.wtl_wrapper .wl_pagination_box.template-4 .paging-navigation ul.page-numbers li > span.current:before {
	content:"";
	position: absolute;
	top:  -2px;
	left: -2px;
	height: 50%;
	width: 2px;
}
.wtl_wrapper .wl_pagination_box.template-4 .paging-navigation ul.page-numbers li > span.current:after {
	content:"";
	position: absolute;
	top:  -2px;
	right: -2px;
	height: 50%;
	width: 2px
}
/* End Defaule Template 4 */
.wp-timeline-social-share {
	cursor: pointer;
}
.wtl_social_share_postion{
	display: inline-block;width: 100%;position: relative;
}
.wtl_blog_template .social-component{
	display: inline-block;
}
.wtl_social_share_postion.center_position{
	text-align: center;
}
.right_position .social-component{
	float: right;
}
.wtl_blog_template .social-component.extra_small .social-share {
	display: inline-block;
	margin: 10px 0 0;
}
.wtl_blog_template .social-component.extra_small a {
	font-size: 13px;
	height: 27px;
	line-height: 16px !important;
	margin: 0px 2px 0 !important;
	padding: 5px 0;
	width: 27px;
}

.wtl_blog_template .social-component.extra_small.right .social-share .count {
	margin:0 0 0 6px;
	padding: 7px 0;
}
.wtl_blog_template .social-component.extra_small.top .social-share .count{
	margin: 0 0 10px;
}
.wtl_blog_template .social-component.extra_small .social-share a.email{
	margin-left: 7px !important;
}
.wtl_blog_template .social-component a {
	border: 1px solid #ccc;
	float: left;
	margin: 10px 10px 0 0;
	padding: 8px 0;
	text-align: center;
	width: 38px;
	font-size: 15px;
	line-height: 20px;
	color: #333;
	box-shadow: none;
}
.wtl_blog_template .social-component.extra_small .social-share .count {
	float: left;
	font-size: 12px;
	height: auto;
	line-height: 1;
	margin: 10px 0 0 3px;
	padding: 5px 0;
	text-align: center;
	width: 27px !important;
}
.wtl_blog_template .post-body-div h2.wtl-post-title a,
.wtl_blog_template .category-link a,
.wtl_blog_template .categories a,
.wtl_blog_template .wtl-read-more > a,
.wtl_blog_template .tags a,
.wtl_blog_template a,
.wtl_blog_template .metacomments a {
	text-decoration: none;
	text-shadow: none;
}

.social-component a.facebook-share:hover{background-color:#3a589d;border-color:#3a589d;color:#fff}
.social-component a.wp-timeline-twitter-share:hover{background-color:#5EA9DD;border-color:#5EA9DD;color:#fff}
.social-component a.wp-timeline-whatsapp-share:hover{background-color:#3cc150;border-color:#3cc150;color:#fff}
.social-component a.wp-timeline-instagram-share:hover{background-color:#125688;border-color:#125688;color:#fff}
.social-component a.wp-timeline-google-share:hover{background-color:#dd4e31;border-color:#dd4e31;color:#fff!important}
.social-component .social-share a:hover{color:#fff!important}
.social-component a.wp-timeline-linkedin-share:hover{background-color:#0177B5;border-color:#0177B5;color:#fff}
.social-component a.wp-timeline-email-share:hover{background-color:#111111;border-color:#111111;color:#fff}
.social-component a.wp-timeline-website-share:hover{background-color:#4285F4;border-color:#4285F4;color:#fff}
.social-component a.wp-timeline-pinterest-share:hover{background-color:#cb2320;border-color:#cb2320;color:#fff}
.social-component a.wp-timeline-telegram-share:hover{background-color:#2399d6;border-color:#2399d6;color:#fff}
.social-component a.wp-timeline-pocket-share:hover{background-color:#ee4056;border-color:#ee4056;color:#fff}
.social-component a.wp-timeline-reddit-share:hover{background-color:#ff4500;border-color:#ff4500;color:#fff}
.social-component a.wp-timeline-digg-share:hover{background-color:#245EAD;border-color:#245EAD;color:#fff}
.social-component a.wp-timeline-skype-share:hover{background-color:#00aff0;border-color:#00aff0;color:#fff}
.social-component a.wp-timeline-youtube-share:hover{background-color:#bb0000;border-color:#bb0000;color:#fff}
.social-component a.wp-timeline-wordpress-share:hover{background-color:#21759b;border-color:#21759b;color:#fff}
.social-component a.wp-timeline-tumblr-share:hover{background-color:#34526f;border-color:#34526f;color:#fff}
.social-component a.wp-timeline-snapchat-share:hover{background-color:#fffc00;border-color:#fffc00;color:#fff}
.social-component a.wp-timeline-vine-share:hover{background-color:#00bf8f;border-color:#00bf8f;color:#fff}
.social-component a.wp-timeline-tumblr-share:hover{background-color:#32506d;border-color:#32506d;color:#fff}
.wtl_blog_template .social-component .social-share{display:inline-block;width:auto;margin:10px 10px 0 0;float:left;}
.wtl_blog_template .social-component.bottom .social-share{vertical-align:top;}
.wtl_blog_template .social-component.top .social-share{vertical-align:bottom;}
.wtl_blog_template.even_class .social-component .social-share{float:right;}
.wtl_blog_template .social-component .social-share a{padding-right:0;margin:0;}

.wtl_blog_template .wp-video{
	margin-bottom: 0;
}
.wtl_blog_template .upper_image_wrapper{
	background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.wtl_blog_template .upper_image_wrapper blockquote:before{
	color: #484848;
	content: "";
	font-family: fontawesome;
	font-size: 19px;
	left: 15px;
	position: absolute;
	top: 10px;
}
.wtl_blog_template .upper_image_wrapper blockquote{
	background-color: rgba(255, 255, 255, 0.8);
	left: 50%;
	margin: 0 !important;
	padding: 20px 20px 25px 40px;
	position: absolute;
	top: 50%;
	transform: translate3d(-50%, -50%, 0px);
	-ms-transform: translate3d(-50%, -50%, 0px);
	-webkit-transform: translate3d(-50%, -50%, 0px);
	-o-transform: translate3d(-50%, -50%, 0px);
	border-left: 5px solid;
}
.blog_template .upper_image_wrapper.wtl_link_post_format a:before{
	content: "";
	font-family: fontawesome;
	margin-right: 10px;
}
.blog_template .upper_image_wrapper.wtl_link_post_format a{
	background-color: rgb(255, 255, 255);
	left: 50%;
	margin: 0;
	padding: 10px 20px;
	position: absolute;
	top: 50%;
	transform: translate3d(-50%, -50%, 0px);
	-ms-transform: translate3d(-50%, -50%, 0px);
	-webkit-transform: translate3d(-50%, -50%, 0px);
	-o-transform: translate3d(-50%, -50%, 0px);
	border-radius: 5px;
}
.wtl_blog_template .wp-timeline-post-image {
	position: relative;text-align: center;
}
.wtl_blog_template .wp-timeline-post-image:hover .wp-timeline-pinterest-share-image {
	visibility: visible;
	opacity: 1;
}
.wp-timeline-pinterest-share-image i{ color: #fff !important; line-height: 37px }
.wtl_blog_template .wp-timeline-pinterest-share-image {
	bottom: 10px;
	left: 10px;
	position: absolute;
	visibility: hidden;
	opacity: 0;
	top: 10px;
	height: 40px;
	width: 40px;
	overflow: hidden;
	transition: visibility 0s, opacity 0.5s linear;
}
.wtl_blog_template .wp-timeline-pinterest-share-image a {
	background-color: #cb2027;
	border-color: #b51d23;
	border-style: solid;
	display: block;
	float: left;
	height: 40px;
	width: 40px;
	background-size: 100%;
	box-shadow: none;
}
.wp-timeline-load-more-pre {
	float: left;
	margin-bottom: 20px;
	width: 100%;
}
.wtl_blog_template .wp-timeline-flexslider.flexslider { line-height: 0; }
.wtl_blog_template .flex-direction-nav a:before { font-size: 30px; line-height: 1; }
.wtl_blog_template .flexslider ul.flex-direction-nav { margin: 0; }
.wtl_blog_template .flexslider ul.flex-direction-nav > li { list-style: none; }
.blog_template.slider_template .flex-control-nav { display: block; }
.wp-timeline-load-more { text-align: center; margin: 0; position: relative; }
.wp-timeline-load-more a.button.wp-timeline-load-more-btn { padding: 5px 15px; line-height: normal; font-size: 16px; height: auto; border-radius: 3px; color: #fff; background: #000; border: 1px solid #000; text-decoration: none; box-shadow: none; }
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-2 { border-radius: 30px; padding: 15px 30px; }
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 { border: none; padding: 15px 30px; position: relative; color: #333; background: #fff; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; }
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span:before, .wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span:after { content: ""; position: absolute; background: #000; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; }
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span.wp-timeline-lmb-top:before,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span.wp-timeline-lmb-top:after {
	left: 0;top: 0;
}
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span.wp-timeline-lmb-bottom:before,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span.wp-timeline-lmb-bottom:after {
	right: 0;bottom: 0;
}
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span.wp-timeline-lmb-top:before,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span.wp-timeline-lmb-bottom:before {
	height: 70%;width: 2px;
}
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span.wp-timeline-lmb-top:after,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 span.wp-timeline-lmb-bottom:after {
	width: 30%;height: 2px;
}
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:hover span.wp-timeline-lmb-top:before,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:focus span.wp-timeline-lmb-top:before,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:active span.wp-timeline-lmb-top:before,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:hover span.wp-timeline-lmb-bottom:before,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:focus span.wp-timeline-lmb-bottom:before,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:active span.wp-timeline-lmb-bottom:before {
	height: 100%;
}
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:hover span.wp-timeline-lmb-top:after,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:focus span.wp-timeline-lmb-top:after,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:active span.wp-timeline-lmb-top:after,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:hover span.wp-timeline-lmb-bottom:after,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:focus span.wp-timeline-lmb-bottom:after,
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:active span.wp-timeline-lmb-bottom:after {
	width: 100%;
}
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3 { background: transparent; }
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:before { content: ""; height: 30px; width: 30px; border-top: 2px solid #000; border-left: 2px solid #000; position: absolute; top: 0px; left: 0px; transition: all 0.3s; }
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:after { content: ""; height: 30px; width: 30px; border-bottom: 2px solid #000; border-right: 2px solid #000; position: absolute; bottom: 0px; right: 0px; transition: all 0.3s; }
.wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:hover:after, .wp-timeline-load-more a.button.wp-timeline-load-more-btn.template-3:hover:before { height: 100%; width: 100%; }
.wp-timeline-load-more a.button.wp-timeline-load-more-btn:hover, .wp-timeline-load-more a.button.wp-timeline-load-more-btn:focus, .wp-timeline-load-more a.button.wp-timeline-load-more-btn:active { color: #000; background: #fff; border-color: #000; }
.wtl_wrapper .wl_pagination_box { width: 100%; float: left; margin: 60px 0 30px; }
.wtl_wrapper .wl_pagination_box .wl_pagination span, .wtl_wrapper .wl_pagination_box .wl_pagination a { display: inline-block; margin-right: 5px; padding: 0 8px; text-decoration: none; }
.wtl_wrapper .wl_pagination_box .navigation .prev.page-numbers, .wtl_wrapper .wl_pagination_box .navigation .next.page-numbers { float: none; }

.wtl_blog_template a {
	border: none;
	box-shadow: none !important;
}
.wtl_blog_template img.wp-post-image {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}
.wtl_blog_template .wp-caption.aligncenter {
	max-width: 100%;
	left: 0;
	transform: translateX(0);
}
.wtl_wrapper figure {
	max-width: 100%;
	display: inline-block;
}
.wtl_blog_template .taxonomies span.terms a:last-child span {
	display: none;
}
.wtl_blog_template .metacomments a {
	box-sizing: border-box;
}
.wp-timeline-load-more a:hover {
	text-decoration: none !important;
}
.wtl_blog_template .social-component.large a {
	height: 45px;
	padding: 12px 0;
	width: 45px;
	box-sizing: border-box;
}
.social-component.large a .fa {
	font-size: 20px;
}
.blog_footer {
	box-sizing: border-box;
}
.blog_template .flexslider {
	border: none; line-height: 0
}
.blog_template .flex-viewport{
	margin-bottom: -5px;
}
h2.wtl-date-top:before,h2.wtl-post-title:before{ display: none; }
.loading-image {
	bottom: 0;
	display: block;
	max-height: 100px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	z-index:3;
	text-align: center;
}
#wtl-load-more-hidden {
	display: inline-block;
	width: 100%;
	float: left;
	position: relative;
}
.wtl_blog_template .post_content li {
	float: left;
	width: 100%;
}
.wtl-load-onscroll-pre {
	float: left;
	width: 100%;
	padding-bottom: 30px;
}
.wp-timeline-row {
	margin-left: -10px;
	margin-right: -10px;
}
.wtl_blog_template .social-component.top .social-share,
.blog_template.wtl_blog_template .social-component.top > a {
	margin: 10px 5px 0 0;
}
.wtl_blog_template .wp-audio-shortcode,
.wp-video,
.wp-playlist.wp-audio-playlist {
	margin-bottom: 0;
}
img {
	max-width: 100%;
}
.wtl-load-onscroll-pre {
	float: left;
	width: 100%;
}
.wp-timeline-count{
	padding-left: 3px;
	padding-right: 5px;
}
.wp-timeline-wrapper-like {
	display: inline-block;
}
.wp-timeline-wrapper-like{
	display: inline-block;
	padding-left: 10px;
	width: auto;
}
.wp-timeline-wrapper-like > span {
	display: inline-block;
}
.blog_template .more-tag{
	text-transform: none;
}

.chosen-container {
	width: 200px !important;
}

#wp-timeline-filer-change {
	margin-bottom: 15px;
}
/*Social Icon style*/
.wtl_blog_template .social-component a.social-share-default:hover{
	opacity: 1.0;
}
.wtl_blog_template .social-component a.social-share-default{
	height: 38px;
	background-image: url(//smartbusinesscanvas.com/wp-content/plugins/wp-timeline-designer-pro/public/images/social_default_image.png);
	opacity: 0.9;
	background-color: transparent;
}
/*First Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-email-share{background-position:-202px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-website-share{background-position:-298px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-reddit-share{background-position:-442px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-vine-share{background-position:-490px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -10px}
.wtl_blog_template .social-component.default_social_style_1 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -10px}

/*Second Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-email-share{background-position:-202px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-website-share{background-position:-298px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-reddit-share{background-position:-442px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-vine-share{background-position:-490px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -58px}
.wtl_blog_template .social-component.default_social_style_2 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -58px}
/*Third Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-email-share{background-position:-202px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-website-share{background-position:-298px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-reddit-share{background-position:-442px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-vine-share{background-position:-490px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -106px}
.wtl_blog_template .social-component.default_social_style_3 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -106px}

/*Fourth Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-email-share{background-position:-202px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-website-share{background-position:-298px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-reddit-share{background-position:-394px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-vine-share{background-position:-490px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -154px}
.wtl_blog_template .social-component.default_social_style_4 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -154px}

/*Fifth Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-email-share{background-position:-202px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-website-share{background-position:-298px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-reddit-share{background-position:-442px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-vine-share{background-position:-490px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -202px}
.wtl_blog_template .social-component.default_social_style_5 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -202px}

/*Sixth Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-email-share{background-position:-202px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-website-share{background-position:-298px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-reddit-share{background-position:-442px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-vine-share{background-position:-490px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -250px}
.wtl_blog_template .social-component.default_social_style_6 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -250px}

/*Seventh Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-email-share{background-position:-202px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-website-share{background-position:-298px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-reddit-share{background-position:-442px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-vine-share{background-position:-490px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -298px}
.wtl_blog_template .social-component.default_social_style_7 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -298px}

/*Eighth Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-email-share{background-position:-202px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-website-share{background-position:-298px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-reddit-share{background-position:-442px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-vine-share{background-position:-490px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -346px}
.wtl_blog_template .social-component.default_social_style_8 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -346px}

/*Ninth Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-email-share{background-position:-202px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-website-share{background-position:-298px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-reddit-share{background-position:-442px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-vine-share{background-position:-490px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -394px}
.wtl_blog_template .social-component.default_social_style_9 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -394px}

/*Tenth Social Icon Style*/
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-facebook-share{background-position:-10px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-linkedin-share{background-position:-58px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-pinterest-share{background-position:-106px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-twitter-share{background-position:-154px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-email-share{background-position:-202px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-whatsapp-share{background-position:-250px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-website-share{background-position:-298px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-pocket-share{background-position:-346px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-telegram-share{background-position:-394px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-reddit-share{background-position:-442px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-vine-share{background-position:-490px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-tumblr-share{background-position:-538px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-instagram-share{background-position:-586px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-youtube-share{background-position:-634px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-wordpress-share{background-position:-922px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-skype-share{background-position:-1018px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-snapchat-share{background-position:-1066px -442px}
.wtl_blog_template .social-component.default_social_style_10 a.social-share-default.wp-timeline-digg-share{background-position:-1162px -442px}

.button.wtl-load-onscroll-btn{
	opacity: 0;
	visibility: hidden;
}

/* Archive Page Style */
.wp-timeline-post-image.post-video iframe,
.wtl_wrapper .post-video iframe,
.wtl_wrapper .wp-timeline-video .iframe {
	display: inline-block;
	max-width: 100%;
}
.blog_template embed,
.blog_template iframe,
.blog_template object,
.blog_template video{
	margin-bottom: 0;
	width: 100%;
}
.wtl_email_share { display: none; background: #fff; border: 1px solid #ccc; box-shadow: 0 0 10px #ccc; padding: 15px; position: absolute; display: none; z-index: 99; }
.wp-timeline-close {
	cursor: pointer;
	display: inline;
	float: right;
	position: absolute;
	right: 7px;
	top: 3px;
}
.wp-timeline-close_button {
	padding-left: 10px;
	display: inline;
	cursor: pointer;
}
.wp-timeline-mail_submit_button {
	display: inline !important;
}
#wtl_email_share form > div {
	padding-top: 12px;
}
#wtl_email_share label {
	font-weight: normal;
	font-size: 12px;
	display: inline-block;
	min-width: 160px;
}
#wtl_email_share input[type='text'],
#wtl_email_share input[type='email'] {
	padding: 5px;
	max-width: 250px;
	min-width: 250px;
}

/* Image Hover Effects */
.wtl_wrapper figure {
	margin: 0 !important;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.wtl_wrapper figure.zoom_in img {
	-webkit-transition: all ease-in-out 0.3s 0s;
	-moz-transition: all ease-in-out 0.3s 0s;
	-ms-transition: all ease-in-out 0.3s 0s;
	-o-transition: all ease-in-out 0.3s 0s;
	transition: all ease-in-out 0.3s 0s;
}
.wtl_wrapper figure.zoom_in img:hover {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

.wtl_wrapper figure.zoom_out img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all ease-in-out 0.3s 0s;
	-moz-transition: all ease-in-out 0.3s 0s;
	-ms-transition: all ease-in-out 0.3s 0s;
	-o-transition: all ease-in-out 0.3s 0s;
	transition: all ease-in-out 0.3s 0s;
}
.wtl_wrapper figure.zoom_out img:hover {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.wtl_wrapper figure.slide img {
	margin-left: 10%;
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition: all ease-in-out 0.3s 0s;
	-moz-transition: all ease-in-out 0.3s 0s;
	-ms-transition: all ease-in-out 0.3s 0s;
	-o-transition: all ease-in-out 0.3s 0s;
	transition: all ease-in-out 0.3s 0s;
}
.wtl_wrapper figure.slide img:hover {
	margin-left: 0;
}
.wtl_wrapper .gallery {
	margin: 0;
}
.wtl_wrapper figure.shine:before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 100%);
	-webkit-transform: skewX(-25deg);
	-moz-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	-o-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.wtl_email_form {
	display: inline-block;
	width: 100%;
	padding: 10px;
}
.wtl_email_share {
	display: none;
	background: #ffffff;
	border: 1px solid #cccccc;
	box-shadow: 0 0 10px #cccccc;
	padding: 15px;
	position: absolute;
	display: none;
	z-index: 99;
}
.wtl-mail_submit_button {
	display: inline !important;
}
.wtl-close_button {
	padding-left: 10px;
	display: inline;
	cursor: pointer;
}
.wtl_wrapper figure.shine:hover:before {
	-webkit-animation: wtl_shine 0.8s;
	-moz-animation: wtl_shine 0.8s;
	-ms-animation: wtl_shine 0.8s;
	-o-animation: wtl_shine 0.8s;
	animation: wtl_shine 0.8s;
}@-webkit-keyframes wtl_shine {
	100% {
		left: 125%;
	}
}
@keyframes wtl_shine {
	100% {
		left: 125%;
	}
}

.wtl_wrapper figure.flashing:hover {
	opacity: 1;
	-webkit-animation: wtl_flash 1.5s;
	-moz-animation: wtl_flash 1.5s;
	-ms-animation: wtl_flash 1.5s;
	-o-animation: wtl_flash 1.5s;
	animation: wtl_flash 1.5s;
}
@-webkit-keyframes wtl_flash {
	0% {
		opacity: 0.4;
	}
	100% {
		opacity: 1;
	}
}
@keyframes wtl_flash {
	0% {
		opacity: 0.4;
	}
	100% {
		opacity: 1;
	}
}

.wtl_wrapper figure.blur img {
	-webkit-filter: blur(1px);
	-moz-filter: blur(1px);
	-ms-filter: blur(1px);
	-o-filter: blur(1px);
	filter: blur(1px);
	-webkit-transition: all ease-in-out 0.3s 0s;
	-moz-transition: all ease-in-out 0.3s 0s;
	-ms-transition: all ease-in-out 0.3s 0s;
	-o-transition: all ease-in-out 0.3s 0s;
	transition: all ease-in-out 0.3s 0s;
}
.wtl_wrapper figure.blur img:hover {
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	-ms-filter: blur(0);
	-o-filter: blur(0);
	filter: blur(0);
}

.wtl_wrapper figure.gray_scale img {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all ease-in-out 0.3s 0s;
	-moz-transition: all ease-in-out 0.3s 0s;
	-ms-transition: all ease-in-out 0.3s 0s;
	-o-transition: all ease-in-out 0.3s 0s;
	transition: all ease-in-out 0.3s 0s;
}
.wtl_wrapper figure.gray_scale img:hover {
	-webkit-filter: grayscale(0);
	-moz-filter: grayscale(0);
	-ms-filter: grayscale(0);
	-o-filter: grayscale(0);
	filter: grayscale(0);
}

.wtl_wrapper figure.sepia img {
	-webkit-filter: sepia(100%);
	-moz-filter: sepia(100%);
	-ms-filter: sepia(100%);
	-o-filter: sepia(100%);
	filter: sepia(100%);
	-webkit-transition: all ease-in-out 0.3s 0s;
	-moz-transition: all ease-in-out 0.3s 0s;
	-ms-transition: all ease-in-out 0.3s 0s;
	-o-transition: all ease-in-out 0.3s 0s;
	transition: all ease-in-out 0.3s 0s;
}
.wtl_wrapper figure.sepia img:hover {
	-webkit-filter: sepia(0);
	-moz-filter: sepia(0);
	-ms-filter: sepia(0);
	-o-filter: sepia(0);
	filter: sepia(0);
}

.wtl_wrapper figure.opacity img {
	opacity: 1;
	-webkit-transition: all ease-in-out 0.3s 0s;
	-moz-transition: all ease-in-out 0.3s 0s;
	-ms-transition: all ease-in-out 0.3s 0s;
	-o-transition: all ease-in-out 0.3s 0s;
	transition: all ease-in-out 0.3s 0s;
}
.wtl_wrapper figure.opacity img:hover {
	opacity: 0.5;
}

.wtl_wrapper figure.shine_circle:before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.wtl_wrapper figure.shine_circle:hover:before {
	-webkit-animation: wtl_circle .75s;
	-moz-animation: wtl_circle .75s;
	-ms-animation: wtl_circle .75s;
	-o-animation: wtl_circle .75s;
	animation: wtl_circle .75s;
}
@-webkit-keyframes wtl_circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes wtl_circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}



@media screen and (max-width: 909px) {
	.sidebar {
		display: inline-block;
	}
}
@media screen and (max-width: 709px) {
	.wtl_wrapper .wl_pagination_box {
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media screen and (max-width: 767px) {
	.wtl_blog_template .wp-timeline-pinterest-share-image,
	.wtl_blog_template .wp-timeline-post-image .wp-timeline-pinterest-share-image {
		visibility: visible;
		opacity: 1;
	}
}
@media screen and (max-width: 640px) {
	.chosen-container {
		margin: 15px 0;
		width: 100% !important;
	}
}

.wp_timeline_sort_by_wrapper select {
	background-color: #fff;
	color: #000;
	padding: 12px;
	width: 250px;
	border: none;
	font-size: 14px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
	-webkit-appearance: button;
	appearance: button;
	outline: none;
	text-transform: capitalize;
	background: transparent;
}

.wp_timeline_sort_by_wrapper:before {content: "\f0dd";font-family: "Font Awesome 5 Free";font-weight: 900;position: absolute;top: 0;right: 0;width: 20%;height: 100%;text-align: center;font-size: 20px;line-height: 32px;color: rgba(0, 0, 0, 0.5);pointer-events: none}
.wp_timeline_sort_by_wrapper:hover:before {color: rgba(0, 0, 0, 0.6)}
.wp_timeline_sort_by_wrapper select:-moz-focusring {
	color: transparent;text-shadow: 0 0 0 #000;
}
.wp_timeline_sort_by_wrapper select option {
	padding: 30px;
}
.wp_timeline_sort_by_wrapper {
	display: inline-block;position: relative;
}

.wp_timeline_sortby_wrap {
	display: inline-block;width: 100%;padding: 10px 0;z-index: 3; position: relative;
}
.wp_timeline_sort_by_wrapper select,
.wp_timeline_sort_by_wrapper select:active,
.wp_timeline_sort_by_wrapper select:focus {
	outline:0px !important;
	-webkit-appearance:none;
}
.wtl-fl-box{
	display: none;
}
/* Woo Support CSS*/
.star-rating{
	text-align: left;
}
.add_to_wishlist:before{
	display: none !important;
}
.yith-wcwl-add-to-wishlist .yith-wcwl-icon.fa.fa-heart-o:before {font-family: fontawesome !important;}
.wp_timeline_woocommerce_price_wrap .price {
display: inline-block;
}