/*! lightslider - v1.1.2 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/

.lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}
.lightSlider {
    overflow: hidden;
}
.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.lSSlideWrapper > .lightSlider:after {
    clear: both;
}
.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform,height;
    -moz-transition-property: -moz-transform,height;
    transition-property: transform,height;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade {
    position: relative;
}
.lSSlideWrapper .lSFade > * {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}
.lSSlideWrapper.usingCss .lSFade > * {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade > *.active {
    z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade > *.active {
    opacity: 1;
}
/** /!!! End of core css Should not edit !!!/**/

/* Pager */
.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
}
.lSSlideOuter .lSPager.lSpg > li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background-color: #222222;
    border-radius: 30px;
    display: inline-block;
    height: 8px;
    overflow: hidden;
    text-indent: -999em;
    width: 8px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #428bca;
}
.lSSlideOuter .media {
    opacity: 0.8;
}
.lSSlideOuter .media.active {
    opacity: 1;
}
/* End of pager */

/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: auto;
    max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    content: " ";
    display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}
/* End of Gallery*/

/* slider actions */
.lSAction > a {
    width: 32px;
    display: block;
    top: 50%;
    height: 32px;
    background-image: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/img/controls.png);
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    margin-top: -16px;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}
.lSAction > a:hover {
    opacity: 1;
}
.lSAction > .lSPrev {
    background-position: 0 0;
    left: 10px;
}
.lSAction > .lSNext {
    background-position: -32px 0;
    right: 10px;
}
.lSAction > a.disabled {
    pointer-events: none;
}
.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}


/* vertical */
.lSSlideOuter.vertical {
    position: relative;
}
.lSSlideOuter.vertical.noPager {
    padding-right: 0px !important;
}
.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}
.lSSlideOuter.vertical .lightSlider > * {
    width: 100% !important;
    max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0;
}
.lSSlideOuter.vertical .lSAction > .lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto;
}
.lSSlideOuter.vertical .lSAction > .lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px;
}
/* vertical */


/* Rtl */
.lSSlideOuter.lSrtl {
    direction: rtl;
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}
.lSSlideOuter .lightSlider > *,  .lSSlideOuter .lSGallery li {
    float: left;
}
.lSSlideOuter.lSrtl .lightSlider > *,  .lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}
/* Rtl */

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
@keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}.gallery{max-width:100%;display:block;clear:both;margin:0 auto 20px}.gallery::after{content:".";display:block;height:0;clear:both;visibility:hidden}.gallery-item{width:100%;padding:0;text-align:center;list-style:none;border:0;background:transparent;box-sizing:border-box}.gallery-icon img{width:auto;max-width:100%;height:auto;margin:0 auto;box-sizing:border-box}.gallery-type-circle img{border-radius:50%}.gallery-caption{margin:5px 0 0;box-sizing:border-box}@media only screen and (min-width:480px){.gallery-item{float:left;margin:0 5% 5px 0}.rtl .gallery-item{float:right;margin-left:5%;margin-right:0}.gallery-col-2 .gallery-item,.gallery-col-3 .gallery-item,.gallery-col-4 .gallery-item,.gallery-col-5 .gallery-item,.gallery-col-6 .gallery-item,.gallery-col-7 .gallery-item,.gallery-col-8 .gallery-item,.gallery-col-9 .gallery-item,.gallery-col-10 .gallery-item{width:45%}}@media only screen and (min-width:480px) and (max-width:539px){.gallery-item:nth-of-type(2n+1){clear:both}.gallery-item:nth-child(2n){margin-right:0;float:right}.rtl .gallery-item:nth-child(2n){margin-left:0;float:left}}@media only screen and (min-width:540px) and (max-width:639px){.gallery-col-3 .gallery-item:nth-child(3n+1),.gallery-col-4 .gallery-item:nth-child(3n+1),.gallery-col-5 .gallery-item:nth-child(3n+1),.gallery-col-6 .gallery-item:nth-child(3n+1),.gallery-col-7 .gallery-item:nth-child(3n+1),.gallery-col-8 .gallery-item:nth-child(3n+1),.gallery-col-9 .gallery-item:nth-child(3n+1),.gallery-col-10 .gallery-item:nth-child(3n+1){clear:both}.gallery-col-3 .gallery-item:nth-child(3n),.gallery-col-4 .gallery-item:nth-child(3n),.gallery-col-5 .gallery-item:nth-child(3n),.gallery-col-6 .gallery-item:nth-child(3n),.gallery-col-7 .gallery-item:nth-child(3n),.gallery-col-8 .gallery-item:nth-child(3n),.gallery-col-9 .gallery-item:nth-child(3n),.gallery-col-10 .gallery-item:nth-child(3n){float:right;margin-left:0;margin-right:0}.rtl .gallery-col-3 .gallery-item:nth-child(3n),.rtl .gallery-col-4 .gallery-item:nth-child(3n),.rtl .gallery-col-5 .gallery-item:nth-child(3n),.rtl .gallery-col-6 .gallery-item:nth-child(3n),.rtl .gallery-col-7 .gallery-item:nth-child(3n),.rtl .gallery-col-8 .gallery-item:nth-child(3n),.rtl .gallery-col-9 .gallery-item:nth-child(3n),.rtl .gallery-col-10 .gallery-item:nth-child(3n){float:left}.gallery-col-3 .gallery-item,.gallery-col-4 .gallery-item,.gallery-col-5 .gallery-item,.gallery-col-6 .gallery-item,.gallery-col-7 .gallery-item,.gallery-col-8 .gallery-item,.gallery-col-9 .gallery-item,.gallery-col-10 .gallery-item{width:30%}}@media only screen and (min-width:640px) and (max-width:767px){.gallery-col-2 .gallery-item:nth-child(2n+1),.gallery-col-3 .gallery-item:nth-child(3n+1),.gallery-col-4 .gallery-item:nth-child(4n+1),.gallery-col-5 .gallery-item:nth-child(4n+1),.gallery-col-6 .gallery-item:nth-child(4n+1),.gallery-col-7 .gallery-item:nth-child(4n+1),.gallery-col-8 .gallery-item:nth-child(4n+1),.gallery-col-9 .gallery-item:nth-child(4n+1),.gallery-col-10 .gallery-item:nth-child(4n+1){clear:both}.gallery-col-2 .gallery-item:nth-child(2n),.gallery-col-3 .gallery-item:nth-child(3n),.gallery-col-4 .gallery-item:nth-child(4n),.gallery-col-5 .gallery-item:nth-child(4n),.gallery-col-6 .gallery-item:nth-child(4n),.gallery-col-7 .gallery-item:nth-child(4n),.gallery-col-8 .gallery-item:nth-child(4n),.gallery-col-9 .gallery-item:nth-child(4n),.gallery-col-10 .gallery-item:nth-child(4n){float:right;margin-left:0;margin-right:0}.rtl .gallery-col-2 .gallery-item:nth-child(2n),.rtl .gallery-col-3 .gallery-item:nth-child(3n),.rtl .gallery-col-4 .gallery-item:nth-child(4n),.rtl .gallery-col-5 .gallery-item:nth-child(4n),.rtl .gallery-col-6 .gallery-item:nth-child(4n),.rtl .gallery-col-7 .gallery-item:nth-child(4n),.rtl .gallery-col-8 .gallery-item:nth-child(4n),.rtl .gallery-col-9 .gallery-item:nth-child(4n),.rtl .gallery-col-10 .gallery-item:nth-child(4n){float:left}.gallery-col-2 .gallery-item{width:45%}.gallery-col-3 .gallery-item{width:30%}.gallery-col-4 .gallery-item,.gallery-col-5 .gallery-item,.gallery-col-6 .gallery-item,.gallery-col-7 .gallery-item,.gallery-col-8 .gallery-item,.gallery-col-9 .gallery-item,.gallery-col-10 .gallery-item{width:21.25%}}@media only screen and (min-width:768px){.gallery-col-2 .gallery-item:nth-child(2n+1),.gallery-col-3 .gallery-item:nth-child(3n+1),.gallery-col-4 .gallery-item:nth-child(4n+1),.gallery-col-5 .gallery-item:nth-child(5n+1),.gallery-col-6 .gallery-item:nth-child(6n+1),.gallery-col-7 .gallery-item:nth-child(7n+1),.gallery-col-8 .gallery-item:nth-child(8n+1),.gallery-col-9 .gallery-item:nth-child(9n+1),.gallery-col-10 .gallery-item:nth-child(10n+1){clear:both}.gallery-col-2 .gallery-item:nth-child(2n),.gallery-col-3 .gallery-item:nth-child(3n),.gallery-col-4 .gallery-item:nth-child(4n),.gallery-col-5 .gallery-item:nth-child(5n),.gallery-col-6 .gallery-item:nth-child(6n),.gallery-col-7 .gallery-item:nth-child(7n),.gallery-col-8 .gallery-item:nth-child(8n),.gallery-col-9 .gallery-item:nth-child(9n),.gallery-col-10 .gallery-item:nth-child(10n){margin-left:0;margin-right:0}.gallery-col-2 .gallery-item{width:45%}.gallery-col-3 .gallery-item{width:30%}.gallery-col-4 .gallery-item{width:21.25%}.gallery-col-5 .gallery-item{width:16%}.gallery-col-6 .gallery-item{width:12.5%}.gallery-col-7 .gallery-item{width:10%}.gallery-col-8 .gallery-item{width:8.125%}.gallery-col-9 .gallery-item{width:6.66%}.gallery-col-10 .gallery-item{width:5.5%}}/*!
 * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fas,
.far,
.fal,
.fad,
.fab {
  -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: 0.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: solid 0.08em #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left,
.fas.fa-pull-left,
.far.fa-pull-left,
.fal.fa-pull-left,
.fab.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right,
.fas.fa-pull-right,
.far.fa-pull-right,
.fal.fa-pull-right,
.fab.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
          animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
          animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

.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: scale(-1, 1);
          transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  -webkit-filter: none;
          filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.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; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.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-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.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-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.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-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.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-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.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-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.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-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-bacteria:before {
  content: "\e059"; }

.fa-bacterium:before {
  content: "\e05a"; }

.fa-bahai:before {
  content: "\f666"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.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-battle-net:before {
  content: "\f835"; }

.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-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.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-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.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-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-box-tissue:before {
  content: "\e05b"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buy-n-large:before {
  content: "\f8a6"; }

.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-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caravan:before {
  content: "\f8ff"; }

.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-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.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-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.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-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.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-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.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-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudflare:before {
  content: "\e07d"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.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-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-alt:before {
  content: "\f422"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.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-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dailymotion:before {
  content: "\e052"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-deezer:before {
  content: "\e077"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-disease:before {
  content: "\f7fa"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edge-legacy:before {
  content: "\e078"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.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-alt:before {
  content: "\f424"; }

.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-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-faucet:before {
  content: "\e005"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.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-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-firefox-browser:before {
  content: "\e007"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.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-font-awesome-logo-full:before {
  content: "\f4e6"; }

.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-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.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-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.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-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.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-pay:before {
  content: "\e079"; }

.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-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guilded:before {
  content: "\e07e"; }

.fa-guitar:before {
  content: "\f7a6"; }

.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-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-medical:before {
  content: "\e05c"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-holding-water:before {
  content: "\f4c1"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.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-sparkles:before {
  content: "\e05d"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-hands-wash:before {
  content: "\e05e"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-handshake-alt-slash:before {
  content: "\e05f"; }

.fa-handshake-slash:before {
  content: "\e060"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-cowboy:before {
  content: "\f8c0"; }

.fa-hat-cowboy-side:before {
  content: "\f8c1"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-head-side-cough:before {
  content: "\e061"; }

.fa-head-side-cough-slash:before {
  content: "\e062"; }

.fa-head-side-mask:before {
  content: "\e063"; }

.fa-head-side-virus:before {
  content: "\e064"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hive:before {
  content: "\e07f"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hospital-user:before {
  content: "\f80d"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.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-house-damage:before {
  content: "\f6f1"; }

.fa-house-user:before {
  content: "\e065"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-ideal:before {
  content: "\e013"; }

.fa-igloo:before {
  content: "\f7ae"; }

.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-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-innosoft:before {
  content: "\e080"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-instagram-square:before {
  content: "\e055"; }

.fa-instalod:before {
  content: "\e081"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-house:before {
  content: "\e066"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.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-luggage-cart:before {
  content: "\f59d"; }

.fa-lungs:before {
  content: "\f604"; }

.fa-lungs-virus:before {
  content: "\e067"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.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-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.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-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-mdb:before {
  content: "\f8ca"; }

.fa-medal:before {
  content: "\f5a2"; }

.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-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microblog:before {
  content: "\e01a"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mixer:before {
  content: "\e056"; }

.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:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse:before {
  content: "\f8cc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.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-octopus-deploy:before {
  content: "\e082"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-orcid:before {
  content: "\f8d2"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.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-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-arrows:before {
  content: "\e068"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-perbyte:before {
  content: "\e083"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-square:before {
  content: "\e01e"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-plane-slash:before {
  content: "\e069"; }

.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-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pump-medical:before {
  content: "\e06a"; }

.fa-pump-soap:before {
  content: "\e06b"; }

.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-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-record-vinyl:before {
  content: "\f8d9"; }

.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-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-rust:before {
  content: "\e07a"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.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-shield-virus:before {
  content: "\e06c"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopify:before {
  content: "\e057"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.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-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sink:before {
  content: "\e06d"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-soap:before {
  content: "\e06e"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.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-stopwatch-20:before {
  content: "\e06f"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-store-alt-slash:before {
  content: "\e070"; }

.fa-store-slash:before {
  content: "\e071"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.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-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swift:before {
  content: "\f8e1"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.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-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.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-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.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-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-tiktok:before {
  content: "\e07b"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toilet-paper-slash:before {
  content: "\e072"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-trailer:before {
  content: "\e041"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.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-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.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-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbraco:before {
  content: "\f8e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-uncharted:before {
  content: "\e084"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-unity:before {
  content: "\e049"; }

.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-unsplash:before {
  content: "\e07c"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-users-slash:before {
  content: "\e073"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-vest:before {
  content: "\e085"; }

.fa-vest-patches:before {
  content: "\e086"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-virus:before {
  content: "\e074"; }

.fa-virus-slash:before {
  content: "\e075"; }

.fa-viruses:before {
  content: "\e076"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-watchman-monitoring:before {
  content: "\e087"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.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-wind:before {
  content: "\f72e"; }

.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-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wodu:before {
  content: "\e088"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.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-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.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-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.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;
  font-display: swap;
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-400.eot);
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-400.woff2) format("woff2"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-400.woff) format("woff"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-400.ttf) format("truetype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-400.svg#fontawesome) format("svg"); }

.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-regular-400.eot);
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-regular-400.woff2) format("woff2"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-regular-400.woff) format("woff"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-regular-400.ttf) format("truetype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-regular-400.svg#fontawesome) format("svg"); }

.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400; }
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-solid-900.eot);
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-solid-900.woff2) format("woff2"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-solid-900.woff) format("woff"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-solid-900.ttf) format("truetype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-solid-900.svg#fontawesome) format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

/* JNES compatibility for plugins with FA v4.x */
.fa.fa-500px, .fa.fa-adn, .fa.fa-amazon, .fa.fa-android, .fa.fa-angellist, .fa.fa-apple, .fa.fa-bandcamp, .fa.fa-behance, .fa.fa-behance-square, .fa.fa-bitbucket, .fa.fa-bitbucket-square, .fa.fa-black-tie, .fa.fa-bluetooth, .fa.fa-bluetooth-b, .fa.fa-btc, .fa.fa-buysellads, .fa.fa-cc-amex, .fa.fa-cc-diners-club, .fa.fa-cc-discover, .fa.fa-cc-jcb, .fa.fa-cc-mastercard, .fa.fa-cc-paypal, .fa.fa-cc-stripe, .fa.fa-cc-visa, .fa.fa-chrome, .fa.fa-codepen, .fa.fa-codiepie, .fa.fa-connectdevelop, .fa.fa-contao, .fa.fa-creative-commons, .fa.fa-css3, .fa.fa-dashcube, .fa.fa-delicious, .fa.fa-deviantart, .fa.fa-digg, .fa.fa-dribbble, .fa.fa-dropbox, .fa.fa-drupal, .fa.fa-edge, .fa.fa-eercast, .fa.fa-empire, .fa.fa-envira, .fa.fa-etsy, .fa.fa-expeditedssl, .fa.fa-facebook, .fa.fa-facebook-official, .fa.fa-facebook-square, .fa.fa-firefox, .fa.fa-first-order, .fa.fa-flickr, .fa.fa-font-awesome, .fa.fa-fonticons, .fa.fa-fort-awesome, .fa.fa-forumbee, .fa.fa-foursquare, .fa.fa-free-code-camp, .fa.fa-get-pocket, .fa.fa-gg, .fa.fa-gg-circle, .fa.fa-git, .fa.fa-github, .fa.fa-github-alt, .fa.fa-github-square, .fa.fa-gitlab, .fa.fa-git-square, .fa.fa-glide, .fa.fa-glide-g, .fa.fa-google, .fa.fa-google-plus, .fa.fa-google-plus-official, .fa.fa-google-plus-square, .fa.fa-google-wallet, .fa.fa-gratipay, .fa.fa-grav, .fa.fa-hacker-news, .fa.fa-houzz, .fa.fa-html5, .fa.fa-imdb, .fa.fa-instagram, .fa.fa-internet-explorer, .fa.fa-ioxhost, .fa.fa-joomla, .fa.fa-jsfiddle, .fa.fa-lastfm, .fa.fa-lastfm-square, .fa.fa-leanpub, .fa.fa-linkedin, .fa.fa-linkedin-square, .fa.fa-linode, .fa.fa-linux, .fa.fa-maxcdn, .fa.fa-meanpath, .fa.fa-medium, .fa.fa-meetup, .fa.fa-mixcloud, .fa.fa-modx, .fa.fa-odnoklassniki, .fa.fa-odnoklassniki-square, .fa.fa-opencart, .fa.fa-openid, .fa.fa-opera, .fa.fa-optin-monster, .fa.fa-pagelines, .fa.fa-paypal, .fa.fa-pied-piper, .fa.fa-pied-piper-alt, .fa.fa-pied-piper-pp, .fa.fa-pinterest, .fa.fa-pinterest-p, .fa.fa-pinterest-square, .fa.fa-product-hunt, .fa.fa-qq, .fa.fa-quora, .fa.fa-ravelry, .fa.fa-rebel, .fa.fa-reddit, .fa.fa-reddit-alien, .fa.fa-reddit-square, .fa.fa-renren, .fa.fa-safari, .fa.fa-scribd, .fa.fa-sellsy, .fa.fa-shirtsinbulk, .fa.fa-simplybuilt, .fa.fa-skyatlas, .fa.fa-skype, .fa.fa-slack, .fa.fa-slideshare, .fa.fa-snapchat, .fa.fa-snapchat-ghost, .fa.fa-snapchat-square, .fa.fa-soundcloud, .fa.fa-spotify, .fa.fa-stack-exchange, .fa.fa-stack-overflow, .fa.fa-steam, .fa.fa-steam-square, .fa.fa-stumbleupon, .fa.fa-stumbleupon-circle, .fa.fa-superpowers, .fa.fa-telegram, .fa.fa-tencent-weibo, .fa.fa-themeisle, .fa.fa-trello, .fa.fa-tripadvisor, .fa.fa-tumblr, .fa.fa-tumblr-square, .fa.fa-twitch, .fa.fa-twitter, .fa.fa-twitter-square, .fa.fa-usb, .fa.fa-viacoin, .fa.fa-viadeo, .fa.fa-viadeo-square, .fa.fa-vimeo, .fa.fa-vimeo-square, .fa.fa-vine, .fa.fa-vk, .fa.fa-weibo, .fa.fa-weixin, .fa.fa-whatsapp, .fa.fa-wheelchair-alt, .fa.fa-wikipedia-w, .fa.fa-windows, .fa.fa-wordpress, .fa.fa-wpbeginner, .fa.fa-wpexplorer, .fa.fa-wpforms, .fa.fa-xing, .fa.fa-xing-square, .fa.fa-yahoo, .fa.fa-y-combinator, .fa.fa-yelp, .fa.fa-yoast, .fa.fa-youtube, .fa.fa-youtube-play, .fa.fa-youtube-square { font-family: 'Font Awesome 5 Brands'; }

/* JNES FA Extension - X-Twitter */
@font-face {
  font-family: 'Font Awesome 5 Brands Ext';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-ext.eot);
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-ext.eot?#iefix) format("embedded-opentype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-ext.woff) format("woff"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-ext.ttf) format("truetype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/hybrid/extend/css/webfonts/fa-brands-ext.svg#fontawesome) format("svg"); }

.fa-square-x-twitter:before {
  font-family: 'Font Awesome 5 Brands Ext';
  content: "\e900";
}
.fa-x-twitter:before {
  font-family: 'Font Awesome 5 Brands Ext';
  content: "\e901";
}
.fa-square-threads:before {
  font-family: 'Font Awesome 5 Brands Ext';
  content: "\e902";
}
.fa-threads:before {
  font-family: 'Font Awesome 5 Brands Ext';
  content: "\e903";
}
.fa-bluesky:before {
  font-family: 'Font Awesome 5 Brands Ext';
  content: "\e904";
}
.fa-cash-app:before {
  font-family: 'Font Awesome 5 Brands Ext';
  content: "\e905";
}/*! lightgallery - v1.6.0 - 2017-08-08
* {WPHOOT modified} fonts, img folder paths
* http://sachinchoolur.github.io/lightGallery/
* Copyright (c) 2017 Sachin N; Licensed GPLv3 */
@font-face {
  font-family: 'lg';
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/css/fonts/lg.eot?n1z373);
  src: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/css/fonts/lg.eot?#iefixn1z373) format("embedded-opentype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/css/fonts/lg.woff?n1z373) format("woff"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/css/fonts/lg.ttf?n1z373) format("truetype"), url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/css/fonts/lg.svg?n1z373#lg) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.lg-icon {
  font-family: 'lg';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1080;
  border: none;
  outline: none;
}
.lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  color: #FFF;
}
.lg-actions .lg-next {
  right: 20px;
}
.lg-actions .lg-next:before {
  content: "\e095";
}
.lg-actions .lg-prev {
  left: 20px;
}
.lg-actions .lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.lg-toolbar .lg-icon:hover {
  color: #FFF;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  background-color: rgba(0, 0, 0, 0.45);
  bottom: 0;
  color: #EEE;
  font-size: 16px;
  left: 0;
  padding: 10px 40px;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 1080;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

#lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  vertical-align: middle;
}

.lg-toolbar, .lg-prev, .lg-next {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}

.lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.lg-outer .lg-thumb-outer {
  background-color: #0D0A0A;
  bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 1080;
  max-height: 350px;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
}
.lg-outer .lg-thumb {
  padding: 10px 0;
  height: 100%;
  margin-bottom: -5px;
}
.lg-outer .lg-thumb-item {
  border-radius: 5px;
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border: 2px solid #FFF;
  border-radius: 4px;
  margin-bottom: 5px;
}
@media (min-width: 1025px) {
  .lg-outer .lg-thumb-item {
    -webkit-transition: border-color 0.25s ease;
    -o-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border-color: #a90707;
}
.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lg-outer.lg-has-thumb .lg-item {
  padding-bottom: 120px;
}
.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}
.lg-outer.lg-pull-caption-up .lg-sub-html {
  -webkit-transition: bottom 0.25s ease;
  -o-transition: bottom 0.25s ease;
  transition: bottom 0.25s ease;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  bottom: 100px;
}
.lg-outer .lg-toogle-thumb {
  background-color: #0D0A0A;
  border-radius: 2px 2px 0 0;
  color: #999;
  cursor: pointer;
  font-size: 24px;
  height: 39px;
  line-height: 27px;
  padding: 5px 0;
  position: absolute;
  right: 20px;
  text-align: center;
  top: -39px;
  width: 50px;
}
.lg-outer .lg-toogle-thumb:after {
  content: "\e1ff";
}
.lg-outer .lg-toogle-thumb:hover {
  color: #FFF;
}

.lg-outer .lg-video-cont {
  display: inline-block;
  vertical-align: middle;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 0 5px;
}
.lg-outer .lg-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
.lg-outer .lg-video .lg-object {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-video .lg-video-play {
  width: 84px;
  height: 59px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -42px;
  margin-top: -30px;
  z-index: 1080;
  cursor: pointer;
}
.lg-outer .lg-has-vimeo .lg-video-play {
  background: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/images/vimeo-play.png) no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
  background: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/images/vimeo-play.png) no-repeat scroll 0 -58px transparent;
}
.lg-outer .lg-has-html5 .lg-video-play {
  background: transparent url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/images/video-play.png) no-repeat scroll 0 0;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  width: 64px;
  opacity: 0.8;
}
.lg-outer .lg-has-html5:hover .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-has-youtube .lg-video-play {
  background: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/images/youtube-play.png) no-repeat scroll 0 0 transparent;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
  background: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/images/youtube-play.png) no-repeat scroll 0 -60px transparent;
}
.lg-outer .lg-video-object {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.lg-outer .lg-has-video .lg-video-object {
  visibility: hidden;
}
.lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  display: none;
}
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  visibility: visible;
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  -webkit-transition: opacity 0.08s ease 0s;
  -moz-transition: opacity 0.08s ease 0s;
  -o-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}
.lg-progress-bar .lg-progress {
  background-color: #a90707;
  height: 5px;
  width: 0;
}
.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}
.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}
.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

#lg-zoom-in:after {
  content: "\e311";
}

#lg-actual-size {
  font-size: 20px;
}
#lg-actual-size:after {
  content: "\e033";
}

#lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}
#lg-zoom-out:after {
  content: "\e312";
}
.lg-zoomed #lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer .lg-pager-outer {
  bottom: 60px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 1080;
  height: 10px;
}
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}
.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  box-shadow: 0 0 0 2px white inset;
}
.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #FFF;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}
.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}
.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -o-transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  width: 12px;
}
.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  box-shadow: 0 0 0 8px white inset;
}
.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}
.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer #lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}
.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -moz-transform: translate3d(0, 0px, 0);
  -o-transform: translate3d(0, 0px, 0);
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}
.lg-outer.lg-dropdown-active #lg-share {
  color: #FFF;
}
.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -moz-transform: translate3d(0, 5px, 0);
  -o-transform: translate3d(0, 5px, 0);
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
}
.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #FFF;
  right: 16px;
  top: -16px;
}
.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}
.lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  color: #333;
}
.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 12px;
}
.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}
.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}
.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}
.lg-outer #lg-share {
  position: relative;
}
.lg-outer #lg-share:after {
  content: "\e80d";
}
.lg-outer #lg-share-facebook .lg-icon {
  color: #3b5998;
}
.lg-outer #lg-share-facebook .lg-icon:after {
  content: "\e901";
}
.lg-outer #lg-share-twitter .lg-icon {
  color: #00aced;
}
.lg-outer #lg-share-twitter .lg-icon:after {
  content: "\e904";
}
.lg-outer #lg-share-googleplus .lg-icon {
  color: #dd4b39;
}
.lg-outer #lg-share-googleplus .lg-icon:after {
  content: "\e902";
}
.lg-outer #lg-share-pinterest .lg-icon {
  color: #cb2027;
}
.lg-outer #lg-share-pinterest .lg-icon:after {
  content: "\e903";
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  max-height: 100%;
}
.lg-outer .lg-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}
.lg-outer .lg-item {
  background: url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/premium/images/loading.gif) no-repeat scroll center center transparent;
  display: none !important;
}
.lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item, .lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  padding: 0 5px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: auto !important;
}
.lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  opacity: 1;
}
.lg-outer .lg-empty-html {
  display: none;
}
.lg-outer.lg-hide-download #lg-download {
  display: none;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-backdrop.in {
  opacity: 1;
}

.lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-use-left .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-left .lg-item {
  opacity: 0;
  position: absolute;
  left: 0;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  left: -100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  left: 100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  left: 0;
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}.simple-social-icons svg[class^="social-"],
.simple-social-icons svg[class*=" social-"] {
	display: inline-block;
	width: 1em;
	height: 1em;
	stroke-width: 0;
	stroke: currentColor;
	fill: currentColor;
}

.simple-social-icons {
	overflow: hidden;
}

.simple-social-icons ul {
	margin: 0;
	padding: 0;
}

.simple-social-icons ul li {
	background: none !important;
	border: none !important;
	float: left;
	list-style-type: none !important;
	margin: 0 6px 12px !important;
	padding: 0 !important;
}

.simple-social-icons ul li a {
	border: none !important;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: inline-block;
	font-style: normal !important;
	font-variant: normal !important;
	font-weight: normal !important;
	height: 1em;
	line-height: 1em;
	text-align: center;
	text-decoration: none !important;
	text-transform: none !important;
	width: 1em;
}

.simple-social-icons ul.aligncenter {
	text-align: center;
}

.simple-social-icons ul.aligncenter li {
	display: inline-block;
	float: none;
}

.simple-social-icons .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

svg.social-bluesky {
	margin-left: -0.15em;
}/*
Theme Name: Magazine Hoot Premium
Version: 1.12.1
Text Domain: magazine-hoot-premium
Author: wpHoot
Author URI: https://wphoot.com/
Theme URI: https://wphoot.com/themes/magazine-hoot/
Requires at least: 5.4
Tested up to: 6.9
Requires PHP: 7.4
Description: Magazine Hoot is a multicolor news magazine for marketing, education, online, affiliate, content and product sites. It has multiple powerful widgets to display content in various forms. SEO optimized and works with Yoast SEO plugin, Contect Form 7, Jetpack, Google Maps mappress, Page Builder and various other plugins. Theme support is available at https://wphoot.com/support/ You can also check out the theme instructions at https://wphoot.com/support/magazine-hoot/ and demo at https://demo.wphoot.com/magazine-hoot/ for a closer look.
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, block-styles, custom-background, custom-colors, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, microformats, sticky-post, theme-options, threaded-comments, translation-ready, wide-blocks, entertainment, education, news
License: GNU General Public License 3.0
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html

All files, unless otherwise stated, are released under the GNU General Public
License version 3.0 (https://www.gnu.org/licenses/gpl-3.0.en.html)
This theme, like WordPress, is licensed under the GPL.
*/
/**
 * -----------------------------------------------------------------------------------------------
 * PLEASE DO NOT MODIFY THIS FILE DIRECTLY UNLESS YOU KNOW WHAT YOU ARE DOING
 * 
 ** 'Additional Custom CSS' / 'Custom CSS' section in Customize Screen
 *  - This is the preferred location for small css snippets
 *  - These CSS rules are given highest priority
 *  - Your customizations remains unaffected by Theme updates (IMPORTANT!)
 *
 ** the Child Theme's stylesheet (@see http://codex.wordpress.org/Child_Themes)
 *  - This is the preferred method for heavy css modifications
 *  - It keeps all your custom changes in one place
 *  - Your customizations remains unaffected by Theme updates (IMPORTANT!)
 * -----------------------------------------------------------------------------------------------
 */
/**
 **********************************************************
 Table Of Contents
 * Reset and Normalize
 * Hoot Grid
 * Utility Classes
 * Base Typography and HTML
 * Images, WP Gallery and Objects
 * Layout
 * Header (Topbar, Header, Main Nav Menu)
 * Main #Content
 * Main #Content Singular
 * Main #Content Archives/Blog
 * Page Templates
 * Sidebars and Widgets
 * Light Slider
 * Footer
 **********************************************************
 */
/**
 * Reset and Normalize
 * Support IE8+, Safari 6+, latest Chrome,Firefox,Opera
 * normalize.css v3.0.2 | MIT License | git.io/normalize
 * ========================================================
 */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
/*a, a:active, a:hover, a:visited { outline: 0; }*/
/*a:focus { outline: thin dotted; }*/
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
  padding: 0 2px;
  margin: 0 2px;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/**
 * Hoot Grid
 * grid sets the width, row clears the floats for containing spans
 * spans are the building blocks for content structure
 * ========================================================
 */
.hgrid {
  width: 100%;
  max-width: 1380px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hgrid-stretch {
  width: 100%;
}
.hgrid:after,
.hgrid-stretch:after {
  content: "";
  display: table;
  clear: both;
}
.hgrid:after,
.hgrid-stretch:after {
  content: "";
  display: table;
  clear: both;
}
[class*="hgrid-span-"],
[class*="hcolumn-"] {
  padding: 0 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  position: relative;
}
[class*="hgrid-span-"].full-width,
[class*="hcolumn-"].full-width {
  padding: 0;
}
.flush-columns {
  margin: 0 -15px;
}
[class*="hcolumn-"] {
  padding: 0 15px;
}
/************* Span Widths*************/
.hgrid-span-1 {
  width: 8.33333333%;
}
.hgrid-span-2 {
  width: 16.66666667%;
}
.hgrid-span-3 {
  width: 25%;
}
.hgrid-span-4 {
  width: 33.33333333%;
}
.hgrid-span-5 {
  width: 41.66666667%;
}
.hgrid-span-6 {
  width: 50%;
}
.hgrid-span-7 {
  width: 58.33333333%;
}
.hgrid-span-8 {
  width: 66.66666667%;
}
.hgrid-span-9 {
  width: 75%;
}
.hgrid-span-10 {
  width: 83.33333333%;
}
.hgrid-span-11 {
  width: 91.66666667%;
}
.hgrid-span-12 {
  width: 100%;
}
/************* Column Widths *************/
.hcolumn-1-1,
.hcolumn-2-2,
.hcolumn-3-3,
.hcolumn-4-4,
.hcolumn-5-5 {
  width: 100%;
}
.hcolumn-1-2 {
  width: 50%;
}
.hcolumn-1-3 {
  width: 33.33333333%;
}
.hcolumn-2-3 {
  width: 66.66666667%;
}
.hcolumn-1-4 {
  width: 25%;
}
.hcolumn-2-4 {
  width: 50%;
}
.hcolumn-3-4 {
  width: 75%;
}
.hcolumn-1-5 {
  width: 20%;
}
.hcolumn-2-5 {
  width: 40%;
}
.hcolumn-3-5 {
  width: 60%;
}
.hcolumn-4-5 {
  width: 80%;
}
/************* Responsive Grid *************/
@media only screen and (max-width: 1200px) {
  [class*="hgrid-span-"],
  [class*="hcolumn-"] {
    padding: 0 10px;
  }
  .flush-columns {
    margin: 0;
  }
  .adaptive .hcolumn-1-5 {
    width: 40%;
  }
  .adaptive .hcolumn-1-4 {
    width: 50%;
  }
  .adaptive .hgrid-span-1 {
    width: 16.66666667%;
  }
  .adaptive .hgrid-span-2 {
    width: 33.33333333%;
  }
  .adaptive .hgrid-span-6 {
    width: 50%;
  }
}
@media only screen and (max-width: 969px) {
  [class*="hgrid-span-"],
  .adaptive [class*="hgrid-span-"],
  [class*="hcolumn-"],
  .adaptive [class*="hcolumn-"] {
    width: 100%;
  }
}
@media only screen and (min-width: 970px) {
  .hcol-first {
    padding-left: 0;
  }
  .hcol-last {
    padding-right: 0;
  }
}
/**
 * Utility Classes
 * ========================================================
 */
/************* Misc *************/
#page-wrapper .flush {
  margin: 0;
  padding: 0;
}
/************* Displays *************/
.hide {
  display: none;
}
.forcehide {
  display: none !important;
}
.border-box {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/************* Image replacement *************/
.hide-text {
  font: 0/0 a !important;
  color: transparent !important;
  text-shadow: none !important;
  background-color: transparent !important;
  border: 0 !important;
  width: 0;
  height: 0;
  overflow: hidden;
}
/************* Table *************/
.table {
  display: table;
  width: 100%;
  margin: 0;
}
.table.table-fixed {
  table-layout: fixed;
}
.table-cell {
  display: table-cell;
}
.table-cell-mid {
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 969px) {
  .table,
  .table-cell,
  .table-cell-mid {
    display: block;
  }
}
/************* Floats *************/
.fleft,
.float-left {
  float: left;
}
.fright,
.float-right {
  float: right;
}
.fclear:after,
.float-clear:after,
.clear:after,
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/************* Accessibility: Assistive Text *************/
/* for screen readers and text browsers */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:active,
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
#main[tabindex="-1"]:focus {
  outline: 0;
}
/**
 * Base Typography and HTML
 * ========================================================
 */
html.translated-rtl * {
  text-align: right;
}
/************* Default Typography *************/
body {
  text-align: left;
  font-size: 14px;
  line-height: 1.71428571em;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #666;
  -webkit-font-smoothing: antialiased;
  /* for better webkit rendering */
  -webkit-text-size-adjust: 100%;
  /* size in percentage at which to display text in Safari on iPhone */
}
/************* Headings *************/
h1,
h2,
h3,
h4,
h5,
h6,
.title {
  line-height: 1.33333333em;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #444;
  margin: 25px 0 15px;
  text-rendering: optimizelegibility;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
h1 {
  font-size: 1.71428571em;
}
h2 {
  font-size: 1.57142857em;
}
h3 {
  font-size: 1.42857143em;
}
h4 {
  font-size: 1.28571429em;
}
h5 {
  font-size: 1.21428571em;
}
h6 {
  font-size: 1.14285714em;
}
.title {
  font-size: 1.42857143em;
}
.title h1,
.title h2,
.title h3,
.title h4,
.title h5,
.title h6 {
  font-size: inherit;
}
.titlefont {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
/************* Basic HTML Tags *************/
p {
  margin: 0.71428571em 0 1.78571429em;
}
hr {
  border-style: solid;
  border-width: 1px 0 0;
  clear: both;
  margin: 1.78571429em 0 1.07142857em;
  height: 0;
  color: #ddd;
}
em,
var {
  font-style: italic;
}
strong,
b {
  font-weight: bold;
}
big,
.big-font {
  font-size: 1.28571429em;
  line-height: 1.333333em;
}
.huge-font {
  font-size: 4.28571429em;
  line-height: 1em;
}
small,
cite,
.small {
  font-size: 0.78571429em;
  line-height: 1.454545em;
}
cite {
  font-style: italic;
}
q {
  font-style: italic;
}
q:before {
  content: open-quote;
}
q::after {
  content: close-quote;
}
address {
  display: block;
  margin: 1.07142857em 0;
  font-style: normal;
  border: 1px dotted;
  padding: 1px 5px;
}
abbr[title],
acronym[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
a[href^=tel] {
  color: inherit;
  text-decoration: none;
}
/************* Blockquote *************/
blockquote {
  border-left: 5px solid;
  padding: 0 0 0 1em;
  margin: 1.07142857em 0;
  display: block;
  font-style: italic;
  color: #888;
  font-size: 1.14285714em;
  clear: both;
  text-align: justify;
}
blockquote p {
  margin: 0;
}
blockquote small,
blockquote cite {
  display: block;
  line-height: 1.71428571em;
  text-align: right;
  margin-top: 3px;
}
blockquote small:before {
  content: '\2014 \00A0';
}
blockquote cite:before {
  content: "\2014 \0020";
  padding: 0px 3px;
}
blockquote.pull-left {
  text-align: left;
  float: left;
}
blockquote.pull-right {
  border-right: 5px solid #ddd;
  border-left: 0;
  padding: 0 1em 0 0;
  margin: 1.07142857em 0;
  text-align: right;
  float: right;
}
/*** Blockquotes Responsive ***/
@media only screen and (max-width: 969px) {
  blockquote.pull-left,
  blockquote.pull-right {
    float: none;
  }
}
/************* Dropcaps *************/
.has-drop-cap:not(:focus)::first-letter {
  font-size: 3.4em;
  line-height: 1em;
  font-weight: inherit;
  margin: 0.01em 0.1em 0 0;
}
/************* Links *************/
a {
  color: #d22254;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in, background-color 0.3s linear, border-color 0.3s linear;
  -moz-transition: color 0.3s ease-in, background-color 0.3s linear, border-color 0.3s linear;
  -o-transition: color 0.3s ease-in, background-color 0.3s linear, border-color 0.3s linear;
  transition: color 0.3s ease-in, background-color 0.3s linear, border-color 0.3s linear;
}
a.linkstyle,
.linkstyle a {
  text-decoration: underline;
}
h1 a.linkstyle,
.linkstyle h1 a,
h2 a.linkstyle,
.linkstyle h2 a,
h3 a.linkstyle,
.linkstyle h3 a,
h4 a.linkstyle,
.linkstyle h4 a,
h5 a.linkstyle,
.linkstyle h5 a,
h6 a.linkstyle,
.linkstyle h6 a,
.title a.linkstyle,
.linkstyle .title a,
.titlefont a.linkstyle,
.linkstyle .titlefont a {
  text-decoration: none;
}
/************* Typo Schemes *************/
.accent-typo,
.cat-typo {
  background: #d22254;
  color: #ffffff;
}
.invert-typo {
  background: #666;
  color: #f7f7f7;
}
.enforce-typo {
  background: #f7f7f7;
  color: #666;
}
.page-wrapper .accent-typo a,
.page-wrapper .invert-typo a,
.page-wrapper .enforce-typo a,
.page-wrapper .accent-typo a:hover,
.page-wrapper .invert-typo a:hover,
.page-wrapper .enforce-typo a:hover,
.page-wrapper .accent-typo h1,
.page-wrapper .invert-typo h1,
.page-wrapper .enforce-typo h1,
.page-wrapper .accent-typo h2,
.page-wrapper .invert-typo h2,
.page-wrapper .enforce-typo h2,
.page-wrapper .accent-typo h3,
.page-wrapper .invert-typo h3,
.page-wrapper .enforce-typo h3,
.page-wrapper .accent-typo h4,
.page-wrapper .invert-typo h4,
.page-wrapper .enforce-typo h4,
.page-wrapper .accent-typo h5,
.page-wrapper .invert-typo h5,
.page-wrapper .enforce-typo h5,
.page-wrapper .accent-typo h6,
.page-wrapper .invert-typo h6,
.page-wrapper .enforce-typo h6,
.page-wrapper .accent-typo .title,
.page-wrapper .invert-typo .title,
.page-wrapper .enforce-typo .title {
  color: inherit;
}
.enforce-body-font {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.highlight-typo {
  background: #f7f7f7;
}
.cat-typo:before,
.cat-typo:after {
  background: inherit;
  color: inherit;
  border-color: inherit;
}
/************* Code, Pre, Keyboard, Teletype *************/
code,
pre,
kbd,
tt {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
}
pre {
  overflow-x: auto;
}
code,
kbd,
tt {
  padding: 2px 5px;
  margin: 0 5px;
  border: dashed 1px;
}
pre {
  display: block;
  padding: 5px 10px;
  margin: 1.07142857em 0;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  color: #d14;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
}
pre.scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
pre code,
pre kbd,
pre tt {
  padding: unset;
  margin: unset;
  border: unset;
}
/************* Lists *************/
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none outside;
}
ul ol,
ul ul,
ol ol,
ol ul {
  margin-left: 10px;
}
li {
  margin: 0;
  padding: 0;
  margin-right: 10px;
  /* display: inline; */
}
ul.unstyled,
ol.unstyled {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none outside !important;
}
.main ul,
.main ol {
  margin: 1.07142857em;
  margin-right: 0;
}
.main ol {
  list-style: decimal outside;
}
.main ul,
.main ul.disc {
  list-style: disc outside;
}
.main ul.square {
  list-style: square outside;
}
.main ul.circle {
  list-style: circle outside;
}
.main ul ul,
.main ol ul {
  list-style-type: circle;
}
.main ul ul ul,
.main ul ol ul,
.main ol ul ul,
.main ol ol ul {
  list-style-type: square;
}
.main ul ol,
.main ol ol {
  list-style-type: lower-alpha;
}
.main ul ul ol,
.main ul ol ol,
.main ol ul ol,
.main ol ol ol {
  list-style-type: lower-roman;
}
.main ul ul,
.main ul ol,
.main ol ol,
.main ol ul {
  margin-top: 2px;
  margin-bottom: 2px;
  display: block;
}
.main li {
  margin-right: 0;
  display: list-item;
}
.borderlist > li:first-child {
  border-top: 1px solid;
}
.borderlist > li {
  border-bottom: 1px solid;
  padding: 0.15em 0;
  list-style-position: outside;
}
/************* Lists - Definitions *************/
dl {
  margin: 0.71428571em 0;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0.71428571em;
}
.dl-horizontal {
  *zoom: 1;
}
.dl-horizontal:before,
.dl-horizontal:after {
  display: table;
  line-height: 0;
  content: "";
}
.dl-horizontal:after {
  clear: both;
}
.dl-horizontal dt {
  float: left;
  width: 12.3em;
  overflow: hidden;
  clear: left;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dl-horizontal dd {
  margin-left: 13.8em;
}
/*** Responsive Definitions ***/
@media only screen and (max-width: 969px) {
  .dl-horizontal dt {
    float: none;
    width: auto;
    clear: none;
    text-align: left;
  }
  .dl-horizontal dd {
    margin-left: 0;
  }
}
/************* Tables *************/
table {
  width: 100%;
  padding: 0;
  margin: 1.07142857em 0;
  border-collapse: collapse;
  border-spacing: 0;
}
table caption {
  padding: 5px 0;
  width: auto;
  font-style: italic;
  text-align: right;
}
th {
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 6px 6px 12px;
}
th.nobg {
  background: none;
}
td {
  padding: 6px 6px 6px 12px;
}
.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: #f7f7f7;
}
/************* Forms *************/
form {
  margin-bottom: 1.07142857em;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  margin-bottom: 1.07142857em;
  border: 0;
  border-bottom: 1px solid #ddd;
  background: none;
  color: #666;
  font-weight: bold;
}
legend small {
  color: #666;
}
label,
input,
select,
textarea {
  font-size: 1em;
  font-weight: normal;
  line-height: 1.4em;
}
label {
  max-width: 100%;
  display: inline-block;
  font-weight: bold;
}
.input-text,
textarea,
select,
input[type="text"],
input[type="input"],
input[type="password"],
input[type="email"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  border: 1px solid #ddd;
  padding: 6px 8px;
  color: #666;
  margin: 0;
  max-width: 100%;
  display: inline-block;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}
.input-text:focus,
textarea:focus,
input[type="text"]:focus,
input[type="input"]:focus,
input[type="checkbox"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
  border: 1px solid #aaaaaa;
  color: #555555;
  outline: thin dotted;
  outline-offset: -4px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
select:focus {
  outline: thin dotted;
  outline-offset: -4px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}
input[type="checkbox"] {
  display: inline;
}
input[type="radio"],
input[type="checkbox"] {
  line-height: normal;
  cursor: pointer;
  margin: 4px 0 0;
  margin-top: 1px \9;
  *margin-top: 0;
}
textarea {
  height: auto;
  min-height: 60px;
}
select {
  width: 215px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #fff url(//myactorguide.com/wp-content/themes/magazine-hoot-premium/images/select.png) no-repeat center right;
}
select[multiple],
select[size] {
  height: auto;
}
/*** Special ***/
input:-moz-placeholder,
textarea:-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent;
}
/*** Buttons Default ***/
body.wordpress input[type="submit"],
body.wordpress #submit,
body.wordpress .button {
  background: #d22254;
  color: #ffffff;
  display: inline-block;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  font-weight: normal;
  -webkit-transition: color 0.2s ease-in, background-color 0.2s linear, box-shadow linear 0.2s;
  -moz-transition: color 0.2s ease-in, background-color 0.2s linear, box-shadow linear 0.2s;
  -o-transition: color 0.2s ease-in, background-color 0.2s linear, box-shadow linear 0.2s;
  transition: color 0.2s ease-in, background-color 0.2s linear, box-shadow linear 0.2s;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.33);
  -moz-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.33);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.33);
}
body.wordpress input[type="submit"]:hover,
body.wordpress #submit:hover,
body.wordpress .button:hover,
body.wordpress input[type="submit"]:focus,
body.wordpress #submit:focus,
body.wordpress .button:focus {
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.33);
  -moz-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.33);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.33);
  background: #c11143;
  color: #ffffff;
}
body.wordpress input[type="submit"]:focus,
body.wordpress #submit:focus,
body.wordpress .button:focus {
  outline: thin dotted;
  outline-offset: -4px;
}
body.wordpress input[type="submit"]:active,
body.wordpress #submit:active,
body.wordpress .button:active {
  -webkit-box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.33);
  -moz-box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.33);
  box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, 0.33);
}
body.wordpress input[type="submit"].aligncenter,
body.wordpress #submit.aligncenter,
body.wordpress .button.aligncenter {
  max-width: 60%;
}
body.wordpress #submit a,
body.wordpress .button a {
  color: inherit;
}
/*** Button Sizes ***/
input[type="submit"],
#submit,
.button,
input[type="submit"].button-small,
#submit.button-small,
.button-small {
  padding: 6px 23px 8px;
  font-size: 0.78571429em;
  line-height: 1.833333em;
  margin-top: 5px;
  margin-bottom: 5px;
  border: solid 1px rgba(0, 0, 0, 0.15);
}
input[type="submit"].button-medium,
#submit.button-medium,
.button-medium {
  padding: 9px 40px 12px;
  font-size: 1em;
  line-height: 1.428571em;
}
input[type="submit"].button-large,
#submit.button-large,
.button-large {
  padding: 13px 55px 15px;
  font-size: 1em;
  line-height: 1.428571em;
}
/**
 * Images, WP Gallery and Objects
 * ========================================================
 */
/************* Objects *************/
iframe,
video,
object,
embed {
  max-width: 100%;
}
video,
object,
embed {
  margin: 1.07142857em 0;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin: 1.07142857em 0;
}
.video-container iframe,
.video-container object,
.video-container embed {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
figure {
  margin: 0;
  max-width: 100%;
}
/************* Images *************/
img,
a img {
  border: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  max-width: 100%;
  height: auto;
  image-rendering: optimizeQuality;
  vertical-align: top;
}
img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* to accomodate border and padding width, and maintain responsive */
}
/************* Image Styles *************/
.img-round {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.img-circle {
  -webkit-border-radius: 1500px;
  -moz-border-radius: 1500px;
  border-radius: 1500px;
}
.img-polaroid {
  padding: 4px;
  border: 1px solid;
}
.img-frame {
  padding: 4px;
  border: 1px solid;
}
.img-noborder img,
img.img-noborder {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
}
/************* WP editor image sizes ($content_width classes) *************/
/************* Wordpress Gallery (Overwrite WP's inline Gallery CSS) *************/
.gallery {
  border: solid 1px #ddd;
  background: #f7f7f7;
  padding: 10px;
  margin: 1.07142857em 0;
}
.gallery .gallery-item {
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.gallery .gallery-icon img {
  padding: 0;
  max-width: 100%;
}
.gallery .gallery-caption {
  color: #666;
  margin: 3px 0;
  font-size: 0.78571429em;
  line-height: 1.454545em;
}
/************* WordPress Image Captions *************/
.wp-caption-text {
  background: rgba(0, 0, 0, 0.03);
  margin: 0;
  padding: 5px;
  font-size: 0.78571429em;
  line-height: 1.454545em;
  text-align: center;
}
/************* WordPress Image Alignment *************/
.aligncenter {
  clear: both;
  display: block;
  margin: 1.07142857em auto;
  text-align: center;
}
img.aligncenter {
  margin: 1.07142857em auto;
}
.alignleft {
  float: left;
  margin: 10px 15px 5px 0;
  display: block;
}
.alignright {
  float: right;
  margin: 10px 0 5px 15px;
  display: block;
}
.alignleft img,
.alignright img {
  display: block;
}
/************* Avatar *************/
.avatar {
  display: inline-block;
}
.avatar.pull-left {
  float: left;
  margin: 0 1em 5px 0;
}
.avatar.pull-right {
  float: right;
  margin: 0 0 5px 1em;
}
/**
 * Layout
 * ========================================================
 */
body {
  background: #f7f7f7;
  border-top: solid 3px #d22254;
}
@media screen and (max-width: 600px) {
  body.logged-in.admin-bar {
    position: static;
  }
}
#page-wrapper {
  width: 100%;
  display: block;
  margin: 0 auto;
}
#topbar,
#below-header,
#sub-footer,
#footer {
  overflow: hidden;
}
.site-boxed #header-supplementary,
.site-boxed #below-header,
.site-boxed #main {
  border-left: solid 1px #ddd;
  border-right: solid 1px #ddd;
}
/* Sidebar and Content Layout */
.content.no-sidebar {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 970px) {
  .content.layout-wide-left,
  .content.layout-narrow-left {
    float: right;
  }
  /*
	 * We only apply flex model (with wrap) to 2/3 column layout (not to fullwidth) to prevent:
	 * Frontpage=> full width layout leads to <div class="hgrid-stretch main-content-grid">
	 * HTML slider inside hgrid-stretch becomes way tooo wide and distorts layout
	 * (slider js does not get the actual screen width hence set ul.lightSlider width to sum all slide widths)
	 * flex model should be applied to some bounding box like 'hgrid' (max-width set to pixel value 1260),
	 * or all its child elements should have a bounding box like 'hgrid' with margin left/right set to auto
	 * So we apply flex model only to layouts where we know for a fact that hgrid-stretch wont be used.
	*/
  .sitewrap-narrow-left-right .main-content-grid,
  .sitewrap-narrow-left-left .main-content-grid,
  .sitewrap-narrow-right-right .main-content-grid {
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sidebarsN #content {
    margin-left: -1px;
    margin-right: -1px;
  }
  .sitewrap-narrow-left-right .sidebar-primary,
  .sitewrap-narrow-left-left .sidebar-primary,
  .sitewrap-narrow-right-right .content {
    -webkit-order: 1;
    order: 1;
  }
  .sitewrap-narrow-left-right .content,
  .sitewrap-narrow-left-left .sidebar-secondary,
  .sitewrap-narrow-right-right .sidebar-primary {
    -webkit-order: 2;
    order: 2;
  }
  .sitewrap-narrow-left-right .sidebar-secondary,
  .sitewrap-narrow-left-left .content,
  .sitewrap-narrow-right-right .sidebar-secondary {
    -webkit-order: 3;
    order: 3;
  }
}
/**
 * Header (Topbar, Header, Main Nav Menu)
 * ========================================================
 */
/************* Topbar *************/
#topbar {
  background: #fff;
  border-bottom: solid 1px #eee;
  color: #aaaaaa;
  font-size: 0.85714286em;
  line-height: 1.5em;
}
#topbar ul,
#topbar ol,
#topbar li {
  display: inline;
}
#topbar h1,
#topbar h2,
#topbar h3,
#topbar h4,
#topbar h5,
#topbar h6,
#topbar .title {
  color: inherit;
  margin: 0;
}
.topbar-inner a {
  color: inherit;
  text-decoration: underline;
}
#topbar-left {
  text-align: left;
  width: 50%;
}
#topbar-right {
  text-align: right;
  overflow: hidden;
  padding-right: 5px;
  width: 50%;
}
.topbar-right-inner {
  float: right;
}
/*** Topbar Widgets ***/
#topbar .widget {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}
#topbar .widget-title {
  display: none;
  margin: 0;
  font-size: 14px;
  line-height: 1.71428571em;
}
#topbar .widget_text {
  padding: 5px;
}
#topbar .widget_text p {
  margin: 0;
}
#topbar .widget_text big {
  font-size: 2.2em;
  line-height: 1em;
}
#topbar .widget_text big strong {
  font-size: 3em;
  line-height: 0.7em;
}
#topbar .widget_tag_cloud a {
  text-decoration: none;
}
#topbar .widget_nav_menu li a {
  color: inherit;
  text-decoration: none;
}
#topbar .social-icons-icon {
  line-height: inherit;
  height: auto;
  padding: 9px 0;
}
#topbar .searchbody {
  display: inline-block;
  vertical-align: middle;
  background: none;
}
#topbar .searchform {
  margin-bottom: 0;
  display: inline-block;
  border: none;
}
#topbar input {
  padding: 9px 7px 9px 35px;
  line-height: inherit;
}
#topbar i.fa-search {
  position: absolute;
  top: 45%;
  margin-top: -0.5em;
  left: 13px;
  color: #888888;
  font-size: 14px;
}
/*** Responsive Topbar ***/
@media only screen and (max-width: 969px) {
  #topbar-left {
    text-align: center;
    width: auto;
    margin: 0 -10px;
  }
  #topbar-right {
    text-align: center;
    width: auto;
    padding: 0;
    margin: 0 -10px;
    border-top: solid 1px #eee;
    border-color: rgba(80, 80, 80, 0.15);
  }
  .topbar-right-inner {
    float: none;
  }
}
/************* Header Layout *************/
#header {
  position: relative;
}
.site-header .table {
  table-layout: fixed;
  /*To word wrap loooong Titles*/
}
#header-primary {
  border-bottom: solid 1px #ddd;
}
.header-primary-none {
  text-align: center;
}
.header-primary-search {
  text-align: center;
}
.header-primary-menu #branding,
.header-primary-custom #branding {
  width: 40%;
}
#header-aside {
  text-align: right;
}
.header-primary-menu #header-aside,
.header-primary-custom #header-aside {
  width: 60%;
}
.header-primary-custom #header-aside {
  font-size: 0.85714286em;
  line-height: 1.5em;
}
#header-supplementary {
  border-bottom: solid 3px #eee;
  background: #fff;
}
.header-supplementary-left.menu-side-none {
  text-align: left;
}
.header-supplementary-right.menu-side-none {
  text-align: right;
}
.header-supplementary-center.menu-side-none {
  text-align: center;
}
.menu-side .table {
  table-layout: auto;
}
.menu-side-box {
  font-size: 0.78571429em;
  line-height: 1.454545em;
  text-align: right;
  position: relative;
  min-width: 200px;
}
.menu-side-box .widget {
  margin: 0 10px;
  display: inline-block;
  vertical-align: middle;
}
.menu-side-box form {
  margin: 0;
}
.menu-side-box.inline-nav a {
  color: inherit;
}
.menu-side-box .widget_search,
.menu-side-box .searchform {
  position: static;
}
.menu-side-box .searchbody {
  background: none;
}
.menu-side-box .searchbody i.fa-search {
  position: relative;
  margin: 0;
  top: 0;
  left: 0;
  font-size: 1.5454em;
  cursor: pointer;
}
.menu-side-box .searchbody input.searchtext {
  display: none;
  position: absolute;
  color: #666;
  background: #fff;
  top: 0px;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 99;
  border-left: solid 1px #ddd;
  font-size: 1.5em;
  padding-right: 2.5em;
}
.menu-side-box .searchform .submit {
  display: none;
}
.menu-side-box .js-search-placeholder {
  display: none;
}
.menu-side-box .js-search-placeholder:before {
  content: "X";
  font-family: Helvetica, Arial, sans-serif;
  position: absolute;
  z-index: 999;
  top: 35%;
  right: 5px;
  padding: 10px;
  margin-top: -10px;
  font-size: 2em;
  cursor: pointer;
}
/*** Search ***/
.header-primary-search #branding {
  width: 100%;
}
.header-aside-search {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -24px;
}
.header-aside-search .searchbody {
  background: none;
}
.header-aside-search .searchform {
  color: #cccccc;
  color: rgba(0, 0, 0, 0.35);
  margin-bottom: 0;
  border: none;
  border-bottom: solid 1px;
}
.header-aside-search .searchform i.fa-search {
  cursor: pointer;
  font-size: 20px;
  padding: 12px 10px 13px 10px;
  margin: 0;
  position: relative;
  top: inherit;
  left: inherit;
}
.header-aside-search i.fa-search:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 0px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 10px solid;
}
.header-aside-search .searchtext {
  padding: 0 1px;
  line-height: 47px;
  border: 0;
  width: 0;
  background: none;
  color: inherit;
  display: inline-block;
  -webkit-transition: width linear 0.2s;
  -moz-transition: width linear 0.2s;
  -o-transition: width linear 0.2s;
  transition: width linear 0.2s;
}
.header-aside-search .searchtext:focus {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.header-aside-search.expand .searchtext {
  width: 175px;
  padding: 0 8px;
}
/*** Responsive Header ***/
@media only screen and (max-width: 969px) {
  #header .table,
  #header #branding,
  #header #header-aside {
    width: 100%;
  }
  #header-primary,
  #header-aside,
  #header-supplementary {
    text-align: center;
  }
  #header .hgrid-span-12 {
    padding: 0;
  }
  .header-aside-search,
  .header-aside-custom {
    border-top: solid 1px #ddd;
  }
  .header-aside-search {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 0;
  }
  .header-aside-search .searchform {
    max-width: 220px;
    border: none;
    margin: 0 auto;
    position: relative;
  }
  .header-aside-search .searchform i.fa-search {
    position: absolute;
    left: 0;
    padding-right: 0;
    padding-left: 30px;
    bottom: 0;
  }
  .header-aside-search .searchform i.fa-search:after {
    display: none;
  }
  .header-aside-search .searchform input.searchtext {
    width: 100%;
    padding-left: 60px;
  }
  .menu-side-box {
    text-align: center;
    padding: 8px 0;
    border-top: solid 1px #eee;
  }
}
/************* Logo *************/
#site-logo {
  margin: 35px 0 35px;
  max-width: 100%;
  display: inline-block;
  vertical-align: top;
}
.header-primary-menu #site-logo,
.header-primary-widget-area #site-logo,
.header-primary-custom #site-logo {
  padding-right: 15px;
}
#site-logo.with-background {
  padding: 15px;
}
/*** Logo Types ***/
#site-logo-image #site-title {
  margin: 0;
}
.site-logo-image img.custom-logo {
  display: block;
  width: auto;
}
.site-logo-image #site-description {
  margin-top: 5px;
}
#page-wrapper .site-logo-image #site-description {
  text-align: center;
}
/* Text Logo */
#site-title {
  font-family: "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #444444;
  margin: 0;
  font-weight: 500;
  font-size: 55px;
  line-height: 1em;
  vertical-align: middle;
  word-wrap: normal;
}
#site-title a {
  color: inherit;
}
#site-title a:hover {
  text-decoration: none;
}
#site-description {
  margin: 0;
  font-family: inherit;
  font-size: 0.85714286em;
  font-weight: normal;
  color: #444444;
  line-height: 1em;
  text-transform: uppercase;
  vertical-align: middle;
}
.site-logo-text-tiny #site-title {
  font-size: 25px;
}
.site-logo-text-small #site-title {
  font-size: 40px;
}
.site-logo-text-large #site-title {
  font-size: 70px;
}
.site-logo-text-huge #site-title {
  font-size: 85px;
}
/* Logo with Icon (Text Logo / Custom Logo) */
.site-logo-with-icon .site-title > a {
  display: inline-flex;
  align-items: center;
  vertical-align: bottom;
}
.site-logo-with-icon #site-title i {
  font-size: 50px;
  margin-right: 5px;
}
/* Logo with Image (Mixed / Mixedcustom) */
.site-logo-with-image {
  display: table;
  table-layout: fixed;
}
.site-logo-with-image .site-logo-mixed-image {
  display: table-cell;
  vertical-align: middle;
  padding-right: 15px;
}
.site-logo-with-image .site-logo-mixed-text {
  display: table-cell;
  vertical-align: middle;
}
/* Custom Text */
.site-title-line {
  display: block;
  line-height: 1em;
}
.site-title-line b,
.site-title-line em,
.site-title-line strong {
  color: #d22254;
  font-weight: inherit;
  font-style: inherit;
}
.site-title-body-font {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
/*** Images in Logo ***/
/* All Logo Images */
.branding img {
  max-height: 600px;
}
/* Image Logo */
#site-logo-image img {
  width: auto;
}
/* Mixed / MixedCustom Logo */
.site-logo-mixed-image img {
  vertical-align: middle;
}
/*** Responsive Logo ***/
@media only screen and (max-width: 969px) {
  #site-logo {
    display: block;
  }
  #header-primary #site-logo {
    padding-right: 0;
    padding-left: 0;
  }
  #header-primary #site-logo.with-background {
    margin: 0;
  }
  #page-wrapper #site-title,
  #page-wrapper #site-description {
    text-align: center;
    margin: 0;
    display: block;
  }
  .site-logo-with-icon #site-title {
    padding: 0;
  }
  #header-primary #site-logo.site-logo-image {
    padding: 15px;
    margin: 0;
  }
  .site-logo-with-image {
    display: block;
    text-align: center;
  }
  .site-logo-with-image .site-logo-mixed-image {
    margin: 0 auto 10px;
  }
  .site-logo-with-image .site-logo-mixed-image,
  .site-logo-with-image .site-logo-mixed-text {
    display: block;
    padding: 0;
  }
}
/************* Nav Menus *************/
.menu-secondary .menu-items > li:after,
.menu-secondary .menu-items > li:before {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  right: 1px;
}
.menu-secondary .menu-items > li:after {
  border-bottom: solid 3px;
  border-bottom-color: inherit;
  bottom: -3px;
}
.menu-secondary .menu-items > li.current-menu-item:not(.nohighlight):before,
.menu-secondary .menu-items > li.current-menu-ancestor:before,
.menu-secondary .menu-items > li:hover:before {
  border-bottom: solid 1px;
  border-bottom-color: inherit;
  bottom: 2px;
  color: inherit;
}
.menu-secondary .menu-items li.current-menu-item:not(.nohighlight) > a,
.menu-secondary .menu-items li.current-menu-ancestor > a,
.menu-secondary .menu-items li:hover > a,
.menu-secondary .menu-items li.current-menu-item:not(.nohighlight) .hybridextend-megamenu-icon,
.menu-secondary .menu-items li.current-menu-ancestor .hybridextend-megamenu-icon,
.menu-secondary .menu-items li:hover .hybridextend-megamenu-icon {
  color: inherit;
}
.menu-secondary .sub-menu li {
  border-color: inherit;
}
.menu-secondary .sf-menu ul {
  margin: 3px 0 0 2px;
}
.menu-secondary .menu-items > li > ul,
.menu-secondary .sub-menu > li:first-child ul {
  border-top: none;
}
.menu-secondary .sf-menu ul ul {
  margin-left: 0;
}
.menu-items {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.menu-items ol,
.menu-items ul {
  margin-left: 0;
}
.menu-items li {
  margin-right: 0;
  display: list-item;
}
.menu-items > li {
  float: left;
  margin: 0;
  vertical-align: middle;
}
.menu-items > li:last-child {
  margin-right: 0;
}
.menu-items > li a {
  color: inherit;
}
.menu-items > li > a {
  color: #444;
  padding: 11px 20px 14px 10px;
  text-transform: uppercase;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.menu-items > li.current-menu-item:not(.nohighlight) > a,
.menu-items > li.current-menu-ancestor > a,
.menu-items > li:hover > a,
.menu-items > li.current-menu-item:not(.nohighlight) .hybridextend-megamenu-icon,
.menu-items > li.current-menu-ancestor .hybridextend-megamenu-icon,
.menu-items > li:hover .hybridextend-megamenu-icon {
  color: #d22254;
}
.menu-items > li > ul {
  font-weight: normal;
}
.menu-items .menu-title {
  display: inline-block;
  line-height: 1.2em;
  position: relative;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.menu-items .menu-description {
  font-size: 0.85714286em;
  line-height: 1.25em;
  margin: -2px 0 0;
  display: block;
  text-transform: none;
}
/*** Superfish Menu ***/
.sf-menu a {
  display: block;
  position: relative;
  outline-offset: -2px;
}
.sf-menu li {
  position: relative;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
  display: block;
}
.sf-menu ul {
  position: absolute;
  display: none;
  color: inherit;
  top: 100%;
  left: 0px;
  z-index: 101;
  min-width: 16em;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 0;
  border: solid 3px;
  border-color: inherit;
}
.sf-menu ul li {
  color: inherit;
  border-color: inherit;
  /*background: rgba(0,0,0,0.04);*/
}
.sf-menu > li:last-child > ul {
  left: auto;
  right: 0;
}
.sf-menu ul ul {
  top: -8px;
  left: 100%;
  margin-left: 0px;
}
.sf-menu ul li a {
  border-color: inherit;
  padding: 6px 5px 6px 15px;
  color: #666;
}
.sf-menu ul li:hover > a,
.sf-menu ul li.current-menu-ancestor > a,
.sf-menu ul li.current-menu-item:not(.nohighlight) > a {
  color: #d22254;
}
.sf-menu ul li:hover > a:before,
.sf-menu ul li.current-menu-ancestor > a:before,
.sf-menu ul li.current-menu-item:not(.nohighlight) > a:before {
  content: '';
  display: block;
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  border-left: solid 5px;
  border-color: inherit;
}
/*** Superfish Menu Arrows ***/
.menu-items > li.menu-item-has-children > a,
.nav-menu .sf-menu.sf-arrows li a.sf-with-ul {
  padding-right: 35px;
}
.sf-menu.sf-arrows .sf-with-ul .menu-title {
  width: 100%;
}
.sf-menu.sf-arrows .sf-with-ul .menu-title:after {
  top: 47%;
  line-height: 10px;
  margin-top: -5px;
  font-size: 0.8em;
  position: absolute;
  right: -10px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-style: normal;
  text-decoration: inherit;
  speak: none;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  content: "\f0d7";
}
.nav-menu .sf-menu.sf-arrows ul a.sf-with-ul {
  padding-right: 10px;
}
.sf-menu.sf-arrows ul .sf-with-ul .menu-title:after {
  content: "\f0da";
  right: 7px;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1em;
}
/*** Responsive Menu ***/
.menu-toggle {
  display: none;
  cursor: pointer;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding: 5px 0;
}
.menu-toggle.active i:before {
  content: "\f00d";
}
.menu-toggle-text {
  margin-right: 5px;
}
@media only screen and (max-width: 969px) {
  /* Responsive Menu */
  .menu-toggle {
    display: block;
  }
  #menu-primary-items,
  #menu-secondary-items {
    border-top: solid 1px #ddd;
  }
  #menu-primary-items ul,
  #menu-secondary-items ul,
  #menu-primary-items ul li,
  #menu-secondary-items ul li {
    border: none;
    margin: 0;
  }
  #menu-primary-items > li,
  #menu-secondary-items > li {
    margin: 0;
  }
  .menu-items {
    display: none;
    text-align: left;
  }
  .menu-items > li {
    float: none;
    margin: 0px;
  }
  .menu-items > li a {
    border: none;
  }
  .menu-items > li .menu-title,
  .menu-items > li .menu-description {
    border: none;
    display: block;
    text-transform: uppercase;
  }
  .menu-items > li .menu-description,
  .menu-items > li ul .menu-description {
    text-transform: none;
    padding-top: 0;
  }
  .menu-items > li > a,
  .sf-menu ul li a {
    padding: 6px 6px 6px 15px;
  }
  .sf-menu ul li a {
    padding-left: 40px;
    /*line-height: inherit;*/
  }
  .sf-menu ul ul {
    top: 0;
  }
  .sf-menu ul ul li a {
    padding-left: 65px;
  }
  .sf-menu ul ul ul li a {
    padding-left: 90px;
  }
  .menu-secondary .menu-items > li:after {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;
    border-left: solid 5px;
    border-left-color: inherit;
  }
  .menu-secondary .menu-items > li:before {
    display: none;
    /*left: 5px; right: auto; top: 0; bottom: 0; border-left: solid 1px; border-left-color: inherit;*/
  }
  /* Responsive Menu - Override Superfish */
  .sf-menu ul {
    position: relative;
    top: auto;
    left: auto;
  }
  .mobilesubmenu-open .sf-menu ul {
    display: block !important;
    height: auto !important;
    opacity: 1 !important;
    /* Override inline styles for jquery animation by superfish */
  }
  .sf-menu ul {
    padding: 0;
  }
  .sf-menu ul ul {
    left: auto;
  }
  .sf-menu.sf-arrows ul .sf-with-ul .menu-title:after {
    content: "\f0d7";
  }
  /* Fix for compatibility with mega menu plugins */
  .mobilemenu-inline .menu-items {
    position: static;
  }
  /* Left Fixed Menu */
  .mobilemenu-fixed#menu-primary,
  .mobilemenu-fixed#menu-secondary {
    margin-bottom: 0;
  }
  .mobilemenu-fixed .menu-toggle,
  .mobilemenu-fixed #menu-primary-items,
  .mobilemenu-fixed #menu-secondary-items {
    -webkit-transition: background-color 0.3s linear;
    -moz-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
  }
  .mobilemenu-fixed .menu-toggle-text {
    display: none;
  }
  .mobilemenu-fixed .menu-toggle {
    width: 2em;
    padding: 5px;
    position: fixed;
    top: 15%;
    left: 0;
    z-index: 99992;
    border: solid 2px rgba(0, 0, 0, 0.1);
    border-left: none;
  }
  .mobilemenu-fixed .menu-toggle,
  .mobilemenu-fixed .menu-items {
    background: #f7f7f7;
  }
  .mobilemenu-fixed #menu-primary-items,
  .mobilemenu-fixed #menu-secondary-items {
    display: none;
    width: 280px;
    position: fixed;
    top: 0;
    z-index: 99991;
    overflow-y: auto;
    height: 100%;
    border-right: solid 2px rgba(0, 0, 0, 0.1);
  }
  .mobilemenu-fixed.mobilemenu-open .menu-toggle {
    z-index: 99997;
  }
  .mobilemenu-fixed.mobilemenu-open #menu-primary-items,
  .mobilemenu-fixed.mobilemenu-open #menu-secondary-items {
    z-index: 99996;
  }
  .mobilemenu-fixed .sf-menu ul {
    min-width: inherit;
  }
  .header-supplementary-bottom .mobilemenu-fixed .menu-toggle {
    margin-top: 40px;
  }
  .header-supplementary-top .mobilemenu-fixed .menu-toggle {
    margin-top: -40px;
  }
  .fixedmenu-open .menu-toggle {
    z-index: 99997;
  }
  .fixedmenu-open #menu-primary-items,
  .fixedmenu-open #menu-secondary-items {
    z-index: 99996;
  }
  .fixedmenu-open body {
    position: relative;
  }
  .fixedmenu-open body:before {
    content: '';
    position: absolute;
    z-index: 99995;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
  }
  /* AMP Menu */
  .hootamp .mobilemenu-fixed:hover .menu-toggle {
    left: 280px;
    z-index: 99997;
  }
  .hootamp .mobilemenu-fixed:hover #menu-primary-items,
  .hootamp .mobilemenu-fixed:hover #menu-secondary-items {
    display: block;
    left: 0;
    z-index: 99996;
  }
  .hootamp .mobilemenu-inline:hover #menu-primary-items,
  .hootamp .mobilemenu-inline:hover #menu-secondary-items {
    display: block;
  }
  /* Logged in user */
  .admin-bar .mobilemenu-fixed #menu-primary-items,
  .admin-bar .mobilemenu-fixed #menu-secondary-items {
    top: 32px;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .mobilemenu-fixed #menu-primary-items,
  .admin-bar .mobilemenu-fixed #menu-secondary-items {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .fixedmenu-open.has-adminbar {
    overflow-y: scroll;
    position: fixed;
    width: 100%;
    left: 0px;
    top: -46px;
  }
  .fixedmenu-open.has-adminbar body {
    padding-top: 46px;
  }
}
@media only screen and (min-width: 970px) {
  .menu-items {
    display: inline-block !important;
    /*Override any leftover inline style applied by responsive JS in smaller screens. Example: if a screen is resized when the menu is toggled off */
  }
  .tablemenu .menu-items {
    display: inline-table !important;
    /*Override any leftover inline style applied by responsive JS in smaller screens. Example: if a screen is resized when the menu is toggled off */
  }
  .tablemenu .menu-items > li {
    display: table-cell;
    float: none;
  }
}
/************* Aside Header *************/
#sidebar-header-sidebar {
  margin-top: 0;
}
#sidebar-header-sidebar .widget {
  margin: 5px 0;
}
#sidebar-header-sidebar .widget_text p {
  margin: 0;
}
#sidebar-header-sidebar h1,
#sidebar-header-sidebar h2,
#sidebar-header-sidebar h3,
#sidebar-header-sidebar h4,
#sidebar-header-sidebar h5,
#sidebar-header-sidebar h6 {
  margin: 0;
}
.sidebar-header-sidebar .searchbody {
  display: inline-block;
}
.sidebar-header-sidebar .searchform {
  margin: 0;
}
.sidebar-header-sidebar .announce-widget {
  display: inline-block;
}
.sidebar-header-sidebar .textwidget {
  font-size: 0.78571429em;
  line-height: 1.454545em;
}
/************* Below Header *************/
#below-header .sidebar {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-transform: inherit;
}
#below-header .widget {
  margin: 1.07142857em 0;
}
.below-header {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: solid 1px #ddd;
}
/**
 * Main #Content
 * ========================================================
 */
/** Use 'entry-content'/'entry-the-content' classes to style posts on single post pages specifically **/
#main.main {
  padding-bottom: 2.85714286em;
  overflow: hidden;
  background: #fff;
}
/************* Page Template - Landing *************/
/************* Loop Meta *************/
#loop-meta {
  position: relative;
}
#loop-meta.pageheader-bg-stretch,
#loop-meta.pageheader-bg-both {
  background: #f7f7f7;
  border-bottom: solid 1px #ddd;
}
#loop-meta.pageheader-bg-default,
#loop-meta.pageheader-bg-incontent,
#loop-meta.pageheader-bg-none {
  background: none;
  border-bottom: solid 1px #ddd;
}
.loop-meta {
  float: none;
  text-align: center;
  background-size: contain;
  padding: 45px 0;
}
.loop-title {
  margin: 0;
  font-size: 1.42857143em;
}
.loop-description p {
  margin: 5px 0;
}
.loop-description p:last-child {
  margin-bottom: 0;
}
.loop-meta-gravatar img {
  margin-bottom: 1em;
  -webkit-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 1500px;
  -moz-border-radius: 1500px;
  border-radius: 1500px;
}
.archive.author #content .loop-meta {
  text-align: center;
}
#content #loop-meta {
  margin-bottom: 1.78571429em;
}
#content #loop-meta.pageheader-bg-default,
#content #loop-meta.pageheader-bg-stretch,
#content #loop-meta.pageheader-bg-none {
  background: none;
  padding-bottom: 1.07142857em;
  border-bottom: solid 1px #ddd;
}
#content #loop-meta.pageheader-bg-incontent,
#content #loop-meta.pageheader-bg-both {
  background: #f7f7f7;
  padding: 15px 18px;
  border: solid #ddd;
  border-width: 1px 1px 1px 1px;
}
#content #loop-meta.pageheader-bg-incontent .entry-byline,
#content #loop-meta.pageheader-bg-both .entry-byline {
  border-bottom: none;
  padding-bottom: 0;
}
#content #loop-meta.loop-meta-wrap:after {
  display: none;
}
#content .loop-meta {
  text-align: left;
  padding: 0;
}
#content .pageheader-bg-incontent .loop-meta,
#content .pageheader-bg-both .loop-meta {
  text-align: center;
}
#content .loop-title {
  text-transform: none;
  font-size: 1.28571429em;
}
#custom-content-title-area {
  text-align: center;
}
.pre-content-title-area ul.lSPager {
  display: none;
}
.content-title-area-stretch .hgrid-span-12 {
  padding: 0;
}
.content-title-area-grid {
  margin: 1.07142857em 0;
}
.content .post-content-title-area {
  margin: 0 0 2.85714286em;
}
/************* Entry Meta Byline (Singular Post Page) *************/
.entry-byline {
  font-size: 0.78571429em;
  line-height: 1.454545em;
  text-transform: uppercase;
  margin-top: 5px;
}
.content .entry-byline.empty {
  padding: 0;
}
.entry-byline-block {
  display: inline;
}
.entry-byline-block:after {
  content: "/";
  margin: 0 7px;
  font-size: 1.181818em;
}
.entry-byline-block:last-of-type:after {
  display: none;
}
.entry-byline a {
  color: inherit;
}
.entry-byline a:hover {
  color: inherit;
  text-decoration: underline;
}
.entry-byline-label {
  margin-right: 3px;
}
.entry-footer div.entry-byline {
  background: none;
}
.entry-footer .entry-byline {
  opacity: 1;
  filter: alpha(opacity=100);
  color: #d22254;
  margin: 0;
  padding: 1.78571429em 5px;
  border-bottom: solid 1px #ddd;
}
/************* <main> #content *************/
.content {
  margin-top: 2.85714286em;
}
/************* Single Post (Single post on Archive page / Singular Post page) *************/
/** Caution: Modify this CSS block carefully as these divs display differently in above two templates. **/
/** Use specific classes instead: 'entry-content' / 'entry-the-content' classes for single post pages, and 'entry-grid' classes to style posts in archive lists **/
.entry-content-featured-img {
  display: block;
  margin: 0 auto 20px;
}
/************* Single Post (Single Post Page) *************/
.entry-content {
  border-bottom: solid 1px #ddd;
}
.entry-content.no-shadow {
  border: none;
}
.entry-the-content {
  margin-bottom: 2.85714286em;
}
.entry-the-content p:first-child,
.entry-the-content h1:first-child,
.entry-the-content h2:first-child,
.entry-the-content h3:first-child,
.entry-the-content h4:first-child,
.entry-the-content h5:first-child,
.entry-the-content h6:first-child {
  margin-top: 0;
}
.entry-the-content:after {
  content: "";
  display: table;
  clear: both;
}
.entry-the-content:after {
  content: "";
  display: table;
  clear: both;
}
/************* Post Navigation *************/
.page-links,
.post-nav-links {
  text-align: center;
  margin: 2.85714286em 0;
}
.page-links a,
.post-nav-links a,
.page-links .page-numbers,
.post-nav-links .page-numbers {
  text-decoration: none;
  border: solid 1px;
  padding: 0.5em;
  margin: 0 2px;
  line-height: 1em;
  min-width: 1em;
  display: inline-block;
  text-align: center;
}
.loop-nav {
  padding: 1.78571429em 5px;
  border-bottom: solid 1px #ddd;
}
/************* Comments *************/
#comments-template {
  padding-top: 1.78571429em;
}
#comments-number {
  font-size: 14px;
  color: #888;
  font-family: inherit;
  font-weight: bold;
  font-weight: 800;
  text-transform: uppercase;
}
#comments .comment-list,
#comments .comment-list ol.children {
  list-style-type: none;
  margin: 0;
}
.comment-list {
  padding-bottom: 0.71428571em;
}
/*** Single Comment ***/
.comment {
  position: relative;
  margin: 0;
}
.comment article {
  position: relative;
}
.comment p {
  margin: 0 0 0.3em;
}
.comment li.comment {
  border-left: solid 1px #ddd;
  padding-left: 40px;
  margin-left: 20px;
}
.comment-avatar {
  position: absolute;
  width: 50px;
  top: 5px;
  left: 5px;
}
.comment-by-author {
  font-size: 0.78571429em;
  line-height: 1.454545em;
  color: #888;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 3px;
}
.comment-content-wrap {
  margin: 30px 0px 20px 70px;
}
.comment-meta-block,
.comment-edit-link {
  display: inline-block;
  padding: 0 15px 0 0;
  margin: 0 15px 0 0;
  border-right: solid 1px;
  font-size: 0.78571429em;
  line-height: 1.454545em;
  color: #888;
  text-transform: uppercase;
}
.comment-meta-block:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.comment-meta-block cite.comment-author {
  font-style: normal;
  font-size: 1em;
}
/*** Single Comment by post author ***/
.comment.bypostauthor > article {
  background: #f7f7f7;
}
.comment.bypostauthor > article .comment-meta-block,
.comment.bypostauthor > article .comment-edit-link {
  color: inherit;
}
.comment.bypostauthor > article .comment-avatar {
  top: 18px;
  left: 18px;
}
.comment.bypostauthor > article .comment-content-wrap {
  margin-left: 80px;
  padding: 13px 10px 13px 5px;
}
.comment.bypostauthor + #respond {
  background: #f7f7f7;
  padding: 20px 20px 1px;
}
.comment.bypostauthor + #respond #reply-title {
  margin-top: 0;
}
/*** Single Comment Ping ***/
.comment-ping {
  border: solid 1px #ddd;
  padding: 5px 10px 5px 15px;
  margin: 30px 0px 20px;
}
.comment-ping cite {
  font-size: 1em;
}
/*** Response Form ***/
#reply-title {
  font-size: 14px;
  font-family: inherit;
  font-weight: bold;
  font-weight: 800;
  text-transform: uppercase;
}
#reply-title small {
  display: block;
}
#respond p {
  margin: 0 0 0.3em;
}
#respond label {
  font-size: 0.78571429em;
  line-height: 1.454545em;
  font-weight: normal;
  padding: 0.71428571em 0;
  width: 15%;
  vertical-align: top;
}
#respond input[type=checkbox] + label {
  display: inline;
  margin-left: 5px;
  vertical-align: text-bottom;
}
/*** Comments Responsive ***/
@media only screen and (max-width: 969px) {
  .comment article {
    margin: 10px 0;
  }
  .comment-avatar {
    position: relative;
    top: auto;
    left: auto;
  }
  .comment-content-wrap {
    margin: 10px 0 0 0;
  }
  .comment.bypostauthor > article .comment-content-wrap {
    margin: 10px 0 0 10px;
  }
  .comment li {
    padding-left: 15px;
    margin-left: 10px;
  }
}
/************* 404 Page Content *************/
/************* Attachment Page Content *************/
.entry.attachment .entry-content {
  border-bottom: none;
}
.entry.attachment .entry-the-content {
  width: auto;
  text-align: center;
}
.entry.attachment .entry-the-content p:first-of-type {
  margin-top: 2em;
  font-weight: bold;
  text-transform: uppercase;
}
.entry.attachment .entry-the-content .more-link {
  display: none;
}
/**
 * Main #Content for Index (Archive / Blog List)
 * ========================================================
 */
/** Use 'entry-grid' classes to style posts in archive lists specifically **/
/************* Archive List Post Entry *************/
.archive-wrap {
  overflow: hidden;
  clear: both;
}
/*** Common Styles ***/
.plural .entry.has-post-thumbnail {
  padding-top: 1em;
}
.plural .entry.has-post-thumbnail:first-child {
  padding-top: 5px;
}
.entry-grid-featured-img {
  position: relative;
  z-index: 1;
}
/* Sticky */
.entry-sticky-tag {
  display: none;
  /*Hide it when not actually displayed as 'stuck' at top*/
}
.sticky .entry-sticky-tag {
  float: left;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 4px;
  top: 4px;
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 0.78571429em;
  line-height: 1.454545em;
  text-align: center;
}
/* Entry Grid */
.entry-grid {
  margin-bottom: 65px;
  min-width: inherit;
}
.entry-grid-content {
  padding: 0 0 0.71428571em;
}
.entry-grid-content .entry-title {
  font-size: 1.28571429em;
  margin: 0;
}
.entry-grid-content .entry-title a {
  color: inherit;
}
/*** Archive Big Post entry ***/
.archive-big .entry-grid,
.archive-medium .entry-grid,
.archive-small .entry-grid {
  margin-bottom: 0;
}
/*** Archive Medium and Small Post entry ***/
.archive-medium .entry-content-featured-img,
.archive-small .entry-content-featured-img {
  margin: 0 1.78571429em 20px 0;
}
.archive-medium .entry-byline,
.archive-small .entry-byline {
  display: table;
}
.archive-medium .more-link,
.archive-small .more-link {
  border: none;
  text-align: left;
  display: block;
  margin-top: 1.07142857em;
}
/*** Archive Block2/3 entry ***/
.archive-block2:nth-child(2n+1) {
  clear: both;
}
.archive-block3:nth-child(3n+1) {
  clear: both;
}
.archive-block4:nth-child(4n+1) {
  clear: both;
}
.plural #main .archive-block {
  padding-top: 0;
}
.archive-block .entry-grid {
  margin-bottom: 0;
}
/*** Responsive Block2/3 Entry ***/
/*** Archive Mosaic (2/3/4 columns) Post entry ***/
#content .archive-mosaic {
  padding-top: 0;
}
.archive-mosaic {
  text-align: center;
  /* Entry Grid */
  /* Sub Content */
  /* Sticky */
  /* More Link */
  /* List Entry Byline */
}
.archive-mosaic .entry-grid {
  margin-bottom: 45px;
  border: solid 1px #ddd;
}
.archive-mosaic .entry-content-featured-img {
  margin: 0 auto;
}
.archive-mosaic .entry-grid-content {
  padding: 1.78571429em 1em;
  padding-bottom: 0;
}
.archive-mosaic .entry-title {
  font-size: 1.14285714em;
}
.archive-mosaic .entry-summary p:first-child {
  margin-top: 0.8em;
}
.archive-mosaic .mosaic-sub {
  background: #f7f7f7;
  border-top: solid 1px #ddd;
  margin: 0 -1em;
  line-height: 1.4em;
}
.archive-mosaic.sticky .entry-sticky-tag {
  float: none;
  top: 0;
  margin: 0;
  display: block;
}
.archive-mosaic .more-link {
  font-size: 1em;
  line-height: 1em;
  margin: 1em -1em -1.78571429em;
  text-align: center;
  border: none;
}
.archive-mosaic .more-link a {
  font-size: 0.8em;
  display: block;
}
.archive-mosaic .entry-byline {
  display: block;
  padding: 10px;
  border: none;
  margin: 0;
}
/*** Responsive Archive List Post Entry ***/
@media only screen and (max-width: 969px) {
  /** Common **/
  .entry-grid {
    /* List Entry Byline */
  }
  /** Archive Big **/
  /** Archive Medium/Small **/
  .archive-medium .entry-content-featured-img,
  .archive-small .entry-content-featured-img {
    margin: 0 auto 1.78571429em;
    float: none;
  }
  /** Archive Mosaic **/
  .archive-mosaic {
    /* Featured Image */
  }
  .archive-mosaic .entry-content-featured-img {
    padding: 20px 20px 0;
  }
}
/************* Read More *************/
.more-link {
  display: block;
  margin-top: 1.78571429em;
  text-transform: uppercase;
  font-size: 0.78571429em;
  line-height: 1.454545em;
  font-weight: bold;
  border-top: solid 1px #d22254;
  color: #d22254;
  text-align: right;
  -webkit-transition: color 0.3s ease-in, background-color 0.3s linear, border-color 0.3s linear;
  -moz-transition: color 0.3s ease-in, background-color 0.3s linear, border-color 0.3s linear;
  -o-transition: color 0.3s ease-in, background-color 0.3s linear, border-color 0.3s linear;
  transition: color 0.3s ease-in, background-color 0.3s linear, border-color 0.3s linear;
}
.more-link a {
  display: inline-block;
  padding: 1px 9px;
}
.more-link a,
.more-link a:hover {
  background: #d22254;
  color: #ffffff;
}
/************* Navigation *************/
.pagination.loop-pagination {
  margin: 1.07142857em 0;
}
.page-numbers {
  border: solid 1px;
  padding: 0.5em;
  margin: 0 2px;
  line-height: 1em;
  min-width: 1em;
  display: inline-block;
  text-align: center;
}
/**
 * Sliders
 * ========================================================
 */
/************* HTML Slider *************/
/* HTML Slide : Layout */
.hootslider-html-slide {
  cursor: -webkit-grab;
  cursor: -moz-grabbing;
  cursor: grab;
  overflow: hidden;
  position: relative;
}
.hootslider-html-slide.is-custom-bg {
  background-size: cover;
  background-position: center;
}
.hootslider-html-slide > .hgrid {
  display: table;
  table-layout: fixed;
}
.hootslider-html-slide-column {
  display: table-cell;
  vertical-align: middle;
  float: none;
  text-align: center;
}
.hcolumn-1-2.hootslider-html-slide-left {
  padding: 45px 20px 45px 40px;
}
.hcolumn-1-2.hootslider-html-slide-right {
  padding: 45px 40px 45px 20px;
}
.hootslider-html-slide-content {
  padding: 10px 15px;
  display: inline-block;
}
.hootslider-html-slide-content h1,
.hootslider-html-slide-content h2,
.hootslider-html-slide-content h3,
.hootslider-html-slide-content h4,
.hootslider-html-slide-content h5,
.hootslider-html-slide-content h6,
.hootslider-html-slide-content p,
.hootslider-html-slide-content a,
.hootslider-html-slide-content div,
.hootslider-html-slide-content span {
  color: inherit;
}
.hootslider-html-slide-content h1,
.hootslider-html-slide-content h2,
.hootslider-html-slide-content h3,
.hootslider-html-slide-content h4,
.hootslider-html-slide-content h5,
.hootslider-html-slide-content h6 {
  font-size: 1.14285714em;
  margin: 5px 0;
}
.hootslider-html-slide-content p {
  margin: 5px 0;
}
.hootslider-html-slide-link {
  margin-top: 15px;
}
.hootslider-html-slide-button {
  display: inline-block;
}
.hcolumn-1-1.hootslider-html-slide-column {
  padding: 45px 40px;
}
.hcolumn-1-1.hootslider-html-slide-column .hootslider-html-slide-content {
  max-width: 75%;
  display: inline-block;
}
/*** Responsive HTML Slider ***/
@media only screen and (max-width: 969px) {
  .hootslider-html-slide .hgrid {
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto !important;
  }
  .hootslider-html-slide .hcolumn-1-2.hootslider-html-slide-left {
    display: block;
    padding: 0 40px 25px;
    margin-top: 12px;
    -webkit-order: 2;
    order: 2;
  }
  .hootslider-html-slide .hcolumn-1-2.hootslider-html-slide-right {
    display: block;
    padding: 25px 40px 0;
    margin-bottom: 12px;
    -webkit-order: 1;
    order: 1;
  }
  .hootslider-html-slide .hcolumn-1-1.hootslider-html-slide-column {
    padding: 45px 40px;
  }
}
/************* Image Slider *************/
.hootslider-image-slide {
  cursor: -webkit-grab;
  cursor: -moz-grabbing;
  cursor: grab;
  position: relative;
}
.hootslider-image-slide img {
  width: 100%;
}
.hootslider-image-slide-content {
  position: absolute;
  bottom: 10%;
  left: 0;
  margin: 0 50px;
  max-width: 480px;
}
.hootslider-image-slide-caption {
  padding: 10px 15px;
}
.hootslider-image-slide-caption h1,
.hootslider-image-slide-caption h2,
.hootslider-image-slide-caption h3,
.hootslider-image-slide-caption h4,
.hootslider-image-slide-caption h5,
.hootslider-image-slide-caption h6 {
  font-size: 1.14285714em;
  margin: 2px 0;
}
.hootslider-image-slide-caption h1,
.hootslider-image-slide-caption h2,
.hootslider-image-slide-caption h3,
.hootslider-image-slide-caption h4,
.hootslider-image-slide-caption h5,
.hootslider-image-slide-caption h6,
.hootslider-image-slide-caption p,
.hootslider-image-slide-caption a,
.hootslider-image-slide-caption div,
.hootslider-image-slide-caption span {
  color: inherit;
}
.hootslider-image-slide-caption p {
  margin: 2px 0 0;
}
.hootslider-image-slide-button {
  margin-top: 15px;
}
/*** Responsive Image Slider ***/
@media only screen and (max-width: 969px) {
  .hootslider-image-slide-content {
    position: relative;
    margin: 0;
    max-width: none;
  }
  .hootslider-image-slide-caption {
    padding: 10px 40px;
    text-align: center;
  }
  .hootslider-image-slide-caption h1,
  .hootslider-image-slide-caption h2,
  .hootslider-image-slide-caption h3,
  .hootslider-image-slide-caption h4,
  .hootslider-image-slide-caption h5,
  .hootslider-image-slide-caption h6 {
    margin: 0;
  }
  .hootslider-image-slide-caption p {
    margin: 0;
  }
  .hootslider-image-slide-button {
    display: block;
    margin: 0;
    text-align: center;
  }
}
/************* Carousel Slider *************/
.hootslider-carousel-wrapper {
  margin: 1.07142857em 0;
}
.hootslider-carousel-wrapper .lightSlider.fixedheight {
  height: auto !important;
}
.hootslider-carousel-slide {
  cursor: -webkit-grab;
  cursor: -moz-grabbing;
  cursor: grab;
}
.lightSlideCarousel {
  padding: 0 10px;
  margin: 5px 8px;
  border: solid 1px #ddd;
}
.lightSlideCarousel h1,
.lightSlideCarousel h2,
.lightSlideCarousel h3,
.lightSlideCarousel h4,
.lightSlideCarousel h5,
.lightSlideCarousel h6,
.lightSlideCarousel .title {
  font-size: 1.14285714em;
  margin: 0;
  font-family: inherit;
  padding: 5px 0 0;
}
.hootslider-carousel-slide-image {
  margin: 0px -10px;
  text-align: center;
}
.hootslider-carousel-slide-content {
  margin: 10px 0 15px;
  text-align: center;
}
.hootslider-carousel-slide-content p,
.hootslider-carousel-slide-content .more-link {
  margin: 0.35714286em 0;
}
.hootslider-carousel-slide-content .more-link {
  border: none;
  text-align: center;
}
.hootslider-carousel-slide-content .more-link a {
  background: none;
  color: #d22254;
}
.hootslider-carousel-slide-content .more-link a:hover {
  background: none;
  text-decoration: underline;
}
.carousel-post-title a,
.carousel-post-title a:hover {
  color: inherit;
}
/**
 * Frontpage
 * ========================================================
 */
.home #main.main {
  padding-bottom: 0;
}
.content-frontpage.no-sidebar {
  margin-top: 0;
}
.frontpage-area.area-highlight {
  background: #f7f7f7;
}
.frontpage-area.module-bg-accent {
  background: #d22254;
}
.frontpage-area.module-bg-image.bg-scroll {
  background-size: cover;
}
/************* Modules - Margins *************/
.frontpage-area.module-bg-highlight,
.frontpage-area.module-bg-image,
.frontpage-area.module-bg-accent {
  margin: 0;
  padding: 45px 0;
}
/* Widget Areas */
.frontpage-widgetarea {
  margin: 45px 0;
}
.frontpage-area > div.hgrid > div > .widget:first-child {
  margin-top: 0;
}
.frontpage-area > div.hgrid > div > .widget:last-child {
  margin-bottom: 0;
}
/* Sliders */
.frontpage-slider-boxed {
  margin-top: 45px;
  margin-bottom: 45px;
}
/* Page Content */
.frontpage-pagecontent {
  margin: 45px 0;
}
/************* Frontpage - Widget Areas *************/
/************* Frontpage - Sliders *************/
.frontpage-slider > .hgrid-stretch > .hgrid-span-12 {
  padding: 0;
}
/*** HTML Slider ***/
/*** Image Slider ***/
/************* Frontpage - Page Content *************/
.frontpage-area .entry-content {
  border-bottom: none;
}
.frontpage-area .entry-the-content {
  margin: 0;
}
.frontpage-area .entry-the-content p:last-child {
  margin-bottom: 0;
}
.frontpage-area .entry-footer {
  display: none;
}
/************* Frontpage - Blog *************/
.hoot-blogposts-title {
  margin: 0 auto 1.07142857em;
  padding-bottom: 0.71428571em;
  width: 75%;
  border-bottom: solid 1px #ddd;
  text-align: center;
}
.hoot-blogposts .content {
  margin-top: 0;
}
.hoot-blogposts .no-sidebar {
  float: none;
  margin-left: auto;
  margin-right: auto;
}
.hoot-blogposts .no-sidebar .entry.post:last-child .entry-grid-content {
  padding-bottom: 0;
}
/*** Responsive Frontpage ***/
@media only screen and (min-width: 970px) {
  .hoot-blogposts .sidebar {
    margin-top: 0;
  }
  .hoot-blogposts .content:nth-child(1),
  .hoot-blogposts .sidebar:nth-child(2) {
    margin-top: 2em;
  }
}
@media only screen and (max-width: 969px) {
  .hoot-blogposts-title {
    width: 100%;
  }
}
/**
 * Sidebars and Widgets
 * ========================================================
 */
/************* Sidebars & Layouts *************/
/************* Sidebars *************/
.sidebar {
  margin-top: 2.85714286em;
  line-height: 1.71428571em;
}
.sidebar .widget {
  margin: 0 0 45px;
}
.sidebar .widget-title {
  font-size: 14px;
}
/************* Widgets *************/
.widget {
  margin: 45px 0;
  position: relative;
}
.widget .view-all {
  text-align: right;
  text-transform: uppercase;
  font-size: 0.78571429em;
  line-height: 1.454545em;
}
.widget .view-all a {
  padding: 3px 5px;
  color: #888;
}
.widget .view-all a:hover {
  color: #d22254;
}
.widget .view-all-bottom {
  margin-top: 5px;
}
.widget .view-all-top {
  margin-bottom: 5px;
}
.widget .view-all-top.view-all-withtitle {
  position: absolute;
  top: 5px;
  right: 0;
  margin-bottom: 0;
}
.widget-title {
  font-weight: normal;
  margin: 0 0 1.78571429em;
  text-transform: uppercase;
  position: relative;
}
.widget-title > span.accent-typo {
  border-color: #d22254;
}
.widget-title > span.accent-typo,
.widget-title > span.cat-typo {
  display: inline-block;
  padding: 3px 8px 2px;
}
.widget-title > span.accent-typo:after,
.widget-title > span.cat-typo:after {
  content: "\00a0";
  display: block;
  font: 0/0 a;
  border-bottom: solid 1px;
  border-color: inherit;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.widget-title.remove-style {
  margin-bottom: 1.07142857em;
}
.widget-title.remove-style > span.accent-typo,
.widget-title.remove-style > span.cat-typo {
  padding: 0;
}
.widget-title.remove-style > span.accent-typo:after,
.widget-title.remove-style > span.cat-typo:after {
  display: none;
}
.cat-label {
  position: absolute;
  top: 0;
  right: 0;
  background: #d22254;
  color: #ffffff;
}
.cat-label a {
  display: block;
  padding: 1px 5px;
  font-size: 0.85714286em;
  line-height: 1.5em;
}
.cat-label a,
.cat-label a:hover {
  color: inherit;
}
/************* Widget Borders *************/
.topborder-line:before {
  content: "\00a0";
  display: block;
  font: 0/0 a;
  border-top: solid 1px #ddd;
  margin-bottom: 45px;
}
.bottomborder-line:after {
  content: "\00a0";
  display: block;
  font: 0/0 a;
  border-bottom: solid 1px #ddd;
  margin-top: 45px;
}
.topborder-shadow:before {
  content: "\00a0";
  display: block;
  font: 0/0 a;
  height: 2px;
  border: solid 1px #ddd;
  border-left: none;
  border-right: none;
  margin-bottom: 45px;
}
.bottomborder-shadow:after {
  content: "\00a0";
  display: block;
  font: 0/0 a;
  height: 2px;
  border: solid 1px #ddd;
  border-left: none;
  border-right: none;
  margin-top: 45px;
}
.site-stretch .frontpage-area > .hgrid > .hgrid-span-12 .topborder-line:before,
.site-stretch .below-header > .hgrid > .hgrid-span-12 .topborder-line:before,
.site-stretch .sub-footer > .hgrid > .hgrid-span-12 .topborder-line:before,
.site-stretch .frontpage-area > .hgrid > .hgrid-span-12 .bottomborder-line:after,
.site-stretch .below-header > .hgrid > .hgrid-span-12 .bottomborder-line:after,
.site-stretch .sub-footer > .hgrid > .hgrid-span-12 .bottomborder-line:after,
.site-stretch .frontpage-area > .hgrid > .hgrid-span-12 .topborder-shadow:before,
.site-stretch .below-header > .hgrid > .hgrid-span-12 .topborder-shadow:before,
.site-stretch .sub-footer > .hgrid > .hgrid-span-12 .topborder-shadow:before,
.site-stretch .frontpage-area > .hgrid > .hgrid-span-12 .bottomborder-shadow:after,
.site-stretch .below-header > .hgrid > .hgrid-span-12 .bottomborder-shadow:after,
.site-stretch .sub-footer > .hgrid > .hgrid-span-12 .bottomborder-shadow:after {
  margin-left: -1999px;
  margin-right: -1999px;
}
/************* WordPress Widgets *************/
/* Text */
.textwidget p:first-child {
  margin-top: 0;
}
/* Search */
.searchbody {
  background: #f5f5f5;
  background: rgba(0, 0, 0, 0.05);
  vertical-align: middle;
}
.searchbody input {
  background: none;
  color: inherit;
  border: none;
  padding: 10px 17px 10px 32px;
  width: 100%;
  vertical-align: bottom;
  display: block;
}
.searchbody input:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border: none;
  color: inherit;
}
.searchform {
  position: relative;
  overflow: hidden;
}
.searchform .submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -9999rem;
  width: auto;
  line-height: 1em;
  margin: 0;
  padding: 5px;
}
.searchform .submit:focus {
  outline: dotted 1px;
  outline-offset: -4px;
  right: 10px;
  /* 10px = padding-top/bottom */
}
.searchbody i.fa-search {
  margin-right: 10px;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  left: 10px;
}
#topbar .submit {
  padding: 5px;
}
/* AMP Search */
.hootamp .header-aside-search .searchform {
  position: relative;
}
.hootamp .header-aside-search .searchform i.fa-search {
  position: absolute;
  color: #666;
  z-index: 1;
  top: 50%;
  margin-top: -0.5em;
  left: 10px;
  padding: 0;
  font-size: 1em;
  line-height: 1em;
}
.hootamp .header-aside-search .searchform input.searchtext[type="text"] {
  clip: auto !important;
  clip-path: none;
  height: auto;
  width: auto;
  position: relative;
  z-index: 0;
  background: #fff;
  color: #666;
  display: inline-block;
  padding: 5px 10px 5px 2.2em;
  border: solid 1px #ddd;
  font-size: 1em;
  line-height: 1em;
}
/* Custom Menu */
.widget_nav_menu .menu-description {
  margin-left: 5px;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.widget_nav_menu .menu-description:before {
  content: "( ";
}
.widget_nav_menu .menu-description:after {
  content: " )";
}
.inline-nav .widget_nav_menu ul,
.inline-nav .widget_nav_menu ol,
.inline-nav .widget_nav_menu li {
  display: inline;
  margin-left: 0;
}
.inline-nav .widget_nav_menu li {
  margin-right: 0;
}
.inline-nav .widget_nav_menu li a {
  margin: 0 30px 0 0;
  position: relative;
}
.inline-nav .widget_nav_menu li a:hover {
  border-bottom: solid 1px;
  text-decoration: none;
}
.inline-nav .widget_nav_menu li a:after {
  content: "/";
  opacity: 0.5;
  filter: alpha(opacity=50);
  margin-left: 15px;
  position: absolute;
}
.inline-nav .widget_nav_menu ul.menu > li:last-child a {
  margin-right: 0;
}
.inline-nav .widget_nav_menu ul.menu > li:last-child a:after {
  display: none;
}
/************* CTA Widget *************/
.cta-widget {
  text-align: center;
}
.cta-headline {
  margin: 0;
}
.cta-description {
  font-size: 1.06666666em;
  line-height: 1.71428571em;
}
.cta-description p {
  margin: 10px;
}
.cta-widget-button {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 0.85714286em;
  line-height: 1.5em;
}
/************* Content Blocks Widget *************/
.content-block-row {
  margin: 0 0 45px;
}
.content-block-row:after {
  content: "";
  display: table;
  clear: both;
}
.content-block-row:after {
  content: "";
  display: table;
  clear: both;
}
.content-block-row:last-child {
  margin: 0;
}
.content-block-column .more-link {
  margin: 0;
  position: relative;
  text-align: center;
}
.content-block-column .more-link a {
  background: none;
  color: #d22254;
  display: block;
}
.content-block {
  padding-bottom: 10px;
}
.content-block-icon {
  width: 60px;
  height: 60px;
  max-width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 28px;
  line-height: 60px;
  -webkit-transition: color 0.3s ease-in, background-color 0.3s linear;
  -moz-transition: color 0.3s ease-in, background-color 0.3s linear;
  -o-transition: color 0.3s ease-in, background-color 0.3s linear;
  transition: color 0.3s ease-in, background-color 0.3s linear;
}
.content-block-icon a,
.content-block-icon a:hover {
  display: block;
}
.content-block-icon i {
  color: #d22254;
}
.content-block-icon.accent-typo i {
  color: inherit;
}
.content-block .content-block-icon {
  border-width: 1px 3px 3px 1px;
}
/*over qualify to override*/
.icon-style-none {
  line-height: 1em;
  width: auto;
  height: auto;
}
.icon-style-circle {
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  border: solid 1px #d22254;
}
.icon-style-square {
  border: solid 1px #d22254;
}
.content-block-image {
  margin-bottom: 5px;
}
.content-block-content {
  padding-top: 15px;
}
.content-block-content.no-visual {
  padding-top: 0;
}
.content-block-content p {
  margin: 0 0 10px;
}
.content-block-title {
  margin: 0 0 8px;
  font-size: 1.21428571em;
}
.content-block-title a {
  color: inherit;
}
.content-block-subtitle {
  margin: -2px 0 15px;
  padding: 1px 3px;
  background: rgba(0, 0, 0, 0.05);
  text-transform: uppercase;
}
.content-block-subtitle .entry-byline {
  padding: 0 8px;
  margin: 0;
  font-size: 1em;
}
/*** Content Block Styles ***/
.content-block-style1,
.content-block-style2,
.content-block-style3 {
  text-align: center;
}
/* Style1 */
/* Style2 */
.content-block-style2 .content-block.highlight-typo {
  padding: 20px 15px 8px;
  border: solid 1px #ddd;
  background: none;
}
.content-block-style2 .content-block.highlight-typo .content-block-subtitle {
  margin-left: -15px;
  margin-right: -15px;
}
.content-block-style2 .content-block-image {
  margin: -20px -15px 0 -15px;
}
.content-block-style2 .more-link {
  margin-top: -1px;
}
/* Style3 */
.content-block-style3 .content-block {
  padding: 35px 0px 10px;
  position: relative;
  border: solid 1px #ddd;
  border-left: none;
  border-right: none;
}
.content-block-style3.visual-image .content-block {
  border-top: none;
}
.content-block-style3 .content-block.highlight-typo {
  background: none;
  margin-top: 35px;
}
.content-block-style3 .content-block.no-highlight {
  padding-top: 25px;
}
.content-block-style3 .content-block-image {
  margin-top: -70px;
}
.content-block-style3 .content-block-icon {
  border: none;
  background: #f7f7f7;
  width: 70px;
  height: 70px;
  font-size: 26px;
  line-height: 70px;
  position: absolute;
  top: -35px;
  left: 50%;
  margin-left: -35px;
}
.content-block-style3 .icon-style-square {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  border: solid 1px rgba(0, 0, 0, 0.1);
}
.content-block-style3 .icon-style-circle {
  -webkit-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}
.content-block-style3 .more-link {
  margin-top: -1px;
  position: relative;
}
/* Style4 */
.content-block-style4 .content-block {
  text-align: left;
}
.content-block-style4 .content-block-icon {
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  float: left;
  border-width: 1px 2px 2px 1px;
}
.content-block-style4 .content-block-visual {
  margin-top: 4px;
}
.content-block-style4 .content-block-icon.icon-style-none {
  font-size: 40px;
  color: #d22254;
}
.content-block-style4 .content-block-icon .far,
.content-block-style4 .content-block-icon .fas,
.content-block-style4 .content-block-icon .fab {
  left: 0;
}
.content-block-style4 .content-block-image {
  width: 35%;
  float: left;
}
.content-block-style4 .content-block-content {
  padding-top: 0;
}
.content-block-style4.visual-icon .more-link,
.content-block-style4 .content-block-content-hasicon {
  margin-left: 65px;
}
.content-block-style4.visual-image .more-link,
.content-block-style4 .content-block-content-hasimage {
  margin-left: 40%;
}
.content-block-style4 .content-block-content.no-visual {
  margin-left: 0;
}
.content-block-style4 h4.content-block-title {
  margin: 0 0 5px;
}
.content-block-style4 .content-block-subtitle {
  margin: 0 0 10px;
}
/************* Social Icons Widget *************/
.social-icons-icon {
  display: inline-block;
  text-align: center;
  background: rgba(0, 0, 0, 0.04);
  color: inherit;
  vertical-align: top;
  margin-right: 20px;
  margin-bottom: 20px;
  position: relative;
}
.social-icons-icon:last-child {
  margin-right: 0;
}
.social-icons-icon i {
  position: relative;
}
.content .social-icons-icon {
  margin-bottom: 10px;
}
.social-icons-small .social-icons-icon {
  width: 40px;
  height: 35px;
  font-size: 15px;
  line-height: 35px;
}
.social-icons-medium .social-icons-icon {
  width: 50px;
  height: 50px;
  font-size: 25px;
  line-height: 50px;
}
.social-icons-large .social-icons-icon {
  width: 70px;
  height: 65px;
  font-size: 40px;
  line-height: 65px;
}
.social-icons-huge .social-icons-icon {
  width: 85px;
  height: 80px;
  font-size: 50px;
  line-height: 80px;
}
#topbar .social-icons-widget .social-icons-icon,
#page-wrapper .social-icons-widget .social-icons-icon {
  color: #ffffff;
}
#topbar .social-icons-widget .social-icons-icon:hover,
#page-wrapper .social-icons-widget .social-icons-icon:hover {
  color: #ffffff;
}
.social-icons-widget .social-icons-icon {
  background: var(--hkit-sicon);
}
.social-icons-invert .social-icons-icon {
  background: none;
  color: inherit !important;
  margin-right: 0;
  margin-bottom: 0;
}
.social-icons-invert .social-icons-icon:hover {
  color: #ffffff !important;
}
.social-icons-invert .social-icons-icon:hover:before {
  display: none;
}
.social-icons-invert .social-icons-icon:hover {
  background: var(--hkit-sicon);
}
.fa-skype-block {
  position: relative;
}
.fa-skype-block i {
  visibility: hidden;
}
.hoot-skype-call-button,
.hoot-skype-call-button p,
.hoot-skype-call-button p a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hoot-skype-call-button p {
  margin: 0 !important;
}
.hoot-skype-call-button img {
  margin: 0 !important;
  vertical-align: -2px !important;
}
#topbar .hoot-skype-call-button img {
  vertical-align: -12px !important;
}
.header-part .social-icons-icon {
  border: none;
}
/** Social Icon Hover **/
.social-icons-icon:hover:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.15);
}
.social-icons-icon:hover i {
  text-shadow: 2px 2px #000;
}
.social-icons-small .social-icons-icon:hover i {
  text-shadow: 1px 1px #000;
}
/************* Announce Widget *************/
.announce-widget {
  padding: 5px;
  position: relative;
  vertical-align: middle;
}
.announce-link {
  display: block;
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.announce-link:focus {
  outline: thin solid;
  outline-offset: -4px;
  color: inherit;
}
.announce-link span {
  display: none;
}
.announce-withbg {
  padding: 9px 17px 8px;
}
.announce-box.table {
  table-layout: auto;
  width: auto;
}
.announce-box-icon {
  width: 1em;
  font-size: 1.6666em;
  padding-right: 8px;
}
.announce-nomsg.announce-withbg {
  padding: 5px;
}
.announce-nomsg .announce-box-icon {
  padding-right: 0;
}
/************* Post Grid Widget *************/
.post-grid-widget {
  margin-right: -4px;
  position: relative;
}
.post-gridunit {
  position: relative;
  padding: 0 4px 4px 0;
}
.post-gridunit-image {
  background-position: center center;
  background-color: rgba(100, 100, 100, 0.05);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.post-gridunit-image img {
  width: 100%;
  display: none;
}
.post-gridunit-size1 .post-gridunit-title {
  font-size: 0.928571em;
}
.post-gridunit-size2 .post-gridunit-title {
  font-size: 1.142857em;
}
.post-gridunit-size2 .post-gridunit-image {
  padding-bottom: 4px;
}
.post-gridunit-bg {
  position: absolute;
  left: 0;
  right: 4px;
  bottom: 4px;
  top: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#38000000', GradientType=0);
}
.post-gridunit-imglink {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.post-gridunit-cat {
  right: 4px;
}
.post-gridunit-content {
  position: absolute;
  left: 10px;
  right: 14px;
  bottom: 14px;
  color: #ffffff;
}
.post-gridunit-title {
  text-transform: uppercase;
  margin: 0;
  color: inherit;
}
.post-gridunit-title a,
.post-gridunit-title a:hover {
  color: inherit;
}
.post-gridunit-subtitle .entry-byline {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 1em;
  text-transform: none;
}
.post-gridunit-image {
  height: 215px;
}
.post-gridunit-size2 .post-gridunit-image {
  height: 430px;
}
@media only screen and (min-width: 970px) {
  .post-gridunit-size2 {
    height: auto !important;
  }
}
@media only screen and (max-width: 969px) {
  .post-gridunit-size2 {
    margin-bottom: 4px;
    padding-bottom: 0;
    height: 215px;
  }
  .post-gridunit-size2 .post-gridunit-image {
    height: inherit !important;
    padding-bottom: 0;
  }
  .post-gridunit-size2 .post-gridunit-bg {
    bottom: 0;
  }
  .post-gridunit-size2 .post-gridunit-content {
    bottom: 10px;
  }
}
/************* Posts List Widget *************/
/*  List Styles */
.posts-list-style1 .posts-listunit-small .posts-listunit-image {
  width: 90px;
  height: 70px;
}
.posts-list-style1 .posts-listunit-small .posts-listunit-title {
  font-size: inherit;
}
.posts-list-style2 .posts-listunit-small .posts-listunit-image {
  width: 150px;
  height: 135px;
}
/* List Column */
/* List Unit */
.posts-listunit {
  margin-bottom: 1.78571429em;
}
.posts-listunit:last-child {
  margin-bottom: 0;
}
.posts-listunit-small {
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
}
.posts-listunit-small .posts-listunit-image {
  flex-shrink: 0;
  margin-right: 20px;
}
.posts-listunit-small .posts-listunit-bg img {
  width: 100%;
  visibility: hidden;
}
.posts-listunit-small .posts-listunit-content p {
  margin-top: 5px;
}
.posts-listunit-large .posts-listunit-image {
  margin-bottom: 20px;
}
.posts-listunit-large .posts-listunit-bg:before {
  content: "";
  display: block;
}
.posts-listunit-large .posts-listunit-bg .entry-featured-img-wrap a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.posts-listunit-large .posts-listunit-bg img {
  display: none;
}
.posts-imgsize-small .posts-listunit-bg:before {
  padding-top: 45%;
}
.posts-imgsize-medium .posts-listunit-bg:before {
  padding-top: 60%;
}
.posts-imgsize-big .posts-listunit-bg:before {
  padding-top: 80%;
}
/* List Unit Image */
.posts-listunit-image {
  position: relative;
}
.posts-listunit-image img {
  display: block;
  margin: 0 auto;
}
.posts-listunit-image a {
  display: block;
}
.posts-listunit-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0.1);
}
/* List Unit Content */
.posts-listunit-content p {
  margin: 0.71428571em 0 0;
}
.posts-listunit-title {
  font-size: 1.21428571em;
  margin: 0;
  font-weight: bold;
  font-weight: 500;
}
.posts-listunit-title a {
  color: inherit;
}
.posts-listunit-subtitle .entry-byline {
  background: none;
  padding: 0;
  font-size: 1em;
}
.posts-listunit-text .sharedaddy {
  display: none;
}
.posts-listunit-excerpt .more-link {
  margin-top: 5px;
  text-align: left;
  border: none;
}
.posts-listunit-excerpt .more-link a {
  background: none;
  padding-left: 0;
  color: inherit;
}
/*** Responsive Sidebar and Widgets ***/
@media only screen and (max-width: 969px) {
  #sidebar-secondary {
    margin-top: 0;
  }
  .content-block-row {
    margin: 0;
  }
  .content-block-column {
    margin-top: 20px;
    padding-top: 20px;
  }
  .content-block-style1 {
    border-top: solid 1px #ddd;
    border-color: rgba(0, 0, 0, 0.1);
  }
  .content-block-style2 .content-block-image {
    margin: 0;
  }
  .content-block-style3 {
    margin-top: 23px;
  }
  .content-block-style4 {
    border-top: solid 1px #ddd;
    border-color: rgba(0, 0, 0, 0.1);
  }
  .content-block-row:first-child .content-block-column:first-child {
    margin-top: 0;
    padding-top: 0;
  }
  .content-block-row:first-child .content-block-style1:first-child,
  .content-block-row:first-child .content-block-style4:first-child {
    border: none;
  }
  .announce-box-icon,
  .announce-box-content {
    display: table-cell;
  }
  .posts-listunit:last-child {
    margin-bottom: 1.78571429em;
  }
  .hcol-last .posts-listunit:last-child {
    margin-bottom: 0;
  }
  .posts-list-style2 .posts-listunit-small .posts-listunit-image {
    width: 100px;
    height: 90px;
  }
}
/*** Social Colors ***/
.social-icons-widget {
  --hkit-sicon: #000000;
}
.fa-amazon-block {
  --hkit-sicon: #161413;
}
.fa-android-block {
  --hkit-sicon: #99cc00;
}
.fa-apple-block {
  --hkit-sicon: #000000;
}
.fa-bandcamp-block {
  --hkit-sicon: #659daa;
}
.fa-behance-block {
  --hkit-sicon: #4176fa;
}
.fa-bitbucket-block {
  --hkit-sicon: #183f73;
}
.fa-btc-block {
  --hkit-sicon: #f7931a;
}
.fa-buysellads-block {
  --hkit-sicon: #c30100;
}
.fa-codepen-block {
  --hkit-sicon: #000000;
}
.fa-codiepie-block {
  --hkit-sicon: #000000;
}
.fa-contao-block {
  --hkit-sicon: #f47c00;
}
.fa-dashcube-block {
  --hkit-sicon: #7f7f7f;
}
.fa-delicious-block {
  --hkit-sicon: #0002f5;
}
.fa-deviantart-block {
  --hkit-sicon: #5e7163;
}
.fa-digg-block {
  --hkit-sicon: #1b5791;
}
.fa-discord-block {
  --hkit-sicon: #5865f2;
}
.fa-dribbble-block {
  --hkit-sicon: #c6356b;
}
.fa-dropbox-block {
  --hkit-sicon: #0089d1;
}
.fa-eercast-block {
  --hkit-sicon: #f1592a;
}
.fa-envelope-block {
  --hkit-sicon: #e44321;
}
.fa-etsy-block {
  --hkit-sicon: #f26223;
}
.fa-facebook-block {
  --hkit-sicon: #1877f2;
}
.fa-flickr-block {
  --hkit-sicon: #0062dd;
}
.fa-forumbee-block {
  --hkit-sicon: #86ac2f;
}
.fa-foursquare-block {
  --hkit-sicon: #3ab6e8;
}
.fa-free-code-camp-block {
  --hkit-sicon: #4a2b0f;
}
.fa-get-pocket-block {
  --hkit-sicon: #ed4054;
}
.fa-github-block {
  --hkit-sicon: #000000;
}
.fa-google-block {
  --hkit-sicon: #ea4335;
}
.fa-google-plus-block {
  --hkit-sicon: #e44321;
}
.fa-google-wallet-block {
  --hkit-sicon: #1476c6;
}
.fa-houzz-block {
  --hkit-sicon: #4dbc15;
}
.fa-imdb-block {
  --hkit-sicon: #e6b91e;
}
.fa-instagram-block {
  --hkit-sicon: #3f729b;
}
.fa-jsfiddle-block {
  --hkit-sicon: #2b97f3;
}
.fa-lastfm-block {
  --hkit-sicon: #d2013b;
}
.fa-leanpub-block {
  --hkit-sicon: #231f20;
}
.fa-linkedin-block {
  --hkit-sicon: #00659b;
}
.fa-meetup-block {
  --hkit-sicon: #f20017;
}
.fa-mixcloud-block {
  --hkit-sicon: #25292b;
}
.fa-patreon-block {
  --hkit-sicon: #ff424d;
}
.fa-paypal-block {
  --hkit-sicon: #15477c;
}
.fa-pinterest-block {
  --hkit-sicon: #cf1d25;
}
.fa-quora-block {
  --hkit-sicon: #c51a00;
}
.fa-reddit-block {
  --hkit-sicon: #ff4500;
}
.fa-rss-block {
  --hkit-sicon: #ff6501;
}
.fa-scribd-block {
  --hkit-sicon: #1a7bba;
}
.fa-skype-block {
  --hkit-sicon: #00aff0;
}
.fa-slack-block {
  --hkit-sicon: #352931;
}
.fa-slideshare-block {
  --hkit-sicon: #0ca8aa;
}
.fa-snapchat-block {
  --hkit-sicon: #fffc00;
}
.fa-soundcloud-block {
  --hkit-sicon: #ff6600;
}
.fa-spotify-block {
  --hkit-sicon: #79b800;
}
.fa-stack-exchange-block {
  --hkit-sicon: #205297;
}
.fa-stack-overflow-block {
  --hkit-sicon: #f47c23;
}
.fa-steam-block {
  --hkit-sicon: #000000;
}
.fa-stumbleupon-block {
  --hkit-sicon: #ee4723;
}
.fa-telegram-plane-block {
  --hkit-sicon: #28a8e9;
}
.fa-tiktok-block {
  --hkit-sicon: #000000;
}
.fa-trello-block {
  --hkit-sicon: #0089d9;
}
.fa-tripadvisor-block {
  --hkit-sicon: #589442;
}
.fa-tumblr-block {
  --hkit-sicon: #3e5976;
}
.fa-twitch-block {
  --hkit-sicon: #6542a6;
}
.fa-twitter-block {
  --hkit-sicon: #32ccfe;
}
.fa-viadeo-block {
  --hkit-sicon: #f07355;
}
.fa-vimeo-square-block {
  --hkit-sicon: #1bb6ec;
}
.fa-vk-block {
  --hkit-sicon: #507299;
}
.fa-whatsapp-block {
  --hkit-sicon: #41d251;
}
.fa-wikipedia-w-block {
  --hkit-sicon: #000000;
}
.fa-windows-block {
  --hkit-sicon: #0078d7;
}
.fa-wordpress-block {
  --hkit-sicon: #3378b0;
}
.fa-xing-block {
  --hkit-sicon: #cfdc00;
}
.fa-y-combinator-block {
  --hkit-sicon: #f26522;
}
.fa-yelp-block {
  --hkit-sicon: #c41200;
}
.fa-youtube-block {
  --hkit-sicon: #d4231e;
}
.fa-airbnb-block {
  --hkit-sicon: #d95358;
}
.fa-app-store-block {
  --hkit-sicon: #1a99f1;
}
.fa-app-store-ios-block {
  --hkit-sicon: #1a99f1;
}
.fa-audible-block {
  --hkit-sicon: #f39100;
}
.fa-bluesky-block {
  --hkit-sicon: #1081f6;
}
.fa-cash-app-block {
  --hkit-sicon: #00cf2f;
}
.fa-figma-block {
  --hkit-sicon: #9d56f7;
}
.fa-kickstarter-block {
  --hkit-sicon: #00ad54;
}
.fa-medium-block {
  --hkit-sicon: #000000;
}
.fa-shopify-block {
  --hkit-sicon: #90b945;
}
.fa-threads-block {
  --hkit-sicon: #000000;
}
.fa-square-threads-block {
  --hkit-sicon: #000000;
}
.fa-x-twitter-block {
  --hkit-sicon: #000000;
}
.fa-square-x-twitter-block {
  --hkit-sicon: #000000;
}
/**
 * Theme and WordPress Plugins
 * ========================================================
 */
/************* Light Slider *************/
.lSSlideOuter {
  position: relative;
}
.lightSlider {
  height: 0;
  overflow: hidden;
  /* To prevent F.O.U.C. */
  -webkit-transition: height 0.8s linear;
  -moz-transition: height 0.8s linear;
  -o-transition: height 0.8s linear;
  transition: height 0.8s linear;
}
.lightSlider .style-light {
  color: #ffffff;
  padding: 0;
}
.lightSlider .style-light h1,
.lightSlider .style-light h2,
.lightSlider .style-light h3,
.lightSlider .style-light h4,
.lightSlider .style-light h5,
.lightSlider .style-light h6,
.lightSlider .style-light a {
  color: inherit;
}
.lightSlider .style-dark {
  color: #777777;
  padding: 0;
}
.lightSlider .style-dark h1,
.lightSlider .style-dark h2,
.lightSlider .style-dark h3,
.lightSlider .style-dark h4,
.lightSlider .style-dark h5,
.lightSlider .style-dark h6 {
  color: #444444;
}
.lightSlider .style-light-on-dark {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
}
.lightSlider .style-light-on-dark h1,
.lightSlider .style-light-on-dark h2,
.lightSlider .style-light-on-dark h3,
.lightSlider .style-light-on-dark h4,
.lightSlider .style-light-on-dark h5,
.lightSlider .style-light-on-dark h6,
.lightSlider .style-light-on-dark a {
  color: inherit;
}
.lightSlider .style-dark-on-light {
  color: #777777;
  background: rgba(255, 255, 255, 0.7);
}
.lightSlider .style-dark-on-light h1,
.lightSlider .style-dark-on-light h2,
.lightSlider .style-dark-on-light h3,
.lightSlider .style-dark-on-light h4,
.lightSlider .style-dark-on-light h5,
.lightSlider .style-dark-on-light h6 {
  color: #444444;
}
ul.lightSlider,
#page-wrapper ul.lightSlider {
  margin: 0;
  list-style: none;
}
.lSAction > a {
  background-image: none;
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 998;
  top: 0;
  bottom: 0;
  height: auto;
  margin: 0;
  display: none;
}
div.lSAction > a.lSNext,
div.lSAction > a.lSPrev,
div.lSAction > a.lSNext:hover,
div.lSAction > a.lSPrev:hover {
  text-decoration: none;
}
.lSSlideWrapper:hover .lSAction > a {
  display: block;
}
.lSAction > a:after {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-style: normal;
  text-decoration: inherit;
  speak: none;
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  position: absolute;
  top: 45%;
  color: #444;
  font-size: 40px;
}
.lSAction > .lSPrev {
  left: 0;
}
.lSAction > .lSPrev:after {
  content: "\f104";
  left: 6px;
}
.lSAction > .lSNext {
  right: 0;
}
.lSAction > .lSNext:after {
  content: "\f105";
  right: 6px;
}
.lSAction > a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
#page-wrapper .lSSlideOuter ul.lSPager {
  margin: 0;
  margin-top: 0 !important;
  list-style: none outside none;
}
#page-wrapper .lSSlideOuter .lSPager.lSpg > li {
  padding: 2px 5px;
  display: inline-block;
}
#page-wrapper .lSSlideOuter .lSPager.lSpg > li a {
  width: 25px;
  height: 10px;
  border-radius: 0;
}
.lSSlideOuter .lSPager.lSpg > li:hover a,
.lSSlideOuter .lSPager.lSpg > li.active a {
  background-color: #d22254;
}
/*** Responsive Light Slider ***/
@media only screen and (max-width: 969px) {
  .lightSlider .style-light,
  .lightSlider .style-light-on-dark {
    background: rgba(0, 0, 0, 0.6);
  }
  .lightSlider .style-dark,
  .lightSlider .style-dark-on-light {
    background: rgba(255, 255, 255, 0.7);
  }
  #page-wrapper .lSSlideOuter .lSPager.lSpg > li {
    padding: 10px 10px 0 10px;
  }
  #page-wrapper .lSSlideOuter .lSPager.lSpg > li a {
    width: 30px;
    height: 15px;
    border-radius: 0;
  }
}
/************* Light Gallery *************/
.customHtml > h4,
.customHtml p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4285em;
  margin: 3px 0;
}
.customHtml > h4 {
  font-size: 20px;
  font-family: Georgia, "Times New Roman", Times, serif;
}
/************* Parallax *************/
#page-wrapper .parallax-mirror {
  z-index: inherit !important;
}
/************* Contact Form 7 *************/
.hoot-cf7-style .wpcf7-form {
  text-transform: uppercase;
  margin: 0.71428571em 0;
}
.hoot-cf7-style .wpcf7-form label + span {
  display: block;
}
.hoot-cf7-style .wpcf7-form .wpcf7-list-item-label,
.hoot-cf7-style .wpcf7-form .wpcf7-quiz-label {
  text-transform: none;
  font-weight: normal;
}
.hoot-cf7-style .wpcf7-form .required:before {
  margin-right: 5px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  content: "\f069";
  display: inline-block;
  font: normal normal 900 0.666666em/2.5em 'Font Awesome 5 Free';
  vertical-align: top;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hoot-cf7-style .wpcf7-form .one-fourth {
  width: 20%;
  float: left;
}
.hoot-cf7-style .wpcf7-form .one-fourth:nth-of-type(4n+1) {
  clear: both;
}
.hoot-cf7-style .wpcf7-form .one-third {
  width: 28%;
  float: left;
}
.hoot-cf7-style .wpcf7-form .one-third:nth-of-type(3n+1) {
  clear: both;
}
.hoot-cf7-style .wpcf7-form .one-half {
  width: 45%;
  float: left;
}
.hoot-cf7-style .wpcf7-form .one-half:nth-of-type(2n+1) {
  clear: both;
}
.hoot-cf7-style .wpcf7-form .full {
  width: 94%;
  float: none;
  clear: both;
}
.hoot-cf7-style .wpcf7-form .one-fourth input,
.hoot-cf7-style .wpcf7-form .one-third input,
.hoot-cf7-style .wpcf7-form .one-half input,
.hoot-cf7-style .wpcf7-form .full input,
.hoot-cf7-style .wpcf7-form .one-fourth textarea,
.hoot-cf7-style .wpcf7-form .one-third textarea,
.hoot-cf7-style .wpcf7-form .one-half textarea,
.hoot-cf7-style .wpcf7-form .full textarea,
.hoot-cf7-style .wpcf7-form .one-fourth select,
.hoot-cf7-style .wpcf7-form .one-third select,
.hoot-cf7-style .wpcf7-form .one-half select,
.hoot-cf7-style .wpcf7-form .full select {
  width: 100%;
}
.hoot-cf7-style .wpcf7-form .one-fourth input[type="checkbox"],
.hoot-cf7-style .wpcf7-form .one-third input[type="checkbox"],
.hoot-cf7-style .wpcf7-form .one-half input[type="checkbox"],
.hoot-cf7-style .wpcf7-form .full input[type="checkbox"],
.hoot-cf7-style .wpcf7-form .one-fourth input[type="radio"],
.hoot-cf7-style .wpcf7-form .one-third input[type="radio"],
.hoot-cf7-style .wpcf7-form .one-half input[type="radio"],
.hoot-cf7-style .wpcf7-form .full input[type="radio"] {
  width: auto;
}
.hoot-cf7-style .wpcf7-form .submit {
  clear: both;
  float: none;
  width: 100%;
}
.hoot-cf7-style .wpcf7-form .submit:after {
  content: "";
  display: table;
  clear: both;
}
.hoot-cf7-style .wpcf7-form .submit:after {
  content: "";
  display: table;
  clear: both;
}
.hoot-cf7-style .wpcf7-form .submit input {
  width: auto;
}
.hoot-cf7-style .wpcf7-form .wpcf7-form-control-wrap:after {
  content: "";
  display: table;
  clear: both;
}
.hoot-cf7-style .wpcf7-form .wpcf7-form-control-wrap:after {
  content: "";
  display: table;
  clear: both;
}
.hoot-cf7-style div.wpcf7-validation-errors,
.hoot-cf7-style div.wpcf7-mail-sent-ng,
.hoot-cf7-style div.wpcf7-mail-sent-ok {
  margin: -0.71428571em 0 1.07142857em;
  border: 0;
}
.hoot-cf7-style div.wpcf7-validation-errors {
  background: #fae9bf;
  color: #807000;
}
.hoot-cf7-style div.wpcf7-mail-sent-ng {
  background: #faece8;
  color: #af2c20;
}
.hoot-cf7-style div.wpcf7-mail-sent-ok {
  background: #eefae8;
  color: #769754;
}
/*** Responsive Contact Form 7 ***/
@media only screen and (max-width: 969px) {
  .hoot-cf7-style .wpcf7-form p,
  .hoot-cf7-style .wpcf7-form p.full {
    width: 100%;
    float: none;
    margin-right: 0;
  }
}
/************* MapPress Google Maps *************/
.hoot-mapp-style {
  /* Use default styles in mappress.css for rest */
}
.hoot-mapp-style .mapp-layout {
  border: none;
  max-width: 100%;
  margin: 0;
}
.hoot-mapp-style .mapp-map-links {
  border: none;
}
.hoot-mapp-style .mapp-links a:first-child:after {
  content: " /";
}
/************* Woocommerce *************/
.woocommerce ul.products,
.woocommerce-page ul.products,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.woocommerce .woocommerce-result-count {
  margin-top: 0.5em;
}
.woocommerce.archive ul.products,
.woocommerce-page.archive ul.products {
  margin: 1.07142857em 0 0 0;
}
.woocommerce.archive ul.products li.product,
.woocommerce-page.archive ul.products li.product {
  margin: 0 3.8% 2.992em 0;
  padding-top: 0;
}
.woocommerce.archive ul.products li.last,
.woocommerce-page.archive ul.products li.last {
  margin-right: 0;
}
.woocommerce nav.woocommerce-pagination ul {
  border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  margin: 0 2px;
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: none;
  color: inherit;
}
/* Remove title from product page since we already have it in theme title area (loop-meta) */
.woocommerce.singular .product .product_title {
  display: none;
}
/* Singular Product */
.product_meta > span {
  display: block;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  border-radius: 0;
}
.upsells.products,
.related.products {
  clear: both;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  border-color: #ddd;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-color: #ddd;
  margin: 0;
  border-radius: 0;
  border-bottom: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after {
  box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs .panel {
  padding-bottom: 1em;
}
.woocommerce-tabs h1,
.woocommerce-tabs h2,
.woocommerce-tabs h3,
.woocommerce-tabs h4,
.woocommerce-tabs h5,
.woocommerce-tabs h6 {
  font-size: 1.28571429em;
}
.single-product .upsells.products > h2,
.single-product .related.products > h2,
.singular-page.woocommerce-cart .cross-sells > h2,
.singular-page.woocommerce-cart .cart_totals > h2 {
  font-size: 1.28571429em;
}
/* Pages - Account, Cart, Checkout */
.woocommerce-account .entry-content,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
  border-bottom: none;
}
.woocommerce-account #comments-template,
.woocommerce-cart #comments-template,
.woocommerce-checkout #comments-template {
  display: none;
}
.woocommerce-account .sharedaddy,
.woocommerce-cart .sharedaddy,
.woocommerce-checkout .sharedaddy {
  display: none;
}
.select2-container *:focus {
  outline: thin dotted;
}
.woocommerce table.shop_table,
.woocommerce .woocommerce-customer-details address,
.select2-container--default .select2-selection--single {
  border-radius: 0;
}
/* Misc */
.flex-viewport figure {
  max-width: none;
}
.price del,
.woocommerce-grouped-product-list-item__price del {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
.price ins,
.woocommerce-grouped-product-list-item__price ins {
  text-decoration: none;
}
.woocommerce ul.cart_list li dl dd p:last-child,
.woocommerce ul.product_list_widget li dl dd p:last-child,
.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd {
  margin: 0;
}
.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  text-align: right;
  padding: 4px 0.5em 4px 0;
  background: rgba(0, 0, 0, 0.04);
}
.wc-block-components-button[disabled] {
  opacity: 0.5;
}
body.wordpress .wc-block-components-button {
  -webkit-transition: color 0.2s ease-in, background-color 0.2s linear, box-shadow linear 0.2s;
  -moz-transition: color 0.2s ease-in, background-color 0.2s linear, box-shadow linear 0.2s;
  -o-transition: color 0.2s ease-in, background-color 0.2s linear, box-shadow linear 0.2s;
  transition: color 0.2s ease-in, background-color 0.2s linear, box-shadow linear 0.2s;
}
.wc-block-components-button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: #d22254;
  color: #ffffff;
  border: none;
  text-decoration: none;
}
.wc-block-components-button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: #c11143;
  color: #ffffff;
}
.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
  background: #ddd;
  color: #666;
  border: solid 1px #aaa;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 0;
}
/* WC plugin */
#payment.woocommerce-checkout-payment iframe {
  margin: 0;
}
/*** Responsive Woocommerce ***/
/* Use 768px instead of @breakPoint to stay compatible with default woocommerce stylesheet */
@media only screen and (max-width: 768px) {
  .woocommerce.archive.plural ul.products:not(.elementor-grid) li.product,
  .woocommerce-page.archive.plural ul.products:not(.elementor-grid) li.product {
    width: 48%;
    margin: 0 0 2.992em;
  }
}
@media only screen and (max-width: 500px) {
  .woocommerce-notices-wrapper .woocommerce-error,
  .woocommerce-notices-wrapper .woocommerce-info,
  .woocommerce-notices-wrapper .woocommerce-message {
    text-align: center;
  }
  .woocommerce-notices-wrapper .woocommerce-error a,
  .woocommerce-notices-wrapper .woocommerce-info a,
  .woocommerce-notices-wrapper .woocommerce-message a {
    display: block;
    float: none;
  }
}
/************* Jetpack *************/
/*** Infinite Scoll ***/
.infinite-scroll .hoot-jetpack-style .pagination.loop-pagination,
.infinite-scroll .hoot-jetpack-style .pagination.navigation {
  display: none;
}
.hoot-jetpack-style #infinite-handle {
  clear: both;
}
.hoot-jetpack-style #infinite-handle span {
  padding: 6px 23px 8px;
  font-size: 0.8em;
  line-height: 1.8em;
  border: solid 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.33);
  -moz-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.33);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.33);
}
.hoot-jetpack-style #infinite-handle span button {
  text-transform: uppercase;
}
/* Disable for woocommerce shop/archive */
.infinite-scroll.woocommerce #infinite-handle {
  display: none !important;
}
.infinite-scroll .woocommerce-pagination {
  display: block;
}
/*** Share ***/
.hoot-jetpack-style .entry-content .sharedaddy {
  border-top: solid 1px #ddd;
}
.hoot-jetpack-style .entry-content .sharedaddy > div {
  margin-top: 1.78571429em;
}
.hoot-jetpack-style div.product .sharedaddy > div {
  margin-top: 1.78571429em;
}
.hoot-jetpack-style .frontpage-area .entry-content .sharedaddy {
  display: none;
}
.hoot-jetpack-style .sharedaddy .sd-title {
  font-family: inherit;
  text-transform: uppercase;
  opacity: 0.7;
  filter: alpha(opacity=70);
  margin-bottom: 0;
}
.hoot-jetpack-style .sharedaddy .sd-title:before {
  display: none;
}
.hoot-jetpack-style .sd-content ul li {
  display: inline-block;
}
.hoot-jetpack-style .sd-content ul li iframe {
  margin: 0;
}
/* Disable for content block widget */
.content-block-text .sharedaddy {
  display: none;
}
/*** Contact Form ***/
.hoot-jetpack-style .contact-form.commentsblock label {
  font-weight: normal;
}
.hoot-jetpack-style .contact-form.commentsblock .grunion-field-label {
  text-transform: uppercase;
  font-weight: bold;
}
.hoot-jetpack-style .contact-form.commentsblock .grunion-field-label span {
  color: #af2c20;
}
.hoot-jetpack-style .contact-form.commentsblock .grunion-checkbox-multiple-label {
  display: inline-block;
}
.hoot-jetpack-style .contact-form.commentsblock .grunion-checkbox-multiple-label + .clear-form {
  display: inline-block;
}
.hoot-jetpack-style .contact-form.commentsblock .grunion-radio-label {
  display: inline-block;
}
.hoot-jetpack-style .contact-form.commentsblock .grunion-radio-label + .clear-form {
  display: inline-block;
}
.hoot-jetpack-style .contact-form.commentsblock p.contact-submit {
  clear: both;
  float: none;
  width: 100%;
  margin: 0;
}
.hoot-jetpack-style .contact-form.commentsblock p.contact-submit:after {
  content: "";
  display: table;
  clear: both;
}
.hoot-jetpack-style .contact-form.commentsblock p.contact-submit:after {
  content: "";
  display: table;
  clear: both;
}
.hoot-jetpack-style .contact-form.commentsblock p.contact-submit input {
  width: auto;
}
/*** Responsive Jetpack ***/
@media only screen and (max-width: 969px) {
  .hoot-jetpack-style .contact-form.commentsblock > div,
  .hoot-jetpack-style .contact-form.commentsblock > div:last-of-type {
    width: 100%;
    float: none;
    margin-right: 0;
  }
}
/************* Page Builder *************/
.so-panel.widget {
  margin-top: 0;
}
.so-panel .content-blocks-widget,
.so-panel .vcards-widget,
.so-panel .number-blocks-widget {
  margin: 0;
}
.so-panel .topborder-shadow .content-blocks-widget,
.so-panel .topborder-line .content-blocks-widget,
.so-panel .topborder-shadow .vcards-widget,
.so-panel .topborder-line .vcards-widget,
.so-panel .topborder-shadow .number-blocks-widget,
.so-panel .topborder-line .number-blocks-widget {
  margin-top: 3em;
}
.so-panel .bottomborder-shadow .content-blocks-widget,
.so-panel .bottomborder-line .content-blocks-widget,
.so-panel .bottomborder-shadow .vcards-widget,
.so-panel .bottomborder-line .vcards-widget,
.so-panel .bottomborder-shadow .number-blocks-widget,
.so-panel .bottomborder-line .number-blocks-widget {
  margin-bottom: 3em;
}
/************* Elementor *************/
.elementor p,
.elementor h1,
.elementor h2,
.elementor h3,
.elementor h4,
.elementor h5,
.elementor h6,
.elementor .title {
  margin-top: 0;
}
.elementor-page #main > #loop-meta .loop-meta,
.elementor-page #content #loop-meta {
  display: var(--page-title-display);
}
.elementor-page .main > #loop-meta.loop-meta-staticbg,
.elementor-page .main > #loop-meta.loop-meta-parallax {
  border-top: solid 1px rgba(255, 255, 255, 0);
}
/************* Newsletter *************/
/*** Mail Poet ***/
.widget_mailpoet_form {
  padding: 25px;
  background: #eee;
}
.widget_mailpoet_form .widget-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-transform: none;
  font-size: 1.42857143em;
  font-style: italic;
  margin: 0;
  text-align: center;
}
.widget_mailpoet_form .widget-title span {
  background: none !important;
  color: inherit !important;
}
.widget_mailpoet_form .widget-title span:after {
  border: none;
}
.widget_mailpoet_form .mailpoet_form {
  margin: 0;
}
.widget_mailpoet_form .mailpoet_paragraph {
  margin: 10px 0;
}
.widget_mailpoet_form .mailpoet_text {
  width: 100% !important;
}
.widget_mailpoet_form .mailpoet_submit {
  margin: 0 auto;
  display: block;
}
.widget_mailpoet_form .mailpoet_message p {
  margin-bottom: 0;
}
/** Newsletter **/
.widget_newsletterwidget,
.widget_newsletterwidgetminimal {
  padding: 25px;
  background: #eee;
  text-align: center;
}
.widget_newsletterwidget .widget-title,
.widget_newsletterwidgetminimal .widget-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-transform: none;
  font-size: 1.42857143em;
  font-style: italic;
  margin: 0;
}
.widget_newsletterwidget .widget-title span,
.widget_newsletterwidgetminimal .widget-title span {
  background: none !important;
  color: inherit !important;
}
.widget_newsletterwidget .widget-title span:after,
.widget_newsletterwidgetminimal .widget-title span:after {
  border: none;
}
.widget_newsletterwidget input.tnp-submit[type=submit],
.widget_newsletterwidgetminimal input.tnp-submit[type=submit] {
  /*width: auto;*/
  margin: 0 auto;
}
.tnp-widget {
  text-align: left;
  margin-top: 10px;
}
.tnp-widget input[type=text],
.tnp-widget input[type=email],
.tnp-widget select {
  background: #fff;
}
.tnp-widget-minimal {
  margin: 10px 0;
}
.tnp-widget-minimal input.tnp-email {
  margin-bottom: 10px;
  background: #fff;
  border: solid 1px #fff;
}
/************* Login Modal / Popups *************/
/*** WooCommerce Login Popup and Shortcodes ***/
.woo-login-popup-sc-left {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*** AJAX Login and Registration modal popup ***/
.lrm-user-modal-container .lrm-switcher a {
  color: #555;
  background: rgba(0, 0, 0, 0.2);
}
.lrm-form a.button,
.lrm-form button,
.lrm-form button[type=submit],
.lrm-form #buddypress input[type=submit],
.lrm-form input[type=submit] {
  background: #d22254;
  color: #ffffff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 4px 0 0 rgba(0, 0, 0, 0.33);
  -moz-box-shadow: inset 0 4px 0 0 rgba(0, 0, 0, 0.33);
  box-shadow: inset 0 4px 0 0 rgba(0, 0, 0, 0.33);
}
.lrm-form a.button:hover,
.lrm-form button:hover,
.lrm-form button[type=submit]:hover,
.lrm-form #buddypress input[type=submit]:hover,
.lrm-form input[type=submit]:hover {
  -webkit-box-shadow: inset 0 4px 0 0 rgba(0, 0, 0, 0.33);
  -moz-box-shadow: inset 0 4px 0 0 rgba(0, 0, 0, 0.33);
  box-shadow: inset 0 4px 0 0 rgba(0, 0, 0, 0.33);
}
/************* Buddpress *************/
#buddypress.alignwide {
  margin-left: 0;
  margin-right: 0;
}
/************* Polylang *************/
.pll-parent-menu-item img {
  vertical-align: unset;
}
/************* Max Mega Menu *************/
.mega-menu-hoot-primary .menu-primary > .menu-toggle {
  display: none;
}
.mega-menu-hoot-secondary .menu-secondary > .menu-toggle {
  display: none;
}
/************* WP-MegaMenu *************/
/* Hides "body.wp-megamenu  .site-header .site-branding" for compatibility with HelloElementor theme */
body.wp-megamenu #branding {
  display: table-cell;
}
@media only screen and (max-width: 969px) {
  body.wp-megamenu #branding {
    display: block;
  }
}
/************* Forminator *************/
div#submit.forminator-field {
  background: none;
  color: inherit;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}
/************* Tribe The Events Calendar Plugin *************/
#main .entry-the-content .tribe-events-l-container {
  padding: 0;
}
.tribe-common li,
.tribe-common ol,
.tribe-common ul,
.tribe-theme-genesis .tribe-common ol,
.tribe-theme-genesis .tribe-common ul {
  margin: 0;
  padding: 0;
}
.tribe-common ol > li,
.tribe-common ul > li {
  list-style-type: none;
}
/**
 * Footer
 * ========================================================
 */
/************* Sub Footer *************/
.sub-footer {
  background: #f7f7f7;
  border-top: solid 1px #ddd;
  line-height: 1.71428571em;
  text-align: center;
}
/************* Footer *************/
.footer {
  border-top: solid 4px #eee;
  border-color: rgba(0, 0, 0, 0.13);
  padding: 10px 0 5px;
  line-height: 1.71428571em;
}
.footer a:not(input):not(.button) {
  color: inherit;
}
.footer a:hover:not(input):not(.button) {
  text-decoration: underline;
}
.footer p {
  margin: 1em 0;
}
.footer .footer-column {
  min-height: 1em;
}
.footer .hgrid-span-12.footer-column {
  text-align: center;
}
.sub-footer .widget-title,
.footer .widget-title {
  color: #666;
  font-size: 14px;
  font-family: inherit;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.71428571em;
}
.sub-footer .widget-title > span.accent-typo,
.footer .widget-title > span.accent-typo {
  background: none;
  color: inherit;
  padding: 0;
}
.sub-footer .widget-title > span.accent-typo:after,
.footer .widget-title > span.accent-typo:after {
  display: none;
}
.sub-footer .widget-title.title-customstyle > span.accent-typo,
.footer .widget-title.title-customstyle > span.accent-typo {
  padding: 3px 8px 2px;
}
.sub-footer .widget-title.title-customstyle > span.accent-typo:after,
.footer .widget-title.title-customstyle > span.accent-typo:after {
  display: block;
}
/************* Post Footer *************/
.post-footer {
  border-top: solid 1px #ddd;
  border-color: rgba(0, 0, 0, 0.33);
  text-align: center;
  padding: 0.71428571em 0;
  font-style: italic;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #888888;
}
.post-footer a {
  color: inherit;
}
/**
 * Premium Theme CSS
 * ========================================================
 */
/************* Megamenu *************/
.site-header .hybridextend-megamenu-icon {
  margin-right: 2px;
  line-height: 10px;
  /* prevents icon lineheight to surpass menu item lineheight */
}
.site-header .sub-menu .hybridextend-megamenu-icon {
  color: inherit;
}
.menu-items > li > a .hybridextend-megamenu-icon {
  min-width: 1em;
}
.menu-items .sub-menu .hybridextend-megamenu-icon {
  width: 1em;
}
/*** Responsive Megamenu ***/
@media only screen and (max-width: 969px) {
  .site-header li .hybridextend-megamenu-icon {
    color: inherit;
  }
}
/************* Sticky Header *************/
@keyframes hootstickyheader {
  0% {
    transform: translate(0, -100%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media only screen and (min-width: 970px) {
  .site-stretch .sticky-wrapper #header {
    width: 100%;
  }
  #header.stuck {
    position: fixed;
    top: 0;
    z-index: 1010;
    animation-name: hootstickyheader;
    animation-duration: 1s;
  }
  #header.stuck #site-logo {
    margin: 5px 0;
  }
  #header.stuck #site-logo.with-background {
    padding: 5px;
  }
  #header.stuck #site-logo-text {
    margin: 0;
  }
  #header.stuck #site-logo #site-title {
    font-size: 35px;
  }
  #header.stuck .site-logo-with-icon #site-title i {
    font-size: 32px;
  }
  #header.stuck #site-description {
    display: none;
    font-size: 13px;
  }
  #header.stuck .site-logo-with-image .site-logo-mixed-image {
    padding-right: 5px;
  }
  #header.stuck #site-logo-text,
  #header.stuck #site-logo-custom,
  #header.stuck #site-title,
  #header.stuck #site-description,
  #header.stuck #site-title a,
  #header.stuck #site-title i {
    -webkit-transition: margin 0.2s linear, font-size 0.2s linear, line-height 0.2s linear, padding 0.2s linear;
    -moz-transition: margin 0.2s linear, font-size 0.2s linear, line-height 0.2s linear, padding 0.2s linear;
    -o-transition: margin 0.2s linear, font-size 0.2s linear, line-height 0.2s linear, padding 0.2s linear;
    transition: margin 0.2s linear, font-size 0.2s linear, line-height 0.2s linear, padding 0.2s linear;
  }
  #header.stuck .branding img {
    max-height: 75px;
    width: auto;
    -webkit-transition: max-height 0.2s linear;
    -moz-transition: max-height 0.2s linear;
    -o-transition: max-height 0.2s linear;
    transition: max-height 0.2s linear;
  }
  #header.stuck .menu-items {
    line-height: 1.666em;
  }
  #header.stuck.tablemenu #menu-primary-items > li {
    display: inline-block;
    float: left;
  }
  #header.stuck .menu-items > li > a {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header.stuck .menu-items > li > a > .menu-title {
    line-height: inherit;
  }
  #header.stuck .menu-description {
    display: none;
  }
  #header.stuck .sub-menu .menu-description {
    display: block;
  }
}
@media (max-width: 969px) {
  .sticky-wrapper {
    height: auto !important;
  }
}
/************* Goto Top Button *************/
.fixed-goto-top {
  position: fixed;
  z-index: 2;
  bottom: 55px;
  right: 65px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #aaa;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}
.fixed-goto-top:hover {
  background: #aaa;
  color: #fff;
}
.waypoints-goto-top {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.5s linear;
  -moz-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
.waypoints-goto-top.topshow {
  opacity: 1;
  filter: alpha(opacity=100);
}
/*** Responsive Goto Top Button ***/
@media only screen and (max-width: 969px) {
  .fixed-goto-top {
    display: none;
  }
}
/************* Shortcodes *************/
/*** Color Schemes ***/
.style-white,
.shortcode-button.style-white {
  background: #f2f2f2;
  color: #888888;
}
.shortcode-button.style-white:hover {
  background: #e1e1e1;
  color: #888888;
}
.style-black,
.shortcode-button.style-black {
  background: #444444;
  color: #ffffff;
}
.shortcode-button.style-black:hover {
  background: #222222;
  color: #ffffff;
}
.style-brown,
.shortcode-button.style-brown {
  background: #986736;
  color: #ffffff;
}
.shortcode-button.style-brown:hover {
  background: #764514;
  color: #ffffff;
}
.style-blue,
.shortcode-button.style-blue {
  background: #3b86b0;
  color: #ffffff;
}
.shortcode-button.style-blue:hover {
  background: #19648e;
  color: #ffffff;
}
.style-cyan,
.shortcode-button.style-cyan {
  background: #40b7c2;
  color: #ffffff;
}
.shortcode-button.style-cyan:hover {
  background: #1e95a0;
  color: #ffffff;
}
.style-green,
.shortcode-button.style-green {
  background: #3bb064;
  color: #ffffff;
}
.shortcode-button.style-green:hover {
  background: #198e42;
  color: #ffffff;
}
.style-yellow,
.shortcode-button.style-yellow {
  background: #dbd932;
  color: #6d6a17;
}
.shortcode-button.style-yellow:hover {
  background: #b9b710;
  color: #6d6a17;
}
.style-amber,
.shortcode-button.style-amber {
  background: #e4910e;
  color: #ffffff;
}
.shortcode-button.style-amber:hover {
  background: #c26f00;
  color: #ffffff;
}
.style-orange,
.shortcode-button.style-orange {
  background: #ec750c;
  color: #ffffff;
}
.shortcode-button.style-orange:hover {
  background: #ca5300;
  color: #ffffff;
}
.style-red,
.shortcode-button.style-red {
  background: #c73535;
  color: #ffffff;
}
.shortcode-button.style-red:hover {
  background: #a51313;
  color: #ffffff;
}
.style-pink,
.shortcode-button.style-pink {
  background: #eb4992;
  color: #ffffff;
}
.shortcode-button.style-pink:hover {
  background: #c92770;
  color: #ffffff;
}
.style-accent,
.shortcode-button.style-accent,
.style-accentlight {
  background: #d22254;
  color: #ffffff;
}
.shortcode-button.style-accent:hover {
  background: #c11143;
  color: #ffffff;
}
.style-highlight,
.style-highlightlight {
  background: #f7f7f7;
}
.style-whitelight {
  background: #f2f2f2;
  color: #888888;
}
.style-blacklight {
  background: #444444;
  color: #ffffff;
}
.style-brownlight {
  background: #f5e7d8;
  color: #986736;
}
.style-bluelight {
  background: #e8f0fa;
  color: #4671a3;
}
.style-cyanlight {
  background: #e8f8fa;
  color: #469ba3;
}
.style-greenlight {
  background: #eefae8;
  color: #728754;
}
.style-yellowlight {
  background: #fcfbd9;
  color: #a69021;
}
.style-amberlight {
  background: #faeed4;
  color: #b28929;
}
.style-orangelight {
  background: #ffe0bc;
  color: #c8640d;
}
.style-redlight {
  background: #faece8;
  color: #af2c20;
}
.style-pinklight {
  background: #fae8f4;
  color: #c2519b;
}
/*** Icon Lists ***/
.main .fa-ul {
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-li {
  line-height: 1.71428571em;
  top: 0;
}
/*** Box ***/
.shortcode-box {
  padding: 0 15px;
}
.shortcode-box-icon {
  padding-right: 15px;
  font-size: 1.5em;
  width: 1.5em;
  text-align: center;
}
.shortcode-box-content {
  padding: 0.71428571em 0;
}
/*** Dropcap ***/
.shortcode-dropcap {
  display: block;
  float: left;
  margin: 0 8px 0 0;
  font-size: 3.2em;
  line-height: 1em;
}
/*** Highlight ***/
.shortcode-highlight {
  padding: 2px 5px;
}
/*** Toggle ***/
.shortcode-toggle {
  margin: 1.07142857em 0;
}
.shortcode-toggle-head {
  background: #f7f7f7;
  border: solid 1px #ddd;
  cursor: pointer;
  padding: 6px 15px 6px 30px;
  position: relative;
  -webkit-transition: color 0.1s linear, background 0.2s linear;
  -moz-transition: color 0.1s linear, background 0.2s linear;
  -o-transition: color 0.1s linear, background 0.2s linear;
  transition: color 0.1s linear, background 0.2s linear;
}
.shortcode-toggle-head i {
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 0.6em;
  line-height: 1em;
  margin-top: -0.3em;
}
.shortcode-toggle-box {
  border: solid 1px #ddd;
  border-top: none;
  margin: 0;
  padding: 13px 15px;
}
.shortcode-toggle-box p:first-child {
  margin-top: 0;
}
.shortcode-toggle-box p:last-child {
  margin-bottom: 0;
}
/*** Tabset ***/
.shortcode-tabset {
  margin: 1.07142857em 0;
}
#page-wrapper ul.shortcode-tabset-nav {
  list-style: none;
  overflow: hidden;
  margin: 0;
  position: relative;
  bottom: -1px;
}
#page-wrapper ul.shortcode-tabset-nav li {
  float: left;
  margin: 0 5px 0 0;
  border: solid 1px #ddd;
  background: #f7f7f7;
  padding: 8px 20px;
  text-align: center;
  cursor: pointer;
}
#page-wrapper ul.shortcode-tabset-nav li.current {
  background: none;
  border-bottom-color: #f7f7f7;
}
.shortcode-tabset-box {
  padding: 13px 15px;
  border: solid 1px #ddd;
}
.shortcode-tabset-box > div {
  display: none;
}
.shortcode-tabset-box > div.current {
  display: block;
}
.shortcode-tabset-box p:first-child {
  margin-top: 0;
}
.shortcode-tabset-box p:last-child {
  margin-bottom: 0;
}
/*** Divider ***/
.shortcode-divider {
  margin: 1.07142857em 0;
  height: 1px;
  position: relative;
}
.shortcode-divider:after {
  content: "";
  display: table;
  clear: both;
}
.shortcode-divider:after {
  content: "";
  display: table;
  clear: both;
}
.shortcode-divider a {
  position: absolute;
  right: 0;
  top: -0.8em;
  padding: 0px 5px;
  font-size: 0.7em;
  line-height: 1.6em;
  text-transform: uppercase;
}
.shortcode-divider a:hover {
  background: inherit;
  color: inherit;
}
/*** Column ***/
.shortcode-column {
  margin: 1.07142857em 0;
  padding-left: 0;
}
.shortcode-column.last {
  padding-right: 0;
}
/*** Content Block ***/
.shortcode-content-block .content-blocks-widget,
.shortcode-content-block .content-blocks-widget .clearfix {
  margin: 1.78571429em 0;
}
/*** Responsive Shortcodes ***/
@media only screen and (max-width: 969px) {
  .shortcode-box {
    display: table;
  }
  .shortcode-box-icon,
  .shortcode-box-content {
    display: table-cell;
  }
  [class*="hcolumn-"].shortcode-column {
    padding-left: 0;
    padding-right: 0;
  }
}
/************* Post List *************/
/*.post-list-widget { padding-top: 5px; }
.post-list-post { margin-bottom: @verticalMargin; }
.post-list-post:last-child { margin-bottom: 0; }
.post-list-thumb {
	width: 60px;
	float: left;
}
.post-list-content {
	margin-left: 75px;
	line-height: 1.333333em;
	h4 {
		font-size: 1em;
		margin: 0;
		font-family: inherit;
		//a { color: inherit; }
	}
	.post-list-meta { 
		font-size: 0.8em;
		margin-top: 7px;
		&, a { color: inherit; }
	}
}
.no-thumb .post-list-content { margin-left: 0; }*/
/************* Blog Widget / Blogposts Template *************/
.blog-widget-post-content {
  margin-top: 1.07142857em;
}
/************* Contact Info *************/
.contact-info-block {
  margin-bottom: 0.71428571em;
  line-height: 1.6em;
}
.contact-info-block:after {
  content: "";
  display: table;
  clear: both;
}
.contact-info-block:after {
  content: "";
  display: table;
  clear: both;
}
.contact-info-block:last-child {
  margin-bottom: 0;
}
.contact-info-icon {
  width: 25px;
  float: left;
}
.contact-info-icon i {
  font-size: 15px;
}
.contact-info-text {
  margin-left: 28px;
  text-align: left;
  line-height: 1.6em;
}
/************* vcards Widget *************/
.vcard-row {
  margin: 0 0 45px;
}
.vcard-row:after {
  content: "";
  display: table;
  clear: both;
}
.vcard-row:after {
  content: "";
  display: table;
  clear: both;
}
.vcard-row:last-child {
  margin: 0;
}
.vcard-column {
  text-align: center;
}
.vcard {
  border: solid 1px #ddd;
}
.vcard-content {
  padding: 15px 10px 0;
}
.vcard-content h4,
.vcard-content h1,
.vcard-content h2,
.vcard-content h3,
.vcard-content h5,
.vcard-content h6 {
  margin: 0 0 0px;
  font-size: 1.14285714em;
}
.vcard-content h4 a,
.vcard-content h1 a,
.vcard-content h2 a,
.vcard-content h3 a,
.vcard-content h5 a,
.vcard-content h6 a {
  color: inherit;
}
.vcard-content cite {
  text-transform: uppercase;
  font-style: normal;
  position: relative;
  background: rgba(0, 0, 0, 0.05);
  padding: 1px 10px;
  margin: 0 -10px 10px;
  display: block;
  float: left;
  width: 100%;
  color: #444;
}
.vcard-content p {
  margin: 0 0 5px;
  font-style: italic;
}
.vcard-content p:last-child {
  margin-bottom: 10px;
}
.vcard-content > p:last-child > a:last-child {
  font-size: 0.78571429em;
  line-height: 1.454545em;
  display: block;
  padding: 1px 5px;
  margin: 12px -10px -10px;
  background: #d22254;
  color: #ffffff;
  text-transform: uppercase;
}
.vcard-content > p:last-child > a:last-child:hover {
  text-decoration: underline;
}
.vcard-links {
  border-top: solid 1px #ddd;
}
.vcard-link {
  display: inline-block;
  border-right: solid 1px #ddd;
}
.vcard-link .vcard-link-inner {
  margin: 0;
}
.vcard-link a,
.vcard-link .vcard-link-skype {
  font-size: 0.9em;
  line-height: 34px;
  width: 34px;
}
.vcard-link a {
  display: inline-block;
  color: inherit;
}
.vcard-link a:hover {
  color: #ffffff;
}
.vcard-link:first-child {
  border-left: solid 1px #ddd;
}
/* Social Icons hover color is borrowed from social-icons-widget class */
/************* Number Blocks Widget *************/
.number-block-row {
  margin: 0 0 1em;
}
.number-block-row:after {
  content: "";
  display: table;
  clear: both;
}
.number-block-row:after {
  content: "";
  display: table;
  clear: both;
}
.number-block-row:last-child {
  margin: 0;
}
.number-block-column {
  text-align: center;
}
.number-block-column.hcolumn-1-1 {
  padding-left: 0;
  padding-right: 0;
}
.number-block-visual {
  text-align: center;
}
.number-block-circle {
  display: inline-block;
}
.number-block-circle svg {
  width: 105px;
  margin: -20px;
}
.number-block-content {
  padding: 15px 0 0;
}
.number-block-content.no-visual {
  padding-top: 0;
}
.number-block-content h4,
.number-block-content h1,
.number-block-content h2,
.number-block-content h3,
.number-block-content h5,
.number-block-content h6 {
  margin: 0 0 5px;
  font-size: 1.14285714em;
  font-family: inherit;
}
.number-block-content h4 a,
.number-block-content h1 a,
.number-block-content h2 a,
.number-block-content h3 a,
.number-block-content h5 a,
.number-block-content h6 a {
  color: inherit;
}
.number-block-content p {
  margin: 0 0 5px;
  font-style: italic;
}
.number-block-content p:last-child {
  margin-bottom: 0;
}
.number-block-content > p:last-child > a:last-child {
  font-size: 0.78571429em;
  line-height: 1.454545em;
  text-transform: uppercase;
  font-style: normal;
}
/*** Responsive Sidebar and Widgets ***/
@media only screen and (max-width: 969px) {
  .vcard-row {
    margin: 0;
  }
  .vcard-column {
    margin-top: 20px;
    padding-top: 20px;
  }
  .vcard-row:first-child .vcard-column:first-child {
    margin-top: 0;
    padding-top: 0;
  }
  .vcard-image {
    margin: 0;
  }
  .number-block-row {
    margin: 0;
  }
  .number-block-column {
    margin-top: 20px;
    padding-top: 20px;
  }
  .number-block-row:first-child .number-block-column:first-child {
    margin-top: 0;
    padding-top: 0;
  }
}/************* WordPress Block Wide Alignment *************/
.alignwide,
.alignfull {
  max-width: none;
  text-align: center;
}
.sidebars0 .alignwide {
  margin-left: -3em;
  margin-right: -3em;
}
.sidebars0 .alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw;
}
/* Block Specifics */
.wp-block-cover.alignfull,
.wp-block-cover-image.alignfull,
.wp-block-cover.alignwide,
.wp-block-cover-image.alignwide {
  width: auto;
}
/************* WordPress Blocks *************/
ul.wp-block-social-links,
.wp-block-buttons,
.wp-block-image,
.wp-block-gallery,
pre.wp-block-verse {
  margin: 0.71428571em 0 1.78571429em;
}
/*** Alignment ***/
ul.aligncenter,
.aligncenter {
  margin: 1.07142857em auto;
}
ul.alignleft,
.alignleft {
  margin: 10px 15px 5px 0;
}
ul.alignright,
.alignright {
  margin: 10px 0 5px 15px;
}
/*** Text Size ***/
.has-small-font-size {
  line-height: 1.71428571em;
}
.has-regular-font-size,
.has-normal-font-size {
  line-height: 1.71428571em;
}
.has-medium-font-size {
  line-height: 1.3em;
}
.has-large-font-size {
  line-height: 1.2em;
}
.has-larger-font-size,
.has-huge-font-size {
  line-height: 1.1em;
}
/*** Media&Text ***/
.wp-block-media-text.has-background .wp-block-media-text__content {
  padding-top: 2em;
  padding-bottom: 1.5em;
}
.wp-block-media-text .wp-block-media-text__content > * {
  margin: 0.5em 0;
}
.wp-block-media-text .wp-block-media-text__content > *:first-child {
  margin-top: 0;
}
.wp-block-media-text .wp-block-media-text__content > *:last-child {
  margin-bottom: 0;
}
.wp-block-media-text.alignwide,
.wp-block-media-text.alignfull {
  text-align: inherit;
}
/*** File ***/
.fluid-width-video-wrapper .wp-block-file__embed {
  position: inherit;
  margin: 0 0 1em;
}
/*** Cover ***/
.wp-block-cover,
.wp-block-cover-image {
  padding: 2em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/*** Blockquote ***/
.wp-block-quote.has-text-align-center {
  border: none;
  padding: 0 1em;
}
.wp-block-quote.has-text-align-right {
  border-right: 5px solid;
  border-left: 0;
  padding: 0 1em 0 0;
}
/*** Pullquote ***/
.wp-block-pullquote {
  padding: 0;
  margin: 1.60714286em 0;
  border-top: solid 5px;
  border-bottom: solid 5px;
}
.wp-block-pullquote blockquote {
  padding: 2em;
  margin: 0;
  border-left: none;
  border-right: none;
}
.wp-block-pullquote.is-style-solid-color blockquote {
  border: none;
}
.wp-block-pullquote:not(.is-style-solid-color) {
  background: none;
}
/*** Verse ***/
pre.wp-block-verse {
  padding: 15px 10px 15px 20px;
  color: inherit;
  border: none;
  font-family: inherit;
  font-family: Georgia, "Times New Roman", Times, serif;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.4;
  font-style: italic;
  border-left: 2px dotted;
}
/*** Social Icons Block ***/
.wordpress .wp-block-social-links {
  list-style: none;
  display: flex;
}
.wp-block-social-links.is-style-logos-only .wp-social-link {
  padding: 0;
}
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link {
  margin: 0 4px;
}
/*** Button Block - with button class added by user ***/
.button.wp-block-button {
  padding: 0;
  align-self: center;
}
.button.wp-block-button a {
  background: none !important;
  color: inherit !important;
  border: none;
}
.wp-block-button__link {
  border-radius: 0;
}
/* Other Buttons */
.wp-block-search__button,
.wp-block-file__button {
  border-radius: 0;
  text-decoration: none;
}
/*** Image/Figcaption ***/
figure.wp-block-image:not(.alignleft):not(.alignright):not(.aligncenter):not(.alignwide):not(.alignfull) {
  display: table;
}
figure.wp-block-image:not(.alignleft):not(.alignright):not(.aligncenter):not(.alignwide):not(.alignfull) figcaption {
  display: table-caption;
  caption-side: bottom;
}
.wordpress figcaption {
  background: rgba(0, 0, 0, 0.03);
  color: inherit;
  margin: 0;
  padding: 5px;
  font-size: 0.78571429em;
  line-height: 1.454545em;
  text-align: center;
}
.wp-block-image.is-style-rounded figcaption {
  background: none;
}
/*** Embed/Gallery ***/
.wp-block-embed figcaption {
  margin-bottom: 0;
}
.wp-block-embed iframe,
.wp-block-embed video,
.wp-block-embed object,
.wp-block-embed embed {
  margin: 0;
}
.wp-block-gallery {
  padding: 16px 16px 0;
  list-style-type: none;
  border: solid 1px #ddd;
  background: #f7f7f7;
  /* WP 5.9 */
}
.wp-block-gallery.has-nested-images figure.wp-block-image:not(.alignleft):not(.alignright):not(.aligncenter):not(.alignwide):not(.alignfull) {
  display: flex;
}
.wordpress .blocks-gallery-grid {
  margin: 0;
  list-style-type: none;
}
.blocks-gallery-caption {
  width: 100%;
  text-align: center;
  position: relative;
  top: -0.5em;
}
.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3) 0%, transparent);
  font-size: 0.85714286em;
  line-height: 1.5em;
}
/*** Gallery Fix ***/
body .is-layout-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
/*** Blocks Responsive ***/
@media only screen and (max-width: 969px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding-top: 2em;
    padding-bottom: 1.5em;
  }
}
/************* WC Blocks *************/
[class*=wp-block-woocommerce],
[class*=wc-block] {
  text-align: inherit;
}
[class*=wp-block-woocommerce].alignwide,
[class*=wc-block].alignwide {
  margin-left: auto;
  margin-right: auto;
}